1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Callbacks for message_airnotifier.
|
|
|
19 |
*
|
|
|
20 |
* @package message_airnotifier
|
|
|
21 |
* @category external
|
|
|
22 |
* @copyright 2020 Moodle Pty Ltd <juan@moodle.com>
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
* @since Moodle 3.9
|
|
|
25 |
*/
|
|
|
26 |
|
|
|
27 |
/**
|
|
|
28 |
* Callback for when a site is first registered. The function generates an Airnotifier accesskey for the new site.
|
|
|
29 |
*
|
|
|
30 |
* @param int $registrationid the new registration id (registration_hubs table)
|
|
|
31 |
*/
|
|
|
32 |
function message_airnotifier_post_site_registration_confirmed(int $registrationid) {
|
|
|
33 |
global $CFG;
|
|
|
34 |
|
|
|
35 |
// Do nothing if the site already has an Airnotifier access key configured.
|
|
|
36 |
if (!empty($CFG->airnotifieraccesskey)) {
|
|
|
37 |
return;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
$manager = new message_airnotifier_manager();
|
|
|
41 |
|
|
|
42 |
// Do nothing for custom Airnotifier instances.
|
|
|
43 |
if (strpos($CFG->airnotifierurl, $manager::AIRNOTIFIER_PUBLICURL) === false ) {
|
|
|
44 |
return;
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
if ($key = $manager->request_accesskey()) {
|
|
|
48 |
set_config('airnotifieraccesskey', $key);
|
|
|
49 |
}
|
|
|
50 |
}
|