Compare commits

...
9 Commits
Author SHA1 Message Date
Valentin Popov d4d105c018 Change version 2017-11-18 08:35:16 +04:00
Valentin Popov 3ea8f29329 Adding event calls 2017-11-18 08:34:23 +04:00
Valentin Popov c1077bc9c1 Service deletion event 2017-11-18 08:33:04 +04:00
Valentin Popov bc02d0dce2 Service update event 2017-11-18 08:32:03 +04:00
Valentin Popov 93d788f046 Service creation event 2017-11-18 08:30:38 +04:00
Valentin Popov 29c12fa971 Renaming an event 2017-11-18 08:29:21 +04:00
Valentin Popov 1e8cbe7f09 Recovery event 2017-11-18 08:26:49 +04:00
Valentin Popov ad07800be9 Backup event 2017-11-18 08:25:05 +04:00
Valentin Popov f28b408b1e Added hostname to the request 2017-11-18 07:34:38 +04:00
11 changed files with 364 additions and 5 deletions
+65
View File
@@ -0,0 +1,65 @@
<?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/>.
/**
* Registration of the system of events.
*
* @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\event;
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 backup_performed extends \core\event\base {
/**
* Init method.
*/
protected function init() {
$this->data["crud"] = "c";
$this->data["edulevel"] = self::LEVEL_OTHER;
$this->data["objecttable"] = "local_webhooks_service";
}
/**
* Return localised event name.
*/
public static function get_name() {
return new \lang_string("create", "moodle");
}
/**
* Returns description of what happened.
*/
public function get_description() {
return new \lang_string("backup", "moodle");
}
/**
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/managerservice.php");
}
}
+65
View File
@@ -0,0 +1,65 @@
<?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/>.
/**
* Registration of the system of events.
*
* @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\event;
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 backup_restored extends \core\event\base {
/**
* Init method.
*/
protected function init() {
$this->data["crud"] = "u";
$this->data["edulevel"] = self::LEVEL_OTHER;
$this->data["objecttable"] = "local_webhooks_service";
}
/**
* Return localised event name.
*/
public static function get_name() {
return new \lang_string("update", "moodle");
}
/**
* Returns description of what happened.
*/
public function get_description() {
return new \lang_string("backupfinished", "moodle");
}
/**
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/managerservice.php");
}
}
@@ -32,7 +32,7 @@ defined("MOODLE_INTERNAL") || die();
* @copyright 2017 "Valentin Popov" <info@valentineus.link> * @copyright 2017 "Valentin Popov" <info@valentineus.link>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/ */
class response_get extends \core\event\base { class response_answer extends \core\event\base {
/** /**
* Init method. * Init method.
*/ */
+65
View File
@@ -0,0 +1,65 @@
<?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/>.
/**
* Registration of the system of events.
*
* @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\event;
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 service_added extends \core\event\base {
/**
* Init method.
*/
protected function init() {
$this->data["crud"] = "c";
$this->data["edulevel"] = self::LEVEL_OTHER;
$this->data["objecttable"] = "local_webhooks_service";
}
/**
* Return localised event name.
*/
public static function get_name() {
return new \lang_string("create", "moodle");
}
/**
* Returns description of what happened.
*/
public function get_description() {
return new \lang_string("eventwebserviceservicecreated", "webservice");
}
/**
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/editservice.php", array("serviceid" => $this->objectid));
}
}
+65
View File
@@ -0,0 +1,65 @@
<?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/>.
/**
* Registration of the system of events.
*
* @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\event;
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 service_deleted extends \core\event\base {
/**
* Init method.
*/
protected function init() {
$this->data["crud"] = "d";
$this->data["edulevel"] = self::LEVEL_OTHER;
$this->data["objecttable"] = "local_webhooks_service";
}
/**
* Return localised event name.
*/
public static function get_name() {
return new \lang_string("deleted", "moodle");
}
/**
* Returns description of what happened.
*/
public function get_description() {
return new \lang_string("eventwebserviceservicedeleted", "webservice");
}
/**
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/editservice.php", array("serviceid" => $this->objectid));
}
}
+65
View File
@@ -0,0 +1,65 @@
<?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/>.
/**
* Registration of the system of events.
*
* @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\event;
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 service_updated extends \core\event\base {
/**
* Init method.
*/
protected function init() {
$this->data["crud"] = "u";
$this->data["edulevel"] = self::LEVEL_OTHER;
$this->data["objecttable"] = "local_webhooks_service";
}
/**
* Return localised event name.
*/
public static function get_name() {
return new \lang_string("update", "moodle");
}
/**
* Returns description of what happened.
*/
public function get_description() {
return new \lang_string("eventwebserviceserviceupdated", "webservice");
}
/**
* Get URL related to the action.
*/
public function get_url() {
return new \moodle_url("/local/webhooks/editservice.php", array("serviceid" => $this->objectid));
}
}
+6 -1
View File
@@ -71,6 +71,8 @@ class handler {
* @param object $callback * @param object $callback
*/ */
private static function handler_callback($data, $callback) { private static function handler_callback($data, $callback) {
global $CFG;
if (boolval($callback->enable)) { if (boolval($callback->enable)) {
$events = array(); $events = array();
if (!empty($callback->events)) { if (!empty($callback->events)) {
@@ -78,6 +80,9 @@ class handler {
} }
if (!empty($events[$data["eventname"]])) { if (!empty($events[$data["eventname"]])) {
$urlparse = parse_url($CFG->wwwroot);
$data["host"] = $urlparse['host'];
if (!empty($callback->token)) { if (!empty($callback->token)) {
$data["token"] = $callback->token; $data["token"] = $callback->token;
} }
@@ -118,7 +123,7 @@ class handler {
$status = $response["HTTP/1.1"]; $status = $response["HTTP/1.1"];
} }
$event = \local_webhooks\event\response_get::create( $event = \local_webhooks\event\response_answer::create(
array( array(
"context" => \context_system::instance(0), "context" => \context_system::instance(0),
"objectid" => $callback->id, "objectid" => $callback->id,
+11 -1
View File
@@ -71,9 +71,19 @@ if ($data = $mform->get_data()) {
if ($editing) { if ($editing) {
$data->id = $serviceid; $data->id = $serviceid;
$DB->update_record("local_webhooks_service", $data); $DB->update_record("local_webhooks_service", $data);
/* Run the event */
$event = \local_webhooks\event\service_updated::create(array("context" => $context, "objectid" => $data->id));
$event->trigger();
redirect($managerservice, new lang_string("eventwebserviceserviceupdated", "webservice")); redirect($managerservice, new lang_string("eventwebserviceserviceupdated", "webservice"));
} else { } else {
$DB->insert_record("local_webhooks_service", $data); $servicenewid = $DB->insert_record("local_webhooks_service", $data);
/* Run the event */
$event = \local_webhooks\event\service_added::create(array("context" => $context, "objectid" => $servicenewid));
$event->trigger();
redirect($managerservice, new lang_string("eventwebserviceservicecreated", "webservice")); redirect($managerservice, new lang_string("eventwebserviceservicecreated", "webservice"));
} }
} }
+15
View File
@@ -49,6 +49,11 @@ $PAGE->set_context($context);
/* Delete the service */ /* Delete the service */
if (boolval($deleteid) && confirm_sesskey()) { if (boolval($deleteid) && confirm_sesskey()) {
$DB->delete_records("local_webhooks_service", array("id" => $deleteid)); $DB->delete_records("local_webhooks_service", array("id" => $deleteid));
/* Run the event */
$event = \local_webhooks\event\service_deleted::create(array("context" => $context, "objectid" => $deleteid));
$event->trigger();
redirect($PAGE->url, new lang_string("eventwebserviceservicedeleted", "webservice")); redirect($PAGE->url, new lang_string("eventwebserviceservicedeleted", "webservice"));
} }
@@ -59,6 +64,11 @@ $callbacks = $DB->get_records_select("local_webhooks_service", null, null, $DB->
if (boolval($backupservices)) { if (boolval($backupservices)) {
$filecontent = base64_encode(gzcompress(serialize($callbacks), 9)); $filecontent = base64_encode(gzcompress(serialize($callbacks), 9));
$filename = "webhooks_" . date("U") . ".backup"; $filename = "webhooks_" . date("U") . ".backup";
/* Run the event */
$event = \local_webhooks\event\backup_performed::create(array("context" => $context, "objectid" => 0));
$event->trigger();
send_file($filecontent, $filename, 0, 0, true, true); send_file($filecontent, $filename, 0, 0, true, true);
} }
@@ -69,6 +79,11 @@ if (boolval($hideshowid) && confirm_sesskey()) {
if (!empty($callback)) { if (!empty($callback)) {
$callback->enable = !boolval($callback->enable); $callback->enable = !boolval($callback->enable);
$DB->update_record("local_webhooks_service", $callback); $DB->update_record("local_webhooks_service", $callback);
/* Run the event */
$event = \local_webhooks\event\service_updated::create(array("context" => $context, "objectid" => $hideshowid));
$event->trigger();
redirect($PAGE->url, new lang_string("eventwebserviceserviceupdated", "webservice")); redirect($PAGE->url, new lang_string("eventwebserviceserviceupdated", "webservice"));
} }
} }
+4
View File
@@ -56,6 +56,10 @@ if (boolval($data) && confirm_sesskey()) {
$DB->insert_record("local_webhooks_service", $callback); $DB->insert_record("local_webhooks_service", $callback);
} }
/* Run the event */
$event = \local_webhooks\event\backup_restored::create(array("context" => $context, "objectid" => 0));
$event->trigger();
redirect($managerservice, new lang_string("restorefinished", "moodle")); redirect($managerservice, new lang_string("restorefinished", "moodle"));
} }
+2 -2
View File
@@ -24,8 +24,8 @@
defined("MOODLE_INTERNAL") || die(); defined("MOODLE_INTERNAL") || die();
$plugin->release = "2.0.0 (Build: 2017111800)"; $plugin->release = "2.1.0 (Build: 2017111810)";
$plugin->version = 2017111800; $plugin->version = 2017111810;
$plugin->requires = 2016112900; $plugin->requires = 2016112900;
$plugin->component = "local_webhooks"; $plugin->component = "local_webhooks";
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;