2017-11-23 17:17:08 +04:00
|
|
|
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
|
|
//
|
|
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
2017-12-21 09:59:14 +04:00
|
|
|
* This file contains the functions used by the plugin.
|
2017-11-23 17:17:08 +04:00
|
|
|
*
|
2018-09-07 15:06:59 +04:00
|
|
|
* @copyright 2018 'Valentin Popov' <info@valentineus.link>
|
2017-11-23 17:17:08 +04:00
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2018-09-07 15:06:59 +04:00
|
|
|
* @package local_webhooks
|
2017-11-23 17:17:08 +04:00
|
|
|
*/
|
|
|
|
|
2018-10-22 02:17:12 +04:00
|
|
|
defined('MOODLE_INTERNAL') || die();
|
2017-11-23 17:17:08 +04:00
|
|
|
|
2018-10-22 02:17:12 +04:00
|
|
|
define('LW_TABLE_SERVICES', 'local_webhooks_service');
|
|
|
|
define('LW_TABLE_EVENTS', 'local_webhooks_events');
|
2017-11-23 18:11:33 +04:00
|
|
|
|
2017-12-27 16:01:48 +04:00
|
|
|
/**
|
2018-09-07 15:06:59 +04:00
|
|
|
* Class local_webhooks_api
|
2018-03-21 08:12:22 +04:00
|
|
|
*
|
2018-09-07 15:06:59 +04:00
|
|
|
* @copyright 2018 'Valentin Popov' <info@valentineus.link>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
|
* @package local_webhooks
|
2018-03-21 08:12:22 +04:00
|
|
|
*/
|
2018-09-07 15:06:59 +04:00
|
|
|
class local_webhooks_api {
|
2018-09-08 15:38:03 +04:00
|
|
|
/**
|
|
|
|
* Get information about the service.
|
|
|
|
*
|
2018-10-22 03:14:31 +04:00
|
|
|
* @param int $service_id
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @return object
|
2018-10-22 02:17:12 +04:00
|
|
|
* @throws \dml_exception
|
|
|
|
* @throws \moodle_exception
|
2018-09-08 15:38:03 +04:00
|
|
|
*/
|
2018-10-22 03:14:31 +04:00
|
|
|
public static function get_service($service_id = 0) {
|
2018-09-08 15:38:03 +04:00
|
|
|
global $DB;
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
if (!is_numeric($service_id) || $service_id === 0) {
|
|
|
|
print_error('unknowparamtype', 'error', null, 'service_id');
|
2018-09-08 15:38:03 +04:00
|
|
|
}
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
$service = $DB->get_record(LW_TABLE_SERVICES, array('id' => $service_id), '*', MUST_EXIST);
|
|
|
|
$events = $DB->get_records(LW_TABLE_EVENTS, array('serviceid' => $service_id), '', '*', 0, 0);
|
2018-09-08 15:38:03 +04:00
|
|
|
|
|
|
|
$service->events = array();
|
2018-10-22 02:17:12 +04:00
|
|
|
foreach ($events as $event) {
|
2018-09-08 15:38:03 +04:00
|
|
|
$service->events[] = $event->name;
|
|
|
|
}
|
|
|
|
|
2018-09-08 16:06:39 +04:00
|
|
|
return $service;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of services.
|
|
|
|
* By default, the entire list of services is given.
|
|
|
|
*
|
2018-09-09 04:28:51 +04:00
|
|
|
* @param array $conditions
|
2018-10-22 03:14:31 +04:00
|
|
|
* @param int $limit_from
|
|
|
|
* @param int $limit_num
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @return array
|
2018-10-22 02:17:12 +04:00
|
|
|
* @throws \dml_exception
|
2018-09-08 16:06:39 +04:00
|
|
|
*/
|
2018-10-22 03:14:31 +04:00
|
|
|
public static function get_services(array $conditions = array(), $limit_from = 0, $limit_num = 0) {
|
2018-09-08 16:06:39 +04:00
|
|
|
global $DB;
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
$services = $DB->get_records(LW_TABLE_SERVICES, $conditions, '', '*', $limit_from, $limit_num);
|
2018-09-08 16:06:39 +04:00
|
|
|
|
2018-10-22 02:17:12 +04:00
|
|
|
foreach ($services as $service) {
|
|
|
|
$events = $DB->get_records(LW_TABLE_EVENTS, array('serviceid' => $service->id), '', '*', 0, 0);
|
2018-09-08 16:06:39 +04:00
|
|
|
|
|
|
|
$service->events = array();
|
2018-10-22 02:17:12 +04:00
|
|
|
foreach ($events as $event) {
|
2018-09-08 16:06:39 +04:00
|
|
|
$service->events[] = $event->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $services;
|
2018-09-08 15:38:03 +04:00
|
|
|
}
|
|
|
|
|
2018-09-09 04:38:27 +04:00
|
|
|
/**
|
|
|
|
* Get the list of services subscribed to the event.
|
|
|
|
*
|
2018-10-22 03:14:31 +04:00
|
|
|
* @param string $event_name
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
2018-09-09 04:38:27 +04:00
|
|
|
* @return array
|
2018-10-22 02:17:12 +04:00
|
|
|
* @throws \dml_exception
|
|
|
|
* @throws \moodle_exception
|
2018-09-09 04:38:27 +04:00
|
|
|
*/
|
2018-10-22 03:14:31 +04:00
|
|
|
public static function get_services_by_event($event_name = '') {
|
2018-09-09 04:38:27 +04:00
|
|
|
global $DB;
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
if (!is_string($event_name) || $event_name === '') {
|
|
|
|
print_error('unknowparamtype', 'error', null, 'event_name');
|
2018-09-09 04:38:27 +04:00
|
|
|
}
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
$events = $DB->get_records(LW_TABLE_EVENTS, array('name' => $event_name), '', '*', 0, 0);
|
2018-09-09 04:38:27 +04:00
|
|
|
|
|
|
|
$services = array();
|
2018-10-22 02:17:12 +04:00
|
|
|
foreach ($events as $event) {
|
|
|
|
$services[] = self::get_service($event->serviceid);
|
2018-09-09 04:38:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $services;
|
|
|
|
}
|
|
|
|
|
2018-09-07 15:06:59 +04:00
|
|
|
/**
|
|
|
|
* Create service data in the database.
|
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @param array $service
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @return int
|
2018-10-22 02:17:12 +04:00
|
|
|
* @throws \dml_exception
|
|
|
|
* @throws \moodle_exception
|
2018-09-07 15:06:59 +04:00
|
|
|
*/
|
2018-10-22 02:17:12 +04:00
|
|
|
public static function create_service(array $service = array()) {
|
2018-09-07 15:06:59 +04:00
|
|
|
global $DB;
|
|
|
|
|
2018-10-22 02:17:12 +04:00
|
|
|
if (!is_array($service) || count($service) === 0) {
|
|
|
|
print_error('unknowparamtype', 'error', null, 'service');
|
2018-03-21 08:12:22 +04:00
|
|
|
}
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
$service_id = $DB->insert_record(LW_TABLE_SERVICES, (object) $service, true, false);
|
|
|
|
if ($service_id && !empty($service['events']) && is_array($service['events'])) {
|
|
|
|
self::insert_events($service['events'], $service_id);
|
2018-09-07 15:06:59 +04:00
|
|
|
}
|
2017-11-23 17:17:08 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
// TODO: Mark the log.
|
2018-09-08 18:13:45 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
return (int) $service_id;
|
2017-11-23 17:17:08 +04:00
|
|
|
}
|
|
|
|
|
2018-09-07 15:06:59 +04:00
|
|
|
/**
|
|
|
|
* Delete the service data from the database.
|
|
|
|
*
|
2018-10-22 03:14:31 +04:00
|
|
|
* @param int $service_id
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @return bool
|
2018-10-22 02:17:12 +04:00
|
|
|
* @throws \dml_exception
|
|
|
|
* @throws \moodle_exception
|
2018-09-07 15:06:59 +04:00
|
|
|
*/
|
2018-10-22 03:14:31 +04:00
|
|
|
public static function delete_service($service_id = 0) {
|
2018-09-07 15:06:59 +04:00
|
|
|
global $DB;
|
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
if (!is_numeric($service_id) || $service_id === 0) {
|
|
|
|
print_error('unknowparamtype', 'error', null, 'service_id');
|
2018-09-07 15:06:59 +04:00
|
|
|
}
|
2017-12-21 09:59:14 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
// TODO: Mark the log.
|
2018-09-08 18:13:45 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
$DB->delete_records(LW_TABLE_EVENTS, array('serviceid' => $service_id));
|
2018-10-22 02:17:12 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
return $DB->delete_records(LW_TABLE_SERVICES, array('id' => $service_id));
|
2018-03-12 23:45:35 +04:00
|
|
|
}
|
|
|
|
|
2018-09-07 15:06:59 +04:00
|
|
|
/**
|
|
|
|
* Update the service data in the database.
|
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @param array $service
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @return bool
|
2018-10-22 02:17:12 +04:00
|
|
|
* @throws \dml_exception
|
|
|
|
* @throws \moodle_exception
|
2018-09-07 15:06:59 +04:00
|
|
|
*/
|
2018-10-22 02:17:12 +04:00
|
|
|
public static function update_service(array $service = array()) {
|
2018-09-07 15:06:59 +04:00
|
|
|
global $DB;
|
|
|
|
|
2018-10-22 02:17:12 +04:00
|
|
|
if (!is_array($service) || count($service) === 0 || !isset($service['id'])) {
|
|
|
|
print_error('unknowparamtype', 'error', null, 'service');
|
2018-09-07 15:06:59 +04:00
|
|
|
}
|
2017-11-23 17:17:08 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
// TODO: Add transactions for operations.
|
2018-10-22 02:17:12 +04:00
|
|
|
$result = $DB->update_record(LW_TABLE_SERVICES, (object) $service, false);
|
|
|
|
$DB->delete_records(LW_TABLE_EVENTS, array('serviceid' => $service['id']));
|
|
|
|
|
|
|
|
if ($result && is_array($service['events']) && count($service) !== 0) {
|
|
|
|
self::insert_events($service['events'], $service['id']);
|
2018-09-07 15:06:59 +04:00
|
|
|
}
|
2018-03-13 01:34:19 +04:00
|
|
|
|
2018-10-22 03:14:31 +04:00
|
|
|
// TODO: Mark the log.
|
2018-09-08 18:13:45 +04:00
|
|
|
|
2018-09-07 15:06:59 +04:00
|
|
|
return $result;
|
2018-03-13 01:34:19 +04:00
|
|
|
}
|
2018-02-19 12:36:09 +04:00
|
|
|
|
2018-09-07 15:06:59 +04:00
|
|
|
/**
|
|
|
|
* Save the list of events to the database.
|
|
|
|
*
|
2018-09-08 16:06:39 +04:00
|
|
|
* @param array $events
|
2018-10-22 03:14:31 +04:00
|
|
|
* @param int $service_id
|
2018-10-22 02:17:12 +04:00
|
|
|
*
|
|
|
|
* @throws \coding_exception
|
|
|
|
* @throws \dml_exception
|
2018-09-07 15:06:59 +04:00
|
|
|
*/
|
2018-10-22 03:14:31 +04:00
|
|
|
protected static function insert_events(array $events = array(), $service_id = 0) {
|
2018-09-07 15:06:59 +04:00
|
|
|
global $DB;
|
|
|
|
|
|
|
|
$conditions = array();
|
2018-10-22 03:14:31 +04:00
|
|
|
foreach ($events as $event_name) {
|
|
|
|
$conditions[] = array('name' => $event_name, 'serviceid' => $service_id);
|
2018-09-07 15:06:59 +04:00
|
|
|
}
|
2017-11-23 21:55:40 +04:00
|
|
|
|
2018-10-22 02:17:12 +04:00
|
|
|
$DB->insert_records(LW_TABLE_EVENTS, $conditions);
|
2017-12-21 09:59:14 +04:00
|
|
|
}
|
2018-10-22 02:17:12 +04:00
|
|
|
}
|