4 * Library of functions for database manipulation.
6 * Other main libraries:
7 * - weblib.php - functions that produce web output
8 * - moodlelib.php - general-purpose Moodle functions
9 * @author Martin Dougiamas and many others
11 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
17 * Escape all dangerous characters in a data record
19 * $dataobject is an object containing needed data
20 * Run over each field exectuting addslashes() function
21 * to escape SQL unfriendly characters (e.g. quotes)
22 * Handy when writing back data read from the database
24 * @param $dataobject Object containing the database record
25 * @return object Same object with neccessary characters escaped
27 function addslashes_object( $dataobject ) {
28 $a = get_object_vars( $dataobject);
29 foreach ($a as $key=>$value) {
30 $a[$key] = addslashes( $value );
35 /// USER DATABASE ////////////////////////////////////////////////
38 * Returns $user object of the main admin user
39 * primary admin = admin with lowest role_assignment id among admins
41 * @return object(admin) An associative array representing the admin user.
43 function get_admin () {
47 if ( $admins = get_admins() ) {
48 foreach ($admins as $admin) {
49 return $admin; // ie the first one
57 * Returns list of all admins
62 function get_admins() {
66 $context = get_context_instance(CONTEXT_SYSTEM
, SITEID
);
68 return get_users_by_capability($context, 'moodle/site:doanything', 'u.*, ra.id as adminid', 'ra.id ASC'); // only need first one
73 function get_courses_in_metacourse($metacourseid) {
76 $sql = "SELECT c.id,c.shortname,c.fullname FROM {$CFG->prefix}course c, {$CFG->prefix}course_meta mc WHERE mc.parent_course = $metacourseid
77 AND mc.child_course = c.id ORDER BY c.shortname";
79 return get_records_sql($sql);
82 function get_courses_notin_metacourse($metacourseid,$count=false) {
87 $sql = "SELECT COUNT(c.id)";
89 $sql = "SELECT c.id,c.shortname,c.fullname";
92 $alreadycourses = get_courses_in_metacourse($metacourseid);
94 $sql .= " FROM {$CFG->prefix}course c WHERE ".((!empty($alreadycourses)) ?
"c.id NOT IN (".implode(',',array_keys($alreadycourses)).")
95 AND " : "")." c.id !=$metacourseid and c.id != ".SITEID
." and c.metacourse != 1 ".((empty($count)) ?
" ORDER BY c.shortname" : "");
97 return get_records_sql($sql);
100 function count_courses_notin_metacourse($metacourseid) {
103 $alreadycourses = get_courses_in_metacourse($metacourseid);
105 $sql = "SELECT COUNT(c.id) AS notin FROM {$CFG->prefix}course c
106 WHERE ".((!empty($alreadycourses)) ?
"c.id NOT IN (".implode(',',array_keys($alreadycourses)).")
107 AND " : "")." c.id !=$metacourseid and c.id != ".SITEID
." and c.metacourse != 1";
109 if (!$count = get_record_sql($sql)) {
113 return $count->notin
;
117 * Search through course users
119 * If $coursid specifies the site course then this function searches
120 * through all undeleted and confirmed users
124 * @param int $courseid The course in question.
125 * @param int $groupid The group in question.
126 * @param string $searchtext ?
127 * @param string $sort ?
128 * @param string $exceptions ?
131 function search_users($courseid, $groupid, $searchtext, $sort='', $exceptions='') {
135 $fullname = sql_fullname('u.firstname', 'u.lastname');
137 if (!empty($exceptions)) {
138 $except = ' AND u.id NOT IN ('. $exceptions .') ';
144 $order = ' ORDER BY '. $sort;
149 $select = 'u.deleted = \'0\' AND u.confirmed = \'1\'';
151 if (!$courseid or $courseid == SITEID
) {
152 return get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
153 FROM {$CFG->prefix}user u
155 AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
160 //TODO:check. Remove group DB dependencies.
161 return get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
162 FROM {$CFG->prefix}user u,
163 {$CFG->prefix}groups_members gm
164 WHERE $select AND gm.groupid = '$groupid' AND gm.userid = u.id
165 AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
168 $context = get_context_instance(CONTEXT_COURSE
, $courseid);
169 $contextlists = get_related_contexts_string($context);
170 $users = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
171 FROM {$CFG->prefix}user u,
172 {$CFG->prefix}role_assignments ra
173 WHERE $select AND ra.contextid $contextlists AND ra.userid = u.id
174 AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
183 * Returns a list of all site users
184 * Obsolete, just calls get_course_users(SITEID)
187 * @deprecated Use {@link get_course_users()} instead.
188 * @param string $fields A comma separated list of fields to be returned from the chosen table.
189 * @return object|false {@link $USER} records or false if error.
191 function get_site_users($sort='u.lastaccess DESC', $fields='*', $exceptions='') {
193 return get_course_users(SITEID
, $sort, $exceptions, $fields);
198 * Returns a subset of users
201 * @param bool $get If false then only a count of the records is returned
202 * @param string $search A simple string to search for
203 * @param bool $confirmed A switch to allow/disallow unconfirmed users
204 * @param array(int) $exceptions A list of IDs to ignore, eg 2,4,5,8,9,10
205 * @param string $sort A SQL snippet for the sorting criteria to use
206 * @param string $firstinitial ?
207 * @param string $lastinitial ?
208 * @param string $page ?
209 * @param string $recordsperpage ?
210 * @param string $fields A comma separated list of fields to be returned from the chosen table.
211 * @return object|false|int {@link $USER} records unless get is false in which case the integer count of the records found is returned. False is returned if an error is encountered.
213 function get_users($get=true, $search='', $confirmed=false, $exceptions='', $sort='firstname ASC',
214 $firstinitial='', $lastinitial='', $page='', $recordsperpage='', $fields='*') {
218 if ($get && !$recordsperpage) {
219 debugging('Call to get_users with $get = true no $recordsperpage limit. ' .
220 'On large installations, this will probably cause an out of memory error. ' .
221 'Please think again and change your code so that it does not try to ' .
222 'load so much data into memory.', DEBUG_DEVELOPER
);
226 $fullname = sql_fullname();
228 $select = 'username <> \'guest\' AND deleted = 0';
230 if (!empty($search)){
231 $search = trim($search);
232 $select .= " AND ($fullname $LIKE '%$search%' OR email $LIKE '%$search%') ";
236 $select .= ' AND confirmed = \'1\' ';
240 $select .= ' AND id NOT IN ('. $exceptions .') ';
244 $select .= ' AND firstname '. $LIKE .' \''. $firstinitial .'%\'';
247 $select .= ' AND lastname '. $LIKE .' \''. $lastinitial .'%\'';
251 return get_records_select('user', $select, $sort, $fields, $page, $recordsperpage);
253 return count_records_select('user', $select);
259 * shortdesc (optional)
264 * @param string $sort ?
265 * @param string $dir ?
266 * @param int $categoryid ?
267 * @param int $categoryid ?
268 * @param string $search ?
269 * @param string $firstinitial ?
270 * @param string $lastinitial ?
271 * @returnobject {@link $USER} records
272 * @todo Finish documenting this function
275 function get_users_listing($sort='lastaccess', $dir='ASC', $page=0, $recordsperpage=0,
276 $search='', $firstinitial='', $lastinitial='', $remotewhere='') {
281 $fullname = sql_fullname();
283 $select = "deleted <> '1'";
285 if (!empty($search)) {
286 $search = trim($search);
287 $select .= " AND ($fullname $LIKE '%$search%' OR email $LIKE '%$search%') ";
291 $select .= ' AND firstname '. $LIKE .' \''. $firstinitial .'%\' ';
295 $select .= ' AND lastname '. $LIKE .' \''. $lastinitial .'%\' ';
298 $select .= $remotewhere;
301 $sort = ' ORDER BY '. $sort .' '. $dir;
304 /// warning: will return UNCONFIRMED USERS
305 return get_records_sql("SELECT id, username, email, firstname, lastname, city, country, lastaccess, confirmed, mnethostid
306 FROM {$CFG->prefix}user
307 WHERE $select $sort", $page, $recordsperpage);
313 * Full list of users that have confirmed their accounts.
318 function get_users_confirmed() {
320 return get_records_sql("SELECT *
321 FROM {$CFG->prefix}user
324 AND username <> 'guest'");
329 * Full list of users that have not yet confirmed their accounts.
332 * @param string $cutofftime ?
333 * @return object {@link $USER} records
335 function get_users_unconfirmed($cutofftime=2000000000) {
337 return get_records_sql("SELECT *
338 FROM {$CFG->prefix}user
341 AND firstaccess < $cutofftime");
345 * All users that we have not seen for a really long time (ie dead accounts)
348 * @param string $cutofftime ?
349 * @return object {@link $USER} records
351 function get_users_longtimenosee($cutofftime) {
353 return get_records_sql("SELECT userid as id, courseid
354 FROM {$CFG->prefix}user_lastaccess
355 WHERE courseid != ".SITEID
."
357 AND timeaccess < $cutofftime ");
361 * Full list of bogus accounts that are probably not ever going to be used
364 * @param string $cutofftime ?
365 * @return object {@link $USER} records
368 function get_users_not_fully_set_up($cutofftime=2000000000) {
370 return get_records_sql("SELECT *
371 FROM {$CFG->prefix}user
374 AND lastaccess < $cutofftime
376 AND (lastname = '' OR firstname = '' OR email = '')");
379 /// OTHER SITE AND COURSE FUNCTIONS /////////////////////////////////////////////
383 * Returns $course object of the top-level site.
385 * @return course A {@link $COURSE} object for the site
387 function get_site() {
391 if (!empty($SITE->id
)) { // We already have a global to use, so return that
395 if ($course = get_record('course', 'category', 0)) {
403 * Returns list of courses, for whole site, or category
405 * Returns list of courses, for whole site, or category
406 * Important: Using c.* for fields is extremely expensive because
407 * we are using distinct. You almost _NEVER_ need all the fields
408 * in such a large SELECT
410 * @param type description
413 function get_courses($categoryid="all", $sort="c.sortorder ASC", $fields="c.*") {
417 if ($categoryid != "all" && is_numeric($categoryid)) {
418 $categoryselect = "WHERE c.category = '$categoryid'";
420 $categoryselect = "";
426 $sortstatement = "ORDER BY $sort";
429 $visiblecourses = array();
431 // pull out all course matching the cat
432 if ($courses = get_records_sql("SELECT $fields
433 FROM {$CFG->prefix}course c
437 // loop throught them
438 foreach ($courses as $course) {
440 if (isset($course->visible
) && $course->visible
<= 0) {
441 // for hidden courses, require visibility check
442 if (has_capability('moodle/course:viewhiddencourses',
443 get_context_instance(CONTEXT_COURSE
, $course->id
))) {
444 $visiblecourses [] = $course;
447 $visiblecourses [] = $course;
451 return $visiblecourses;
455 $visiblecourses = "";
457 if (!empty($categoryselect)) {
460 if (!empty($USER->id)) { // May need to check they are a teacher
461 if (!has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM, SITEID))) {
462 $visiblecourses = "$sqland ((c.visible > 0) OR t.userid = '$USER->id')";
463 $teachertable = "LEFT JOIN {$CFG->prefix}user_teachers t ON t.course = c.id";
466 $visiblecourses = "$sqland c.visible > 0";
469 if ($categoryselect or $visiblecourses) {
470 $selectsql = "{$CFG->prefix}course c $teachertable WHERE $categoryselect $visiblecourses";
472 $selectsql = "{$CFG->prefix}course c $teachertable";
475 $extrafield = str_replace('ASC','',$sort);
476 $extrafield = str_replace('DESC','',$extrafield);
477 $extrafield = trim($extrafield);
478 if (!empty($extrafield)) {
479 $extrafield = ','.$extrafield;
481 return get_records_sql("SELECT ".((!empty($teachertable)) ? " DISTINCT " : "")." $fields $extrafield FROM $selectsql ".((!empty($sort)) ? "ORDER BY $sort" : ""));
487 * Returns list of courses, for whole site, or category
489 * Similar to get_courses, but allows paging
490 * Important: Using c.* for fields is extremely expensive because
491 * we are using distinct. You almost _NEVER_ need all the fields
492 * in such a large SELECT
494 * @param type description
497 function get_courses_page($categoryid="all", $sort="c.sortorder ASC", $fields="c.*",
498 &$totalcount, $limitfrom="", $limitnum="") {
502 $categoryselect = "";
503 if ($categoryid != "all" && is_numeric($categoryid)) {
504 $categoryselect = "WHERE c.category = '$categoryid'";
506 $categoryselect = "";
509 // pull out all course matching the cat
510 $visiblecourses = array();
511 if (!($courses = get_records_sql("SELECT $fields
512 FROM {$CFG->prefix}course c
515 return $visiblecourses;
520 $limitnum = count($courses);
527 // iteration will have to be done inside loop to keep track of the limitfrom and limitnum
528 foreach ($courses as $course) {
529 if ($course->visible
<= 0) {
530 // for hidden courses, require visibility check
531 if (has_capability('moodle/course:viewhiddencourses', get_context_instance(CONTEXT_COURSE
, $course->id
))) {
533 if ($totalcount > $limitfrom && count($visiblecourses) < $limitnum) {
534 $visiblecourses [] = $course;
539 if ($totalcount > $limitfrom && count($visiblecourses) < $limitnum) {
540 $visiblecourses [] = $course;
545 return $visiblecourses;
549 $categoryselect = "";
550 if ($categoryid != "all" && is_numeric($categoryid)) {
551 $categoryselect = "c.category = '$categoryid'";
555 $visiblecourses = "";
557 if (!empty($categoryselect)) {
560 if (!empty($USER) and !empty($USER->id)) { // May need to check they are a teacher
561 if (!has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM, SITEID))) {
562 $visiblecourses = "$sqland ((c.visible > 0) OR t.userid = '$USER->id')";
563 $teachertable = "LEFT JOIN {$CFG->prefix}user_teachers t ON t.course=c.id";
566 $visiblecourses = "$sqland c.visible > 0";
569 if ($limitfrom !== "") {
570 $limit = sql_paging_limit($limitfrom, $limitnum);
575 $selectsql = "{$CFG->prefix}course c $teachertable WHERE $categoryselect $visiblecourses";
577 $totalcount = count_records_sql("SELECT COUNT(DISTINCT c.id) FROM $selectsql");
579 return get_records_sql("SELECT $fields FROM $selectsql ".((!empty($sort)) ? "ORDER BY $sort" : "")." $limit");
585 * List of courses that a user has access to view. Note that for admins,
586 * this usually includes every course on the system.
589 * @param int $userid The user of interest
590 * @param string $sort the sortorder in the course table
591 * @param string $fields the fields to return
592 * @param bool $doanything True if using the doanything flag
593 * @param int $limit Maximum number of records to return, or 0 for unlimited
594 * @return array {@link $COURSE} of course objects
596 function get_my_courses($userid, $sort=NULL, $fields=NULL, $doanything=false,$limit=0) {
600 // Default parameters
601 $d_sort = 'visible DESC,sortorder ASC';
602 $d_fields = 'id, category, sortorder, shortname, fullname, idnumber, newsitems, teacher, teachers, student, students, guest, startdate, visible, cost, enrol, summary, groupmode, groupmodeforce';
604 $usingdefaults = true;
605 if (is_null($sort) ||
$sort === $d_sort) {
608 $usingdefaults = false;
610 if (is_null($fields) ||
$fields === $d_fields) {
613 $usingdefaults = false;
616 $reallimit = 0; // this is only set if we are using a limit on the first call
618 // If using default params, we may have it cached...
619 if (!empty($USER->id
) && ($USER->id
== $userid) && $usingdefaults) {
620 if (!empty($USER->mycourses
[$doanything])) {
621 if ($limit && $limit < count($USER->mycourses
[$doanything])) {
622 return array_slice($USER->mycourses
[$doanything], 0, $limit, true);
624 return $USER->mycourses
[$doanything];
627 // now, this is the first call, i.e. no cache, and we are using defaults, with a limit supplied,
628 // we need to store the limit somewhere, retrieve all, cache properly and then slice the array
629 // to return the proper number of entries. This is so that we don't keep missing calls like limit 20,20,20
637 $mycourses = array();
639 // Fix fields to refer to the course table c
640 $fields=preg_replace('/([a-z0-9*]+)/','c.$1',$fields);
642 // Attempt to filter the list of courses in order to reduce the number
643 // of queries in the next part.
645 // Check root permissions
646 $sitecontext = get_context_instance(CONTEXT_SYSTEM
, SITEID
);
648 // Guest's do not have any courses
649 if (has_capability('moodle/legacy:guest',$sitecontext,$userid,false)) {
653 // we can optimise some things for true admins
654 $candoanything = false;
655 if ($doanything && has_capability('moodle/site:doanything',$sitecontext,$userid,true)) {
656 $candoanything = true;
659 if ($candoanything ||
has_capability('moodle/course:view',$sitecontext,$userid,$doanything)) {
660 // User can view all courses, although there might be exceptions
661 // which we will filter later.
662 $rs = get_recordset('course c', '', '', $sort, $fields);
664 // The only other context level above courses that applies to moodle/course:view
665 // is category. So we consider:
666 // 1. All courses in which the user is assigned a role
667 // 2. All courses in categories in which the user is assigned a role
668 // 2BIS. All courses in subcategories in which the user gets assignment because he is assigned in one of its ascendant categories
669 // 3. All courses which have overrides for moodle/course:view
670 // Remember that this is just a filter. We check each individual course later.
671 // However for a typical student on a large system this can reduce the
672 // number of courses considered from around 2,000 to around 2, with corresponding
673 // reduction in the number of queries needed.
674 $rs=get_recordset_sql("
676 FROM {$CFG->prefix}course c, (
680 {$CFG->prefix}role_assignments ra
681 INNER JOIN {$CFG->prefix}context x ON x.id = ra.contextid
682 INNER JOIN {$CFG->prefix}course c ON x.instanceid = c.id
684 ra.userid = $userid AND
690 {$CFG->prefix}role_assignments ra
691 INNER JOIN {$CFG->prefix}context x ON x.id = ra.contextid
692 INNER JOIN {$CFG->prefix}course_categories a ON a.path LIKE ".sql_concat("'%/'", 'x.instanceid', "'/%'")." OR x.instanceid = a.id
693 INNER JOIN {$CFG->prefix}course c ON c.category = a.id
695 ra.userid = $userid AND
701 {$CFG->prefix}role_capabilities ca
702 INNER JOIN {$CFG->prefix}context x ON x.id = ca.contextid
703 INNER JOIN {$CFG->prefix}course c ON c.id = x.instanceid
705 ca.capability = 'moodle/course:view' AND
706 ca.contextid != {$sitecontext->id} AND
714 if ($rs && $rs->RecordCount() > 0) {
715 while ($course = rs_fetch_next_record($rs)) {
716 if ($course->id
!= SITEID
) {
718 if ($candoanything) { // no need for further checks...
719 $mycourses[$course->id
] = $course;
723 // users with moodle/course:view are considered course participants
724 // the course needs to be visible, or user must have moodle/course:viewhiddencourses
725 // capability set to view hidden courses
726 $context = get_context_instance(CONTEXT_COURSE
, $course->id
);
727 if ( has_capability('moodle/course:view', $context, $userid, $doanything) &&
728 !has_capability('moodle/legacy:guest', $context, $userid, false) &&
729 ($course->visible ||
has_capability('moodle/course:viewhiddencourses', $context, $userid))) {
730 $mycourses[$course->id
] = $course;
732 // Only return a limited number of courses if limit is set
744 // Cache if using default params...
745 if (!empty($USER->id
) && ($USER->id
== $userid) && $usingdefaults && $limit == 0) {
746 $USER->mycourses
[$doanything] = $mycourses;
749 if (!empty($mycourses) && $reallimit) {
750 return array_slice($mycourses, 0, $reallimit, true);
758 * A list of courses that match a search
761 * @param array $searchterms ?
762 * @param string $sort ?
764 * @param int $recordsperpage ?
765 * @param int $totalcount Passed in by reference. ?
766 * @return object {@link $COURSE} records
768 function get_courses_search($searchterms, $sort='fullname ASC', $page=0, $recordsperpage=50, &$totalcount) {
772 //to allow case-insensitive search for postgesql
773 if ($CFG->dbfamily
== 'postgres') {
775 $NOTLIKE = 'NOT ILIKE'; // case-insensitive
780 $NOTLIKE = 'NOT LIKE';
782 $NOTREGEXP = 'NOT REGEXP';
785 $fullnamesearch = '';
788 foreach ($searchterms as $searchterm) {
790 /// Under Oracle and MSSQL, trim the + and - operators and perform
791 /// simpler LIKE search
792 if ($CFG->dbfamily
== 'oracle' ||
$CFG->dbfamily
== 'mssql') {
793 $searchterm = trim($searchterm, '+-');
796 if ($fullnamesearch) {
797 $fullnamesearch .= ' AND ';
799 if ($summarysearch) {
800 $summarysearch .= ' AND ';
803 if (substr($searchterm,0,1) == '+') {
804 $searchterm = substr($searchterm,1);
805 $summarysearch .= " summary $REGEXP '(^|[^a-zA-Z0-9])$searchterm([^a-zA-Z0-9]|$)' ";
806 $fullnamesearch .= " fullname $REGEXP '(^|[^a-zA-Z0-9])$searchterm([^a-zA-Z0-9]|$)' ";
807 } else if (substr($searchterm,0,1) == "-") {
808 $searchterm = substr($searchterm,1);
809 $summarysearch .= " summary $NOTREGEXP '(^|[^a-zA-Z0-9])$searchterm([^a-zA-Z0-9]|$)' ";
810 $fullnamesearch .= " fullname $NOTREGEXP '(^|[^a-zA-Z0-9])$searchterm([^a-zA-Z0-9]|$)' ";
812 $summarysearch .= ' summary '. $LIKE .' \'%'. $searchterm .'%\' ';
813 $fullnamesearch .= ' fullname '. $LIKE .' \'%'. $searchterm .'%\' ';
818 $selectsql = $CFG->prefix
.'course WHERE ('. $fullnamesearch .' OR '. $summarysearch .') AND category > \'0\'';
820 $totalcount = count_records_sql('SELECT COUNT(*) FROM '. $selectsql);
822 $courses = get_records_sql('SELECT * FROM '. $selectsql .' ORDER BY '. $sort, $page, $recordsperpage);
824 if ($courses) { /// Remove unavailable courses from the list
825 foreach ($courses as $key => $course) {
826 if (!$course->visible
) {
827 if (!has_capability('moodle/course:viewhiddencourses', get_context_instance(CONTEXT_COURSE
, $course->id
))) {
828 unset($courses[$key]);
840 * Returns a sorted list of categories
842 * @param string $parent The parent category if any
843 * @param string $sort the sortorder
844 * @return array of categories
846 function get_categories($parent='none', $sort='sortorder ASC') {
848 if ($parent === 'none') {
849 $categories = get_records('course_categories', '', '', $sort);
851 $categories = get_records('course_categories', 'parent', $parent, $sort);
853 if ($categories) { /// Remove unavailable categories from the list
854 foreach ($categories as $key => $category) {
855 if (!$category->visible
) {
856 if (!has_capability('moodle/course:create', get_context_instance(CONTEXT_COURSECAT
, $category->id
))) {
857 unset($categories[$key]);
867 * Returns an array of category ids of all the subcategories for a given
869 * @param $catid - The id of the category whose subcategories we want to find.
870 * @return array of category ids.
872 function get_all_subcategories($catid) {
876 if ($categories = get_records('course_categories', 'parent', $catid)) {
877 foreach ($categories as $cat) {
878 array_push($subcats, $cat->id
);
879 $subcats = array_merge($subcats, get_all_subcategories($cat->id
));
887 * This recursive function makes sure that the courseorder is consecutive
889 * @param type description
891 * $n is the starting point, offered only for compatilibity -- will be ignored!
892 * $safe (bool) prevents it from assuming category-sortorder is unique, used to upgrade
893 * safely from 1.4 to 1.5
895 function fix_course_sortorder($categoryid=0, $n=0, $safe=0, $depth=0, $path='') {
901 $catgap = 1000; // "standard" category gap
902 $tolerance = 200; // how "close" categories can get
904 if ($categoryid > 0){
905 // update depth and path
906 $cat = get_record('course_categories', 'id', $categoryid);
907 if ($cat->parent
== 0) {
910 } else if ($depth == 0 ) { // doesn't make sense; get from DB
911 // this is only called if the $depth parameter looks dodgy
912 $parent = get_record('course_categories', 'id', $cat->parent
);
913 $path = $parent->path
;
914 $depth = $parent->depth
;
916 $path = $path . '/' . $categoryid;
919 set_field('course_categories', 'path', addslashes($path), 'id', $categoryid);
920 set_field('course_categories', 'depth', $depth, 'id', $categoryid);
923 // get some basic info about courses in the category
924 $info = get_record_sql('SELECT MIN(sortorder) AS min,
925 MAX(sortorder) AS max,
926 COUNT(sortorder) AS count
927 FROM ' . $CFG->prefix
. 'course
928 WHERE category=' . $categoryid);
929 if (is_object($info)) { // no courses?
931 $count = $info->count
;
936 if ($categoryid > 0 && $n==0) { // only passed category so don't shift it
940 // $hasgap flag indicates whether there's a gap in the sequence
942 if ($max-$min+
1 != $count) {
946 // $mustshift indicates whether the sequence must be shifted to
949 if ($min < $n+
$tolerance ||
$min > $n+
$tolerance+
$catgap ) {
953 // actually sort only if there are courses,
954 // and we meet one ofthe triggers:
956 // - they are not in a continuos block
957 // - they are too close to the 'bottom'
958 if ($count && ( $safe ||
$hasgap ||
$mustshift ) ) {
959 // special, optimized case where all we need is to shift
960 if ( $mustshift && !$safe && !$hasgap) {
961 $shift = $n +
$catgap - $min;
962 // UPDATE course SET sortorder=sortorder+$shift
963 execute_sql("UPDATE {$CFG->prefix}course
964 SET sortorder=sortorder+$shift
965 WHERE category=$categoryid", 0);
966 $n = $n +
$catgap +
$count;
968 } else { // do it slowly
970 // if the new sequence overlaps the current sequence, lack of transactions
971 // will stop us -- shift things aside for a moment...
972 if ($safe ||
($n >= $min && $n+
$count+
1 < $min && $CFG->dbfamily
==='mysql')) {
973 $shift = $max +
$n +
1000;
974 execute_sql("UPDATE {$CFG->prefix}course
975 SET sortorder=sortorder+$shift
976 WHERE category=$categoryid", 0);
979 $courses = get_courses($categoryid, 'c.sortorder ASC', 'c.id,c.sortorder');
981 foreach ($courses as $course) {
982 if ($course->sortorder
!= $n ) { // save db traffic
983 set_field('course', 'sortorder', $n, 'id', $course->id
);
990 set_field('course_categories', 'coursecount', $count, 'id', $categoryid);
992 // $n could need updating
993 $max = get_field_sql("SELECT MAX(sortorder) from {$CFG->prefix}course WHERE category=$categoryid");
998 if ($categories = get_categories($categoryid)) {
999 foreach ($categories as $category) {
1000 $n = fix_course_sortorder($category->id
, $n, $safe, $depth, $path);
1008 * List of remote courses that a user has access to via MNET.
1009 * Works only on the IDP
1012 * @return array {@link $COURSE} of course objects
1014 function get_my_remotecourses($userid=0) {
1017 if (empty($userid)) {
1018 $userid = $USER->id
;
1021 $sql = "SELECT c.remoteid, c.shortname, c.fullname,
1022 c.hostid, c.summary, c.cat_name,
1024 FROM {$CFG->prefix}mnet_enrol_course c
1025 JOIN {$CFG->prefix}mnet_enrol_assignments a ON c.id=a.courseid
1026 JOIN {$CFG->prefix}mnet_host h ON c.hostid=h.id
1027 WHERE a.userid={$userid}";
1029 return get_records_sql($sql);
1033 * List of remote hosts that a user has access to via MNET.
1037 * @return array of host objects
1039 function get_my_remotehosts() {
1042 if ($USER->mnethostid
== $CFG->mnet_localhost_id
) {
1043 return false; // Return nothing on the IDP
1045 if (!empty($USER->mnet_foreign_host_array
) && is_array($USER->mnet_foreign_host_array
)) {
1046 return $USER->mnet_foreign_host_array
;
1052 * This function creates a default separated/connected scale
1054 * This function creates a default separated/connected scale
1055 * so there's something in the database. The locations of
1056 * strings and files is a bit odd, but this is because we
1057 * need to maintain backward compatibility with many different
1058 * existing language translations and older sites.
1062 function make_default_scale() {
1066 $defaultscale = NULL;
1067 $defaultscale->courseid
= 0;
1068 $defaultscale->userid
= 0;
1069 $defaultscale->name
= get_string('separateandconnected');
1070 $defaultscale->scale
= get_string('postrating1', 'forum').','.
1071 get_string('postrating2', 'forum').','.
1072 get_string('postrating3', 'forum');
1073 $defaultscale->timemodified
= time();
1075 /// Read in the big description from the file. Note this is not
1076 /// HTML (despite the file extension) but Moodle format text.
1077 $parentlang = get_string('parentlang');
1078 if (is_readable($CFG->dataroot
.'/lang/'. $CFG->lang
.'/help/forum/ratings.html')) {
1079 $file = file($CFG->dataroot
.'/lang/'. $CFG->lang
.'/help/forum/ratings.html');
1080 } else if (is_readable($CFG->dirroot
.'/lang/'. $CFG->lang
.'/help/forum/ratings.html')) {
1081 $file = file($CFG->dirroot
.'/lang/'. $CFG->lang
.'/help/forum/ratings.html');
1082 } else if ($parentlang and is_readable($CFG->dataroot
.'/lang/'. $parentlang .'/help/forum/ratings.html')) {
1083 $file = file($CFG->dataroot
.'/lang/'. $parentlang .'/help/forum/ratings.html');
1084 } else if ($parentlang and is_readable($CFG->dirroot
.'/lang/'. $parentlang .'/help/forum/ratings.html')) {
1085 $file = file($CFG->dirroot
.'/lang/'. $parentlang .'/help/forum/ratings.html');
1086 } else if (is_readable($CFG->dirroot
.'/lang/en_utf8/help/forum/ratings.html')) {
1087 $file = file($CFG->dirroot
.'/lang/en_utf8/help/forum/ratings.html');
1092 $defaultscale->description
= addslashes(implode('', $file));
1094 if ($defaultscale->id
= insert_record('scale', $defaultscale)) {
1095 execute_sql('UPDATE '. $CFG->prefix
.'forum SET scale = \''. $defaultscale->id
.'\'', false);
1101 * Returns a menu of all available scales from the site as well as the given course
1104 * @param int $courseid The id of the course as found in the 'course' table.
1107 function get_scales_menu($courseid=0) {
1111 $sql = "SELECT id, name FROM {$CFG->prefix}scale
1112 WHERE courseid = '0' or courseid = '$courseid'
1113 ORDER BY courseid ASC, name ASC";
1115 if ($scales = get_records_sql_menu($sql)) {
1119 make_default_scale();
1121 return get_records_sql_menu($sql);
1127 * Given a set of timezone records, put them in the database, replacing what is there
1130 * @param array $timezones An array of timezone records
1132 function update_timezone_records($timezones) {
1133 /// Given a set of timezone records, put them in the database
1137 /// Clear out all the old stuff
1138 execute_sql('TRUNCATE TABLE '.$CFG->prefix
.'timezone', false);
1140 /// Insert all the new stuff
1141 foreach ($timezones as $timezone) {
1142 insert_record('timezone', $timezone);
1147 /// MODULE FUNCTIONS /////////////////////////////////////////////////
1150 * Just gets a raw list of all modules in a course
1153 * @param int $courseid The id of the course as found in the 'course' table.
1156 function get_course_mods($courseid) {
1159 if (empty($courseid)) {
1160 return false; // avoid warnings
1163 return get_records_sql("SELECT cm.*, m.name as modname
1164 FROM {$CFG->prefix}modules m,
1165 {$CFG->prefix}course_modules cm
1166 WHERE cm.course = '$courseid'
1167 AND cm.module = m.id ");
1172 * Given an id of a course module, finds the coursemodule description
1174 * @param string $modulename name of module type, eg. resource, assignment,...
1175 * @param int $cmid course module id (id in course_modules table)
1176 * @param int $courseid optional course id for extra validation
1177 * @return object course module instance with instance and module name
1179 function get_coursemodule_from_id($modulename, $cmid, $courseid=0) {
1183 $courseselect = ($courseid) ?
"cm.course = '$courseid' AND " : '';
1185 return get_record_sql("SELECT cm.*, m.name, md.name as modname
1186 FROM {$CFG->prefix}course_modules cm,
1187 {$CFG->prefix}modules md,
1188 {$CFG->prefix}$modulename m
1191 cm.instance = m.id AND
1192 md.name = '$modulename' AND
1193 md.id = cm.module");
1197 * Given an instance number of a module, finds the coursemodule description
1199 * @param string $modulename name of module type, eg. resource, assignment,...
1200 * @param int $instance module instance number (id in resource, assignment etc. table)
1201 * @param int $courseid optional course id for extra validation
1202 * @return object course module instance with instance and module name
1204 function get_coursemodule_from_instance($modulename, $instance, $courseid=0) {
1208 $courseselect = ($courseid) ?
"cm.course = '$courseid' AND " : '';
1210 return get_record_sql("SELECT cm.*, m.name, md.name as modname
1211 FROM {$CFG->prefix}course_modules cm,
1212 {$CFG->prefix}modules md,
1213 {$CFG->prefix}$modulename m
1215 cm.instance = m.id AND
1216 md.name = '$modulename' AND
1217 md.id = cm.module AND
1218 m.id = '$instance'");
1223 * Returns an array of all the active instances of a particular module in given courses, sorted in the order they are defined
1225 * Returns an array of all the active instances of a particular
1226 * module in given courses, sorted in the order they are defined
1227 * in the course. Returns false on any errors.
1230 * @param string $modulename The name of the module to get instances for
1231 * @param array $courses This depends on an accurate $course->modinfo
1232 * @return array of instances
1234 function get_all_instances_in_courses($modulename, $courses, $userid=NULL, $includeinvisible=false) {
1236 if (empty($courses) ||
!is_array($courses) ||
count($courses) == 0) {
1239 if (!$rawmods = get_records_sql("SELECT cm.id as coursemodule, m.*,cw.section,cm.visible as visible,cm.groupmode, cm.course
1240 FROM {$CFG->prefix}course_modules cm,
1241 {$CFG->prefix}course_sections cw,
1242 {$CFG->prefix}modules md,
1243 {$CFG->prefix}$modulename m
1244 WHERE cm.course IN (".implode(',',array_keys($courses)).") AND
1245 cm.instance = m.id AND
1246 cm.section = cw.id AND
1247 md.name = '$modulename' AND
1248 md.id = cm.module")) {
1252 $outputarray = array();
1254 foreach ($courses as $course) {
1255 if ($includeinvisible) {
1257 } else if (has_capability('moodle/course:viewhiddencourses', get_context_instance(CONTEXT_COURSE
, $course->id
), $userid)) {
1258 // Usually hide non-visible instances from students
1264 /// Casting $course->modinfo to string prevents one notice when the field is null
1265 if (!$modinfo = unserialize((string)$course->modinfo
)) {
1268 foreach ($modinfo as $mod) {
1269 if ($mod->mod
== $modulename and $mod->visible
> $invisible) {
1270 $instance = $rawmods[$mod->cm
];
1271 if (!empty($mod->extra
)) {
1272 $instance->extra
= $mod->extra
;
1274 $outputarray[] = $instance;
1279 return $outputarray;
1284 * Returns an array of all the active instances of a particular module in a given course, sorted in the order they are defined
1286 * Returns an array of all the active instances of a particular
1287 * module in a given course, sorted in the order they are defined
1288 * in the course. Returns false on any errors.
1291 * @param string $modulename The name of the module to get instances for
1292 * @param object(course) $course This depends on an accurate $course->modinfo
1294 function get_all_instances_in_course($modulename, $course, $userid=NULL, $includeinvisible=false) {
1298 if (empty($course->modinfo
)) {
1302 if (!$modinfo = unserialize((string)$course->modinfo
)) {
1306 if (!$rawmods = get_records_sql("SELECT cm.id as coursemodule, m.*,cw.section,cm.visible as visible,cm.groupmode
1307 FROM {$CFG->prefix}course_modules cm,
1308 {$CFG->prefix}course_sections cw,
1309 {$CFG->prefix}modules md,
1310 {$CFG->prefix}$modulename m
1311 WHERE cm.course = '$course->id' AND
1312 cm.instance = m.id AND
1313 cm.section = cw.id AND
1314 md.name = '$modulename' AND
1315 md.id = cm.module")) {
1319 if ($includeinvisible) {
1321 } else if (has_capability('moodle/course:viewhiddencourses', get_context_instance(CONTEXT_COURSE
, $course->id
), $userid)) {
1322 // Usually hide non-visible instances from students
1328 $outputarray = array();
1330 foreach ($modinfo as $mod) {
1331 if ($mod->mod
== $modulename and $mod->visible
> $invisible) {
1332 $instance = $rawmods[$mod->cm
];
1333 if (!empty($mod->extra
)) {
1334 $instance->extra
= $mod->extra
;
1336 $outputarray[] = $instance;
1340 return $outputarray;
1346 * Determine whether a module instance is visible within a course
1348 * Given a valid module object with info about the id and course,
1349 * and the module's type (eg "forum") returns whether the object
1353 * @param $moduletype Name of the module eg 'forum'
1354 * @param $module Object which is the instance of the module
1357 function instance_is_visible($moduletype, $module) {
1361 if (!empty($module->id
)) {
1362 if ($records = get_records_sql("SELECT cm.instance, cm.visible
1363 FROM {$CFG->prefix}course_modules cm,
1364 {$CFG->prefix}modules m
1365 WHERE cm.course = '$module->course' AND
1366 cm.module = m.id AND
1367 m.name = '$moduletype' AND
1368 cm.instance = '$module->id'")) {
1370 foreach ($records as $record) { // there should only be one - use the first one
1371 return $record->visible
;
1375 return true; // visible by default!
1381 /// LOG FUNCTIONS /////////////////////////////////////////////////////
1385 * Add an entry to the log table.
1387 * Add an entry to the log table. These are "action" focussed rather
1388 * than web server hits, and provide a way to easily reconstruct what
1389 * any particular student has been doing.
1394 * @uses $REMOTE_ADDR
1396 * @param int $courseid The course id
1397 * @param string $module The module name - e.g. forum, journal, resource, course, user etc
1398 * @param string $action 'view', 'update', 'add' or 'delete', possibly followed by another word to clarify.
1399 * @param string $url The file and parameters used to see the results of the action
1400 * @param string $info Additional description information
1401 * @param string $cm The course_module->id if there is one
1402 * @param string $user If log regards $user other than $USER
1404 function add_to_log($courseid, $module, $action, $url='', $info='', $cm=0, $user=0) {
1405 // Note that this function intentionally does not follow the normal Moodle DB access idioms.
1406 // This is for a good reason: it is the most frequently used DB update function,
1407 // so it has been optimised for speed.
1408 global $db, $CFG, $USER;
1410 if ($cm === '' ||
is_null($cm)) { // postgres won't translate empty string to its default
1417 if (!empty($USER->realuser
)) { // Don't log
1420 $userid = empty($USER->id
) ?
'0' : $USER->id
;
1423 $REMOTE_ADDR = getremoteaddr();
1426 $info = addslashes($info);
1427 if (!empty($url)) { // could break doing html_entity_decode on an empty var.
1428 $url = html_entity_decode($url); // for php < 4.3.0 this is defined in moodlelib.php
1431 if (defined('MDL_PERFDB')) { global $PERF ; $PERF->dbqueries++
; $PERF->logwrites++
;};
1433 if ($CFG->type
= 'oci8po') {
1439 $result = $db->Execute('INSERT INTO '. $CFG->prefix
.'log (time, userid, course, ip, module, cmid, action, url, info)
1440 VALUES (' . "'$timenow', '$userid', '$courseid', '$REMOTE_ADDR', '$module', '$cm', '$action', '$url', '$info')");
1442 if (!$result and debugging()) {
1443 echo '<p>Error: Could not insert a new entry to the Moodle log</p>'; // Don't throw an error
1446 /// Store lastaccess times for the current user, do not use in cron and other commandline scripts
1448 if (!empty($USER->id
) && ($userid == $USER->id
) && !defined('FULLME')) {
1449 $db->Execute('UPDATE '. $CFG->prefix
.'user
1450 SET lastip=\''. $REMOTE_ADDR .'\', lastaccess=\''. $timenow .'\'
1451 WHERE id = \''. $userid .'\' ');
1452 if ($courseid != SITEID
&& !empty($courseid)) {
1453 if (defined('MDL_PERFDB')) { global $PERF ; $PERF->dbqueries++
;};
1455 if ($record = get_record('user_lastaccess', 'userid', $userid, 'courseid', $courseid)) {
1456 $record->timeaccess
= $timenow;
1457 return update_record('user_lastaccess', $record);
1459 $record = new object;
1460 $record->userid
= $userid;
1461 $record->courseid
= $courseid;
1462 $record->timeaccess
= $timenow;
1463 return insert_record('user_lastaccess', $record);
1471 * Select all log records based on SQL criteria
1474 * @param string $select SQL select criteria
1475 * @param string $order SQL order by clause to sort the records returned
1476 * @param string $limitfrom ?
1477 * @param int $limitnum ?
1478 * @param int $totalcount Passed in by reference.
1480 * @todo Finish documenting this function
1482 function get_logs($select, $order='l.time DESC', $limitfrom='', $limitnum='', &$totalcount) {
1486 $order = 'ORDER BY '. $order;
1489 $selectsql = $CFG->prefix
.'log l LEFT JOIN '. $CFG->prefix
.'user u ON l.userid = u.id '. ((strlen($select) > 0) ?
'WHERE '. $select : '');
1490 $countsql = $CFG->prefix
.'log l '.((strlen($select) > 0) ?
' WHERE '. $select : '');
1492 $totalcount = count_records_sql("SELECT COUNT(*) FROM $countsql");
1494 return get_records_sql('SELECT l.*, u.firstname, u.lastname, u.picture
1495 FROM '. $selectsql .' '. $order, $limitfrom, $limitnum) ;
1500 * Select all log records for a given course and user
1504 * @param int $userid The id of the user as found in the 'user' table.
1505 * @param int $courseid The id of the course as found in the 'course' table.
1506 * @param string $coursestart ?
1507 * @todo Finish documenting this function
1509 function get_logs_usercourse($userid, $courseid, $coursestart) {
1513 $courseselect = ' AND course = \''. $courseid .'\' ';
1518 return get_records_sql("SELECT floor((time - $coursestart)/". DAYSECS
.") as day, count(*) as num
1519 FROM {$CFG->prefix}log
1520 WHERE userid = '$userid'
1521 AND time > '$coursestart' $courseselect
1526 * Select all log records for a given course, user, and day
1530 * @param int $userid The id of the user as found in the 'user' table.
1531 * @param int $courseid The id of the course as found in the 'course' table.
1532 * @param string $daystart ?
1534 * @todo Finish documenting this function
1536 function get_logs_userday($userid, $courseid, $daystart) {
1540 $courseselect = ' AND course = \''. $courseid .'\' ';
1545 return get_records_sql("SELECT floor((time - $daystart)/". HOURSECS
.") as hour, count(*) as num
1546 FROM {$CFG->prefix}log
1547 WHERE userid = '$userid'
1548 AND time > '$daystart' $courseselect
1553 * Returns an object with counts of failed login attempts
1555 * Returns information about failed login attempts. If the current user is
1556 * an admin, then two numbers are returned: the number of attempts and the
1557 * number of accounts. For non-admins, only the attempts on the given user
1560 * @param string $mode Either 'admin', 'teacher' or 'everybody'
1561 * @param string $username The username we are searching for
1562 * @param string $lastlogin The date from which we are searching
1565 function count_login_failures($mode, $username, $lastlogin) {
1567 $select = 'module=\'login\' AND action=\'error\' AND time > '. $lastlogin;
1569 if (has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM
, SITEID
))) { // Return information about all accounts
1570 if ($count->attempts
= count_records_select('log', $select)) {
1571 $count->accounts
= count_records_select('log', $select, 'COUNT(DISTINCT info)');
1574 } else if ($mode == 'everybody' or ($mode == 'teacher' and isteacherinanycourse())) {
1575 if ($count->attempts
= count_records_select('log', $select .' AND info = \''. $username .'\'')) {
1583 /// GENERAL HELPFUL THINGS ///////////////////////////////////
1586 * Dump a given object's information in a PRE block.
1588 * Mostly just used for debugging.
1590 * @param mixed $object The data to be printed
1592 function print_object($object) {
1593 echo '<pre class="notifytiny">' . htmlspecialchars(print_r($object,true)) . '</pre>';
1596 function course_parent_visible($course = null) {
1599 if (empty($course)) {
1602 if (!empty($CFG->allowvisiblecoursesinhiddencategories
)) {
1605 return category_parent_visible($course->category
);
1608 function category_parent_visible($parent = 0) {
1616 if (empty($visible)) {
1617 $visible = array(); // initialize
1620 if (array_key_exists($parent,$visible)) {
1621 return $visible[$parent];
1624 $category = get_record('course_categories', 'id', $parent);
1625 $list = explode('/', preg_replace('/^\/(.*)$/', '$1', $category->path
));
1627 $parents = get_records_list('course_categories', 'id', implode(',', $list), 'depth DESC');
1629 foreach ($parents as $p) {
1634 $visible[$parent] = $v; // now cache it
1639 * This function is the official hook inside XMLDB stuff to delegate its debug to one
1640 * external function.
1642 * Any script can avoid calls to this function by defining XMLDB_SKIP_DEBUG_HOOK before
1643 * using XMLDB classes. Obviously, also, if this function doesn't exist, it isn't invoked ;-)
1645 * @param $message string contains the error message
1646 * @param $object object XMLDB object that fired the debug
1648 function xmldb_debug($message, $object) {
1650 debugging($message, DEBUG_DEVELOPER
);
1654 * Get the lists of courses the current user has $cap capability in
1655 * I am not sure if this is needed, it loops through all courses so
1656 * could cause performance problems.
1657 * If it's not used, we can use a faster function to detect
1658 * capability in restorelib.php
1659 * @param string $cap
1662 function get_capability_courses($cap) {
1665 $mycourses = array();
1666 if ($courses = get_records('course')) {
1667 foreach ($courses as $course) {
1668 if (has_capability($cap, get_context_instance(CONTEXT_COURSE
, $course->id
))) {
1669 $mycourses[] = $course->id
;
1678 * true or false function to see if user can create any courses at all
1681 function user_can_create_courses() {
1683 // if user has course creation capability at any site or course cat, then return true;
1685 if (has_capability('moodle/course:create', get_context_instance(CONTEXT_SYSTEM
, SITEID
))) {
1688 return (bool) count(get_creatable_categories());
1694 * get the list of categories the current user can create courses in
1697 function get_creatable_categories() {
1699 $creatablecats = array();
1700 if ($cats = get_records('course_categories')) {
1701 foreach ($cats as $cat) {
1702 if (has_capability('moodle/course:create', get_context_instance(CONTEXT_COURSECAT
, $cat->id
))) {
1703 $creatablecats[$cat->id
] = $cat->name
;
1707 return $creatablecats;
1710 // vim:autoindent:expandtab:shiftwidth=4:tabstop=4:tw=140: