aboutsummaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-10-25 07:46:07 +0300
committerValentin Popov <info@valentineus.link>2017-10-25 07:46:07 +0300
commit8ebb1381c993c7174eaa2aff9587f98239c0a954 (patch)
tree817757f761580a253af37cdea386831f3cf4cea8 /classes
parented34626ef69805cb543e8765e0bbbc62f163d8cb (diff)
downloadlocal_webhooks-8ebb1381c993c7174eaa2aff9587f98239c0a954.tar.xz
local_webhooks-8ebb1381c993c7174eaa2aff9587f98239c0a954.zip
Adaptation of the handler under new conditions
Diffstat (limited to 'classes')
-rw-r--r--classes/events.php61
1 files changed, 55 insertions, 6 deletions
diff --git a/classes/events.php b/classes/events.php
index bf77d4d..5dfb0cf 100644
--- a/classes/events.php
+++ b/classes/events.php
@@ -24,19 +24,68 @@
namespace local_webhooks;
-defined('MOODLE_INTERNAL') || die();
+defined("MOODLE_INTERNAL") || die();
+/**
+ * Defines how to work with events.
+ *
+ * @copyright 2017 "Valentin Popov" <info@valentineus.link>
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
class events {
+ /**
+ * External handler.
+ *
+ * @param object $event
+ */
public static function handler($event) {
- $enabled = boolval(get_config('local_webhooks', 'enabled'));
- $url = get_config('local_webhooks', 'url');
+ $config = get_config("local_webhooks");
- if ($enabled && !empty($url)) {
+ if (boolval($config->enable)) {
$data = $event->get_data();
- $json = json_encode($data);
+ self::transmitter($data);
+ }
+ }
+
+ /**
+ * Transmitter, processing event and services.
+ *
+ * @param array $data
+ */
+ private static function transmitter($data) {
+ global $DB;
+ $callbacks = $DB->get_recordset("local_webhooks_service");
+
+ if ($callbacks->valid()) {
+ foreach ($callbacks as $callback) {
+ self::send($data, $callback);
+ }
+ }
+
+ $callbacks->close();
+ }
+
+ /**
+ * Sending data to the node.
+ *
+ * @param array $data
+ * @param object $callback
+ */
+ private static function send($data, $callback) {
+ if ($callback->enable) {
$curl = new curl();
- $curl::request($url, $json);
+ $package = self::packup($data);
+ $curl::request($callback->url, $package);
}
}
+
+ /**
+ * Packs the data for transmission.
+ *
+ * @param array $data
+ */
+ private static function packup($data) {
+ return json_encode($data);
+ }
} \ No newline at end of file