diff --git a/blocks/online_users/block_online_users.php b/blocks/online_users/block_online_users.php
index 27f75da0d17..268dfcdcb0a 100644
--- a/blocks/online_users/block_online_users.php
+++ b/blocks/online_users/block_online_users.php
@@ -27,12 +27,6 @@ class CourseBlock_online_users extends MoodleBlock {
function get_content() {
global $USER, $CFG;
- $timetoshowusers = 300; //Seconds default
-
- if (isset($CFG->block_online_users_timetosee)) {
- $timetoshowusers = $CFG->block_online_users_timetosee * 60;
- }
-
if ($this->content !== NULL) {
return $this->content;
}
@@ -41,67 +35,79 @@ class CourseBlock_online_users extends MoodleBlock {
$this->content = '';
return $this->content;
}
-
$this->content = New object;
$this->content->text = '';
$this->content->footer = '';
-
- //Calculate if we are in separate groups
- $isseparategroups = ($this->course->groupmode == SEPARATEGROUPS and $this->course->groupmodeforce and
- !isteacheredit($this->course->id));
-
- //Get the user current group
- $currentgroup = $isseparategroups ? get_current_group($this->course->id) : NULL;
-
- $groupmembers = "";
- $groupselect = "";
-
- //Add this to the SQL to show only group users
- if ($currentgroup !== NULL) {
- $groupmembers = ", {$CFG->prefix}groups_members gm ";
- $groupselect .= " AND u.id = gm.userid AND gm.groupid = '$currentgroup'";
+
+ $timetoshowusers = 300; //Seconds default
+ if (isset($CFG->block_online_users_timetosee)) {
+ $timetoshowusers = $CFG->block_online_users_timetosee * 60;
}
-
$timefrom = time()-$timetoshowusers;
- if (empty($this->course->category)) { // Site-level
- $courseselect = '';
- $timeselect = "AND (s.timeaccess > $timefrom OR u.lastaccess > $timefrom)";
- } else {
- $courseselect = "AND s.course = '".$this->course->id."'";
- $timeselect = "AND s.timeaccess > $timefrom";
- }
+ $users = array();
- $students = get_records_sql("SELECT u.id, u.username, u.firstname, u.lastname, u.picture, u.lastaccess, s.timeaccess
- FROM {$CFG->prefix}user u,
- {$CFG->prefix}user_students s
- $groupmembers
- WHERE u.id = s.userid $courseselect $groupselect $timeselect
- ORDER BY s.timeaccess DESC");
+ if (!$this->course->category and $CFG->allusersaresitestudents) {
+ if ($users = get_records_sql("SELECT u.id, u.username, u.firstname, u.lastname, u.picture, u.lastaccess
+ FROM {$CFG->prefix}user u
+ WHERE u.lastaccess > $timefrom
+ ORDER BY u.lastaccess DESC")) {
+ foreach ($users as $user) {
+ $user->fullname = ''.fullname($user).'';
+ $users[$user->id] = $user;
+ }
+ }
- $teachers = get_records_sql("SELECT u.id, u.username, u.firstname, u.lastname, u.picture, u.lastaccess, s.timeaccess
- FROM {$CFG->prefix}user u,
- {$CFG->prefix}user_teachers s
- $groupmembers
- WHERE u.id = s.userid $courseselect $groupselect $timeselect
- ORDER BY s.timeaccess DESC");
+ } else {
- if ($teachers || $students) {
- if ($students) {
+ //Calculate if we are in separate groups
+ $isseparategroups = ($this->course->groupmode == SEPARATEGROUPS and $this->course->groupmodeforce and
+ !isteacheredit($this->course->id));
+
+ //Get the user current group
+ $currentgroup = $isseparategroups ? get_current_group($this->course->id) : NULL;
+
+ $groupmembers = "";
+ $groupselect = "";
+
+ //Add this to the SQL to show only group users
+ if ($currentgroup !== NULL) {
+ $groupmembers = ", {$CFG->prefix}groups_members gm ";
+ $groupselect .= " AND u.id = gm.userid AND gm.groupid = '$currentgroup'";
+ }
+
+ if (empty($this->course->category)) { // Site-level
+ $courseselect = '';
+ $timeselect = "AND (s.timeaccess > $timefrom OR u.lastaccess > $timefrom)";
+ } else {
+ $courseselect = "AND s.course = '".$this->course->id."'";
+ $timeselect = "AND s.timeaccess > $timefrom";
+ }
+
+ if ($students = get_records_sql("SELECT u.id, u.username, u.firstname, u.lastname, u.picture, u.lastaccess, s.timeaccess
+ FROM {$CFG->prefix}user u,
+ {$CFG->prefix}user_students s
+ $groupmembers
+ WHERE u.id = s.userid $courseselect $groupselect $timeselect
+ ORDER BY s.timeaccess DESC")) {
foreach ($students as $student) {
$student->fullname = fullname($student);
$users[$student->id] = $student;
}
- }
- if ($teachers) {
+ }
+
+ if ($teachers = get_records_sql("SELECT u.id, u.username, u.firstname, u.lastname, u.picture, u.lastaccess, s.timeaccess
+ FROM {$CFG->prefix}user u,
+ {$CFG->prefix}user_teachers s
+ $groupmembers
+ WHERE u.id = s.userid $courseselect $groupselect $timeselect
+ ORDER BY s.timeaccess DESC")) {
foreach ($teachers as $teacher) {
$teacher->fullname = ''.fullname($teacher).'';
$users[$teacher->id] = $teacher;
}
}
- } else {
- $users = null;
}
//Calculate minutes
@@ -111,7 +117,7 @@ class CourseBlock_online_users extends MoodleBlock {
//Now, we have in users, the list of users to show
//Because they are online
- if ($users !== null) {
+ if (!empty($users)) {
foreach ($users as $user) {
$this->content->text .= '
';
$timeago = format_time(time() - max($user->timeaccess, $user->lastaccess)); //bruno to calculate correctly on frontpage
diff --git a/lib/datalib.php b/lib/datalib.php
index d01ab5d1412..d4473116207 100644
--- a/lib/datalib.php
+++ b/lib/datalib.php
@@ -35,7 +35,7 @@ function execute_sql($command, $feedback=true) {
/**
* Run an arbitrary sequence of semicolon-delimited SQL commands
*
-* Assumes that the input text (file or string consists of
+* Assumes that the input text (file or string) consists of
* a number of SQL statements ENDING WITH SEMICOLONS. The
* semicolons MUST be the last character in a line.
* Lines that are blank or that start with "#" are ignored.
@@ -48,7 +48,7 @@ function modify_database($sqlfile="", $sqlstring="") {
global $CFG;
- $success = true; // Let's be optimistic :-)
+ $success = true; // Let's be optimistic
if (!empty($sqlfile)) {
if (!is_readable($sqlfile)) {
@@ -1156,6 +1156,27 @@ function get_course_students($courseid, $sort="s.timeaccess", $dir="", $page=0,
$firstinitial="", $lastinitial="", $group=NULL, $search="", $fields='', $exceptions='') {
global $CFG;
+
+ if ($courseid == SITEID and $CFG->allusersaresitestudents) {
+ // return users with confirmed, undeleted accounts who are not site teachers
+ // the following is a mess because of different conventions in the different user functions
+ $sort = str_replace('s.timeaccess', 'lastaccess', $sort); // site users can't be sorted by timeaccess
+ $sort = str_replace('timeaccess', 'lastaccess', $sort); // site users can't be sorted by timeaccess
+ $sort = str_replace('u.', '', $sort); // the get_user function doesn't use the u. prefix to fields
+ $fields = str_replace('u.', '', $fields);
+ if ($sort) {
+ $sort = "$sort $dir";
+ }
+ // Now we have to make sure site teachers are excluded
+ if ($teachers = get_records('user_teachers', 'course', SITEID)) {
+ foreach ($teachers as $teacher) {
+ $exceptions .= ",$teacher->userid";
+ }
+ $exceptions = ltrim($exceptions, ',');
+ }
+ return get_users(true, $search, true, $exceptions, $sort, $firstinitial, $lastinitial,
+ $page, $recordsperpage, $fields ? $fields : '*');
+ }
switch ($CFG->dbtype) {
case "mysql":
@@ -1178,8 +1199,7 @@ function get_course_students($courseid, $sort="s.timeaccess", $dir="", $page=0,
// make sure it works on the site course
$select = "s.course = '$courseid' AND ";
- $site = get_site();
- if ($courseid == $site->id) {
+ if ($courseid == SITEID) {
$select = '';
}
@@ -1231,8 +1251,14 @@ function get_course_students($courseid, $sort="s.timeaccess", $dir="", $page=0,
}
// We are here because we need the students for the site.
- // These also include teachers on real courses
- $select .= "AND s.course <> '".SITEID."'";
+ // These also include teachers on real courses minus those on the site
+ if ($teachers = get_records('user_teachers', 'course', SITEID)) {
+ foreach ($teachers as $teacher) {
+ $exceptions .= ",$teacher->userid";
+ }
+ $exceptions = ltrim($exceptions, ',');
+ $select .= " AND u.id NOT IN ($exceptions)";
+ }
if (!$teachers = get_records_sql("SELECT $fields
FROM {$CFG->prefix}user u,
{$CFG->prefix}user_teachers s
@@ -1253,52 +1279,10 @@ function get_course_students($courseid, $sort="s.timeaccess", $dir="", $page=0,
*/
function count_course_students($course, $search="", $firstinitial="", $lastinitial="", $group=NULL, $exceptions='') {
- global $CFG;
-
- if (!$course->category) {
- return count(get_site_users($sort, '', $exceptions));
+ if ($students = get_course_students($course->id, '', '', 0, 999999, $firstinitial, $lastinitial, $group, $search, '', $exceptions)) {
+ return count($students);
}
-
- switch ($CFG->dbtype) {
- case "mysql":
- $fullname = " CONCAT(firstname,\" \",lastname) ";
- $LIKE = "LIKE";
- break;
- default:
- $fullname = " firstname||\' \'||lastname ";
- $LIKE = "ILIKE";
- }
-
- $groupmembers = "";
-
- $select = "s.course = '$course->id' AND s.userid = u.id AND u.deleted = '0'";
-
- if ($search) {
- $search = " AND ($fullname $LIKE '%$search%' OR email $LIKE '%$search%') ";
- }
- if ($firstinitial) {
- $select .= " AND u.firstname $LIKE '$firstinitial%'";
- }
- if ($lastinitial) {
- $select .= " AND u.lastname $LIKE '$lastinitial%'";
- }
-
- if ($group === 0) { /// Need something here to get all students not in a group
- return 0;
-
- } else if ($group !== NULL) {
- $groupmembers = ", {$CFG->prefix}groups_members gm ";
- $select .= " AND u.id = gm.userid AND gm.groupid = '$group'";
- }
-
- if (!empty($exceptions)) {
- $select .= " AND u.id NOT IN ($exceptions)";
- }
-
- return count_records_sql("SELECT COUNT(*)
- FROM {$CFG->prefix}user u,
- {$CFG->prefix}user_students s $groupmembers
- WHERE $select");
+ return 0;
}
@@ -1323,7 +1307,8 @@ function get_course_teachers($courseid, $sort="t.authority ASC", $exceptions='')
u.emailstop, t.authority,t.role,t.editall,t.timeaccess as lastaccess
FROM {$CFG->prefix}user u,
{$CFG->prefix}user_teachers t
- WHERE t.course = '$courseid' AND t.userid = u.id AND u.deleted = '0' $except
+ WHERE t.course = '$courseid' AND t.userid = u.id
+ AND u.deleted = '0' AND u.confirmed = '1' $except
ORDER BY $sort");
}
@@ -1347,18 +1332,12 @@ function get_course_users($courseid, $sort="timeaccess DESC", $exceptions='') {
return $teachers + $students;
-// This is too inefficient on large sites.
-// return get_records_sql("SELECT DISTINCT u.*
-// FROM mdl_user u
-// LEFT JOIN mdl_user_students s ON s.course = '$courseid'
-// LEFT JOIN mdl_user_teachers t ON t.course = '$courseid'
-// WHERE (u.id = t.userid OR u.id = s.userid)
-// ORDER BY $sort");
}
/**
* Search through course users
+* If used for the site course searches through all undeleted, confirmed users
*
* @param type description
*/
@@ -1384,55 +1363,35 @@ function search_users($courseid, $groupid, $searchtext, $sort='', $exceptions=''
} else {
$except = '';
}
-
+
if (!empty($sort)) {
$order = " ORDER by $sort";
} else {
$order = '';
}
- $site = get_site();
- if (!$courseid or $courseid == $site->id) {
- if (!$admins = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
- FROM {$CFG->prefix}user u,
- {$CFG->prefix}user_admins s
- WHERE s.userid = u.id AND u.deleted = '0'
+ $select = "u.deleted = '0' AND u.confirmed = '1'";
+
+ if (!$courseid or $courseid == SITEID) {
+ return $admins = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
+ FROM {$CFG->prefix}user u
+ WHERE $select
AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
- $except $order")) {
- $admins = array();
- }
- if (!$teachers = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
- FROM {$CFG->prefix}user u,
- {$CFG->prefix}user_teachers s
- WHERE s.userid = u.id AND u.deleted = '0'
- AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
- $except $order")) {
- $teachers = array();
- }
- if (!$students = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
- FROM {$CFG->prefix}user u,
- {$CFG->prefix}user_students s
- WHERE s.userid = u.id AND u.deleted = '0'
- AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
- $except $order")) {
- $students = array();
- }
- return $admins + $teachers + $students;
-
+ $except $order");
} else {
-
+
if ($groupid) {
return get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
FROM {$CFG->prefix}user u,
{$CFG->prefix}groups_members g
- WHERE g.groupid = '$groupid' AND g.userid = u.id AND u.deleted = '0'
+ WHERE $select AND g.groupid = '$groupid' AND g.userid = u.id
AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
$except $order");
} else {
if (!$teachers = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
FROM {$CFG->prefix}user u,
{$CFG->prefix}user_teachers s
- WHERE s.course = '$courseid' AND s.userid = u.id AND u.deleted = '0'
+ WHERE $select AND s.course = '$courseid' AND s.userid = u.id
AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
$except $order")) {
$teachers = array();
@@ -1440,7 +1399,7 @@ function search_users($courseid, $groupid, $searchtext, $sort='', $exceptions=''
if (!$students = get_records_sql("SELECT u.id, u.firstname, u.lastname, u.email
FROM {$CFG->prefix}user u,
{$CFG->prefix}user_students s
- WHERE s.course = '$courseid' AND s.userid = u.id AND u.deleted = '0'
+ WHERE $select AND s.course = '$courseid' AND s.userid = u.id
AND ($fullname $LIKE '%$searchtext%' OR u.email $LIKE '%$searchtext%')
$except $order")) {
$students = array();
@@ -1450,46 +1409,16 @@ function search_users($courseid, $groupid, $searchtext, $sort='', $exceptions=''
}
}
+
/**
-* Returns a list of all active users who are enrolled
-*
-* or teaching in courses on this server
+* Returns a list of all site users
+* Obsolete, just calls get_course_users(SITEID)
*
* @param type description
*/
function get_site_users($sort="u.lastaccess DESC", $select="", $exceptions='') {
- global $CFG;
-
- if (!empty($exceptions)) {
- $except = " AND u.id NOT IN ($exceptions) ";
- } else {
- $except = '';
- }
-
- if ($select) {
- $selectinfo = $select;
- } else {
- $selectinfo = "u.id, u.username, u.firstname, u.lastname, u.maildisplay, u.mailformat, u.maildigest,".
- "u.email, u.emailstop, u.city, u.country, u.lastaccess, u.lastlogin, u.picture, u.lang, u.timezone";
- }
-
- if (!$students = get_records_sql("SELECT DISTINCT $selectinfo from {$CFG->prefix}user u, {$CFG->prefix}user_students s
- WHERE s.userid = u.id $except ORDER BY $sort")) {
- $students = array();
- }
-
- if (!$teachers = get_records_sql("SELECT DISTINCT $selectinfo from {$CFG->prefix}user u, {$CFG->prefix}user_teachers t
- WHERE t.userid = u.id $except ORDER BY $sort")) {
- $teachers = array();
- }
-
- if (!$admins = get_records_sql("SELECT DISTINCT $selectinfo from {$CFG->prefix}user u, {$CFG->prefix}user_admins a
- WHERE a.userid = u.id $except ORDER BY $sort")) {
- $admins = array();
- }
-
- return $admins + $teachers + $students;
+ return get_course_users(SITEID, $sort, '', 0, 999999, '', '', NULL, '', $select, $exceptions);
}
diff --git a/lib/moodlelib.php b/lib/moodlelib.php
index f9d120a9a7f..0d90a441fb6 100644
--- a/lib/moodlelib.php
+++ b/lib/moodlelib.php
@@ -584,21 +584,24 @@ function isstudent($courseid, $userid=0) {
/// If course is site, is the user a confirmed user on the site?
global $USER;
- if (empty($USER->id)) {
+ if (empty($USER->id) and !$userid) {
return false;
}
- $site = get_site();
- if ($courseid == $site->id) {
+ if ($courseid == SITEID) {
if (!$userid) {
$userid = $USER->id;
}
if (isguest($userid)) {
return false;
}
- return (record_exists('user_students', 'userid', $userid)
- or (record_exists('user_teachers', 'userid', $userid)
+ if ($CFG->allusersaresitestudents) {
+ return record_exists('user', 'id', $userid);
+ } else {
+ return (record_exists('user_students', 'userid', $userid)
+ or (record_exists('user_teachers', 'userid', $userid)
and !record_exists('user_teachers', 'userid', $userid, 'course', SITEID)));
+ }
}
if (!$userid) {