-
Notifications
You must be signed in to change notification settings - Fork 57
/
courserequest.php
122 lines (102 loc) · 4.48 KB
/
courserequest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?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/>.
/**
* A page that allows authorised users to make a course request based on a Microsoft Team.
*
* @package local_o365
* @copyright Enovation Solutions Ltd. {@link https://enovation.ie}
* @author Patryk Mroczko <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once(__DIR__ . '/../../config.php');
require_once($CFG->dirroot . '/course/lib.php');
use local_o365\feature\courserequest\main;
use local_o365\form\courserequestform;
// Where we came from. Used in a number of redirects.
$url = new moodle_url('/local/o365/courserequest.php');
$return = optional_param('return', null, PARAM_ALPHANUMEXT);
$categoryid = optional_param('category', null, PARAM_INT);
if ($return === 'management') {
$url->param('return', $return);
$returnurl = new moodle_url('/course/management.php', ['categoryid' => $CFG->defaultrequestcategory]);
} else {
$returnurl = new moodle_url('/course/index.php');
}
$PAGE->set_url($url);
// Check permissions.
require_login(null, false);
if (isguestuser()) {
throw new moodle_exception('guestsarenotallowed', '', $returnurl);
}
if (empty($CFG->enablecourserequests)) {
throw new moodle_exception('courserequestdisabled', '', $returnurl);
}
if ($CFG->lockrequestcategory) {
// Course request category is locked, user will always request in the default request category.
$categoryid = null;
} else if (!$categoryid) {
// Category selection is enabled but category is not specified.
// Find a category where user has capability to request courses (preferably the default category).
$list = core_course_category::make_categories_list('moodle/course:request');
$categoryid = array_key_exists($CFG->defaultrequestcategory, $list) ? $CFG->defaultrequestcategory : key($list);
}
$context = context_coursecat::instance($categoryid ?: $CFG->defaultrequestcategory);
$PAGE->set_context($context);
require_capability('moodle/course:request', $context);
// Set up the form.
$data = $categoryid ? (object) ['category' => $categoryid] : null;
$data = course_request::prepare($data);
$requestform = new courserequestform($url);
$requestform->set_data($data);
$strtitle = get_string('courserequest_title', 'local_o365');
$PAGE->set_title($strtitle);
$coursecategory = core_course_category::get($categoryid, MUST_EXIST, true);
$PAGE->set_heading($coursecategory->get_formatted_name());
$PAGE->set_primary_active_tab('home');
$PAGE->set_secondary_navigation(false);
// Standard form processing if statement.
if ($requestform->is_cancelled()) {
redirect($returnurl);
} else if ($data = $requestform->get_data()) {
$apiclient = main::get_unified_api();
if (empty($apiclient)) {
throw new moodle_exception('courserequest_graphapi_disabled', 'local_o365', $returnurl);
}
$courserequestmain = new main($apiclient);
$teamdata = $courserequestmain->get_user_team_details_by_team_oid($data->team);
if (!$teamdata) {
throw new moodle_exception('courserequest_invalid_team', 'local_o365', $returnurl);
}
$data->reason .= get_string('courserequest_customrequestnote', 'local_o365',
['name' => $teamdata['name'], 'url' => $teamdata['url']]);
$request = course_request::create($data);
if (!$courserequestmain->save_custom_course_request_data($request, $teamdata)) {
throw new moodle_exception('courserequestfailed', '', $returnurl);
}
// And redirect back to the course listing.
notice(get_string('courserequestsuccess'), $returnurl);
}
$categoryurl = new moodle_url('/course/index.php');
if ($categoryid) {
$categoryurl->param('categoryid', $categoryid);
}
navigation_node::override_active_url($categoryurl);
$PAGE->navbar->add($strtitle);
echo $OUTPUT->header();
echo $OUTPUT->heading($strtitle);
// Show the request form.
$requestform->display();
echo $OUTPUT->footer();