Commit | Line | Data |
---|---|---|
ce221eb5 | 1 | <?php |
2 | ||
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
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. | |
9 | // | |
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. | |
14 | // | |
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/>. | |
17 | ||
18 | /** | |
19 | * Display profile for a particular user | |
20 | * | |
21 | * @copyright 1999 Martin Dougiamas http://dougiamas.com | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | * @package user | |
24 | */ | |
25 | ||
26 | require_once("../config.php"); | |
27 | require_once($CFG->dirroot.'/user/profile/lib.php'); | |
28 | require_once($CFG->dirroot.'/tag/lib.php'); | |
99d19c13 | 29 | require_once($CFG->libdir . '/filelib.php'); |
ce221eb5 | 30 | |
4f0c2d00 PS |
31 | $id = optional_param('id', 0, PARAM_INT); // user id |
32 | $courseid = optional_param('course', SITEID, PARAM_INT); // course id (defaults to Site) | |
ce221eb5 | 33 | |
03d9401e | 34 | if (empty($id)) { // See your own profile by default |
ce221eb5 | 35 | require_login(); |
36 | $id = $USER->id; | |
37 | } | |
f9903ed0 | 38 | |
03d9401e MD |
39 | if ($courseid == SITEID) { // Since Moodle 2.0 all site-level profiles are shown by profile.php |
40 | redirect($CFG->wwwroot.'/user/profile.php?id='.$id); // Immediate redirect | |
ce221eb5 | 41 | } |
03d9401e | 42 | |
81b58cc2 | 43 | $PAGE->set_url('/user/view.php', array('id'=>$id,'course'=>$courseid)); |
e41ddc4b | 44 | |
4f0c2d00 PS |
45 | $user = $DB->get_record('user', array('id'=>$id), '*', MUST_EXIST); |
46 | $course = $DB->get_record('course', array('id'=>$courseid), '*', MUST_EXIST); | |
03d9401e | 47 | $currentuser = ($user->id == $USER->id); |
f9903ed0 | 48 | |
43731030 FM |
49 | $systemcontext = context_system::instance(); |
50 | $coursecontext = context_course::instance($course->id); | |
51 | $usercontext = context_user::instance($user->id, IGNORE_MISSING); | |
1deff123 | 52 | |
4f0c2d00 PS |
53 | // Require login first |
54 | if (isguestuser($user)) { | |
55 | // can not view profile of guest - thre is nothing to see there | |
56 | print_error('invaliduserid'); | |
ce221eb5 | 57 | } |
bad59bc0 | 58 | |
81b58cc2 | 59 | if (!empty($CFG->forceloginforprofiles)) { |
ce8df92d | 60 | require_login(); // we can not log in to course due to the parent hack below |
81b58cc2 PS |
61 | } |
62 | ||
03d9401e | 63 | $PAGE->set_context($coursecontext); |
f5c1e621 | 64 | $PAGE->set_course($course); |
99cca847 MD |
65 | $PAGE->set_pagetype('course-view-' . $course->format); // To get the blocks exactly like the course |
66 | $PAGE->add_body_class('path-user'); // So we can style it independently | |
03d9401e | 67 | $PAGE->set_other_editing_capability('moodle/course:manageactivities'); |
cb4f6179 | 68 | |
4f0c2d00 | 69 | $isparent = false; |
0be6f678 | 70 | |
589071ba | 71 | if (!$currentuser and !$user->deleted |
4f0c2d00 PS |
72 | and $DB->record_exists('role_assignments', array('userid'=>$USER->id, 'contextid'=>$usercontext->id)) |
73 | and has_capability('moodle/user:viewdetails', $usercontext)) { | |
74 | // TODO: very ugly hack - do not force "parents" to enrol into course their child is enrolled in, | |
75 | // this way they may access the profile where they get overview of grades and child activity in course, | |
76 | // please note this is just a guess! | |
ce221eb5 | 77 | require_login(); |
4f0c2d00 | 78 | $isparent = true; |
870815fa | 79 | $PAGE->navigation->set_userid_for_parent_checks($id); |
4f0c2d00 PS |
80 | } else { |
81 | // normal course | |
82 | require_login($course); | |
81b58cc2 | 83 | // what to do with users temporary accessing this course? should they see the details? |
ce221eb5 | 84 | } |
f9903ed0 | 85 | |
ce221eb5 | 86 | $strpersonalprofile = get_string('personalprofile'); |
87 | $strparticipants = get_string("participants"); | |
88 | $struser = get_string("user"); | |
f9903ed0 | 89 | |
ce221eb5 | 90 | $fullname = fullname($user, has_capability('moodle/site:viewfullnames', $coursecontext)); |
f1603208 | 91 | |
4f0c2d00 PS |
92 | /// Now test the actual capabilities and enrolment in course |
93 | if ($currentuser) { | |
94 | // me | |
4b715423 | 95 | if (!is_viewing($coursecontext) && !is_enrolled($coursecontext)) { // Need to have full access to a course to see the rest of own info |
4f0c2d00 PS |
96 | echo $OUTPUT->header(); |
97 | echo $OUTPUT->heading(get_string('notenrolled', '', $fullname)); | |
98 | if (!empty($_SERVER['HTTP_REFERER'])) { | |
99 | echo $OUTPUT->continue_button($_SERVER['HTTP_REFERER']); | |
100 | } | |
101 | echo $OUTPUT->footer(); | |
102 | die; | |
103 | } | |
caa8363f | 104 | |
4f0c2d00 PS |
105 | } else { |
106 | // somebody else | |
ce221eb5 | 107 | $PAGE->set_title("$strpersonalprofile: "); |
108 | $PAGE->set_heading("$strpersonalprofile: "); | |
caa8363f | 109 | |
03d9401e MD |
110 | // check course level capabilities |
111 | if (!has_capability('moodle/user:viewdetails', $coursecontext) && // normal enrolled user or mnager | |
589071ba | 112 | ($user->deleted or !has_capability('moodle/user:viewdetails', $usercontext))) { // usually parent |
03d9401e MD |
113 | print_error('cannotviewprofile'); |
114 | } | |
4f0c2d00 | 115 | |
03d9401e MD |
116 | if (!is_enrolled($coursecontext, $user->id)) { |
117 | // TODO: the only potential problem is that managers and inspectors might post in forum, but the link | |
118 | // to profile would not work - maybe a new capability - moodle/user:freely_acessile_profile_for_anybody | |
119 | // or test for course:inspect capability | |
120 | if (has_capability('moodle/role:assign', $coursecontext)) { | |
121 | $PAGE->navbar->add($fullname); | |
122 | echo $OUTPUT->header(); | |
123 | echo $OUTPUT->heading(get_string('notenrolled', '', $fullname)); | |
124 | } else { | |
125 | echo $OUTPUT->header(); | |
126 | $PAGE->navbar->add($struser); | |
127 | echo $OUTPUT->heading(get_string('notenrolledprofile')); | |
ce221eb5 | 128 | } |
03d9401e MD |
129 | if (!empty($_SERVER['HTTP_REFERER'])) { |
130 | echo $OUTPUT->continue_button($_SERVER['HTTP_REFERER']); | |
fa22fd5f | 131 | } |
03d9401e MD |
132 | echo $OUTPUT->footer(); |
133 | exit; | |
ce221eb5 | 134 | } |
499e78b4 | 135 | |
4f0c2d00 PS |
136 | // If groups are in use and enforced throughout the course, then make sure we can meet in at least one course level group |
137 | if (groups_get_course_groupmode($course) == SEPARATEGROUPS and $course->groupmodeforce | |
138 | and !has_capability('moodle/site:accessallgroups', $coursecontext) and !has_capability('moodle/site:accessallgroups', $coursecontext, $user->id)) { | |
139 | if (!isloggedin() or isguestuser()) { | |
140 | // do not use require_login() here because we might have already used require_login($course) | |
141 | redirect(get_login_url()); | |
142 | } | |
143 | $mygroups = array_keys(groups_get_all_groups($course->id, $USER->id, $course->defaultgroupingid, 'g.id, g.name')); | |
144 | $usergroups = array_keys(groups_get_all_groups($course->id, $user->id, $course->defaultgroupingid, 'g.id, g.name')); | |
145 | if (!array_intersect($mygroups, $usergroups)) { | |
ce221eb5 | 146 | print_error("groupnotamember", '', "../course/view.php?id=$course->id"); |
dd780a3b | 147 | } |
148 | } | |
ce221eb5 | 149 | } |
0be6f678 | 150 | |
8b03c251 SH |
151 | $PAGE->set_title("$course->fullname: $strpersonalprofile: $fullname"); |
152 | $PAGE->set_heading($course->fullname); | |
153 | $PAGE->set_pagelayout('standard'); | |
f5ecf2e9 | 154 | |
8b03c251 SH |
155 | // Locate the users settings in the settings navigation and force it open. |
156 | // This MUST be done after we've set up the page as it is going to cause theme and output to initialise. | |
87c215de SH |
157 | if (!$currentuser) { |
158 | $PAGE->navigation->extend_for_user($user); | |
5d07e957 | 159 | if ($node = $PAGE->settingsnav->get('userviewingsettings'.$user->id)) { |
87c215de SH |
160 | $node->forceopen = true; |
161 | } | |
162 | } else if ($node = $PAGE->settingsnav->get('usercurrentsettings', navigation_node::TYPE_CONTAINER)) { | |
163 | $node->forceopen = true; | |
164 | } | |
165 | if ($node = $PAGE->settingsnav->get('courseadmin')) { | |
166 | $node->forceopen = false; | |
167 | } | |
168 | ||
ce221eb5 | 169 | echo $OUTPUT->header(); |
99cca847 MD |
170 | |
171 | echo '<div class="userprofile">'; | |
172 | ||
8ebbb06a | 173 | echo $OUTPUT->heading(fullname($user).' ('.format_string($course->shortname, true, array('context' => $coursecontext)).')'); |
b1d530d2 | 174 | |
ce221eb5 | 175 | if ($user->deleted) { |
176 | echo $OUTPUT->heading(get_string('userdeleted')); | |
177 | if (!has_capability('moodle/user:update', $coursecontext)) { | |
178 | echo $OUTPUT->footer(); | |
179 | die; | |
bb09fb11 | 180 | } |
ce221eb5 | 181 | } |
bb09fb11 | 182 | |
bad59bc0 | 183 | /// OK, security out the way, now we are showing the user |
184 | ||
ce221eb5 | 185 | add_to_log($course->id, "user", "view", "view.php?id=$user->id&course=$course->id", "$user->id"); |
bad59bc0 | 186 | |
4801fe93 | 187 | /// Get the hidden field list |
ce221eb5 | 188 | if (has_capability('moodle/user:viewhiddendetails', $coursecontext)) { |
189 | $hiddenfields = array(); | |
190 | } else { | |
191 | $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields)); | |
192 | } | |
f9903ed0 | 193 | |
ce221eb5 | 194 | if (is_mnet_remote_user($user)) { |
5db29f49 DM |
195 | $sql = "SELECT h.id, h.name, h.wwwroot, |
196 | a.name as application, a.display_name | |
197 | FROM {mnet_host} h, {mnet_application} a | |
198 | WHERE h.id = ? AND h.applicationid = a.id"; | |
ce8c75ee | 199 | |
ce221eb5 | 200 | $remotehost = $DB->get_record_sql($sql, array($user->mnethostid)); |
5db29f49 DM |
201 | $a = new stdclass(); |
202 | $a->remotetype = $remotehost->display_name; | |
203 | $a->remotename = $remotehost->name; | |
204 | $a->remoteurl = $remotehost->wwwroot; | |
0be6f678 | 205 | |
5db29f49 | 206 | echo $OUTPUT->box(get_string('remoteuserinfo', 'mnet', $a), 'remoteuserinfo'); |
ce221eb5 | 207 | } |
56f52742 | 208 | |
e4f0c78a | 209 | echo '<div class="userprofilebox clearfix"><div class="profilepicture">'; |
03d9401e MD |
210 | echo $OUTPUT->user_picture($user, array('size'=>100)); |
211 | echo '</div>'; | |
f9903ed0 | 212 | |
03d9401e | 213 | // Print the description |
e4f0c78a | 214 | echo '<div class="descriptionbox"><div class="description">'; |
ce221eb5 | 215 | if ($user->description && !isset($hiddenfields['description'])) { |
03d9401e | 216 | if (!empty($CFG->profilesforenrolledusersonly) && !$DB->record_exists('role_assignments', array('userid'=>$id))) { |
99cca847 | 217 | echo get_string('profilenotshown', 'moodle'); |
ce221eb5 | 218 | } else { |
64f93798 PS |
219 | if ($courseid == SITEID) { |
220 | $user->description = file_rewrite_pluginfile_urls($user->description, 'pluginfile.php', $usercontext->id, 'user', 'profile', null); | |
221 | } else { | |
222 | // we have to make a little detour thought the course context to verify the access control for course profile | |
223 | $user->description = file_rewrite_pluginfile_urls($user->description, 'pluginfile.php', $coursecontext->id, 'user', 'profile', $user->id); | |
224 | } | |
367a75fa SH |
225 | $options = array('overflowdiv'=>true); |
226 | echo format_text($user->description, $user->descriptionformat, $options); | |
f9903ed0 | 227 | } |
ce221eb5 | 228 | } |
03d9401e MD |
229 | echo '</div>'; |
230 | ||
f9903ed0 | 231 | |
ce221eb5 | 232 | // Print all the little details in a list |
f9903ed0 | 233 | |
03d9401e | 234 | echo '<table class="list" summary="">'; |
f9903ed0 | 235 | |
8d22e342 AD |
236 | //checks were performed above that ensure that if we've got to here either the user |
237 | //is viewing their own profile ($USER->id == $user->id) or $user is enrolled in the course | |
238 | if ($currentuser | |
239 | or $user->maildisplay == 1 //allow everyone to see email address | |
240 | or ($user->maildisplay == 2 && is_enrolled($coursecontext, $USER)) //fellow course members can see email. Already know $user is enrolled | |
241 | or has_capability('moodle/course:useremail', $coursecontext)) { | |
242 | print_row(get_string("email").":", obfuscate_mailto($user->email, '')); | |
243 | } | |
244 | ||
99cca847 MD |
245 | // Show last time this user accessed this course |
246 | if (!isset($hiddenfields['lastaccess'])) { | |
247 | if ($lastaccess = $DB->get_record('user_lastaccess', array('userid'=>$user->id, 'courseid'=>$course->id))) { | |
248 | $datestring = userdate($lastaccess->timeaccess)." (".format_time(time() - $lastaccess->timeaccess).")"; | |
249 | } else { | |
250 | $datestring = get_string("never"); | |
f9903ed0 | 251 | } |
99cca847 | 252 | print_row(get_string("lastaccess").":", $datestring); |
ce221eb5 | 253 | } |
f9903ed0 | 254 | |
99cca847 MD |
255 | // Show roles in this course |
256 | if ($rolestring = get_user_roles_in_course($id, $course->id)) { | |
257 | print_row(get_string('roles').':', $rolestring); | |
ce221eb5 | 258 | } |
766d2bf3 | 259 | |
99cca847 MD |
260 | // Show groups this user is in |
261 | if (!isset($hiddenfields['groups'])) { | |
a732add0 PS |
262 | $accessallgroups = has_capability('moodle/site:accessallgroups', $coursecontext); |
263 | if ($usergroups = groups_get_all_groups($course->id, $user->id)) { | |
264 | $groupstr = ''; | |
265 | foreach ($usergroups as $group){ | |
266 | if ($course->groupmode == SEPARATEGROUPS and !$accessallgroups and $user->id != $USER->id) { | |
267 | if (!groups_is_member($group->id, $user->id)) { | |
268 | continue; | |
269 | } | |
270 | } | |
271 | ||
272 | if ($course->groupmode != NOGROUPS) { | |
99cca847 | 273 | $groupstr .= ' <a href="'.$CFG->wwwroot.'/user/index.php?id='.$course->id.'&group='.$group->id.'">'.format_string($group->name).'</a>,'; |
a732add0 PS |
274 | } else { |
275 | $groupstr .= ' '.format_string($group->name); // the user/index.php shows groups only when course in group mode | |
99cca847 | 276 | } |
a732add0 PS |
277 | } |
278 | if ($groupstr !== '') { | |
99cca847 MD |
279 | print_row(get_string("group").":", rtrim($groupstr, ', ')); |
280 | } | |
f9903ed0 | 281 | } |
ce221eb5 | 282 | } |
f9903ed0 | 283 | |
99cca847 | 284 | // Show other courses they may be in |
ce221eb5 | 285 | if (!isset($hiddenfields['mycourses'])) { |
9ffd29ce | 286 | if ($mycourses = enrol_get_all_users_courses($user->id, true, NULL, 'visible DESC,sortorder ASC')) { |
99cca847 | 287 | $shown = 0; |
ce221eb5 | 288 | $courselisting = ''; |
289 | foreach ($mycourses as $mycourse) { | |
290 | if ($mycourse->category) { | |
43731030 | 291 | $ccontext = context_course::instance($mycourse->id);; |
91d284c1 | 292 | $cfullname = format_string($mycourse->fullname, true, array('context' => $ccontext)); |
ce221eb5 | 293 | if ($mycourse->id != $course->id){ |
294 | $class = ''; | |
295 | if ($mycourse->visible == 0) { | |
df997f84 PS |
296 | if (!has_capability('moodle/course:viewhiddencourses', $ccontext)) { |
297 | continue; | |
298 | } | |
ce221eb5 | 299 | $class = 'class="dimmed"'; |
472b647a | 300 | } |
ce221eb5 | 301 | $courselisting .= "<a href=\"{$CFG->wwwroot}/user/view.php?id={$user->id}&course={$mycourse->id}\" $class >" |
91d284c1 | 302 | . $cfullname . "</a>, "; |
99cca847 | 303 | } else { |
91d284c1 SH |
304 | $courselisting .= $cfullname . ", "; |
305 | $PAGE->navbar->add($cfullname); | |
9c72928d | 306 | } |
307 | } | |
ce221eb5 | 308 | $shown++; |
99cca847 MD |
309 | if ($shown >= 20) { |
310 | $courselisting .= "..."; | |
ce221eb5 | 311 | break; |
312 | } | |
9c72928d | 313 | } |
03d9401e | 314 | print_row(get_string('courseprofiles').':', rtrim($courselisting,', ')); |
9c72928d | 315 | } |
ce221eb5 | 316 | } |
f2f085ee | 317 | |
4ad72c28 PS |
318 | if (!isset($hiddenfields['suspended'])) { |
319 | if ($user->suspended) { | |
320 | print_row('', get_string('suspended', 'auth')); | |
321 | } | |
322 | } | |
323 | ||
e4f0c78a | 324 | echo "</table></div></div>"; |
fa22fd5f | 325 | |
42ec733c AD |
326 | // Print messaging link if allowed |
327 | if (isloggedin() && has_capability('moodle/site:sendmessage', $usercontext) | |
328 | && !empty($CFG->messaging) && !isguestuser() && !isguestuser($user) && ($USER->id != $user->id)) { | |
329 | echo '<div class="messagebox">'; | |
330 | echo '<a href="'.$CFG->wwwroot.'/message/index.php?id='.$user->id.'">'.get_string('messageselectadd').'</a>'; | |
331 | echo '</div>'; | |
332 | } | |
333 | ||
46ea652f SH |
334 | if ($currentuser || has_capability('moodle/user:viewdetails', $usercontext) || has_coursecontact_role($id)) { |
335 | echo '<div class="fullprofilelink">'; | |
336 | echo html_writer::link($CFG->wwwroot.'/user/profile.php?id='.$id, get_string('fullprofile')); | |
337 | echo '</div>'; | |
338 | } | |
fa22fd5f | 339 | |
99cca847 | 340 | /// TODO Add more useful overview info for teachers here, see below |
1e1c51a3 | 341 | |
99cca847 | 342 | /// Show links to notes made about this student (must click to display, for privacy) |
f9903ed0 | 343 | |
99cca847 | 344 | /// Recent comments made in this course |
210560e3 | 345 | |
99cca847 | 346 | /// Recent blogs associated with this course and items in it |
3086f3f6 | 347 | |
3de34ccf | 348 | |
99cca847 MD |
349 | |
350 | echo '</div>'; // userprofile class | |
3de34ccf | 351 | |
ce221eb5 | 352 | echo $OUTPUT->footer(); |
f9903ed0 | 353 | |
354 | /// Functions /////// | |
355 | ||
356 | function print_row($left, $right) { | |
d17ba1e1 | 357 | echo "\n<tr><th class=\"label c0\">$left</th><td class=\"info c1\">$right</td></tr>\n"; |
f9903ed0 | 358 | } |
359 | ||
aa6c1ced | 360 |