aboutsummaryrefslogtreecommitdiff
path: root/classes/handler.php
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2018-09-09 02:23:12 +0300
committerValentin Popov <info@valentineus.link>2018-09-09 02:23:12 +0300
commit2194bc4a019fcc1de191c76ab8a905b04b029292 (patch)
treed44b5c17dbd2e6e3d51c6eb40aa1ed080c26dd5d /classes/handler.php
parent5884a58f544300f6674dc5bdcadfc16e8109749e (diff)
downloadlocal_webhooks-2194bc4a019fcc1de191c76ab8a905b04b029292.tar.xz
local_webhooks-2194bc4a019fcc1de191c76ab8a905b04b029292.zip
Refactoring the event handler
Event processing is asynchronous. For asynchronous processing, events are added to the job queue. Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'classes/handler.php')
-rw-r--r--classes/handler.php55
1 files changed, 0 insertions, 55 deletions
diff --git a/classes/handler.php b/classes/handler.php
deleted file mode 100644
index 3bc69cf..0000000
--- a/classes/handler.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?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/>.
-
-/**
- * The event handler.
- *
- * @package local_webhooks
- * @copyright 2017 "Valentin Popov" <info@valentineus.link>
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
-
-namespace local_webhooks;
-
-defined("MOODLE_INTERNAL") || die();
-
-require_once(__DIR__ . "/../lib.php");
-
-/**
- * Defines event handlers.
- *
- * @copyright 2017 "Valentin Popov" <info@valentineus.link>
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- */
-class handler {
- /**
- * External handler.
- *
- * @param object $event
- */
- public static function events($event) {
- /* Gets the information about the event */
- $data = $event->get_data();
-
- /* Gets a list of involved services */
- if (!empty($records = local_webhooks_get_list_records_by_event($data["eventname"]))) {
- foreach ($records as $record) {
- /* Sends an alert */
- local_webhooks_send_request($data, $record);
- }
- }
- }
-} \ No newline at end of file