-
Notifications
You must be signed in to change notification settings - Fork 55
/
editattendees.php
318 lines (286 loc) · 13.4 KB
/
editattendees.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
<?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/>.
/**
* Copyright (C) 2007-2011 Catalyst IT (http://www.catalyst.net.nz)
* Copyright (C) 2011-2013 Totara LMS (http://www.totaralms.com)
* Copyright (C) 2014 onwards Catalyst IT (http://www.catalyst-eu.net)
*
* @package mod
* @subpackage facetoface
* @copyright 2014 onwards Catalyst IT <http://www.catalyst-eu.net>
* @author Stacey Walker <[email protected]>
* @author Alastair Munro <[email protected]>
* @author Aaron Barnes <[email protected]>
* @author Francois Marier <[email protected]>
*/
require_once(dirname(dirname(dirname(__FILE__))) . '/config.php');
require_once('lib.php');
define('MAX_USERS_PER_PAGE', 5000);
$s = required_param('s', PARAM_INT); // Facetoface session ID.
$add = optional_param('add', 0, PARAM_BOOL);
$remove = optional_param('remove', 0, PARAM_BOOL);
$showall = optional_param('showall', 0, PARAM_BOOL);
$searchtext = optional_param('searchtext', '', PARAM_TEXT); // Search string.
$suppressemail = optional_param('suppressemail', false, PARAM_BOOL); // Send email notifications.
$previoussearch = optional_param('previoussearch', 0, PARAM_BOOL);
$addtoallsessions = optional_param('addtoallsessions', 0, PARAM_BOOL);
$backtoallsessions = optional_param('backtoallsessions', 0, PARAM_INT); // Facetoface activity to go back to.
if (!$session = facetoface_get_session($s)) {
throw new moodle_exception('error:incorrectcoursemodulesession', 'facetoface');
}
if (!$facetoface = $DB->get_record('facetoface', ['id' => $session->facetoface])) {
throw new moodle_exception('error:incorrectfacetofaceid', 'facetoface');
}
if (!$course = $DB->get_record('course', ['id' => $facetoface->course])) {
throw new moodle_exception('error:coursemisconfigured', 'facetoface');
}
if (!$cm = get_coursemodule_from_instance('facetoface', $facetoface->id, $course->id)) {
throw new moodle_exception('error:incorrectcoursemodule', 'facetoface');
}
// Check essential permissions.
require_course_login($course);
$context = context_course::instance($course->id);
require_capability('mod/facetoface:viewattendees', $context);
// Get some language strings.
$strsearch = get_string('search');
$strshowall = get_string('showall');
$strsearchresults = get_string('searchresults');
$strfacetofaces = get_string('modulenameplural', 'facetoface');
$strfacetoface = get_string('modulename', 'facetoface');
$errors = [];
// Get the user_selector we will need.
$potentialuserselector = new facetoface_candidate_selector('addselect', [
'sessionid' => $session->id,
'courseid' => $course->id,
'accesscontext' => $context,
]);
$existinguserselector = new facetoface_existing_selector('removeselect', [
'sessionid' => $session->id,
'accesscontext' => $context,
]);
// Process incoming user assignments.
if (optional_param('add', false, PARAM_BOOL) && confirm_sesskey()) {
require_capability('mod/facetoface:addattendees', $context);
$userstoassign = $potentialuserselector->get_selected_users();
if (!empty($userstoassign)) {
foreach ($userstoassign as $adduser) {
if (!$adduser = clean_param($adduser->id, PARAM_INT)) {
continue; // Invalid userid.
}
// Make sure that the user is enroled in the course.
if (!has_capability('moodle/course:view', $context, $adduser)) {
$user = $DB->get_record('user', ['id' => $adduser]);
// Make sure that the user is enroled in the course.
if (!is_enrolled($context, $user)) {
$defaultroleid = null;
// Get default role ID for manual enrollment.
$conditions = ['courseid' => $course->id, 'enrol' => 'manual'];
$defaultroleid = $DB->get_field('enrol', 'roleid', $conditions, IGNORE_MISSING);
if (!enrol_try_internal_enrol($course->id, $user->id, $defaultroleid)) {
$errors[] = get_string('error:enrolmentfailed', 'facetoface', fullname($user));
$errors[] = get_string('error:addattendee', 'facetoface', fullname($user));
continue; // Don't sign the user up.
}
}
}
$usernamefields = facetoface_get_all_user_name_fields(true);
if (facetoface_get_user_submissions($facetoface->id, $adduser)
&& $facetoface->signuptype != MOD_FACETOFACE_SIGNUP_MULTIPLE) {
$erruser = $DB->get_record('user', ['id' => $adduser], "id, {$usernamefields}");
$errors[] = get_string('error:addalreadysignedupattendee', 'facetoface', fullname($erruser));
} else {
$now = time();
$addtofuturesessions = $addtoallsessions && $facetoface->signuptype == MOD_FACETOFACE_SIGNUP_MULTIPLE;
$sessions = $addtofuturesessions ? facetoface_get_future_sessions($facetoface->id) : [$session];
foreach ($sessions as $session) {
if (!facetoface_session_has_capacity($session, $context)) {
$errors[] = get_string('full', 'facetoface');
break; // No point in trying to add other people.
}
// Check if we are waitlisting or booking.
if ($session->datetimeknown) {
$status = MDL_F2F_STATUS_BOOKED;
} else {
$status = MDL_F2F_STATUS_WAITLISTED;
}
if (!facetoface_user_signup($session, $facetoface, $course, '', MDL_F2F_BOTH,
$status, $adduser, !$suppressemail)) {
$erruser = $DB->get_record('user', ['id' => $adduser], "id, {$usernamefields}");
$errors[] = get_string('error:addattendee', 'facetoface', fullname($erruser));
}
}
}
}
$potentialuserselector->invalidate_selected_users();
$existinguserselector->invalidate_selected_users();
}
}
// Process removing user assignments from session.
if (optional_param('remove', false, PARAM_BOOL) && confirm_sesskey()) {
require_capability('mod/facetoface:removeattendees', $context);
$userstoremove = $existinguserselector->get_selected_users();
if (!empty($userstoremove)) {
foreach ($userstoremove as $removeuser) {
if (!$removeuser = clean_param($removeuser->id, PARAM_INT)) {
continue; // Invalid userid.
}
if (facetoface_user_cancel($session, $removeuser, true, $cancelerr)) {
// Notify the user of the cancellation if the session hasn't started yet.
$timenow = time();
if (!$suppressemail && !facetoface_has_session_started($session, $timenow)) {
facetoface_send_cancellation_notice($facetoface, $session, $removeuser);
}
} else {
$errors[] = $cancelerr;
$usernamefields = facetoface_get_all_user_name_fields(true);
$erruser = $DB->get_record('user', ['id' => $removeuser], "id, {$usernamefields}");
$errors[] = get_string('error:removeattendee', 'facetoface', fullname($erruser));
}
}
$potentialuserselector->invalidate_selected_users();
$existinguserselector->invalidate_selected_users();
// Update attendees.
facetoface_update_attendees($session);
}
}
// Main page.
$pagetitle = format_string($facetoface->name);
$PAGE->set_cm($cm);
$PAGE->set_url('/mod/facetoface/editattendees.php', ['s' => $s, 'backtoallsessions' => $backtoallsessions]);
$PAGE->set_title($pagetitle);
$PAGE->set_heading($course->fullname);
echo $OUTPUT->header();
echo $OUTPUT->box_start();
echo $OUTPUT->heading(get_string('addremoveattendees', 'facetoface'));
// Create user_selector form.
$out = html_writer::start_tag('form', ['id' => 'assignform', 'method' => 'post', 'action' => $PAGE->url]);
$out .= html_writer::start_tag('div');
$out .= html_writer::empty_tag('input', ['type' => 'hidden', 'name' => "previoussearch", 'value' => $previoussearch]);
$out .= html_writer::empty_tag('input', ['type' => 'hidden', 'name' => "backtoallsessions", 'value' => $backtoallsessions]);
$out .= html_writer::empty_tag('input', ['type' => 'hidden', 'name' => "sesskey", 'value' => sesskey()]);
$table = new html_table();
$table->attributes['class'] = "generaltable generalbox boxaligncenter";
$cells = [];
if ($facetoface->signuptype == MOD_FACETOFACE_SIGNUP_MULTIPLE) {
$content = html_writer::checkbox(
'addtoallsessions',
1,
0,
get_string('addtoallsessions', 'facetoface'),
['id' => 'addtoallsessions']
);
$content .= $OUTPUT->help_icon('addtoallsessions', 'facetoface');
$cell = new html_table_cell($content);
$cell->attributes['colspan'] = '3';
$table->data[] = new html_table_row([$cell]);
}
$content = html_writer::checkbox('suppressemail', 1, 0, get_string('suppressemail', 'facetoface'),
['id' => 'suppressemail']);
$content .= $OUTPUT->help_icon('suppressemail', 'facetoface');
$cell = new html_table_cell($content);
$cell->attributes['id'] = 'backcell';
$cell->attributes['colspan'] = '3';
$table->data[] = new html_table_row([$cell]);
$content = html_writer::start_tag('p') . html_writer::tag('label', get_string('attendees', 'facetoface'),
['for' => 'removeselect']) . html_writer::end_tag('p');
$content .= $existinguserselector->display(true);
$cell = new html_table_cell($content);
$cell->attributes['id'] = 'existingcell';
$cells[] = $cell;
$content = html_writer::tag('div', html_writer::empty_tag('input',
[
'type' => 'submit', 'id' => 'add', 'name' => 'add', 'title' => get_string('add'),
'value' => $OUTPUT->larrow().' '.get_string('add'),
]), ['id' => 'addcontrols']);
$content .= html_writer::tag('div', html_writer::empty_tag('input',
[
'type' => 'submit', 'id' => 'remove', 'name' => 'remove', 'title' => get_string('remove'),
'value' => $OUTPUT->rarrow().' '.get_string('remove'),
]), ['id' => 'removecontrols']);
$cell = new html_table_cell($content);
$cell->attributes['id'] = 'buttonscell';
$cells[] = $cell;
$content = html_writer::start_tag('p') . html_writer::tag('label',
get_string('potentialattendees', 'facetoface'), ['for' => 'addselect']) . html_writer::end_tag('p');
$content .= $potentialuserselector->display(true);
$cell = new html_table_cell($content);
$cell->attributes['id'] = 'potentialcell';
$cells[] = $cell;
$table->data[] = new html_table_row($cells);
$out .= html_writer::table($table);
// Get all signed up non-attendees.
$nonattendees = 0;
$usernamefields = facetoface_get_all_user_name_fields(true, 'u');
$nonattendeesrs = $DB->get_recordset_sql(
"SELECT
u.id,
{$usernamefields},
u.email,
ss.statuscode
FROM
{facetoface_sessions} s
JOIN
{facetoface_signups} su
ON s.id = su.sessionid
JOIN
{facetoface_signups_status} ss
ON su.id = ss.signupid
JOIN
{user} u
ON u.id = su.userid
WHERE
s.id = ?
AND ss.superceded != 1
AND ss.statuscode = ?
ORDER BY
u.lastname, u.firstname", [$session->id, MDL_F2F_STATUS_REQUESTED]
);
$table = new html_table();
$table->head = [get_string('name'), get_string('email'), get_string('status')];
foreach ($nonattendeesrs as $user) {
$data = [];
$data[] = new html_table_cell(fullname($user));
$data[] = new html_table_cell($user->email);
$data[] = new html_table_cell(get_string('status_' . facetoface_get_status($user->statuscode), 'facetoface'));
$row = new html_table_row($data);
$table->data[] = $row;
$nonattendees++;
}
$nonattendeesrs->close();
if ($nonattendees) {
$out .= html_writer::empty_tag('br');
$out .= $OUTPUT->heading(get_string('unapprovedrequests', 'facetoface') . ' (' . $nonattendees . ')');
$out .= html_writer::table($table);
}
$out .= html_writer::end_tag('div') . html_writer::end_tag('form');
echo $out;
if (!empty($errors)) {
$msg = html_writer::start_tag('p');
foreach ($errors as $e) {
$msg .= $e . html_writer::empty_tag('br');
}
$msg .= html_writer::end_tag('p');
echo $OUTPUT->box_start('center');
echo $OUTPUT->notification($msg);
echo $OUTPUT->box_end();
}
// Bottom of the page links.
echo html_writer::start_tag('p');
$url = new moodle_url('/mod/facetoface/attendees.php', ['s' => $session->id, 'backtoallsessions' => $backtoallsessions]);
echo html_writer::link($url, get_string('goback', 'facetoface'));
echo html_writer::end_tag('p');
echo $OUTPUT->box_end();
echo $OUTPUT->footer($course);