forked from rogerbaba/moodle-mod_groupselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.php
520 lines (445 loc) · 17.4 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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<?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/>.
/**
* Library of functions and constants of Group selection module
*
* @package mod_groupselect
* @copyright 2018 HTW Chur Roger Barras
* @copyright 2008-2011 Petr Skoda (http://skodak.org)
* @copyright 2014 Tampere University of Technology, P. Pyykkönen (pirkka.pyykkonen ÄT tut.fi)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
/**
* List of features supported in groupselect module
*
* @param string $feature FEATURE_xx constant for requested feature
* @return mixed True if module supports feature, false if not, null if doesn't know
*/
function groupselect_supports($feature) {
if (!defined('FEATURE_MOD_PURPOSE')) {
define('FEATURE_MOD_PURPOSE', 'mod_purpose');
}
if (!defined('MOD_PURPOSE_COLLABORATION')) {
define('MOD_PURPOSE_COLLABORATION', 'collaboration');
}
switch($feature) {
case FEATURE_MOD_ARCHETYPE:
return MOD_ARCHETYPE_OTHER;
case FEATURE_GROUPS:
return true; // Only separate mode makes sense - you hide members of other groups here.
case FEATURE_GROUPINGS:
return false; // Should be true. Separate setting in groupselect.
case FEATURE_GROUPMEMBERSONLY:
return false; // This could be very confusing.
case FEATURE_MOD_INTRO:
return true;
case FEATURE_COMPLETION_TRACKS_VIEWS:
return true;
case FEATURE_GRADE_HAS_GRADE:
return false;
case FEATURE_GRADE_OUTCOMES:
return false;
case FEATURE_BACKUP_MOODLE2:
return true;
case FEATURE_SHOW_DESCRIPTION:
return true;
case FEATURE_MOD_PURPOSE:
return MOD_PURPOSE_COLLABORATION;
default:
return null;
}
}
/**
* Returns all other caps used in module
* @return array
*/
function groupselect_get_extra_capabilities() {
return array('moodle/site:accessallgroups', 'moodle/site:viewfullnames');
}
/**
* Gets a full groupselect record
*
* @param int $groupselectid
* @return object|bool The groupselect or false
*/
function groupselect_get_groupselect($groupselectid) {
global $DB;
if ($groupselect = $DB->get_record("groupselect", array("id" => $groupselectid))) {
return $groupselect;
}
return false;
}
/**
* Given an object containing all the necessary data, (defined by the form in mod.html)
* this function will create a new instance and return the id number of the new instance.
*
* @param object $groupselect Object containing all the necessary data defined by the form in mod_form.php
* $return int The id of the newly created instance
*/
function groupselect_add_instance($groupselect) {
global $DB;
$groupselect->timecreated = time();
$groupselect->timemodified = time();
$groupselect->id = $DB->insert_record('groupselect', $groupselect);
// Add calendar events if necessary.
groupselect_set_events($groupselect);
if (!empty($groupselect->completionexpected)) {
\core_completion\api::update_completion_date_event($groupselect->coursemodule, 'groupselect', $groupselect->id,
$groupselect->completionexpected);
}
return $groupselect->id;
}
/**
* Update an existing instance with new data.
*
* @param object $groupselect An object containing all the necessary data defined by the mod_form.php
* @return bool
*/
function groupselect_update_instance($groupselect) {
global $DB;
$groupselect->timemodified = time();
$groupselect->id = $groupselect->instance;
$DB->update_record('groupselect', $groupselect);
// Add calendar events if necessary.
groupselect_set_events($groupselect);
if (!empty($groupselect->completionexpected)) {
\core_completion\api::update_completion_date_event($groupselect->coursemodule, 'groupselect', $groupselect->id,
$groupselect->completionexpected);
}
return true;
}
/**
* Permanently delete the instance of the module and any data that depends on it.
*
* @param int $id Instance id
* @return bool
*/
function groupselect_delete_instance($id) {
global $DB;
// Delete group password rows related to this instance (but not the groups).
$DB->delete_records('groupselect_passwords', array('instance_id' => $id));
$DB->delete_records('groupselect_groups_teachers', array('instance_id' => $id));
$DB->delete_records('groupselect', array('id' => $id));
return true;
}
/**
* This standard function will check all instances of this module
* and make sure there are up-to-date events created for each of them.
* If courseid = 0, then every chat event in the site is checked, else
* only chat events belonging to the course specified are checked.
* This function is used, in its new format, by restore_refresh_events()
*
* @param int $courseid
* @return bool
*/
function groupselect_refresh_events($courseid = 0) {
global $DB;
$params = $courseid ? ['course' => $courseid] : [];
$modules = $DB->get_records('groupselect', $params);
foreach ($modules as $module) {
groupselect_set_events($module);
}
return true;
}
/**
* This creates new events given as timeopen and closeopen by $groupselect.
*
* @param stdClass $groupselect
* @return void
*/
function groupselect_set_events($groupselect) {
global $DB, $CFG;
// Include calendar/lib.php.
require_once($CFG->dirroot.'/calendar/lib.php');
require_once($CFG->dirroot . '/mod/groupselect/locallib.php');
// Get CMID if not sent as part of $groupselect.
if (!isset($groupselect->coursemodule)) {
$cm = get_coursemodule_from_instance('groupselect',
$groupselect->id, $groupselect->course);
$groupselect->coursemodule = $cm->id;
}
// Get old event.
$oldevent = null;
$oldevent = $DB->get_record('event',
array('modulename' => 'groupselect',
'instance' => $groupselect->id, 'eventtype' => GROUPSELECT_EVENT_TYPE_DUE));
if ($groupselect->timedue) {
// Create calendar event.
$event = new stdClass();
$event->type = CALENDAR_EVENT_TYPE_ACTION;
$event->name = $groupselect->name .' ('.get_string('duedate', 'groupselect').')';
$event->description = format_module_intro('groupselect', $groupselect, $groupselect->coursemodule);
$event->courseid = $groupselect->course;
$event->groupid = 0;
$event->userid = 0;
$event->modulename = 'groupselect';
$event->instance = $groupselect->id;
$event->eventtype = GROUPSELECT_EVENT_TYPE_DUE;
$event->visible = instance_is_visible('groupselect', $groupselect);
$event->timestart = $groupselect->timedue;
$event->timeduration = 0;
$event->timesort = $event->timestart + $event->timeduration;
if ($oldevent) {
$event->id = $oldevent->id;
} else {
unset($event->id);
}
// Create also updates an existing event.
calendar_event::create($event);
} else {
// Delete calendar event.
if ($oldevent) {
$calendarevent = calendar_event::load($oldevent);
$calendarevent->delete();
}
}
}
/**
* Returns the users with data in this module
*
* We have no data/users here but this must exists in every module
*
* @param int $groupselectid
* @return bool
*/
function groupselect_get_participants($groupselectid) {
// No participants here - all data is stored in the group tables.
return false;
}
/**
* groupselect_get_view_actions
*
* @return array
*/
function groupselect_get_view_actions() {
return array('view', 'export');
}
/**
* Serves intro attachment files.
*
* @return array
*/
function groupselect_get_post_actions() {
return array('select', 'unselect', 'create', 'assign');
}
/**
* Used to create exportable csv-file in view.php
*
* @param mixed $course course or id of the course
* @param mixed $cm course module or id of the course module
* @param context $context context object
* @param string $filearea the name of the file area.
* @param array $args the remaining bits of the file path.
* @param bool $forcedownload whether the user must be forced to download the file.
* @param array $options additional options affecting the file serving
*/
function groupselect_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options=array()) {
// Check the contextlevel is as expected - if your plugin is a block, this becomes CONTEXT_BLOCK, etc.
if ($context->contextlevel != CONTEXT_MODULE) {
return false;
}
// Make sure the filearea is one of those used by the plugin.
if ($filearea !== 'export') {
return false;
}
// Make sure the user is logged in and has access to the module (plugins that are not course modules should leave out the
// 'cm' part).
require_login($course, true, $cm);
// Check the relevant capabilities - these may vary depending on the filearea being accessed.
if (!has_capability('mod/groupselect:export', $context)) {
return false;
}
// Leave this line out if you set the itemid to null in make_pluginfile_url (set $itemid to 0 instead).
$itemid = array_shift($args); // The first item in the $args array.
// Use the itemid to retrieve any relevant data records and perform any security checks to see if the
// user really does have access to the file in question.
// Extract the filename / filepath from the $args array.
$filename = array_pop($args); // The last item in the $args array.
if (!$args) {
$filepath = '/'; // The $args is empty => the path is '/'.
} else {
$filepath = '/'.implode('/', $args).'/'; // The $args contains elements of the filepath.
}
// Retrieve the file from the Files API.
$fs = get_file_storage();
$file = $fs->get_file($context->id, 'mod_groupselect', $filearea, $itemid, $filepath, $filename);
if (!$file) {
return false; // The file does not exist.
}
// We can now send the file back to the browser - in this case with a cache lifetime of 1 day and no filtering.
// From Moodle 2.3, use send_stored_file instead.
send_stored_file($file, 86400, 0, 'true', $options);
}
/**
* Callback function that determines whether an action event should be showing its item count
* based on the event type and the item count.
*
* @param calendar_event $event The calendar event.
* @param int $itemcount The item count associated with the action event.
* @return bool
*/
function groupselect_core_calendar_event_action_shows_item_count(calendar_event $event, $itemcount = 0) {
return $itemcount > 1;
}
/**
* This function receives a calendar event and returns the action associated with it, or null if there is none.
*
* This is used by block_myoverview in order to display the event appropriately. If null is returned then the event
* is not displayed on the block.
*
* @param calendar_event $event
* @param \core_calendar\action_factory $factory
* @param int $userid User id to use for all capability checks, etc. Set to 0 for current user (default).
* @return \core_calendar\local\event\entities\action_interface|null
*/
function mod_groupselect_core_calendar_provide_event_action(calendar_event $event,
\core_calendar\action_factory $factory,
$userid = 0) {
global $USER;
if (empty($userid)) {
$userid = $USER->id;
}
$cm = get_fast_modinfo($event->courseid, $userid)->instances['groupselect'][$event->instance];
$context = context_module::instance($cm->id);
$itmecount = 1;
$actionable = true;
$completion = new \completion_info($cm->get_course());
$completiondata = $completion->get_data($cm, false);
if ($completiondata->completionstate != COMPLETION_INCOMPLETE) {
return null;
}
if (!has_capability('mod/groupselect:select', $context, $userid)) {
$actionable = false;
}
return $factory->create_instance(
get_string('selectgroupaction', 'groupselect'),
new \moodle_url('/mod/groupselect/view.php', array('id' => $cm->id)),
$itmecount,
$actionable
);
}
/**
* Extends the settings navigation
*
* @param settings_navigation $settingsnav complete settings navigation tree
* @param navigation_node $groupselectnode Groupselect administration node
*/
function groupselect_extend_settings_navigation(settings_navigation $settingsnav, navigation_node $groupselectnode) {
global $PAGE;
$cm = $PAGE->cm;
if (!$cm) {
return;
}
$context = $cm->context;
$course = $PAGE->course;
if (!$course) {
return;
}
// We want to add these new nodes after the Edit settings node, and before the
// Locally assigned roles node. Of course, both of those are controlled by capabilities.
$keys = $groupselectnode->get_children_key_list();
$beforekey = null;
$i = array_search('modedit', $keys);
if ($i === false && array_key_exists(0, $keys)) {
$beforekey = $keys[0];
} else if (array_key_exists($i + 1, $keys)) {
$beforekey = $keys[$i + 1];
}
// Add the navigation items.
if (has_capability('moodle/course:managegroups', $context)) {
$groupselectnode->add_node(navigation_node::create(get_string('groups'),
new moodle_url('/group/index.php', array('id' => $course->id)),
navigation_node::TYPE_SETTING, null, 'mod_groupselect_groups',
new pix_icon('i/group', '')), $beforekey);
}
}
/**
* Implementation of the function for printing the form elements that control
* whether the course reset functionality affects the groupselect.
* @param moodleform $mform form passed by reference
*/
function groupselect_reset_course_form_definition(&$mform) {
$mform->addElement('header', 'groupselectheader', get_string('modulenameplural', 'mod_groupselect'));
$mform->addElement('advcheckbox', 'reset_groupselect_passwords',
get_string('deleteallgrouppasswords', 'mod_groupselect'));
$mform->addElement('advcheckbox', 'reset_groupselect_supervisors',
get_string('removeallsupervisors', 'mod_groupselect'));
}
/**
* Course reset form defaults.
* @param object $course
* @return array
*/
function groupselect_reset_course_form_defaults($course) {
return array('reset_groupselect_passwords' => 1,
'reset_groupselect_supervisors' => 0);
}
/**
* This function is used by the reset_course_userdata function in moodlelib.
* This function will remove all group supervisors and delete all group passwords
*
* @param stdClass $data the data submitted from the reset course.
* @return array
*/
function groupselect_reset_userdata($data) {
global $DB;
$status = array();
$params = array();
$componentstr = get_string('modulenameplural', 'mod_groupselect');
if (!empty($data->reset_groupselect_passwords)) {
if ($groupselections = $DB->get_records('groupselect', array('course' => $data->courseid), '', 'id')) {
list($groupselect, $params) = $DB->get_in_or_equal(array_keys($groupselections), SQL_PARAMS_NAMED);
$DB->delete_records_select('groupselect_passwords', 'instance_id '.$groupselect, $params);
$status[] = array('component' => $componentstr,
'item' => get_string('deleteallgrouppasswords', 'mod_groupselect'),
'error' => false);
}
}
if (!empty($data->reset_groupselect_supervisors)) {
if ($groupselections = $DB->get_records('groupselect', array('course' => $data->courseid), '', 'id')) {
list($groupselect, $params) = $DB->get_in_or_equal(array_keys($groupselections), SQL_PARAMS_NAMED);
$DB->delete_records_select('groupselect_groups_teachers', 'instance_id '.$groupselect, $params);
$status[] = array('component' => $componentstr,
'item' => get_string('removeallsupervisors', 'mod_groupselect'),
'error' => false);
}
}
return $status;
}
/**
* Mark the activity completed (if required) and trigger the course_module_viewed event.
*
* @param stdClass $groupselect groupselect object
* @param stdClass $course course object
* @param stdClass $cm course module object
* @param stdClass $context context object
* @since Moodle 3.5
*/
function groupselect_view($groupselect, $course, $cm, $context) {
// Completion.
$completion = new completion_info($course);
$completion->set_module_viewed($cm);
// Trigger course_module_viewed event.
$params = array(
'context' => $context,
'objectid' => $groupselect->id
);
$event = \mod_groupselect\event\course_module_viewed::create($params);
$event->add_record_snapshot('course_modules', $cm);
$event->add_record_snapshot('course', $course);
$event->add_record_snapshot('groupselect', $groupselect);
$event->trigger();
}