This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
492 lines (430 loc) · 16.9 KB
/
lib.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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<?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/>.
/**
* SUAP enrolment plugin main library file.
*
* @package enrol_suap
* @copyright 2010 Petr Skoda {@link http://skodak.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
class enrol_suap_plugin extends enrol_plugin {
protected $lasternoller = null;
protected $lasternollerinstanceid = 0;
public function roles_protected() {
// Users may tweak the roles later.
return false;
}
public function allow_enrol(stdClass $instance) {
// Users with enrol cap may unenrol other users suaply suaply.
return true;
}
public function allow_unenrol(stdClass $instance) {
// Users with unenrol cap may unenrol other users suaply suaply.
return true;
}
public function allow_manage(stdClass $instance) {
// Users with manage cap may tweak period and status.
return true;
}
/**
* Returns link to suap enrol UI if exists.
* Does the access control tests automatically.
*
* @param stdClass $instance
* @return moodle_url
*/
public function get_suap_enrol_link($instance) {
$name = $this->get_name();
if ($instance->enrol !== $name) {
throw new coding_exception('invalid enrol instance!');
}
if (!enrol_is_enabled($name)) {
return NULL;
}
$context = context_course::instance($instance->courseid, MUST_EXIST);
if (!has_capability('enrol/suap:enrol', $context)) {
// Note: manage capability not used here because it is used for editing
// of existing enrolments which is not possible here.
return NULL;
}
return new moodle_url('/enrol/suap/manage.php', array('enrolid'=>$instance->id, 'id'=>$instance->courseid));
}
/**
* Return true if we can add a new instance to this course.
*
* @param int $courseid
* @return boolean
*/
public function can_add_instance($courseid) {
global $DB;
$context = context_course::instance($courseid, MUST_EXIST);
if (!has_capability('moodle/course:enrolconfig', $context) or !has_capability('enrol/suap:config', $context)) {
return false;
}
if ($DB->record_exists('enrol', array('courseid'=>$courseid, 'enrol'=>'suap'))) {
// Multiple instances not supported.
return false;
}
return true;
}
/**
* Returns edit icons for the page with list of instances.
* @param stdClass $instance
* @return array
*/
public function get_action_icons(stdClass $instance) {
global $OUTPUT;
$context = context_course::instance($instance->courseid);
$icons = array();
if (has_capability('enrol/suap:enrol', $context) or has_capability('enrol/suap:unenrol', $context)) {
$managelink = new moodle_url("/enrol/suap/manage.php", array('enrolid'=>$instance->id));
$icons[] = $OUTPUT->action_icon($managelink, new pix_icon('t/enrolusers', get_string('enrolusers', 'enrol_suap'), 'core', array('class'=>'iconsmall')));
}
$parenticons = parent::get_action_icons($instance);
$icons = array_merge($icons, $parenticons);
return $icons;
}
/**
* Add new instance of enrol plugin with default settings.
* @param stdClass $course
* @return int id of new instance, null if can not be created
*/
public function add_default_instance($course) {
$fields = array(
'status' => $this->get_config('status'),
'roleid' => $this->get_config('roleid', 0),
);
return $this->add_instance($course, $fields);
}
/**
* Add new instance of enrol plugin.
* @param stdClass $course
* @param array instance fields
* @return int id of new instance, null if can not be created
*/
public function add_instance($course, array $fields = NULL) {
global $DB;
if ($DB->record_exists('enrol', array('courseid'=>$course->id, 'enrol'=>'suap'))) {
// only one instance allowed, sorry
return NULL;
}
return parent::add_instance($course, $fields);
}
/**
* Update instance of enrol plugin.
* @param stdClass $instance
* @param stdClass $data modified instance fields
* @return boolean
*/
public function update_instance($instance, $data) {
global $DB;
// Delete all other instances, leaving only one.
if ($instances = $DB->get_records('enrol', array('courseid' => $instance->courseid, 'enrol' => 'suap'), 'id ASC')) {
foreach ($instances as $anotherinstance) {
if ($anotherinstance->id != $instance->id) {
$this->delete_instance($anotherinstance);
}
}
}
return parent::update_instance($instance, $data);
}
/**
* Returns a button to suaply enrol users through the suap enrolment plugin.
*
* By default the first suap enrolment plugin instance available in the course is used.
* If no suap enrolment instances exist within the course then false is returned.
*
* This function also adds a quickenrolment JS ui to the page so that users can be enrolled
* via AJAX.
*
* @param course_enrolment_manager $manager
* @return enrol_user_button
*/
public function get_suap_enrol_button(course_enrolment_manager $manager) {
global $CFG, $PAGE;
require_once($CFG->dirroot.'/cohort/lib.php');
static $called = false;
$instance = null;
foreach ($manager->get_enrolment_instances() as $tempinstance) {
if ($tempinstance->enrol == 'suap') {
if ($instance === null) {
$instance = $tempinstance;
}
}
}
if (empty($instance)) {
return false;
}
$link = $this->get_suap_enrol_link($instance);
if (!$link) {
return false;
}
$button = new enrol_user_button($link, get_string('enrolusers', 'enrol_suap'), 'get');
$button->class .= ' enrol_suap_plugin';
$button->primary = true;
$context = context_course::instance($instance->courseid);
$arguments = array('contextid' => $context->id);
if (!$called) {
$called = true;
// Calling the following more than once will cause unexpected results.
$PAGE->requires->js_call_amd('enrol_suap/quickenrolment', 'init', array($arguments));
}
return $button;
}
/**
* The suap plugin has several bulk operations that can be performed.
* @param course_enrolment_manager $manager
* @return array
*/
public function get_bulk_operations(course_enrolment_manager $manager) {
global $CFG;
require_once($CFG->dirroot.'/enrol/suap/locallib.php');
$context = $manager->get_context();
$bulkoperations = array();
if (has_capability("enrol/suap:manage", $context)) {
$bulkoperations['editselectedusers'] = new enrol_suap_editselectedusers_operation($manager, $this);
}
if (has_capability("enrol/suap:unenrol", $context)) {
$bulkoperations['deleteselectedusers'] = new enrol_suap_deleteselectedusers_operation($manager, $this);
}
return $bulkoperations;
}
/**
* Restore instance and map settings.
*
* @param restore_enrolments_structure_step $step
* @param stdClass $data
* @param stdClass $course
* @param int $oldid
*/
public function restore_instance(restore_enrolments_structure_step $step, stdClass $data, $course, $oldid) {
global $DB;
// There is only I suap enrol instance allowed per course.
if ($instances = $DB->get_records('enrol', array('courseid'=>$data->courseid, 'enrol'=>'suap'), 'id')) {
$instance = reset($instances);
$instanceid = $instance->id;
} else {
$instanceid = $this->add_instance($course, (array)$data);
}
$step->set_mapping('enrol', $oldid, $instanceid);
}
/**
* Restore user enrolment.
*
* @param restore_enrolments_structure_step $step
* @param stdClass $data
* @param stdClass $instance
* @param int $oldinstancestatus
* @param int $userid
*/
public function restore_user_enrolment(restore_enrolments_structure_step $step, $data, $instance, $userid, $oldinstancestatus) {
global $DB;
// Note: this is a bit tricky because other types may be converted to suap enrolments,
// and suap is restricted to one enrolment per user.
$ue = $DB->get_record('user_enrolments', array('enrolid'=>$instance->id, 'userid'=>$userid));
$enrol = false;
if ($ue and $ue->status == ENROL_USER_ACTIVE) {
// We do not want to restrict current active enrolments, let's kind of merge the times only.
// This prevents some teacher lockouts too.
if ($data->status == ENROL_USER_ACTIVE) {
if ($data->timestart > $ue->timestart) {
$data->timestart = $ue->timestart;
$enrol = true;
}
if ($data->timeend == 0) {
if ($ue->timeend != 0) {
$enrol = true;
}
} else if ($ue->timeend == 0) {
$data->timeend = 0;
} else if ($data->timeend < $ue->timeend) {
$data->timeend = $ue->timeend;
$enrol = true;
}
}
} else {
if ($instance->status == ENROL_INSTANCE_ENABLED and $oldinstancestatus != ENROL_INSTANCE_ENABLED) {
// Make sure that user enrolments are not activated accidentally,
// we do it only here because it is not expected that enrolments are migrated to other plugins.
$data->status = ENROL_USER_SUSPENDED;
}
$enrol = true;
}
if ($enrol) {
$this->enrol_user($instance, $userid, null, $data->timestart, $data->timeend, $data->status);
}
}
/**
* Restore role assignment.
*
* @param stdClass $instance
* @param int $roleid
* @param int $userid
* @param int $contextid
*/
public function restore_role_assignment($instance, $roleid, $userid, $contextid) {
// This is necessary only because we may migrate other types to this instance,
// we do not use component in suap or self enrol.
role_assign($roleid, $userid, $contextid, '', 0);
}
/**
* Restore user group membership.
* @param stdClass $instance
* @param int $groupid
* @param int $userid
*/
public function restore_group_member($instance, $groupid, $userid) {
global $CFG;
require_once("$CFG->dirroot/group/lib.php");
// This might be called when forcing restore as suap enrolments.
groups_add_member($groupid, $userid);
}
/**
* Is it possible to delete enrol instance via standard UI?
*
* @param object $instance
* @return bool
*/
public function can_delete_instance($instance) {
$context = context_course::instance($instance->courseid);
return has_capability('enrol/suap:config', $context);
}
/**
* Is it possible to hide/show enrol instance via standard UI?
*
* @param stdClass $instance
* @return bool
*/
public function can_hide_show_instance($instance) {
$context = context_course::instance($instance->courseid);
return has_capability('enrol/suap:config', $context);
}
/**
* Enrol all not enrolled cohort members into course via enrol instance.
*
* @param stdClass $instance
* @param int $cohortid
* @param int $roleid optional role id
* @param int $timestart 0 means unknown
* @param int $timeend 0 means forever
* @param int $status default to ENROL_USER_ACTIVE for new enrolments, no change by default in updates
* @param bool $recovergrades restore grade history
* @return int The number of enrolled cohort users
*/
public function enrol_cohort(stdClass $instance, $cohortid, $roleid = null, $timestart = 0, $timeend = 0, $status = null, $recovergrades = null) {
global $DB;
$context = context_course::instance($instance->courseid);
list($esql, $params) = get_enrolled_sql($context);
$sql = "SELECT cm.userid FROM {cohort_members} cm LEFT JOIN ($esql) u ON u.id = cm.userid ".
"WHERE cm.cohortid = :cohortid AND u.id IS NULL";
$params['cohortid'] = $cohortid;
$members = $DB->get_fieldset_sql($sql, $params);
foreach ($members as $userid) {
$this->enrol_user($instance, $userid, $roleid, $timestart, $timeend, $status, $recovergrades);
}
return count($members);
}
/**
* We are a good plugin and don't invent our own UI/validation code path.
*
* @return boolean
*/
public function use_standard_editing_ui() {
return true;
}
/**
* Return an array of valid options for the status.
*
* @return array
*/
protected function get_status_options() {
$options = array(ENROL_INSTANCE_ENABLED => get_string('yes'),
ENROL_INSTANCE_DISABLED => get_string('no'));
return $options;
}
/**
* Return an array of valid options for the roleid.
*
* @param stdClass $instance
* @param context $context
* @return array
*/
protected function get_roleid_options($instance, $context) {
if ($instance->id) {
$roles = get_default_enrol_roles($context, $instance->roleid);
} else {
$roles = get_default_enrol_roles($context, $this->get_config('roleid'));
}
return $roles;
}
/**
* Add elements to the edit instance form.
*
* @param stdClass $instance
* @param MoodleQuickForm $mform
* @param context $context
* @return bool
*/
public function edit_instance_form($instance, MoodleQuickForm $mform, $context) {
$options = $this->get_status_options();
$mform->addElement('select', 'status', get_string('status', 'enrol_suap'), $options);
$mform->addHelpButton('status', 'status', 'enrol_suap');
$mform->setDefault('status', $this->get_config('status'));
$roles = $this->get_roleid_options($instance, $context);
$mform->addElement('select', 'roleid', get_string('defaultrole', 'role'), $roles);
$mform->setDefault('roleid', $this->get_config('roleid'));
if (enrol_accessing_via_instance($instance)) {
$warntext = get_string('instanceeditselfwarningtext', 'core_enrol');
$mform->addElement('static', 'selfwarn', get_string('instanceeditselfwarning', 'core_enrol'), $warntext);
}
}
/**
* Perform custom validation of the data used to edit the instance.
*
* @param array $data array of ("fieldname"=>value) of submitted data
* @param array $files array of uploaded files "element_name"=>tmp_file_path
* @param object $instance The instance loaded from the DB
* @param context $context The context of the instance we are editing
* @return array of "element_name"=>"error_description" if there are errors,
* or an empty array if everything is OK.
* @return void
*/
public function edit_instance_validation($data, $files, $instance, $context) {
$errors = array();
$validstatus = array_keys($this->get_status_options());
$validroles = array_keys($this->get_roleid_options($instance, $context));
return $errors;
}
}
/**
* Serve the suap enrol users form as a fragment.
*
* @param array $args List of named arguments for the fragment loader.
* @return string
*/
function enrol_suap_output_fragment_enrol_users_form($args) {
$args = (object) $args;
$context = $args->context;
$o = '';
require_capability('enrol/suap:enrol', $context);
$mform = new enrol_suap_enrol_users_form(null, $args);
ob_start();
$mform->display();
$o .= ob_get_contents();
ob_end_clean();
return $o;
}