MDL-39959: Replace Legacy events - Groups
[moodle.git] / group / lib.php
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/>.
18 /**
19  * Extra library for groups and groupings.
20  *
21  * @copyright 2006 The Open University, J.White AT open.ac.uk, Petr Skoda (skodak)
22  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23  * @package   core_group
24  */
26 /*
27  * INTERNAL FUNCTIONS - to be used by moodle core only
28  * require_once $CFG->dirroot.'/group/lib.php' must be used
29  */
31 /**
32  * Adds a specified user to a group
33  *
34  * @param mixed $grouporid  The group id or group object
35  * @param mixed $userorid   The user id or user object
36  * @param string $component Optional component name e.g. 'enrol_imsenterprise'
37  * @param int $itemid Optional itemid associated with component
38  * @return bool True if user added successfully or the user is already a
39  * member of the group, false otherwise.
40  */
41 function groups_add_member($grouporid, $userorid, $component=null, $itemid=0) {
42     global $DB;
44     if (is_object($userorid)) {
45         $userid = $userorid->id;
46         $user   = $userorid;
47         if (!isset($user->deleted)) {
48             $user = $DB->get_record('user', array('id'=>$userid), '*', MUST_EXIST);
49         }
50     } else {
51         $userid = $userorid;
52         $user = $DB->get_record('user', array('id'=>$userid), '*', MUST_EXIST);
53     }
55     if ($user->deleted) {
56         return false;
57     }
59     if (is_object($grouporid)) {
60         $groupid = $grouporid->id;
61         $group   = $grouporid;
62     } else {
63         $groupid = $grouporid;
64         $group = $DB->get_record('groups', array('id'=>$groupid), '*', MUST_EXIST);
65     }
67     // Check if the user a participant of the group course.
68     $context = context_course::instance($group->courseid);
69     if (!is_enrolled($context, $userid)) {
70         return false;
71     }
73     if (groups_is_member($groupid, $userid)) {
74         return true;
75     }
77     $member = new stdClass();
78     $member->groupid   = $groupid;
79     $member->userid    = $userid;
80     $member->timeadded = time();
81     $member->component = '';
82     $member->itemid = 0;
84     // Check the component exists if specified
85     if (!empty($component)) {
86         $dir = core_component::get_component_directory($component);
87         if ($dir && is_dir($dir)) {
88             // Component exists and can be used
89             $member->component = $component;
90             $member->itemid = $itemid;
91         } else {
92             throw new coding_exception('Invalid call to groups_add_member(). An invalid component was specified');
93         }
94     }
96     if ($itemid !== 0 && empty($member->component)) {
97         // An itemid can only be specified if a valid component was found
98         throw new coding_exception('Invalid call to groups_add_member(). A component must be specified if an itemid is given');
99     }
101     $DB->insert_record('groups_members', $member);
103     // Update group info, and group object.
104     $DB->set_field('groups', 'timemodified', $member->timeadded, array('id'=>$groupid));
105     $group->timemodified = $member->timeadded;
107     // Trigger group event.
108     $params = array(
109         'context' => $context,
110         'objectid' => $groupid,
111         'relateduserid' => $userid,
112         'other' => array(
113             'component' => $member->component,
114             'itemid' => $member->itemid
115         )
116     );
117     $event = \core\event\group_member_added::create($params);
118     $event->add_record_snapshot('groups', $group);
119     $event->trigger();
121     return true;
124 /**
125  * Checks whether the current user is permitted (using the normal UI) to
126  * remove a specific group member, assuming that they have access to remove
127  * group members in general.
128  *
129  * For automatically-created group member entries, this checks with the
130  * relevant plugin to see whether it is permitted. The default, if the plugin
131  * doesn't provide a function, is true.
132  *
133  * For other entries (and any which have already been deleted/don't exist) it
134  * just returns true.
135  *
136  * @param mixed $grouporid The group id or group object
137  * @param mixed $userorid The user id or user object
138  * @return bool True if permitted, false otherwise
139  */
140 function groups_remove_member_allowed($grouporid, $userorid) {
141     global $DB;
143     if (is_object($userorid)) {
144         $userid = $userorid->id;
145     } else {
146         $userid = $userorid;
147     }
148     if (is_object($grouporid)) {
149         $groupid = $grouporid->id;
150     } else {
151         $groupid = $grouporid;
152     }
154     // Get entry
155     if (!($entry = $DB->get_record('groups_members',
156             array('groupid' => $groupid, 'userid' => $userid), '*', IGNORE_MISSING))) {
157         // If the entry does not exist, they are allowed to remove it (this
158         // is consistent with groups_remove_member below).
159         return true;
160     }
162     // If the entry does not have a component value, they can remove it
163     if (empty($entry->component)) {
164         return true;
165     }
167     // It has a component value, so we need to call a plugin function (if it
168     // exists); the default is to allow removal
169     return component_callback($entry->component, 'allow_group_member_remove',
170             array($entry->itemid, $entry->groupid, $entry->userid), true);
173 /**
174  * Deletes the link between the specified user and group.
175  *
176  * @param mixed $grouporid  The group id or group object
177  * @param mixed $userorid   The user id or user object
178  * @return bool True if deletion was successful, false otherwise
179  */
180 function groups_remove_member($grouporid, $userorid) {
181     global $DB;
183     if (is_object($userorid)) {
184         $userid = $userorid->id;
185     } else {
186         $userid = $userorid;
187     }
189     if (is_object($grouporid)) {
190         $groupid = $grouporid->id;
191         $group   = $grouporid;
192     } else {
193         $groupid = $grouporid;
194         $group = $DB->get_record('groups', array('id'=>$groupid), '*', MUST_EXIST);
195     }
197     if (!groups_is_member($groupid, $userid)) {
198         return true;
199     }
201     $DB->delete_records('groups_members', array('groupid'=>$groupid, 'userid'=>$userid));
203     // Update group info.
204     $time = time();
205     $DB->set_field('groups', 'timemodified', $time, array('id' => $groupid));
206     $group->timemodified = $time;
208     // Trigger group event.
209     $params = array(
210         'context' => context_course::instance($group->courseid),
211         'objectid' => $groupid,
212         'relateduserid' => $userid
213     );
214     $event = \core\event\group_member_removed::create($params);
215     $event->add_record_snapshot('groups', $group);
216     $event->trigger();
218     return true;
221 /**
222  * Add a new group
223  *
224  * @param stdClass $data group properties
225  * @param stdClass $editform
226  * @param array $editoroptions
227  * @return id of group or false if error
228  */
229 function groups_create_group($data, $editform = false, $editoroptions = false) {
230     global $CFG, $DB;
232     //check that courseid exists
233     $course = $DB->get_record('course', array('id' => $data->courseid), '*', MUST_EXIST);
234     $context = context_course::instance($course->id);
236     $data->timecreated  = time();
237     $data->timemodified = $data->timecreated;
238     $data->name         = trim($data->name);
239     if (isset($data->idnumber)) {
240         $data->idnumber = trim($data->idnumber);
241         if (groups_get_group_by_idnumber($course->id, $data->idnumber)) {
242             throw new moodle_exception('idnumbertaken');
243         }
244     }
246     if ($editform and $editoroptions) {
247         $data->description = $data->description_editor['text'];
248         $data->descriptionformat = $data->description_editor['format'];
249     }
251     $data->id = $DB->insert_record('groups', $data);
253     if ($editform and $editoroptions) {
254         // Update description from editor with fixed files
255         $data = file_postupdate_standard_editor($data, 'description', $editoroptions, $context, 'group', 'description', $data->id);
256         $upd = new stdClass();
257         $upd->id                = $data->id;
258         $upd->description       = $data->description;
259         $upd->descriptionformat = $data->descriptionformat;
260         $DB->update_record('groups', $upd);
261     }
263     $group = $DB->get_record('groups', array('id'=>$data->id));
265     if ($editform) {
266         groups_update_group_icon($group, $data, $editform);
267     }
269     // Invalidate the grouping cache for the course
270     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($course->id));
272     // Trigger group event.
273     $params = array(
274         'context' => $context,
275         'objectid' => $group->id
276     );
277     $event = \core\event\group_created::create($params);
278     $event->add_record_snapshot('groups', $group);
279     $event->trigger();
281     return $group->id;
284 /**
285  * Add a new grouping
286  *
287  * @param stdClass $data grouping properties
288  * @param array $editoroptions
289  * @return id of grouping or false if error
290  */
291 function groups_create_grouping($data, $editoroptions=null) {
292     global $DB;
294     $data->timecreated  = time();
295     $data->timemodified = $data->timecreated;
296     $data->name         = trim($data->name);
297     if (isset($data->idnumber)) {
298         $data->idnumber = trim($data->idnumber);
299         if (groups_get_grouping_by_idnumber($data->courseid, $data->idnumber)) {
300             throw new moodle_exception('idnumbertaken');
301         }
302     }
304     if ($editoroptions !== null) {
305         $data->description = $data->description_editor['text'];
306         $data->descriptionformat = $data->description_editor['format'];
307     }
309     $id = $DB->insert_record('groupings', $data);
310     $data->id = $id;
312     if ($editoroptions !== null) {
313         $description = new stdClass;
314         $description->id = $data->id;
315         $description->description_editor = $data->description_editor;
316         $description = file_postupdate_standard_editor($description, 'description', $editoroptions, $editoroptions['context'], 'grouping', 'description', $description->id);
317         $DB->update_record('groupings', $description);
318     }
320     // Invalidate the grouping cache for the course
321     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($data->courseid));
323     // Trigger group event.
324     $params = array(
325         'context' => context_course::instance($data->courseid),
326         'objectid' => $id
327     );
328     $event = \core\event\grouping_created::create($params);
329     $event->set_legacy_eventdata($data);
330     $event->trigger();
332     return $id;
335 /**
336  * Update the group icon from form data
337  *
338  * @param stdClass $group group information
339  * @param stdClass $data
340  * @param stdClass $editform
341  */
342 function groups_update_group_icon($group, $data, $editform) {
343     global $CFG, $DB;
344     require_once("$CFG->libdir/gdlib.php");
346     $fs = get_file_storage();
347     $context = context_course::instance($group->courseid, MUST_EXIST);
349     //TODO: it would make sense to allow picture deleting too (skodak)
350     if ($iconfile = $editform->save_temp_file('imagefile')) {
351         if (process_new_icon($context, 'group', 'icon', $group->id, $iconfile)) {
352             $DB->set_field('groups', 'picture', 1, array('id'=>$group->id));
353             $group->picture = 1;
354         } else {
355             $fs->delete_area_files($context->id, 'group', 'icon', $group->id);
356             $DB->set_field('groups', 'picture', 0, array('id'=>$group->id));
357             $group->picture = 0;
358         }
359         @unlink($iconfile);
360         // Invalidate the group data as we've updated the group record.
361         cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($group->courseid));
362     }
365 /**
366  * Update group
367  *
368  * @param stdClass $data group properties (with magic quotes)
369  * @param stdClass $editform
370  * @param array $editoroptions
371  * @return bool true or exception
372  */
373 function groups_update_group($data, $editform = false, $editoroptions = false) {
374     global $CFG, $DB;
376     $context = context_course::instance($data->courseid);
378     $data->timemodified = time();
379     $data->name         = trim($data->name);
380     if (isset($data->idnumber)) {
381         $data->idnumber = trim($data->idnumber);
382         if (($existing = groups_get_group_by_idnumber($data->courseid, $data->idnumber)) && $existing->id != $data->id) {
383             throw new moodle_exception('idnumbertaken');
384         }
385     }
387     if ($editform and $editoroptions) {
388         $data = file_postupdate_standard_editor($data, 'description', $editoroptions, $context, 'group', 'description', $data->id);
389     }
391     $DB->update_record('groups', $data);
393     // Invalidate the group data.
394     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($data->courseid));
396     $group = $DB->get_record('groups', array('id'=>$data->id));
398     if ($editform) {
399         groups_update_group_icon($group, $data, $editform);
400     }
402     // Trigger group event.
403     $params = array(
404         'context' => $context,
405         'objectid' => $group->id
406     );
407     $event = \core\event\group_updated::create($params);
408     $event->add_record_snapshot('groups', $group);
409     $event->trigger();
411     return true;
414 /**
415  * Update grouping
416  *
417  * @param stdClass $data grouping properties (with magic quotes)
418  * @param array $editoroptions
419  * @return bool true or exception
420  */
421 function groups_update_grouping($data, $editoroptions=null) {
422     global $DB;
423     $data->timemodified = time();
424     $data->name         = trim($data->name);
425     if (isset($data->idnumber)) {
426         $data->idnumber = trim($data->idnumber);
427         if (($existing = groups_get_grouping_by_idnumber($data->courseid, $data->idnumber)) && $existing->id != $data->id) {
428             throw new moodle_exception('idnumbertaken');
429         }
430     }
431     if ($editoroptions !== null) {
432         $data = file_postupdate_standard_editor($data, 'description', $editoroptions, $editoroptions['context'], 'grouping', 'description', $data->id);
433     }
434     $DB->update_record('groupings', $data);
436     // Invalidate the group data.
437     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($data->courseid));
439     // Trigger group event.
440     $params = array(
441         'context' => context_course::instance($data->courseid),
442         'objectid' => $data->id
443     );
444     $event = \core\event\grouping_updated::create($params);
445     $event->set_legacy_eventdata($data);
446     $event->trigger();
448     return true;
451 /**
452  * Delete a group best effort, first removing members and links with courses and groupings.
453  * Removes group avatar too.
454  *
455  * @param mixed $grouporid The id of group to delete or full group object
456  * @return bool True if deletion was successful, false otherwise
457  */
458 function groups_delete_group($grouporid) {
459     global $CFG, $DB;
460     require_once("$CFG->libdir/gdlib.php");
462     if (is_object($grouporid)) {
463         $groupid = $grouporid->id;
464         $group   = $grouporid;
465     } else {
466         $groupid = $grouporid;
467         if (!$group = $DB->get_record('groups', array('id'=>$groupid))) {
468             //silently ignore attempts to delete missing already deleted groups ;-)
469             return true;
470         }
471     }
473     // delete group calendar events
474     $DB->delete_records('event', array('groupid'=>$groupid));
475     //first delete usage in groupings_groups
476     $DB->delete_records('groupings_groups', array('groupid'=>$groupid));
477     //delete members
478     $DB->delete_records('groups_members', array('groupid'=>$groupid));
479     //group itself last
480     $DB->delete_records('groups', array('id'=>$groupid));
482     // Delete all files associated with this group
483     $context = context_course::instance($group->courseid);
484     $fs = get_file_storage();
485     $fs->delete_area_files($context->id, 'group', 'description', $groupid);
486     $fs->delete_area_files($context->id, 'group', 'icon', $groupid);
488     // Invalidate the grouping cache for the course
489     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($group->courseid));
491     // Trigger group event.
492     $params = array(
493         'context' => $context,
494         'objectid' => $groupid
495     );
496     $event = \core\event\group_deleted::create($params);
497     $event->add_record_snapshot('groups', $group);
498     $event->trigger();
500     return true;
503 /**
504  * Delete grouping
505  *
506  * @param int $groupingorid
507  * @return bool success
508  */
509 function groups_delete_grouping($groupingorid) {
510     global $DB;
512     if (is_object($groupingorid)) {
513         $groupingid = $groupingorid->id;
514         $grouping   = $groupingorid;
515     } else {
516         $groupingid = $groupingorid;
517         if (!$grouping = $DB->get_record('groupings', array('id'=>$groupingorid))) {
518             //silently ignore attempts to delete missing already deleted groupings ;-)
519             return true;
520         }
521     }
523     //first delete usage in groupings_groups
524     $DB->delete_records('groupings_groups', array('groupingid'=>$groupingid));
525     // remove the default groupingid from course
526     $DB->set_field('course', 'defaultgroupingid', 0, array('defaultgroupingid'=>$groupingid));
527     // remove the groupingid from all course modules
528     $DB->set_field('course_modules', 'groupingid', 0, array('groupingid'=>$groupingid));
529     //group itself last
530     $DB->delete_records('groupings', array('id'=>$groupingid));
532     $context = context_course::instance($grouping->courseid);
533     $fs = get_file_storage();
534     $files = $fs->get_area_files($context->id, 'grouping', 'description', $groupingid);
535     foreach ($files as $file) {
536         $file->delete();
537     }
539     // Invalidate the grouping cache for the course
540     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($grouping->courseid));
542     // Trigger group event.
543     $params = array(
544         'context' => $context,
545         'objectid' => $groupingid
546     );
547     $event = \core\event\grouping_deleted::create($params);
548     $event->add_record_snapshot('groupings', $grouping);
549     $event->trigger();
551     return true;
554 /**
555  * Remove all users (or one user) from all groups in course
556  *
557  * @param int $courseid
558  * @param int $userid 0 means all users
559  * @param bool $showfeedback
560  * @return bool success
561  */
562 function groups_delete_group_members($courseid, $userid=0, $showfeedback=false) {
563     global $DB, $OUTPUT;
565     if (is_bool($userid)) {
566         debugging('Incorrect userid function parameter');
567         return false;
568     }
570     // Select * so that the function groups_remove_member() gets the whole record.
571     $groups = $DB->get_recordset('groups', array('courseid' => $courseid));
572     foreach ($groups as $group) {
573         if ($userid) {
574             $userids = array($userid);
575         } else {
576             $userids = $DB->get_fieldset_select('groups_members', 'userid', 'groupid = :groupid', array('groupid' => $group->id));
577         }
579         foreach ($userids as $id) {
580             groups_remove_member($group, $id);
581         }
582     }
584     // TODO MDL-41312 Remove events_trigger_legacy('groups_members_removed').
585     // This event is kept here for backwards compatibility, because it cannot be
586     // translated to a new event as it is wrong.
587     $eventdata = new stdClass();
588     $eventdata->courseid = $courseid;
589     $eventdata->userid   = $userid;
590     events_trigger_legacy('groups_members_removed', $eventdata);
592     if ($showfeedback) {
593         echo $OUTPUT->notification(get_string('deleted').' - '.get_string('groupmembers', 'group'), 'notifysuccess');
594     }
596     return true;
599 /**
600  * Remove all groups from all groupings in course
601  *
602  * @param int $courseid
603  * @param bool $showfeedback
604  * @return bool success
605  */
606 function groups_delete_groupings_groups($courseid, $showfeedback=false) {
607     global $DB, $OUTPUT;
609     $groupssql = "SELECT id FROM {groups} g WHERE g.courseid = ?";
610     $results = $DB->get_recordset_select('groupings_groups', "groupid IN ($groupssql)",
611         array($courseid), '', 'groupid, groupingid');
613     foreach ($results as $result) {
614         groups_unassign_grouping($result->groupingid, $result->groupid, false);
615     }
617     // Invalidate the grouping cache for the course
618     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
620     // TODO MDL-41312 Remove events_trigger_legacy('groups_groupings_groups_removed').
621     // This event is kept here for backwards compatibility, because it cannot be
622     // translated to a new event as it is wrong.
623     events_trigger_legacy('groups_groupings_groups_removed', $courseid);
625     // no need to show any feedback here - we delete usually first groupings and then groups
627     return true;
630 /**
631  * Delete all groups from course
632  *
633  * @param int $courseid
634  * @param bool $showfeedback
635  * @return bool success
636  */
637 function groups_delete_groups($courseid, $showfeedback=false) {
638     global $CFG, $DB, $OUTPUT;
640     $groups = $DB->get_recordset('groups', array('courseid' => $courseid));
641     foreach ($groups as $group) {
642         groups_delete_group($group);
643     }
645     // Invalidate the grouping cache for the course
646     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
648     // TODO MDL-41312 Remove events_trigger_legacy('groups_groups_deleted').
649     // This event is kept here for backwards compatibility, because it cannot be
650     // translated to a new event as it is wrong.
651     events_trigger_legacy('groups_groups_deleted', $courseid);
653     if ($showfeedback) {
654         echo $OUTPUT->notification(get_string('deleted').' - '.get_string('groups', 'group'), 'notifysuccess');
655     }
657     return true;
660 /**
661  * Delete all groupings from course
662  *
663  * @param int $courseid
664  * @param bool $showfeedback
665  * @return bool success
666  */
667 function groups_delete_groupings($courseid, $showfeedback=false) {
668     global $DB, $OUTPUT;
670     $groupings = $DB->get_recordset_select('groupings', 'courseid = ?', array($courseid));
671     foreach ($groupings as $grouping) {
672         groups_delete_grouping($grouping);
673     }
675     // Invalidate the grouping cache for the course.
676     cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
678     // TODO MDL-41312 Remove events_trigger_legacy('groups_groupings_deleted').
679     // This event is kept here for backwards compatibility, because it cannot be
680     // translated to a new event as it is wrong.
681     events_trigger_legacy('groups_groupings_deleted', $courseid);
683     if ($showfeedback) {
684         echo $OUTPUT->notification(get_string('deleted').' - '.get_string('groupings', 'group'), 'notifysuccess');
685     }
687     return true;
690 /* =================================== */
691 /* various functions used by groups UI */
692 /* =================================== */
694 /**
695  * Obtains a list of the possible roles that group members might come from,
696  * on a course. Generally this includes only profile roles.
697  *
698  * @param context $context Context of course
699  * @return Array of role ID integers, or false if error/none.
700  */
701 function groups_get_possible_roles($context) {
702     $roles = get_profile_roles($context);
703     return array_keys($roles);
707 /**
708  * Gets potential group members for grouping
709  *
710  * @param int $courseid The id of the course
711  * @param int $roleid The role to select users from
712  * @param int $cohortid restrict to cohort id
713  * @param string $orderby The column to sort users by
714  * @return array An array of the users
715  */
716 function groups_get_potential_members($courseid, $roleid = null, $cohortid = null, $orderby = 'lastname ASC, firstname ASC') {
717     global $DB;
719     $context = context_course::instance($courseid);
721     list($esql, $params) = get_enrolled_sql($context);
723     if ($roleid) {
724         // We are looking for all users with this role assigned in this context or higher.
725         list($relatedctxsql, $relatedctxparams) = $DB->get_in_or_equal($context->get_parent_context_ids(true), SQL_PARAMS_NAMED, 'relatedctx');
727         $params = array_merge($params, $relatedctxparams, array('roleid' => $roleid));
728         $where = "WHERE u.id IN (SELECT userid
729                                    FROM {role_assignments}
730                                   WHERE roleid = :roleid AND contextid $relatedctxsql)";
731     } else {
732         $where = "";
733     }
735     if ($cohortid) {
736         $cohortjoin = "JOIN {cohort_members} cm ON (cm.userid = u.id AND cm.cohortid = :cohortid)";
737         $params['cohortid'] = $cohortid;
738     } else {
739         $cohortjoin = "";
740     }
742     $sql = "SELECT u.id, u.username, u.firstname, u.lastname, u.idnumber
743               FROM {user} u
744               JOIN ($esql) e ON e.id = u.id
745        $cohortjoin
746             $where
747           ORDER BY $orderby";
749     return $DB->get_records_sql($sql, $params);
753 /**
754  * Parse a group name for characters to replace
755  *
756  * @param string $format The format a group name will follow
757  * @param int $groupnumber The number of the group to be used in the parsed format string
758  * @return string the parsed format string
759  */
760 function groups_parse_name($format, $groupnumber) {
761     if (strstr($format, '@') !== false) { // Convert $groupnumber to a character series
762         $letter = 'A';
763         for($i=0; $i<$groupnumber; $i++) {
764             $letter++;
765         }
766         $str = str_replace('@', $letter, $format);
767     } else {
768         $str = str_replace('#', $groupnumber+1, $format);
769     }
770     return($str);
773 /**
774  * Assigns group into grouping
775  *
776  * @param int groupingid
777  * @param int groupid
778  * @param int $timeadded  The time the group was added to the grouping.
779  * @param bool $invalidatecache If set to true the course group cache will be invalidated as well.
780  * @return bool true or exception
781  */
782 function groups_assign_grouping($groupingid, $groupid, $timeadded = null, $invalidatecache = true) {
783     global $DB;
785     if ($DB->record_exists('groupings_groups', array('groupingid'=>$groupingid, 'groupid'=>$groupid))) {
786         return true;
787     }
788     $assign = new stdClass();
789     $assign->groupingid = $groupingid;
790     $assign->groupid    = $groupid;
791     if ($timeadded != null) {
792         $assign->timeadded = (integer)$timeadded;
793     } else {
794         $assign->timeadded = time();
795     }
796     $DB->insert_record('groupings_groups', $assign);
798     if ($invalidatecache) {
799         // Invalidate the grouping cache for the course
800         $courseid = $DB->get_field('groupings', 'courseid', array('id' => $groupingid));
801         cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
802     }
804     return true;
807 /**
808  * Unassigns group from grouping
809  *
810  * @param int groupingid
811  * @param int groupid
812  * @param bool $invalidatecache If set to true the course group cache will be invalidated as well.
813  * @return bool success
814  */
815 function groups_unassign_grouping($groupingid, $groupid, $invalidatecache = true) {
816     global $DB;
817     $DB->delete_records('groupings_groups', array('groupingid'=>$groupingid, 'groupid'=>$groupid));
819     if ($invalidatecache) {
820         // Invalidate the grouping cache for the course
821         $courseid = $DB->get_field('groupings', 'courseid', array('id' => $groupingid));
822         cache_helper::invalidate_by_definition('core', 'groupdata', array(), array($courseid));
823     }
825     return true;
828 /**
829  * Lists users in a group based on their role on the course.
830  * Returns false if there's an error or there are no users in the group.
831  * Otherwise returns an array of role ID => role data, where role data includes:
832  * (role) $id, $shortname, $name
833  * $users: array of objects for each user which include the specified fields
834  * Users who do not have a role are stored in the returned array with key '-'
835  * and pseudo-role details (including a name, 'No role'). Users with multiple
836  * roles, same deal with key '*' and name 'Multiple roles'. You can find out
837  * which roles each has by looking in the $roles array of the user object.
838  *
839  * @param int $groupid
840  * @param int $courseid Course ID (should match the group's course)
841  * @param string $fields List of fields from user table prefixed with u, default 'u.*'
842  * @param string $sort SQL ORDER BY clause, default (when null passed) is what comes from users_order_by_sql.
843  * @param string $extrawheretest extra SQL conditions ANDed with the existing where clause.
844  * @param array $whereorsortparams any parameters required by $extrawheretest (named parameters).
845  * @return array Complex array as described above
846  */
847 function groups_get_members_by_role($groupid, $courseid, $fields='u.*',
848         $sort=null, $extrawheretest='', $whereorsortparams=array()) {
849     global $DB;
851     // Retrieve information about all users and their roles on the course or
852     // parent ('related') contexts
853     $context = context_course::instance($courseid);
855     // We are looking for all users with this role assigned in this context or higher.
856     list($relatedctxsql, $relatedctxparams) = $DB->get_in_or_equal($context->get_parent_context_ids(true), SQL_PARAMS_NAMED, 'relatedctx');
858     if ($extrawheretest) {
859         $extrawheretest = ' AND ' . $extrawheretest;
860     }
862     if (is_null($sort)) {
863         list($sort, $sortparams) = users_order_by_sql('u');
864         $whereorsortparams = array_merge($whereorsortparams, $sortparams);
865     }
867     $sql = "SELECT r.id AS roleid, u.id AS userid, $fields
868               FROM {groups_members} gm
869               JOIN {user} u ON u.id = gm.userid
870          LEFT JOIN {role_assignments} ra ON (ra.userid = u.id AND ra.contextid $relatedctxsql)
871          LEFT JOIN {role} r ON r.id = ra.roleid
872              WHERE gm.groupid=:mgroupid
873                    ".$extrawheretest."
874           ORDER BY r.sortorder, $sort";
875     $whereorsortparams = array_merge($whereorsortparams, $relatedctxparams, array('mgroupid' => $groupid));
876     $rs = $DB->get_recordset_sql($sql, $whereorsortparams);
878     return groups_calculate_role_people($rs, $context);
881 /**
882  * Internal function used by groups_get_members_by_role to handle the
883  * results of a database query that includes a list of users and possible
884  * roles on a course.
885  *
886  * @param moodle_recordset $rs The record set (may be false)
887  * @param int $context ID of course context
888  * @return array As described in groups_get_members_by_role
889  */
890 function groups_calculate_role_people($rs, $context) {
891     global $CFG, $DB;
893     if (!$rs) {
894         return array();
895     }
897     $allroles = role_fix_names(get_all_roles($context), $context);
899     // Array of all involved roles
900     $roles = array();
901     // Array of all retrieved users
902     $users = array();
903     // Fill arrays
904     foreach ($rs as $rec) {
905         // Create information about user if this is a new one
906         if (!array_key_exists($rec->userid, $users)) {
907             // User data includes all the optional fields, but not any of the
908             // stuff we added to get the role details
909             $userdata = clone($rec);
910             unset($userdata->roleid);
911             unset($userdata->roleshortname);
912             unset($userdata->rolename);
913             unset($userdata->userid);
914             $userdata->id = $rec->userid;
916             // Make an array to hold the list of roles for this user
917             $userdata->roles = array();
918             $users[$rec->userid] = $userdata;
919         }
920         // If user has a role...
921         if (!is_null($rec->roleid)) {
922             // Create information about role if this is a new one
923             if (!array_key_exists($rec->roleid, $roles)) {
924                 $role = $allroles[$rec->roleid];
925                 $roledata = new stdClass();
926                 $roledata->id        = $role->id;
927                 $roledata->shortname = $role->shortname;
928                 $roledata->name      = $role->localname;
929                 $roledata->users = array();
930                 $roles[$roledata->id] = $roledata;
931             }
932             // Record that user has role
933             $users[$rec->userid]->roles[$rec->roleid] = $roles[$rec->roleid];
934         }
935     }
936     $rs->close();
938     // Return false if there weren't any users
939     if (count($users) == 0) {
940         return false;
941     }
943     // Add pseudo-role for multiple roles
944     $roledata = new stdClass();
945     $roledata->name = get_string('multipleroles','role');
946     $roledata->users = array();
947     $roles['*'] = $roledata;
949     $roledata = new stdClass();
950     $roledata->name = get_string('noroles','role');
951     $roledata->users = array();
952     $roles[0] = $roledata;
954     // Now we rearrange the data to store users by role
955     foreach ($users as $userid=>$userdata) {
956         $rolecount = count($userdata->roles);
957         if ($rolecount == 0) {
958             // does not have any roles
959             $roleid = 0;
960         } else if($rolecount > 1) {
961             $roleid = '*';
962         } else {
963             $userrole = reset($userdata->roles);
964             $roleid = $userrole->id;
965         }
966         $roles[$roleid]->users[$userid] = $userdata;
967     }
969     // Delete roles not used
970     foreach ($roles as $key=>$roledata) {
971         if (count($roledata->users)===0) {
972             unset($roles[$key]);
973         }
974     }
976     // Return list of roles containing their users
977     return $roles;