3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
20 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 defined('MOODLE_INTERNAL') ||
die();
27 * Groups not used in course or activity
29 define('NOGROUPS', 0);
32 * Groups used, users do not see other groups
34 define('SEPARATEGROUPS', 1);
37 * Groups used, students see other groups
39 define('VISIBLEGROUPS', 2);
42 * This is for filtering users without any group.
44 define('USERSWITHOUTGROUP', -1);
47 * 'None' join type, used when filtering by groups (logical NOT)
49 define('GROUPS_JOIN_NONE', 0);
52 * 'Any' join type, used when filtering by groups (logical OR)
54 define('GROUPS_JOIN_ANY', 1);
57 * 'All' join type, used when filtering by groups (logical AND)
59 define('GROUPS_JOIN_ALL', 2);
62 * Determines if a group with a given groupid exists.
65 * @param int $groupid The groupid to check for
66 * @return bool True if the group exists, false otherwise or if an error
69 function groups_group_exists($groupid) {
71 return $DB->record_exists('groups', array('id'=>$groupid));
75 * Gets the name of a group with a specified id
78 * @param int $groupid The id of the group
79 * @return string The name of the group
81 function groups_get_group_name($groupid) {
83 return $DB->get_field('groups', 'name', array('id'=>$groupid));
87 * Gets the name of a grouping with a specified id
90 * @param int $groupingid The id of the grouping
91 * @return string The name of the grouping
93 function groups_get_grouping_name($groupingid) {
95 return $DB->get_field('groupings', 'name', array('id'=>$groupingid));
99 * Returns the groupid of a group with the name specified for the course.
100 * Group names should be unique in course
103 * @param int $courseid The id of the course
104 * @param string $name name of group (without magic quotes)
105 * @return int $groupid
107 function groups_get_group_by_name($courseid, $name) {
108 $data = groups_get_course_data($courseid);
109 foreach ($data->groups
as $group) {
110 if ($group->name
== $name) {
118 * Returns the groupid of a group with the idnumber specified for the course.
119 * Group idnumbers should be unique within course
122 * @param int $courseid The id of the course
123 * @param string $idnumber idnumber of group
124 * @return group object
126 function groups_get_group_by_idnumber($courseid, $idnumber) {
127 if (empty($idnumber)) {
130 $data = groups_get_course_data($courseid);
131 foreach ($data->groups
as $group) {
132 if ($group->idnumber
== $idnumber) {
140 * Returns the groupingid of a grouping with the name specified for the course.
141 * Grouping names should be unique in course
144 * @param int $courseid The id of the course
145 * @param string $name name of group (without magic quotes)
146 * @return int $groupid
148 function groups_get_grouping_by_name($courseid, $name) {
149 $data = groups_get_course_data($courseid);
150 foreach ($data->groupings
as $grouping) {
151 if ($grouping->name
== $name) {
152 return $grouping->id
;
159 * Returns the groupingid of a grouping with the idnumber specified for the course.
160 * Grouping names should be unique within course
163 * @param int $courseid The id of the course
164 * @param string $idnumber idnumber of the group
165 * @return grouping object
167 function groups_get_grouping_by_idnumber($courseid, $idnumber) {
168 if (empty($idnumber)) {
171 $data = groups_get_course_data($courseid);
172 foreach ($data->groupings
as $grouping) {
173 if ($grouping->idnumber
== $idnumber) {
181 * Get the group object
184 * @param int $groupid ID of the group.
185 * @param string $fields (default is all fields)
186 * @param int $strictness (IGNORE_MISSING - default)
187 * @return bool|stdClass group object or false if not found
188 * @throws dml_exception
190 function groups_get_group($groupid, $fields='*', $strictness=IGNORE_MISSING
) {
192 return $DB->get_record('groups', array('id'=>$groupid), $fields, $strictness);
196 * Get the grouping object
199 * @param int $groupingid ID of the group.
200 * @param string $fields
201 * @param int $strictness (IGNORE_MISSING - default)
202 * @return stdClass group object
204 function groups_get_grouping($groupingid, $fields='*', $strictness=IGNORE_MISSING
) {
206 return $DB->get_record('groupings', array('id'=>$groupingid), $fields, $strictness);
210 * Gets array of all groups in a specified course (subject to the conditions imposed by the other arguments).
213 * @param int $courseid The id of the course.
214 * @param int|int[] $userid optional user id or array of ids, returns only groups continaing one or more of those users.
215 * @param int $groupingid optional returns only groups in the specified grouping.
216 * @param string $fields defaults to g.*. This allows you to vary which fields are returned.
217 * If $groupingid is specified, the groupings_groups table will be available with alias gg.
218 * If $userid is specified, the groups_members table will be available as gm.
219 * @param bool $withmembers if true return an extra field members (int[]) which is the list of userids that
220 * are members of each group. For this to work, g.id (or g.*) must be included in $fields.
221 * In this case, the final results will always be an array indexed by group id.
222 * @return array returns an array of the group objects (unless you have done something very weird
223 * with the $fields option).
225 function groups_get_all_groups($courseid, $userid=0, $groupingid=0, $fields='g.*', $withmembers=false) {
228 // We need to check that we each field in the fields list belongs to the group table and that it has not being
229 // aliased. If its something else we need to avoid the cache and run the query as who knows whats going on.
231 if ($fields !== 'g.*') {
232 // Quickly check if the first field is no longer g.id as using the
233 // cache will return an array indexed differently than when expect
234 if (strpos($fields, 'g.*') !== 0 && strpos($fields, 'g.id') !== 0) {
235 $knownfields = false;
237 $fieldbits = explode(',', $fields);
238 foreach ($fieldbits as $bit) {
240 if (strpos($bit, 'g.') !== 0 or stripos($bit, ' AS ') !== false) {
241 $knownfields = false;
248 if (empty($userid) && $knownfields && !$withmembers) {
249 // We can use the cache.
250 $data = groups_get_course_data($courseid);
251 if (empty($groupingid)) {
252 // All groups.. Easy!
253 $groups = $data->groups
;
256 foreach ($data->mappings
as $mapping) {
257 if ($mapping->groupingid
!= $groupingid) {
260 if (isset($data->groups
[$mapping->groupid
])) {
261 $groups[$mapping->groupid
] = $data->groups
[$mapping->groupid
];
265 // Yay! We could use the cache. One more query saved.
272 if (!empty($userid)) {
273 list($usql, $params) = $DB->get_in_or_equal($userid);
274 $userfrom = "JOIN {groups_members} gm ON gm.groupid = g.id";
275 $userwhere = "AND gm.userid $usql";
280 if (!empty($groupingid)) {
281 $groupingfrom = "JOIN {groupings_groups} gg ON gg.groupid = g.id";
282 $groupingwhere = "AND gg.groupingid = ?";
283 $params[] = $groupingid;
286 array_unshift($params, $courseid);
288 $results = $DB->get_records_sql("
296 ORDER BY g.name ASC", $params);
302 // We also want group members. We do this in a separate query, becuse the above
303 // query will return a lot of data (e.g. g.description) for each group, and
304 // some groups may contain hundreds of members. We don't want the results
305 // to contain hundreds of copies of long descriptions.
307 foreach ($results as $row) {
308 $groups[$row->id
] = $row;
309 $groups[$row->id
]->members
= [];
311 $groupmembers = $DB->get_records_list('groups_members', 'groupid', array_keys($groups));
312 foreach ($groupmembers as $gm) {
313 $groups[$gm->groupid
]->members
[$gm->userid
] = $gm->userid
;
319 * Gets array of all groups in current user.
323 * @return array Returns an array of the group objects.
325 function groups_get_my_groups() {
327 return $DB->get_records_sql("SELECT *
328 FROM {groups_members} gm
332 ORDER BY name ASC", array($USER->id
));
336 * Returns info about user's groups in course.
339 * @param int $courseid
340 * @param int $userid $USER if not specified
341 * @return array Array[groupingid][groupid] including grouping id 0 which means all groups
343 function groups_get_user_groups($courseid, $userid=0) {
346 if (empty($userid)) {
350 $cache = cache
::make('core', 'user_group_groupings');
352 // Try to retrieve group ids from the cache.
353 $usergroups = $cache->get($userid);
355 if ($usergroups === false) {
356 $sql = "SELECT g.id, g.courseid, gg.groupingid
358 JOIN {groups_members} gm ON gm.groupid = g.id
359 LEFT JOIN {groupings_groups} gg ON gg.groupid = g.id
360 WHERE gm.userid = ?";
362 $rs = $DB->get_recordset_sql($sql, array($userid));
364 $usergroups = array();
365 $allgroups = array();
367 foreach ($rs as $group) {
368 if (!array_key_exists($group->courseid
, $allgroups)) {
369 $allgroups[$group->courseid
] = array();
371 $allgroups[$group->courseid
][$group->id
] = $group->id
;
372 if (!array_key_exists($group->courseid
, $usergroups)) {
373 $usergroups[$group->courseid
] = array();
375 if (is_null($group->groupingid
)) {
378 if (!array_key_exists($group->groupingid
, $usergroups[$group->courseid
])) {
379 $usergroups[$group->courseid
][$group->groupingid
] = array();
381 $usergroups[$group->courseid
][$group->groupingid
][$group->id
] = $group->id
;
385 foreach (array_keys($allgroups) as $cid) {
386 $usergroups[$cid]['0'] = array_keys($allgroups[$cid]); // All user groups in the course.
390 $cache->set($userid, $usergroups);
393 if (array_key_exists($courseid, $usergroups)) {
394 return $usergroups[$courseid];
396 return array('0' => array());
401 * Gets an array of all groupings in a specified course. This value is cached
402 * for a single course (so you can call it repeatedly for the same course
403 * without a performance penalty).
406 * @param int $courseid return all groupings from course with this courseid
407 * @return array Returns an array of the grouping objects (empty if none)
409 function groups_get_all_groupings($courseid) {
410 $data = groups_get_course_data($courseid);
411 return $data->groupings
;
415 * Determines if the user is a member of the given group.
417 * If $userid is null, use the global object.
420 * @param int $groupid The group to check for membership.
421 * @param int $userid The user to check against the group.
422 * @return bool True if the user is a member, false otherwise.
424 function groups_is_member($groupid, $userid=null) {
431 return $DB->record_exists('groups_members', array('groupid'=>$groupid, 'userid'=>$userid));
435 * Determines if current or specified is member of any active group in activity
438 * @staticvar array $cache
439 * @param stdClass|cm_info $cm course module object
440 * @param int $userid id of user, null means $USER->id
441 * @return bool true if user member of at least one group used in activity
443 function groups_has_membership($cm, $userid=null) {
444 global $CFG, $USER, $DB;
446 static $cache = array();
448 if (empty($userid)) {
452 $cachekey = $userid.'|'.$cm->course
.'|'.$cm->groupingid
;
453 if (isset($cache[$cachekey])) {
454 return($cache[$cachekey]);
457 if ($cm->groupingid
) {
458 // find out if member of any group in selected activity grouping
460 FROM {groups_members} gm, {groupings_groups} gg
461 WHERE gm.userid = ? AND gm.groupid = gg.groupid AND gg.groupingid = ?";
462 $params = array($userid, $cm->groupingid
);
465 // no grouping used - check all groups in course
467 FROM {groups_members} gm, {groups} g
468 WHERE gm.userid = ? AND gm.groupid = g.id AND g.courseid = ?";
469 $params = array($userid, $cm->course
);
472 $cache[$cachekey] = $DB->record_exists_sql($sql, $params);
474 return $cache[$cachekey];
478 * Returns the users in the specified group.
481 * @param int $groupid The groupid to get the users for
482 * @param int $fields The fields to return
483 * @param int $sort optional sorting of returned users
484 * @return array|bool Returns an array of the users for the specified
485 * group or false if no users or an error returned.
487 function groups_get_members($groupid, $fields='u.*', $sort='lastname ASC') {
490 return $DB->get_records_sql("SELECT $fields
491 FROM {user} u, {groups_members} gm
492 WHERE u.id = gm.userid AND gm.groupid = ?
493 ORDER BY $sort", array($groupid));
498 * Returns the users in the specified grouping.
501 * @param int $groupingid The groupingid to get the users for
502 * @param string $fields The fields to return
503 * @param string $sort optional sorting of returned users
504 * @return array|bool Returns an array of the users for the specified
505 * group or false if no users or an error returned.
507 function groups_get_grouping_members($groupingid, $fields='u.*', $sort='lastname ASC') {
510 return $DB->get_records_sql("SELECT $fields
512 INNER JOIN {groups_members} gm ON u.id = gm.userid
513 INNER JOIN {groupings_groups} gg ON gm.groupid = gg.groupid
514 WHERE gg.groupingid = ?
515 ORDER BY $sort", array($groupingid));
519 * Returns effective groupmode used in course
522 * @param stdClass $course course object.
523 * @return int group mode
525 function groups_get_course_groupmode($course) {
526 return $course->groupmode
;
530 * Returns effective groupmode used in activity, course setting
531 * overrides activity setting if groupmodeforce enabled.
533 * If $cm is an instance of cm_info it is easier to use $cm->effectivegroupmode
536 * @param cm_info|stdClass $cm the course module object. Only the ->course and ->groupmode need to be set.
537 * @param stdClass $course object optional course object to improve perf
538 * @return int group mode
540 function groups_get_activity_groupmode($cm, $course=null) {
541 if ($cm instanceof cm_info
) {
542 return $cm->effectivegroupmode
;
544 if (isset($course->id
) and $course->id
== $cm->course
) {
547 // Get course object (reuse $COURSE if possible).
548 $course = get_course($cm->course
, false);
551 return empty($course->groupmodeforce
) ?
$cm->groupmode
: $course->groupmode
;
555 * Print group menu selector for course level.
558 * @param stdClass $course course object
559 * @param mixed $urlroot return address. Accepts either a string or a moodle_url
560 * @param bool $return return as string instead of printing
561 * @return mixed void or string depending on $return param
563 function groups_print_course_menu($course, $urlroot, $return=false) {
564 global $USER, $OUTPUT;
566 if (!$groupmode = $course->groupmode
) {
574 $context = context_course
::instance($course->id
);
575 $aag = has_capability('moodle/site:accessallgroups', $context);
577 $usergroups = array();
578 if ($groupmode == VISIBLEGROUPS
or $aag) {
579 $allowedgroups = groups_get_all_groups($course->id
, 0, $course->defaultgroupingid
);
580 // Get user's own groups and put to the top.
581 $usergroups = groups_get_all_groups($course->id
, $USER->id
, $course->defaultgroupingid
);
583 $allowedgroups = groups_get_all_groups($course->id
, $USER->id
, $course->defaultgroupingid
);
586 $activegroup = groups_get_course_group($course, true, $allowedgroups);
588 $groupsmenu = array();
589 if (!$allowedgroups or $groupmode == VISIBLEGROUPS
or $aag) {
590 $groupsmenu[0] = get_string('allparticipants');
593 $groupsmenu +
= groups_sort_menu_options($allowedgroups, $usergroups);
595 if ($groupmode == VISIBLEGROUPS
) {
596 $grouplabel = get_string('groupsvisible');
598 $grouplabel = get_string('groupsseparate');
601 if ($aag and $course->defaultgroupingid
) {
602 if ($grouping = groups_get_grouping($course->defaultgroupingid
)) {
603 $grouplabel = $grouplabel . ' (' . format_string($grouping->name
) . ')';
607 if (count($groupsmenu) == 1) {
608 $groupname = reset($groupsmenu);
609 $output = $grouplabel.': '.$groupname;
611 $select = new single_select(new moodle_url($urlroot), 'group', $groupsmenu, $activegroup, null, 'selectgroup');
612 $select->label
= $grouplabel;
613 $output = $OUTPUT->render($select);
616 $output = '<div class="groupselector">'.$output.'</div>';
626 * Turn an array of groups into an array of menu options.
627 * @param array $groups of group objects.
628 * @return array groupid => formatted group name.
630 function groups_list_to_menu($groups) {
631 $groupsmenu = array();
632 foreach ($groups as $group) {
633 $groupsmenu[$group->id
] = format_string($group->name
);
639 * Takes user's allowed groups and own groups and formats for use in group selector menu
640 * If user has allowed groups + own groups will add to an optgroup
641 * Own groups are removed from allowed groups
642 * @param array $allowedgroups All groups user is allowed to see
643 * @param array $usergroups Groups user belongs to
646 function groups_sort_menu_options($allowedgroups, $usergroups) {
647 $useroptions = array();
649 $useroptions = groups_list_to_menu($usergroups);
651 // Remove user groups from other groups list.
652 foreach ($usergroups as $group) {
653 unset($allowedgroups[$group->id
]);
657 $allowedoptions = array();
658 if ($allowedgroups) {
659 $allowedoptions = groups_list_to_menu($allowedgroups);
662 if ($useroptions && $allowedoptions) {
664 1 => array(get_string('mygroups', 'group') => $useroptions),
665 2 => array(get_string('othergroups', 'group') => $allowedoptions)
667 } else if ($useroptions) {
670 return $allowedoptions;
675 * Generates html to print menu selector for course level, listing all groups.
676 * Note: This api does not do any group mode check use groups_print_course_menu() instead if you want proper checks.
678 * @param stdclass $course course object.
679 * @param string|moodle_url $urlroot return address. Accepts either a string or a moodle_url.
680 * @param bool $update set this to true to update current active group based on the group param.
681 * @param int $activegroup Change group active to this group if $update set to true.
683 * @return string html or void
685 function groups_allgroups_course_menu($course, $urlroot, $update = false, $activegroup = 0) {
686 global $SESSION, $OUTPUT, $USER;
688 $groupmode = groups_get_course_groupmode($course);
689 $context = context_course
::instance($course->id
);
690 $groupsmenu = array();
692 if (has_capability('moodle/site:accessallgroups', $context)) {
693 $groupsmenu[0] = get_string('allparticipants');
694 $allowedgroups = groups_get_all_groups($course->id
, 0, $course->defaultgroupingid
);
696 $allowedgroups = groups_get_all_groups($course->id
, $USER->id
, $course->defaultgroupingid
);
699 $groupsmenu +
= groups_list_to_menu($allowedgroups);
702 // Init activegroup array if necessary.
703 if (!isset($SESSION->activegroup
)) {
704 $SESSION->activegroup
= array();
706 if (!isset($SESSION->activegroup
[$course->id
])) {
707 $SESSION->activegroup
[$course->id
] = array(SEPARATEGROUPS
=> array(), VISIBLEGROUPS
=> array(), 'aag' => array());
709 if (empty($groupsmenu[$activegroup])) {
710 $activegroup = key($groupsmenu); // Force set to one of accessible groups.
712 $SESSION->activegroup
[$course->id
][$groupmode][$course->defaultgroupingid
] = $activegroup;
715 $grouplabel = get_string('groups');
716 if (count($groupsmenu) == 0) {
718 } else if (count($groupsmenu) == 1) {
719 $groupname = reset($groupsmenu);
720 $output = $grouplabel.': '.$groupname;
722 $select = new single_select(new moodle_url($urlroot), 'group', $groupsmenu, $activegroup, null, 'selectgroup');
723 $select->label
= $grouplabel;
724 $output = $OUTPUT->render($select);
732 * Print group menu selector for activity.
735 * @param stdClass|cm_info $cm course module object
736 * @param string|moodle_url $urlroot return address that users get to if they choose an option;
737 * should include any parameters needed, e.g. "$CFG->wwwroot/mod/forum/view.php?id=34"
738 * @param bool $return return as string instead of printing
739 * @param bool $hideallparticipants If true, this prevents the 'All participants'
740 * option from appearing in cases where it normally would. This is intended for
741 * use only by activities that cannot display all groups together. (Note that
742 * selecting this option does not prevent groups_get_activity_group from
743 * returning 0; it will still do that if the user has chosen 'all participants'
744 * in another activity, or not chosen anything.)
745 * @return mixed void or string depending on $return param
747 function groups_print_activity_menu($cm, $urlroot, $return=false, $hideallparticipants=false) {
748 global $USER, $OUTPUT;
750 if ($urlroot instanceof moodle_url
) {
751 // no changes necessary
754 if (strpos($urlroot, 'http') !== 0) { // Will also work for https
755 // Display error if urlroot is not absolute (this causes the non-JS version to break)
756 debugging('groups_print_activity_menu requires absolute URL for ' .
757 '$urlroot, not <tt>' . s($urlroot) . '</tt>. Example: ' .
758 'groups_print_activity_menu($cm, $CFG->wwwroot . \'/mod/mymodule/view.php?id=13\');',
761 $urlroot = new moodle_url($urlroot);
764 if (!$groupmode = groups_get_activity_groupmode($cm)) {
772 $context = context_module
::instance($cm->id
);
773 $aag = has_capability('moodle/site:accessallgroups', $context);
775 $usergroups = array();
776 if ($groupmode == VISIBLEGROUPS
or $aag) {
777 $allowedgroups = groups_get_all_groups($cm->course
, 0, $cm->groupingid
); // any group in grouping
778 // Get user's own groups and put to the top.
779 $usergroups = groups_get_all_groups($cm->course
, $USER->id
, $cm->groupingid
);
781 $allowedgroups = groups_get_all_groups($cm->course
, $USER->id
, $cm->groupingid
); // only assigned groups
784 $activegroup = groups_get_activity_group($cm, true, $allowedgroups);
786 $groupsmenu = array();
787 if ((!$allowedgroups or $groupmode == VISIBLEGROUPS
or $aag) and !$hideallparticipants) {
788 $groupsmenu[0] = get_string('allparticipants');
791 $groupsmenu +
= groups_sort_menu_options($allowedgroups, $usergroups);
793 if ($groupmode == VISIBLEGROUPS
) {
794 $grouplabel = get_string('groupsvisible');
796 $grouplabel = get_string('groupsseparate');
799 if ($aag and $cm->groupingid
) {
800 if ($grouping = groups_get_grouping($cm->groupingid
)) {
801 $grouplabel = $grouplabel . ' (' . format_string($grouping->name
) . ')';
805 if (count($groupsmenu) == 1) {
806 $groupname = reset($groupsmenu);
807 $output = $grouplabel.': '.$groupname;
809 $select = new single_select($urlroot, 'group', $groupsmenu, $activegroup, null, 'selectgroup');
810 $select->label
= $grouplabel;
811 $output = $OUTPUT->render($select);
814 $output = '<div class="groupselector">'.$output.'</div>';
824 * Returns group active in course, changes the group by default if 'group' page param present
827 * @param stdClass $course course bject
828 * @param bool $update change active group if group param submitted
829 * @param array $allowedgroups list of groups user may access (INTERNAL, to be used only from groups_print_course_menu())
830 * @return mixed false if groups not used, int if groups used, 0 means all groups (access must be verified in SEPARATE mode)
832 function groups_get_course_group($course, $update=false, $allowedgroups=null) {
833 global $USER, $SESSION;
835 if (!$groupmode = $course->groupmode
) {
840 $context = context_course
::instance($course->id
);
841 if (has_capability('moodle/site:accessallgroups', $context)) {
845 if (!is_array($allowedgroups)) {
846 if ($groupmode == VISIBLEGROUPS
or $groupmode === 'aag') {
847 $allowedgroups = groups_get_all_groups($course->id
, 0, $course->defaultgroupingid
);
849 $allowedgroups = groups_get_all_groups($course->id
, $USER->id
, $course->defaultgroupingid
);
853 _group_verify_activegroup($course->id
, $groupmode, $course->defaultgroupingid
, $allowedgroups);
855 // set new active group if requested
856 $changegroup = optional_param('group', -1, PARAM_INT
);
857 if ($update and $changegroup != -1) {
859 if ($changegroup == 0) {
860 // do not allow changing to all groups without accessallgroups capability
861 if ($groupmode == VISIBLEGROUPS
or $groupmode === 'aag') {
862 $SESSION->activegroup
[$course->id
][$groupmode][$course->defaultgroupingid
] = 0;
866 if ($allowedgroups and array_key_exists($changegroup, $allowedgroups)) {
867 $SESSION->activegroup
[$course->id
][$groupmode][$course->defaultgroupingid
] = $changegroup;
872 return $SESSION->activegroup
[$course->id
][$groupmode][$course->defaultgroupingid
];
876 * Returns group active in activity, changes the group by default if 'group' page param present
879 * @param stdClass|cm_info $cm course module object
880 * @param bool $update change active group if group param submitted
881 * @param array $allowedgroups list of groups user may access (INTERNAL, to be used only from groups_print_activity_menu())
882 * @return mixed false if groups not used, int if groups used, 0 means all groups (access must be verified in SEPARATE mode)
884 function groups_get_activity_group($cm, $update=false, $allowedgroups=null) {
885 global $USER, $SESSION;
887 if (!$groupmode = groups_get_activity_groupmode($cm)) {
892 $context = context_module
::instance($cm->id
);
893 if (has_capability('moodle/site:accessallgroups', $context)) {
897 if (!is_array($allowedgroups)) {
898 if ($groupmode == VISIBLEGROUPS
or $groupmode === 'aag') {
899 $allowedgroups = groups_get_all_groups($cm->course
, 0, $cm->groupingid
);
901 $allowedgroups = groups_get_all_groups($cm->course
, $USER->id
, $cm->groupingid
);
905 _group_verify_activegroup($cm->course
, $groupmode, $cm->groupingid
, $allowedgroups);
907 // set new active group if requested
908 $changegroup = optional_param('group', -1, PARAM_INT
);
909 if ($update and $changegroup != -1) {
911 if ($changegroup == 0) {
912 // allgroups visible only in VISIBLEGROUPS or when accessallgroups
913 if ($groupmode == VISIBLEGROUPS
or $groupmode === 'aag') {
914 $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
] = 0;
918 if ($allowedgroups and array_key_exists($changegroup, $allowedgroups)) {
919 $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
] = $changegroup;
924 return $SESSION->activegroup
[$cm->course
][$groupmode][$cm->groupingid
];
928 * Gets a list of groups that the user is allowed to access within the
929 * specified activity.
932 * @param stdClass|cm_info $cm Course-module
933 * @param int $userid User ID (defaults to current user)
934 * @return array An array of group objects, or false if none
936 function groups_get_activity_allowed_groups($cm,$userid=0) {
937 // Use current user by default
943 // Get groupmode for activity, taking into account course settings
944 $groupmode=groups_get_activity_groupmode($cm);
946 // If visible groups mode, or user has the accessallgroups capability,
947 // then they can access all groups for the activity...
948 $context = context_module
::instance($cm->id
);
949 if ($groupmode == VISIBLEGROUPS
or has_capability('moodle/site:accessallgroups', $context, $userid)) {
950 return groups_get_all_groups($cm->course
, 0, $cm->groupingid
);
952 // ...otherwise they can only access groups they belong to
953 return groups_get_all_groups($cm->course
, $userid, $cm->groupingid
);
958 * Determine if a given group is visible to user or not in a given context.
961 * @param int $groupid Group id to test. 0 for all groups.
962 * @param stdClass $course Course object.
963 * @param stdClass $cm Course module object.
964 * @param int $userid user id to test against. Defaults to $USER.
965 * @return boolean true if visible, false otherwise
967 function groups_group_visible($groupid, $course, $cm = null, $userid = null) {
970 if (empty($userid)) {
974 $groupmode = empty($cm) ?
groups_get_course_groupmode($course) : groups_get_activity_groupmode($cm, $course);
975 if ($groupmode == NOGROUPS ||
$groupmode == VISIBLEGROUPS
) {
976 // Groups are not used, or everything is visible, no need to go any further.
980 $context = empty($cm) ? context_course
::instance($course->id
) : context_module
::instance($cm->id
);
981 if (has_capability('moodle/site:accessallgroups', $context, $userid)) {
982 // User can see everything. Groupid = 0 is handled here as well.
984 } else if ($groupid != 0) {
985 // Group mode is separate, and user doesn't have access all groups capability. Check if user can see requested group.
986 $groups = empty($cm) ?
groups_get_all_groups($course->id
, $userid) : groups_get_activity_allowed_groups($cm, $userid);
987 if (array_key_exists($groupid, $groups)) {
988 // User can see the group.
996 * Get sql and parameters that will return user ids for a group or groups
998 * @param int|array $groupids Where this is an array of multiple groups, it will match on members of any of the groups
999 * @param context $context Course context or a context within a course. Mandatory when $groupid = USERSWITHOUTGROUP
1000 * @param int $groupsjointype Join type logic used. Defaults to 'Any' (logical OR).
1001 * @return array($sql, $params)
1002 * @throws coding_exception if empty or invalid context submitted when $groupid = USERSWITHOUTGROUP
1004 function groups_get_members_ids_sql($groupids, context
$context = null, $groupsjointype = GROUPS_JOIN_ANY
) {
1005 if (!is_array($groupids)) {
1006 $groupids = [$groupids];
1009 $groupjoin = groups_get_members_join($groupids, 'u.id', $context, $groupsjointype);
1011 $sql = "SELECT DISTINCT u.id
1014 WHERE u.deleted = 0";
1015 if (!empty($groupjoin->wheres
)) {
1016 $sql .= ' AND '. $groupjoin->wheres
;
1019 return array($sql, $groupjoin->params
);
1023 * Returns array with SQL and parameters returning userids and concatenated group names for given course
1025 * This function uses 'gn[0-9]+_' prefix for table names and parameters
1027 * @param int $courseid
1028 * @param string $separator
1029 * @return array [$sql, $params]
1031 function groups_get_names_concat_sql(int $courseid, string $separator = ', '): array {
1034 // Use unique prefix just in case somebody makes some SQL magic with the result.
1037 $prefix = "gn{$i}_";
1039 $groupalias = $prefix . 'g';
1040 $groupmemberalias = $prefix . 'gm';
1041 $groupcourseparam = $prefix . 'courseid';
1043 $sqlgroupconcat = $DB->sql_group_concat("{$groupalias}.name", $separator, "{$groupalias}.name");
1045 $sql = "SELECT {$groupmemberalias}.userid, {$sqlgroupconcat} AS groupnames
1046 FROM {groups} {$groupalias}
1047 JOIN {groups_members} {$groupmemberalias} ON {$groupmemberalias}.groupid = {$groupalias}.id
1048 WHERE {$groupalias}.courseid = :{$groupcourseparam}
1049 GROUP BY {$groupmemberalias}.userid";
1051 return [$sql, [$groupcourseparam => $courseid]];
1055 * Get sql join to return users in a group
1057 * @param int|array $groupids The groupids, 0 or [] means all groups and USERSWITHOUTGROUP no group
1058 * @param string $useridcolumn The column of the user id from the calling SQL, e.g. u.id
1059 * @param context $context Course context or a context within a course. Mandatory when $groupids includes USERSWITHOUTGROUP
1060 * @param int $jointype Join type logic used. Defaults to 'Any' (logical OR).
1061 * @return \core\dml\sql_join Contains joins, wheres, params
1062 * @throws coding_exception if empty or invalid context submitted when $groupid = USERSWITHOUTGROUP
1064 function groups_get_members_join($groupids, $useridcolumn, context
$context = null, int $jointype = GROUPS_JOIN_ANY
) {
1067 // Use unique prefix just in case somebody makes some SQL magic with the result.
1070 $prefix = 'gm' . $i . '_';
1072 if (!is_array($groupids)) {
1073 $groupids = $groupids ?
[$groupids] : [];
1080 $coursecontext = (!empty($context)) ?
$context->get_course_context() : null;
1081 if (in_array(USERSWITHOUTGROUP
, $groupids) && empty($coursecontext)) {
1082 // Throw an exception if $context is empty or invalid because it's needed to get the users without any group.
1083 throw new coding_exception('Missing or wrong $context parameter in an attempt to get members without any group');
1086 // Handle cases where we need to include/exclude users not in any groups.
1087 if (($nogroupskey = array_search(USERSWITHOUTGROUP
, $groupids)) !== false) {
1088 // Get members without any group.
1089 $join .= "LEFT JOIN (
1090 SELECT g.courseid, m.groupid, m.userid
1091 FROM {groups_members} m
1092 JOIN {groups} g ON g.id = m.groupid
1093 ) {$prefix}gm ON ({$prefix}gm.userid = {$useridcolumn} AND {$prefix}gm.courseid = :{$prefix}gcourseid)";
1095 // Join type 'None' when filtering by 'no groups' means match users in at least one group.
1096 if ($jointype == GROUPS_JOIN_NONE
) {
1097 $where = "{$prefix}gm.userid IS NOT NULL";
1099 // All other cases need to match users not in any group.
1100 $where = "{$prefix}gm.userid IS NULL";
1103 $param = ["{$prefix}gcourseid" => $coursecontext->instanceid
];
1104 unset($groupids[$nogroupskey]);
1107 // Handle any specified groups that need to be included.
1108 if (!empty($groupids)) {
1109 switch ($jointype) {
1110 case GROUPS_JOIN_ALL
:
1111 // Handle matching all of the provided groups (logical AND).
1112 $joinallwheres = [];
1114 foreach ($groupids as $groupid) {
1115 $gmalias = "{$prefix}gm{$aliaskey}";
1117 $join .= "LEFT JOIN {groups_members} {$gmalias}
1118 ON ({$gmalias}.userid = {$useridcolumn} AND {$gmalias}.groupid = :{$gmalias}param)";
1119 $joinallwheres[] = "{$gmalias}.userid IS NOT NULL";
1120 $param["{$gmalias}param"] = $groupid;
1123 // Members of all of the specified groups only.
1124 if (empty($where)) {
1125 $where = '(' . implode(' AND ', $joinallwheres) . ')';
1127 // Members of the specified groups and also no groups.
1128 // NOTE: This will always return no results, because you cannot be in specified groups and also be in no groups.
1129 $where = '(' . $where . ' AND ' . implode(' AND ', $joinallwheres) . ')';
1134 case GROUPS_JOIN_ANY
:
1135 // Handle matching any of the provided groups (logical OR).
1136 list($groupssql, $groupsparams) = $DB->get_in_or_equal($groupids, SQL_PARAMS_NAMED
, $prefix);
1138 $join .= "LEFT JOIN {groups_members} {$prefix}gm2
1139 ON ({$prefix}gm2.userid = {$useridcolumn} AND {$prefix}gm2.groupid {$groupssql})";
1140 $param = array_merge($param, $groupsparams);
1142 // Members of any of the specified groups only.
1143 if (empty($where)) {
1144 $where = "{$prefix}gm2.userid IS NOT NULL";
1146 // Members of any of the specified groups or no groups.
1147 $where = "({$where} OR {$prefix}gm2.userid IS NOT NULL)";
1152 case GROUPS_JOIN_NONE
:
1153 // Handle matching none of the provided groups (logical NOT).
1154 list($groupssql, $groupsparams) = $DB->get_in_or_equal($groupids, SQL_PARAMS_NAMED
, $prefix);
1156 $join .= "LEFT JOIN {groups_members} {$prefix}gm2
1157 ON ({$prefix}gm2.userid = {$useridcolumn} AND {$prefix}gm2.groupid {$groupssql})";
1158 $param = array_merge($param, $groupsparams);
1160 // Members of none of the specified groups only.
1161 if (empty($where)) {
1162 $where = "{$prefix}gm2.userid IS NULL";
1164 // Members of any unspecified groups (not a member of the specified groups, and not a member of no groups).
1165 $where = "({$where} AND {$prefix}gm2.userid IS NULL)";
1172 return new \core\dml\
sql_join($join, $where, $param);
1176 * Internal method, sets up $SESSION->activegroup and verifies previous value
1178 * @param int $courseid
1179 * @param int|string $groupmode SEPARATEGROUPS, VISIBLEGROUPS or 'aag' (access all groups)
1180 * @param int $groupingid 0 means all groups
1181 * @param array $allowedgroups list of groups user can see
1183 function _group_verify_activegroup($courseid, $groupmode, $groupingid, array $allowedgroups) {
1184 global $SESSION, $USER;
1186 // init activegroup array if necessary
1187 if (!isset($SESSION->activegroup
)) {
1188 $SESSION->activegroup
= array();
1190 if (!array_key_exists($courseid, $SESSION->activegroup
)) {
1191 $SESSION->activegroup
[$courseid] = array(SEPARATEGROUPS
=>array(), VISIBLEGROUPS
=>array(), 'aag'=>array());
1194 // make sure that the current group info is ok
1195 if (array_key_exists($groupingid, $SESSION->activegroup
[$courseid][$groupmode]) and !array_key_exists($SESSION->activegroup
[$courseid][$groupmode][$groupingid], $allowedgroups)) {
1196 // active group does not exist anymore or is 0
1197 if ($SESSION->activegroup
[$courseid][$groupmode][$groupingid] > 0 or $groupmode == SEPARATEGROUPS
) {
1198 // do not do this if all groups selected and groupmode is not separate
1199 unset($SESSION->activegroup
[$courseid][$groupmode][$groupingid]);
1203 // set up defaults if necessary
1204 if (!array_key_exists($groupingid, $SESSION->activegroup
[$courseid][$groupmode])) {
1205 if ($groupmode == 'aag') {
1206 $SESSION->activegroup
[$courseid][$groupmode][$groupingid] = 0; // all groups by default if user has accessallgroups
1208 } else if ($allowedgroups) {
1209 if ($groupmode != SEPARATEGROUPS
and $mygroups = groups_get_all_groups($courseid, $USER->id
, $groupingid)) {
1210 $firstgroup = reset($mygroups);
1212 $firstgroup = reset($allowedgroups);
1214 $SESSION->activegroup
[$courseid][$groupmode][$groupingid] = $firstgroup->id
;
1217 // this happen when user not assigned into group in SEPARATEGROUPS mode or groups do not exist yet
1218 // mod authors must add extra checks for this when SEPARATEGROUPS mode used (such as when posting to forum)
1219 $SESSION->activegroup
[$courseid][$groupmode][$groupingid] = 0;
1225 * Caches group data for a particular course to speed up subsequent requests.
1227 * @param int $courseid The course id to cache data for.
1228 * @param cache $cache The cache if it has already been initialised. If not a new one will be created.
1229 * @return stdClass A data object containing groups, groupings, and mappings.
1231 function groups_cache_groupdata($courseid, cache
$cache = null) {
1234 if ($cache === null) {
1235 // Initialise a cache if we wern't given one.
1236 $cache = cache
::make('core', 'groupdata');
1239 // Get the groups that belong to the course.
1240 $groups = $DB->get_records('groups', array('courseid' => $courseid), 'name ASC');
1241 // Get the groupings that belong to the course.
1242 $groupings = $DB->get_records('groupings', array('courseid' => $courseid), 'name ASC');
1244 if (!is_array($groups)) {
1248 if (!is_array($groupings)) {
1249 $groupings = array();
1252 if (!empty($groupings)) {
1253 // Finally get the mappings between the two.
1254 list($insql, $params) = $DB->get_in_or_equal(array_keys($groupings));
1255 $mappings = $DB->get_records_sql("
1256 SELECT gg.id, gg.groupingid, gg.groupid
1257 FROM {groupings_groups} gg
1258 JOIN {groups} g ON g.id = gg.groupid
1259 WHERE gg.groupingid $insql
1260 ORDER BY g.name ASC", $params);
1262 $mappings = array();
1265 // Prepare the data array.
1266 $data = new stdClass
;
1267 $data->groups
= $groups;
1268 $data->groupings
= $groupings;
1269 $data->mappings
= $mappings;
1271 $cache->set($courseid, $data);
1272 // Finally return it so it can be used if desired.
1277 * Gets group data for a course.
1279 * This returns an object with the following properties:
1280 * - groups : An array of all the groups in the course.
1281 * - groupings : An array of all the groupings within the course.
1282 * - mappings : An array of group to grouping mappings.
1284 * @param int $courseid The course id to get data for.
1285 * @param cache $cache The cache if it has already been initialised. If not a new one will be created.
1288 function groups_get_course_data($courseid, cache
$cache = null) {
1289 if ($cache === null) {
1290 // Initialise a cache if we wern't given one.
1291 $cache = cache
::make('core', 'groupdata');
1293 // Try to retrieve it from the cache.
1294 $data = $cache->get($courseid);
1295 if ($data === false) {
1296 $data = groups_cache_groupdata($courseid, $cache);
1302 * Determine if the current user can see at least one of the groups of the specified user.
1304 * @param stdClass $course Course object.
1305 * @param int $userid user id to check against.
1306 * @param stdClass $cm Course module object. Optional, just for checking at activity level instead course one.
1307 * @return boolean true if visible, false otherwise
1310 function groups_user_groups_visible($course, $userid, $cm = null) {
1313 $groupmode = empty($cm) ?
groups_get_course_groupmode($course) : groups_get_activity_groupmode($cm, $course);
1314 if ($groupmode == NOGROUPS ||
$groupmode == VISIBLEGROUPS
) {
1315 // Groups are not used, or everything is visible, no need to go any further.
1319 $context = empty($cm) ? context_course
::instance($course->id
) : context_module
::instance($cm->id
);
1320 if (has_capability('moodle/site:accessallgroups', $context)) {
1321 // User can see everything.
1324 // Group mode is separate, and user doesn't have access all groups capability.
1326 $usergroups = groups_get_all_groups($course->id
, $userid);
1327 $currentusergroups = groups_get_all_groups($course->id
, $USER->id
);
1329 $usergroups = groups_get_activity_allowed_groups($cm, $userid);
1330 $currentusergroups = groups_get_activity_allowed_groups($cm, $USER->id
);
1333 $samegroups = array_intersect_key($currentusergroups, $usergroups);
1334 if (!empty($samegroups)) {
1343 * Returns the users in the specified groups.
1345 * This function does not return complete user objects by default. It returns the user_picture basic fields.
1347 * @param array $groupsids The list of groups ids to check
1348 * @param array $extrafields extra fields to be included in result
1349 * @param int $sort optional sorting of returned users
1350 * @return array|bool Returns an array of the users for the specified group or false if no users or an error returned.
1353 function groups_get_groups_members($groupsids, $extrafields=null, $sort='lastname ASC') {
1356 $userfieldsapi = \core_user\fields
::for_userpic()->including(...($extrafields ??
[]));
1357 $userfields = $userfieldsapi->get_sql('u', false, '', '', false)->selects
;
1358 list($insql, $params) = $DB->get_in_or_equal($groupsids);
1360 return $DB->get_records_sql("SELECT $userfields
1361 FROM {user} u, {groups_members} gm
1362 WHERE u.id = gm.userid AND gm.groupid $insql
1363 GROUP BY $userfields
1364 ORDER BY $sort", $params);
1368 * Returns users who share group membership with the specified user in the given actiivty.
1370 * @param stdClass|cm_info $cm course module
1371 * @param int $userid user id (empty for current user)
1372 * @return array a list of user
1375 function groups_get_activity_shared_group_members($cm, $userid = null) {
1378 if (empty($userid)) {
1382 $groupsids = array_keys(groups_get_activity_allowed_groups($cm, $userid));
1383 // No groups no users.
1384 if (empty($groupsids)) {
1387 return groups_get_groups_members($groupsids);