aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-09-07 14:06:59 +0300
committerValentin Popov <info@valentineus.link>2018-09-07 14:27:59 +0300
commit7d2e288b709753b101279e0f972349dba4220b6e (patch)
tree55fe8eb0d3cebe23f2a36fdad51fae1db47dcbc0
parentfa86c0329f077501d919121c2145fbca8d2f93c5 (diff)
downloadlocal_webhooks-7d2e288b709753b101279e0f972349dba4220b6e.tar.xz
local_webhooks-7d2e288b709753b101279e0f972349dba4220b6e.zip
Realization of the basic functionality
* Function of adding a service to the database. * Function of updating the service in the database. * Function of removing the service from the database. Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--lib.php366
1 files changed, 71 insertions, 295 deletions
diff --git a/lib.php b/lib.php
index aad29d2..e936738 100644
--- a/lib.php
+++ b/lib.php
@@ -17,322 +17,98 @@
/**
* This file contains the functions used by the plugin.
*
- * @package local_webhooks
- * @copyright 2017 "Valentin Popov" <info@valentineus.link>
+ * @copyright 2018 'Valentin Popov' <info@valentineus.link>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @package local_webhooks
*/
defined("MOODLE_INTERNAL") || die();
-define("LOCAL_WEBHOOKS_TABLE_SERVICES", "local_webhooks_service");
-define("LOCAL_WEBHOOKS_TABLE_EVENTS", "local_webhooks_events");
-
-require_once(__DIR__ . "/locallib.php");
-
-/**
- * Change the status of the service.
- *
- * @param number $serviceid Service identifier
- * @return boolean The result of the operation
- */
-function local_webhooks_change_status($serviceid) {
- global $DB;
-
- /* Checks arguments */
- if (empty($serviceid)) {
- print_error("missingparam", "error", null, "serviceid");
- }
-
- /* Gets the current status */
- $status = $DB->get_field(LOCAL_WEBHOOKS_TABLE_SERVICES, "status", array("id" => $serviceid), IGNORE_MISSING);
-
- /* Changes the status to the opposite */
- $result = $DB->set_field(LOCAL_WEBHOOKS_TABLE_SERVICES, "status", !boolval($status), array("id" => $serviceid));
-
- /* Clears the cache */
- local_webhooks_cache_reset();
-
- return $result;
-}
-
-/**
- * Get the service record from the database.
- *
- * @param number $serviceid Service identifier
- * @return object Service data
- */
-function local_webhooks_get_record($serviceid) {
- global $DB;
-
- /* Checks arguments */
- if (empty($serviceid)) {
- print_error("missingparam", "error", null, "serviceid");
- }
-
- /* Loads service data */
- $record = $DB->get_record(LOCAL_WEBHOOKS_TABLE_SERVICES, array("id" => $serviceid), "*", IGNORE_MISSING);
-
- if (!empty($record)) {
- /* Loads service events */
- $record->events = local_webhooks_get_list_events_for_service($serviceid);
- }
-
- return $record;
-}
-
-/**
- * Get a list of services from the database.
- *
- * @param number $limitfrom Start position
- * @param number $limitnum End position
- * @param array $conditions List of conditions
- * @return array List of services
- */
-function local_webhooks_get_list_records($limitfrom = 0, $limitnum = 0, $conditions = array()) {
- global $DB;
-
- /* Checks for the presence of a cache */
- $cachename = crc32($limitfrom . $limitnum . serialize($conditions));
- if (is_array($records = local_webhooks_cache_get($cachename))) {
- return $records;
- }
-
- /* Loads a list of services */
- $rs = $DB->get_recordset(LOCAL_WEBHOOKS_TABLE_SERVICES, $conditions, "id", "*", $limitfrom, $limitnum);
- $records = array();
-
- foreach ($rs as $record) {
- /* Loads a list of service events */
- $record->events = local_webhooks_get_list_events_for_service($record->id);
- $records[] = $record;
- }
-
- $rs->close();
-
- /* Saves the result in the cache */
- local_webhooks_cache_set($cachename, $records);
-
- return $records;
-}
+define("LW_TABLE_SERVICES", "local_webhooks_service");
+define("LW_TABLE_EVENTS", "local_webhooks_events");
/**
- * Get a list of services associated with the event.
+ * Class local_webhooks_api
*
- * @param string $eventname Event name
- * @param number $limitfrom Start position
- * @param number $limitnum End position
- * @return array Search results
+ * @copyright 2018 'Valentin Popov' <info@valentineus.link>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ * @package local_webhooks
*/
-function local_webhooks_get_list_records_by_event($eventname, $limitfrom = 0, $limitnum = 0) {
- global $DB;
-
- /* Checks arguments */
- if (empty($eventname)) {
- print_error("missingparam", "error", null, "eventname");
- }
-
- /* Checks for the presence of a cache */
- $cachename = crc32($limitnum . $limitfrom . $eventname);
- if (is_array($records = local_webhooks_cache_get($cachename))) {
- return $records;
- }
-
- /* Loads the list of active events */
- $rs = $DB->get_recordset(LOCAL_WEBHOOKS_TABLE_EVENTS, array("name" => $eventname, "status" => true), "id", "*", $limitfrom, $limitnum);
- $result = array();
-
- /* Loads services */
- foreach ($rs as $event) {
- /* Loads only the active service */
- if ($record = $DB->get_record(LOCAL_WEBHOOKS_TABLE_SERVICES, array("id" => $event->serviceid, "status" => true), "*", IGNORE_MISSING)) {
- $result[] = $record;
+class local_webhooks_api {
+ /**
+ * Create service data in the database.
+ *
+ * @param array $service Data to the service
+ * @return int Service ID
+ */
+ public static function create_service($service = array()) {
+ global $DB;
+
+ if (!is_array($service) || empty($service)) {
+ print_error("unknowparamtype", "error", null, "service");
}
- }
-
- $rs->close();
-
- /* Saves the result in the cache */
- local_webhooks_cache_set($cachename, $result);
- return $result;
-}
-
-/**
- * Get a system list of registered events.
- *
- * @return array System list of events
- */
-function local_webhooks_get_list_events() {
- return report_eventlist_list_generator::get_all_events_list(true);
-}
-
-/**
- * Create an entry in the database.
- *
- * @param object $record
- * @return number
- */
-function local_webhooks_create_record($record) {
- global $DB;
+ $serviceId = $DB->insert_record(LW_TABLE_SERVICES, $service, true, false);
+ if ($serviceId && is_array($service["events"]) && !empty($service["events"])) {
+ self::insert_events($service["events"], $serviceId);
+ }
- if (empty($record->events)) {
- $record->events = array();
+ return (int) $serviceId;
}
- /* Adding entries */
- $transaction = $DB->start_delegated_transaction();
- $serviceid = $DB->insert_record(LOCAL_WEBHOOKS_TABLE_SERVICES, $record, true, false);
- local_webhooks_insert_events_for_service($serviceid, $record->events);
- $transaction->allow_commit();
-
- /* Clear the plugin cache */
- local_webhooks_cache_reset();
-
- /* Event notification */
- local_webhooks_events::service_added($serviceid);
-
- return $serviceid;
-}
-
-/**
- * Update the record in the database.
- *
- * @param object $record
- * @return boolean
- */
-function local_webhooks_update_record($record) {
- global $DB;
-
- if (empty($record->id)) {
- print_error("missingparam", "error", null, "id");
- }
+ /**
+ * Delete the service data from the database.
+ *
+ * @param int $serviceId Service ID
+ * @return bool Execution result
+ */
+ public static function delete_service($serviceId = 0) {
+ global $DB;
+
+ if (!is_numeric($serviceId) || empty($serviceId)) {
+ print_error("unknowparamtype", "error", null, "serviceId");
+ }
- if (empty($record->events)) {
- $record->events = array();
+ $DB->delete_records(LW_TABLE_EVENTS, array("serviceid" => $serviceId));
+ return $DB->delete_records(LW_TABLE_SERVICES, array("id" => $serviceId));
}
- /* Update records */
- $transaction = $DB->start_delegated_transaction();
- $result = $DB->update_record(LOCAL_WEBHOOKS_TABLE_SERVICES, $record, false);
- local_webhooks_insert_events_for_service($record->id, $record->events);
- $transaction->allow_commit();
-
- /* Clear the plugin cache */
- local_webhooks_cache_reset();
-
- /* Event notification */
- local_webhooks_events::service_updated($record->id);
-
- return boolval($result);
-}
-
-/**
- * Delete the record from the database.
- *
- * @param number $serviceid
- * @return boolean
- */
-function local_webhooks_delete_record($serviceid) {
- global $DB;
-
- $result = $DB->delete_records(LOCAL_WEBHOOKS_TABLE_SERVICES, array("id" => $serviceid));
- local_webhooks_delete_events_for_service($serviceid);
-
- /* Clear the plugin cache */
- local_webhooks_cache_reset();
-
- /* Event notification */
- local_webhooks_events::service_deleted($serviceid);
-
- return boolval($result);
-}
-
-/**
- * Delete all records from the database.
- *
- * @return boolean
- */
-function local_webhooks_delete_all_records() {
- global $DB;
-
- $result = $DB->delete_records(LOCAL_WEBHOOKS_TABLE_SERVICES, null);
- $DB->delete_records(LOCAL_WEBHOOKS_TABLE_EVENTS, null);
-
- /* Clear the plugin cache */
- local_webhooks_cache_reset();
-
- /* Event notification */
- local_webhooks_events::service_deletedall();
-
- return boolval($result);
-}
+ /**
+ * Update the service data in the database.
+ *
+ * @param array $service Data to the service
+ * @return bool Execution result
+ */
+ public static function update_service($service = array()) {
+ global $DB;
+
+ if (!is_array($service) || empty($service) || empty($service["id"])) {
+ print_error("unknowparamtype", "error", null, "service");
+ }
-/**
- * Create a backup.
- *
- * @return string
- */
-function local_webhooks_create_backup() {
- $records = local_webhooks_get_list_records();
- $result = false;
+ $result = $DB->update_record(LW_TABLE_SERVICES, $service, false);
+ $DB->delete_records(LW_TABLE_EVENTS, array("serviceid" => $service["id"]));
+ if ($result && is_array($service["events"]) && !empty($service["events"])) {
+ self::insert_events($service["events"], $service["id"]);
+ }
- if ($serialize = serialize($records)) {
- $result = gzcompress($serialize, 9);
+ return $result;
}
- /* Event notification */
- local_webhooks_events::backup_performed();
-
- return base64_encode($result);
-}
-
-/**
- * Restore from a backup.
- *
- * @param string $data
- */
-function local_webhooks_restore_backup($backup) {
- global $DB;
-
- $serialize = gzuncompress(base64_decode($backup));
- $records = unserialize($serialize);
-
- $transaction = $DB->start_delegated_transaction();
- local_webhooks_delete_all_records();
+ /**
+ * Save the list of events to the database.
+ *
+ * @param array $events List of events
+ * @param int $serviceId Service ID
+ */
+ private static function insert_events($events = array(), $serviceId = 0) {
+ global $DB;
+
+ $conditions = array();
+ foreach ($events as $eventName) {
+ $conditions[] = array("name" => $eventName, "serviceid" => $serviceId);
+ }
- foreach ($records as $record) {
- local_webhooks_create_record($record);
+ $DB->insert_records(LW_TABLE_EVENTS, $conditions);
}
-
- $transaction->allow_commit();
-
- /* Event notification */
- local_webhooks_events::backup_restored();
-
- return true;
-}
-
-/**
- * Send the event remotely to the service.
- *
- * @param object $event
- * @param object $record
- * @return array
- */
-function local_webhooks_send_request($event, $record) {
- global $CFG;
-
- $event["host"] = parse_url($CFG->wwwroot)["host"]; /* @todo: Fucking shit */
- $event["token"] = $record->token;
- $event["extra"] = $record->other;
-
- $curl = new curl();
- $curl->setHeader(array("Content-Type: application/" . $record->type));
- $curl->post($record->url, json_encode($event));
- $response = $curl->getResponse();
-
- /* Event notification */
- local_webhooks_events::response_answer($record->id, $response);
-
- return $response;
}