calendar/lib: calendar_set_filters() use pre-fetched context and course recs
[moodle-pu.git] / lib / grouplib.php
blob745b50ca94484272ffa571d362a911f4a3c0bca9
1 <?php //$Id$
3 /**
4 * Groups not used in course or activity
5 */
6 define('NOGROUPS', 0);
8 /**
9 * Groups used, users do not see other groups
11 define('SEPARATEGROUPS', 1);
13 /**
14 * Groups used, students see other groups
16 define('VISIBLEGROUPS', 2);
19 /**
20 * Determines if a group with a given groupid exists.
21 * @param int $groupid The groupid to check for
22 * @return boolean True if the group exists, false otherwise or if an error
23 * occurred.
25 function groups_group_exists($groupid) {
26 return record_exists('groups', 'id', $groupid);
29 /**
30 * Gets the name of a group with a specified id
31 * @param int $groupid The id of the group
32 * @return string The name of the group
34 function groups_get_group_name($groupid) {
35 return get_field('groups', 'name', 'id', $groupid);
38 /**
39 * Returns the groupid of a group with the name specified for the course.
40 * Group names should be unique in course
41 * @param int $courseid The id of the course
42 * @param string $name name of group (without magic quotes)
43 * @return int $groupid
45 function groups_get_group_by_name($courseid, $name) {
46 if ($groups = get_records_select('groups', "courseid=$courseid AND name='".addslashes($name)."'")) {
47 return key($groups);
49 return false;
52 /**
53 * Returns the groupingid of a grouping with the name specified for the course.
54 * Grouping names should be unique in course
55 * @param int $courseid The id of the course
56 * @param string $name name of group (without magic quotes)
57 * @return int $groupid
59 function groups_get_grouping_by_name($courseid, $name) {
60 if ($groupings = get_records_select('groupings', "courseid=$courseid AND name='".addslashes($name)."'")) {
61 return key($groupings);
63 return false;
66 /**
67 * Get the group object
68 * @param groupid ID of the group.
69 * @return group object
71 function groups_get_group($groupid) {
72 return get_record('groups', 'id', $groupid);
75 /**
76 * Gets array of all groups in a specified course.
77 * @param int $courseid The id of the course.
78 * @param int $userid optional user id, returns only groups of the user.
79 * @param int $groupingid optional returns only groups in the specified grouping.
80 * @return array | false Returns an array of the group IDs or false if no records
81 * or an error occurred.
83 function groups_get_all_groups($courseid, $userid=0, $groupingid=0) {
84 global $CFG;
86 // groupings are ignored when not enabled
87 if (empty($CFG->enablegroupings)) {
88 $groupingid = 0;
91 if (!empty($userid)) {
92 $userfrom = ", {$CFG->prefix}groups_members gm";
93 $userwhere = "AND g.id = gm.groupid AND gm.userid = '$userid'";
94 } else {
95 $userfrom = "";
96 $userwhere = "";
99 if (!empty($groupingid)) {
100 $groupingfrom = ", {$CFG->prefix}groupings_groups gg";
101 $groupingwhere = "AND g.id = gg.groupid AND gg.groupingid = '$groupingid'";
102 } else {
103 $groupingfrom = "";
104 $groupingwhere = "";
107 return get_records_sql("SELECT g.*
108 FROM {$CFG->prefix}groups g $userfrom $groupingfrom
109 WHERE g.courseid = '$courseid' $userwhere $groupingwhere
110 ORDER BY name ASC");
114 * Determines if the user is a member of the given group.
116 * @uses $USER If $userid is null, use the global object.
117 * @param int $groupid The group to check for membership.
118 * @param int $userid The user to check against the group.
119 * @return boolean True if the user is a member, false otherwise.
121 function groups_is_member($groupid, $userid=null) {
122 global $USER;
124 if (!$userid) {
125 $userid = $USER->id;
128 return record_exists('groups_members', 'groupid', $groupid, 'userid', $userid);
132 * Determines if current or specified is member of any active group in activity
133 * @param object $cm coruse module object
134 * @param int $userid id of user, null menas $USER->id
135 * @return booelan true if user member of at least one group used in activity
137 function groups_has_membership($cm, $userid=null) {
138 global $CFG, $USER;
140 static $cache = array();
142 // groupings are ignored when not enabled
143 if (empty($CFG->enablegroupings)) {
144 $cm->groupingid = 0;
147 if (empty($userid)) {
148 $userid = $USER->id;
151 $cachekey = $userid.'|'.$cm->course.'|'.$cm->groupingid;
152 if (isset($cache[$cachekey])) {
153 return($cache[$cachekey]);
156 if ($cm->groupingid) {
157 // find out if member of any group in selected activity grouping
158 $sql = "SELECT 'x'
159 FROM {$CFG->prefix}groups_members gm, {$CFG->prefix}groupings_groups gg
160 WHERE gm.userid = $userid AND gm.groupid = gg.groupid AND gg.groupingid = {$cm->groupingid}";
162 } else {
163 // no grouping used - check all groups in course
164 $sql = "SELECT 'x'
165 FROM {$CFG->prefix}groups_members gm, {$CFG->prefix}groups g
166 WHERE gm.userid = $userid AND gm.groupid = g.id AND g.courseid = {$cm->course}";
169 $cache[$cachekey] = record_exists_sql($sql);
171 return $cache[$cachekey];
175 * Returns the users in the specified group.
176 * @param int $groupid The groupid to get the users for
177 * @param int $fields The fields to return
178 * @param int $sort optional sorting of returned users
179 * @return array | false Returns an array of the users for the specified
180 * group or false if no users or an error returned.
182 function groups_get_members($groupid, $fields='u.*', $sort='lastname ASC') {
183 global $CFG;
185 return get_records_sql("SELECT $fields
186 FROM {$CFG->prefix}user u, {$CFG->prefix}groups_members gm
187 WHERE u.id = gm.userid AND gm.groupid = '$groupid'
188 ORDER BY $sort");
193 * Returns the users in the specified grouping.
194 * @param int $groupingid The groupingid to get the users for
195 * @param int $fields The fields to return
196 * @param int $sort optional sorting of returned users
197 * @return array | false Returns an array of the users for the specified
198 * group or false if no users or an error returned.
200 function groups_get_grouping_members($groupingid, $fields='u.*', $sort='lastname ASC') {
201 global $CFG;
203 return get_records_sql("SELECT $fields
204 FROM {$CFG->prefix}user u
205 INNER JOIN {$CFG->prefix}groups_members gm ON u.id = gm.userid
206 INNER JOIN {$CFG->prefix}groupings_groups gg ON gm.groupid = gg.groupid
207 WHERE gg.groupingid = $groupingid
208 ORDER BY $sort");
212 * Returns effective groupmode used in course
213 * @return integer group mode
215 function groups_get_course_groupmode($course) {
216 return $course->groupmode;
220 * Returns effective groupmode used in activity, course setting
221 * overrides activity setting if groupmodeforce enabled.
222 * @return integer group mode
224 function groups_get_activity_groupmode($cm) {
225 global $COURSE;
227 // get course object (reuse COURSE if possible)
228 if ($cm->course == $COURSE->id) {
229 $course = $COURSE;
230 } else {
231 if (!$course = get_record('course', 'id', $cm->course)) {
232 error('Incorrect course id in cm');
236 return empty($course->groupmodeforce) ? $cm->groupmode : $course->groupmode;
240 * Print group menu selector for course level.
241 * @param object $course course object
242 * @param string $urlroot return address
243 * @param boolean $return return as string instead of printing
244 * @return mixed void or string depending on $return param
246 function groups_print_course_menu($course, $urlroot, $return=false) {
247 global $CFG, $USER;
249 if (!$groupmode = $course->groupmode) {
250 if ($return) {
251 return '';
252 } else {
253 return;
257 $context = get_context_instance(CONTEXT_COURSE, $course->id);
258 if ($groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
259 $allowedgroups = groups_get_all_groups($course->id, 0);
260 } else {
261 $allowedgroups = groups_get_all_groups($course->id, $USER->id);
264 $activegroup = groups_get_course_group($course, true);
266 $groupsmenu = array();
267 if (!$allowedgroups or $groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
268 $groupsmenu[0] = get_string('allparticipants');
271 if ($allowedgroups) {
272 foreach ($allowedgroups as $group) {
273 $groupsmenu[$group->id] = format_string($group->name);
277 if ($groupmode == VISIBLEGROUPS) {
278 $grouplabel = get_string('groupsvisible');
279 } else {
280 $grouplabel = get_string('groupsseparate');
283 if (count($groupsmenu) == 1) {
284 $groupname = reset($groupsmenu);
285 $output = $grouplabel.': '.$groupname;
286 } else {
287 $output = popup_form($urlroot.'&amp;group=', $groupsmenu, 'selectgroup', $activegroup, '', '', '', true, 'self', $grouplabel);
290 $output = '<div class="groupselector">'.$output.'</div>';
292 if ($return) {
293 return $output;
294 } else {
295 echo $output;
300 * Print group menu selector for activity.
301 * @param object $cm course module object
302 * @param string $urlroot return address
303 * @param boolean $return return as string instead of printing
304 * @return mixed void or string depending on $return param
306 function groups_print_activity_menu($cm, $urlroot, $return=false) {
307 global $CFG, $USER;
309 // groupings are ignored when not enabled
310 if (empty($CFG->enablegroupings)) {
311 $cm->groupingid = 0;
314 if (!$groupmode = groups_get_activity_groupmode($cm)) {
315 if ($return) {
316 return '';
317 } else {
318 return;
322 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
323 if ($groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
324 $allowedgroups = groups_get_all_groups($cm->course, 0, $cm->groupingid); // any group in grouping (all if groupings not used)
325 } else {
326 $allowedgroups = groups_get_all_groups($cm->course, $USER->id, $cm->groupingid); // only assigned groups
329 $activegroup = groups_get_activity_group($cm, true);
331 $groupsmenu = array();
332 if (!$allowedgroups or $groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
333 $groupsmenu[0] = get_string('allparticipants');
336 if ($allowedgroups) {
337 foreach ($allowedgroups as $group) {
338 $groupsmenu[$group->id] = format_string($group->name);
342 if ($groupmode == VISIBLEGROUPS) {
343 $grouplabel = get_string('groupsvisible');
344 } else {
345 $grouplabel = get_string('groupsseparate');
348 if (count($groupsmenu) == 1) {
349 $groupname = reset($groupsmenu);
350 $output = $grouplabel.': '.$groupname;
351 } else {
352 $output = popup_form($urlroot.'&amp;group=', $groupsmenu, 'selectgroup', $activegroup, '', '', '', true, 'self', $grouplabel);
355 $output = '<div class="groupselector">'.$output.'</div>';
357 if ($return) {
358 return $output;
359 } else {
360 echo $output;
365 * Returns group active in course, changes the group by default if 'group' page param present
367 * @param object $course course bject
368 * @param boolean $update change active group if group param submitted
369 * @return mixed false if groups not used, int if groups used, 0 means all groups (access must be verified in SEPARATE mode)
371 function groups_get_course_group($course, $update=false) {
372 global $CFG, $USER, $SESSION;
374 if (!$groupmode = $course->groupmode) {
375 // NOGROUPS used
376 return false;
379 // init activegroup array
380 if (!array_key_exists('activegroup', $SESSION)) {
381 $SESSION->activegroup = array();
383 if (!array_key_exists($course->id, $SESSION->activegroup)) {
384 $SESSION->activegroup[$course->id] = array(SEPARATEGROUPS=>array(), VISIBLEGROUPS=>array());
387 // grouping used the first time - add first user group as default
388 if (!array_key_exists(0, $SESSION->activegroup[$course->id][$groupmode])) {
389 if ($usergroups = groups_get_all_groups($course->id, $USER->id, 0)) {
390 $fistgroup = reset($usergroups);
391 $SESSION->activegroup[$course->id][$groupmode][0] = $fistgroup->id;
392 } else {
393 // this happen when user not assigned into group in SEPARATEGROUPS mode or groups do not exist yet
394 // mod authors must add extra checks for this when SEPARATEGROUPS mode used (such as when posting to forum)
395 $SESSION->activegroup[$course->id][$groupmode][0] = 0;
399 // set new active group if requested
400 $changegroup = optional_param('group', -1, PARAM_INT);
401 if ($update and $changegroup != -1) {
402 $context = get_context_instance(CONTEXT_COURSE, $course->id);
404 if ($changegroup == 0) {
405 // do not allow changing to all groups without accessallgroups capability
406 if ($groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
407 $SESSION->activegroup[$course->id][$groupmode][0] = 0;
410 } else {
411 // first make list of allowed groups
412 if ($groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
413 $allowedgroups = groups_get_all_groups($course->id, 0, 0);
414 } else {
415 $allowedgroups = groups_get_all_groups($course->id, $USER->id, 0);
418 if ($allowedgroups and array_key_exists($changegroup, $allowedgroups)) {
419 $SESSION->activegroup[$course->id][$groupmode][0] = $changegroup;
424 return $SESSION->activegroup[$course->id][$groupmode][0];
428 * Returns group active in activity, changes the group by default if 'group' page param present
430 * @param object $cm course module object
431 * @param boolean $update change active group if group param submitted
432 * @return mixed false if groups not used, int if groups used, 0 means all groups (access must be verified in SEPARATE mode)
434 function groups_get_activity_group($cm, $update=false) {
435 global $CFG, $USER, $SESSION;
437 // groupings are ignored when not enabled
438 if (empty($CFG->enablegroupings)) {
439 $cm->groupingid = 0;
442 if (!$groupmode = groups_get_activity_groupmode($cm)) {
443 // NOGROUPS used
444 return false;
447 // init activegroup array
448 if (!array_key_exists('activegroup', $SESSION)) {
449 $SESSION->activegroup = array();
451 if (!array_key_exists($cm->course, $SESSION->activegroup)) {
452 $SESSION->activegroup[$cm->course] = array(SEPARATEGROUPS=>array(), VISIBLEGROUPS=>array());
455 // grouping used the first time - add first user group as default
456 if (!array_key_exists($cm->groupingid, $SESSION->activegroup[$cm->course][$groupmode])) {
457 if ($usergroups = groups_get_all_groups($cm->course, $USER->id, $cm->groupingid)) {
458 $fistgroup = reset($usergroups);
459 $SESSION->activegroup[$cm->course][$groupmode][$cm->groupingid] = $fistgroup->id;
460 } else {
461 // this happen when user not assigned into group in SEPARATEGROUPS mode or groups do not exist yet
462 // mod authors must add extra checks for this when SEPARATEGROUPS mode used (such as when posting to forum)
463 $SESSION->activegroup[$cm->course][$groupmode][$cm->groupingid] = 0;
467 // set new active group if requested
468 $changegroup = optional_param('group', -1, PARAM_INT);
469 if ($update and $changegroup != -1) {
470 $context = get_context_instance(CONTEXT_MODULE, $cm->id);
472 if ($changegroup == 0) {
473 // do not allow changing to all groups without accessallgroups capability
474 if ($groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
475 $SESSION->activegroup[$cm->course][$groupmode][$cm->groupingid] = 0;
478 } else {
479 // first make list of allowed groups
480 if ($groupmode == VISIBLEGROUPS or has_capability('moodle/site:accessallgroups', $context)) {
481 $allowedgroups = groups_get_all_groups($cm->course, 0, $cm->groupingid); // any group in grouping (all if groupings not used)
482 } else {
483 $allowedgroups = groups_get_all_groups($cm->course, $USER->id, $cm->groupingid); // only assigned groups
486 if ($allowedgroups and array_key_exists($changegroup, $allowedgroups)) {
487 $SESSION->activegroup[$cm->course][$groupmode][$cm->groupingid] = $changegroup;
492 return $SESSION->activegroup[$cm->course][$groupmode][$cm->groupingid];
496 * Determine if a course module is currently visible to a user
497 * @uses $USER If $userid is null, use the global object.
498 * @param int $cm The course module
499 * @param int $userid The user to check against the group.
500 * @return boolean True if the user can view the course module, false otherwise.
502 function groups_course_module_visible($cm, $userid=null) {
503 global $CFG, $USER;
505 if (empty($userid)) {
506 $userid = $USER->id;
508 if (empty($CFG->enablegroupings)) {
509 return(true);
511 if (empty($cm->groupmembersonly)) {
512 return(true);
514 if (groups_has_membership($cm, $userid) || has_capability('moodle/site:accessallgroups', get_context_instance(CONTEXT_MODULE, $cm->id), $userid)) {
515 return(true);
517 return(false);