Merge branch 'MDL-50033-27-enfix' of git://github.com/mudrd8mz/moodle into MOODLE_27_...
[moodle.git] / user / view.php
blob1805328ee0dd4766b7785cf3fc206de85179ecfc
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Display profile for a particular user
20 * @package core_user
21 * @copyright 1999 Martin Dougiamas http://dougiamas.com
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once("../config.php");
26 require_once($CFG->dirroot.'/user/profile/lib.php');
27 require_once($CFG->dirroot.'/tag/lib.php');
28 require_once($CFG->libdir . '/filelib.php');
29 require_once($CFG->libdir . '/badgeslib.php');
31 $id = optional_param('id', 0, PARAM_INT); // User id.
32 $courseid = optional_param('course', SITEID, PARAM_INT); // course id (defaults to Site).
33 $showallcourses = optional_param('showallcourses', 0, PARAM_INT);
35 // See your own profile by default.
36 if (empty($id)) {
37 require_login();
38 $id = $USER->id;
41 if ($courseid == SITEID) { // Since Moodle 2.0 all site-level profiles are shown by profile.php.
42 redirect($CFG->wwwroot.'/user/profile.php?id='.$id); // Immediate redirect.
45 $PAGE->set_url('/user/view.php', array('id' => $id, 'course' => $courseid));
47 $user = $DB->get_record('user', array('id' => $id), '*', MUST_EXIST);
48 $course = $DB->get_record('course', array('id' => $courseid), '*', MUST_EXIST);
49 $currentuser = ($user->id == $USER->id);
51 $systemcontext = context_system::instance();
52 $coursecontext = context_course::instance($course->id);
53 $usercontext = context_user::instance($user->id, IGNORE_MISSING);
55 // Check we are not trying to view guest's profile.
56 if (isguestuser($user)) {
57 // Can not view profile of guest - thre is nothing to see there.
58 print_error('invaliduserid');
61 $PAGE->set_context($coursecontext);
63 if (!empty($CFG->forceloginforprofiles)) {
64 require_login(); // We can not log in to course due to the parent hack below.
66 // Guests do not have permissions to view anyone's profile if forceloginforprofiles is set.
67 if (isguestuser()) {
68 echo $OUTPUT->header();
69 echo $OUTPUT->confirm(get_string('guestcantaccessprofiles', 'error'),
70 get_login_url(),
71 $CFG->wwwroot);
72 echo $OUTPUT->footer();
73 die;
77 $PAGE->set_course($course);
78 $PAGE->set_pagetype('course-view-' . $course->format); // To get the blocks exactly like the course.
79 $PAGE->add_body_class('path-user'); // So we can style it independently.
80 $PAGE->set_other_editing_capability('moodle/course:manageactivities');
82 // Set the Moodle docs path explicitly because the default behaviour
83 // of inhereting the pagetype will lead to an incorrect docs location.
84 $PAGE->set_docs_path('user/profile');
86 $isparent = false;
88 if (!$currentuser and !$user->deleted
89 and $DB->record_exists('role_assignments', array('userid' => $USER->id, 'contextid' => $usercontext->id))
90 and has_capability('moodle/user:viewdetails', $usercontext)) {
91 // TODO: very ugly hack - do not force "parents" to enrol into course their child is enrolled in,
92 // this way they may access the profile where they get overview of grades and child activity in course,
93 // please note this is just a guess!
94 require_login();
95 $isparent = true;
96 $PAGE->navigation->set_userid_for_parent_checks($id);
97 } else {
98 // Normal course.
99 require_login($course);
100 // What to do with users temporary accessing this course? should they see the details?
103 $strpersonalprofile = get_string('personalprofile');
104 $strparticipants = get_string("participants");
105 $struser = get_string("user");
107 $fullname = fullname($user, has_capability('moodle/site:viewfullnames', $coursecontext));
109 // Now test the actual capabilities and enrolment in course.
110 if ($currentuser) {
111 if (!is_viewing($coursecontext) && !is_enrolled($coursecontext)) {
112 // Need to have full access to a course to see the rest of own info.
113 echo $OUTPUT->header();
114 echo $OUTPUT->heading(get_string('notenrolled', '', $fullname));
115 if (!empty($_SERVER['HTTP_REFERER'])) {
116 echo $OUTPUT->continue_button($_SERVER['HTTP_REFERER']);
118 echo $OUTPUT->footer();
119 die;
122 } else {
123 // Somebody else.
124 $PAGE->set_title("$strpersonalprofile: ");
125 $PAGE->set_heading("$strpersonalprofile: ");
127 // Check course level capabilities.
128 if (!has_capability('moodle/user:viewdetails', $coursecontext) && // Normal enrolled user or mnager.
129 ($user->deleted or !has_capability('moodle/user:viewdetails', $usercontext))) { // Usually parent.
130 print_error('cannotviewprofile');
133 if (!is_enrolled($coursecontext, $user->id)) {
134 // TODO: the only potential problem is that managers and inspectors might post in forum, but the link
135 // to profile would not work - maybe a new capability - moodle/user:freely_acessile_profile_for_anybody
136 // or test for course:inspect capability.
137 if (has_capability('moodle/role:assign', $coursecontext)) {
138 $PAGE->navbar->add($fullname);
139 echo $OUTPUT->header();
140 echo $OUTPUT->heading(get_string('notenrolled', '', $fullname));
141 } else {
142 echo $OUTPUT->header();
143 $PAGE->navbar->add($struser);
144 echo $OUTPUT->heading(get_string('notenrolledprofile'));
146 if (!empty($_SERVER['HTTP_REFERER'])) {
147 echo $OUTPUT->continue_button($_SERVER['HTTP_REFERER']);
149 echo $OUTPUT->footer();
150 exit;
153 // If groups are in use and enforced throughout the course, then make sure we can meet in at least one course level group.
154 // Except when we are a parent, in which case we would not be in any group.
155 if (groups_get_course_groupmode($course) == SEPARATEGROUPS
156 and $course->groupmodeforce
157 and !has_capability('moodle/site:accessallgroups', $coursecontext)
158 and !has_capability('moodle/site:accessallgroups', $coursecontext, $user->id)
159 and !$isparent) {
160 if (!isloggedin() or isguestuser()) {
161 // Do not use require_login() here because we might have already used require_login($course).
162 redirect(get_login_url());
164 $mygroups = array_keys(groups_get_all_groups($course->id, $USER->id, $course->defaultgroupingid, 'g.id, g.name'));
165 $usergroups = array_keys(groups_get_all_groups($course->id, $user->id, $course->defaultgroupingid, 'g.id, g.name'));
166 if (!array_intersect($mygroups, $usergroups)) {
167 print_error("groupnotamember", '', "../course/view.php?id=$course->id");
172 $PAGE->set_title("$course->fullname: $strpersonalprofile: $fullname");
173 $PAGE->set_heading($course->fullname);
174 $PAGE->set_pagelayout('standard');
176 // Locate the users settings in the settings navigation and force it open.
177 // This MUST be done after we've set up the page as it is going to cause theme and output to initialise.
178 if (!$currentuser) {
179 $PAGE->navigation->extend_for_user($user);
180 if ($node = $PAGE->settingsnav->get('userviewingsettings'.$user->id)) {
181 $node->forceopen = true;
183 } else if ($node = $PAGE->settingsnav->get('usercurrentsettings', navigation_node::TYPE_CONTAINER)) {
184 $node->forceopen = true;
186 if ($node = $PAGE->settingsnav->get('courseadmin')) {
187 $node->forceopen = false;
190 echo $OUTPUT->header();
192 echo '<div class="userprofile">';
194 echo $OUTPUT->heading(fullname($user).' ('.format_string($course->shortname, true, array('context' => $coursecontext)).')');
196 if ($user->deleted) {
197 echo $OUTPUT->heading(get_string('userdeleted'));
198 if (!has_capability('moodle/user:update', $coursecontext)) {
199 echo $OUTPUT->footer();
200 die;
204 // OK, security out the way, now we are showing the user.
205 // Trigger a user profile viewed event.
206 $event = \core\event\user_profile_viewed::create(array(
207 'objectid' => $user->id,
208 'relateduserid' => $user->id,
209 'courseid' => $course->id,
210 'context' => $coursecontext,
211 'other' => array(
212 'courseid' => $course->id,
213 'courseshortname' => $course->shortname,
214 'coursefullname' => $course->fullname
217 $event->add_record_snapshot('user', $user);
218 $event->trigger();
220 // Get the hidden field list.
221 if (has_capability('moodle/user:viewhiddendetails', $coursecontext)) {
222 $hiddenfields = array();
223 } else {
224 $hiddenfields = array_flip(explode(',', $CFG->hiddenuserfields));
227 if (is_mnet_remote_user($user)) {
228 $sql = "SELECT h.id, h.name, h.wwwroot,
229 a.name as application, a.display_name
230 FROM {mnet_host} h, {mnet_application} a
231 WHERE h.id = ? AND h.applicationid = a.id";
233 $remotehost = $DB->get_record_sql($sql, array($user->mnethostid));
234 $a = new stdclass();
235 $a->remotetype = $remotehost->display_name;
236 $a->remotename = $remotehost->name;
237 $a->remoteurl = $remotehost->wwwroot;
239 echo $OUTPUT->box(get_string('remoteuserinfo', 'mnet', $a), 'remoteuserinfo');
242 echo '<div class="userprofilebox clearfix"><div class="profilepicture">';
243 echo $OUTPUT->user_picture($user, array('size' => 100));
244 echo '</div>';
246 // Print the description.
247 echo '<div class="descriptionbox"><div class="description">';
248 if ($user->description && !isset($hiddenfields['description'])) {
249 if (!empty($CFG->profilesforenrolledusersonly) && !$DB->record_exists('role_assignments', array('userid' => $id))) {
250 echo get_string('profilenotshown', 'moodle');
251 } else {
252 if ($courseid == SITEID) {
253 $user->description = file_rewrite_pluginfile_urls($user->description, 'pluginfile.php', $usercontext->id, 'user', 'profile', null);
254 } else {
255 // We have to make a little detour thought the course context to verify the access control for course profile.
256 $user->description = file_rewrite_pluginfile_urls($user->description, 'pluginfile.php', $coursecontext->id, 'user', 'profile', $user->id);
258 $options = array('overflowdiv' => true);
259 echo format_text($user->description, $user->descriptionformat, $options);
262 echo '</div>';
265 // Print all the little details in a list.
267 echo html_writer::start_tag('dl', array('class' => 'list'));
268 // Show email if any of the following conditions match.
269 // 1. User is viewing his own profile.
270 // 2. Has allowed everyone to see email
271 // 3. User has allowed course members to can see email and current user is in same course
272 // 4. Has either course:viewhiddenuserfields or site:viewuseridentity capability.
273 if ($currentuser
274 or $user->maildisplay == 1
275 or ($user->maildisplay == 2 && is_enrolled($coursecontext, $USER))
276 or has_capability('moodle/course:viewhiddenuserfields', $coursecontext)
277 or has_capability('moodle/site:viewuseridentity', $coursecontext)) {
278 echo html_writer::tag('dt', get_string('email'));
279 echo html_writer::tag('dd', obfuscate_mailto($user->email, ''));
282 // Show last time this user accessed this course.
283 if (!isset($hiddenfields['lastaccess'])) {
284 if ($lastaccess = $DB->get_record('user_lastaccess', array('userid' => $user->id, 'courseid' => $course->id))) {
285 $datestring = userdate($lastaccess->timeaccess)."&nbsp; (".format_time(time() - $lastaccess->timeaccess).")";
286 } else {
287 $datestring = get_string("never");
289 echo html_writer::tag('dt', get_string('lastcourseaccess'));
290 echo html_writer::tag('dd', $datestring);
293 // Show roles in this course.
294 if ($rolestring = get_user_roles_in_course($id, $course->id)) {
295 echo html_writer::tag('dt', get_string('roles'));
296 echo html_writer::tag('dd', $rolestring);
299 // Show groups this user is in.
300 if (!isset($hiddenfields['groups'])) {
301 $accessallgroups = has_capability('moodle/site:accessallgroups', $coursecontext);
302 if ($usergroups = groups_get_all_groups($course->id, $user->id)) {
303 $groupstr = '';
304 foreach ($usergroups as $group) {
305 if ($course->groupmode == SEPARATEGROUPS and !$accessallgroups and $user->id != $USER->id) {
306 if (!groups_is_member($group->id, $user->id)) {
307 continue;
311 if ($course->groupmode != NOGROUPS) {
312 $groupstr .= ' <a href="'.$CFG->wwwroot.'/user/index.php?id='.$course->id.'&amp;group='.$group->id.'">'.format_string($group->name).'</a>,';
313 } else {
314 $groupstr .= ' '.format_string($group->name); // The user/index.php shows groups only when course in group mode.
317 if ($groupstr !== '') {
318 echo html_writer::tag('dt', get_string('group'));
319 echo html_writer::tag('dd', rtrim($groupstr, ', '));
324 // Show other courses they may be in.
325 if (!isset($hiddenfields['mycourses'])) {
326 if ($mycourses = enrol_get_all_users_courses($user->id, true, null, 'visible DESC,sortorder ASC')) {
327 $shown = 0;
328 $courselisting = '';
329 foreach ($mycourses as $mycourse) {
330 if ($mycourse->category) {
331 context_helper::preload_from_record($mycourse);
332 $ccontext = context_course::instance($mycourse->id);
333 $cfullname = $ccontext->get_context_name(false);
334 if ($mycourse->id != $course->id) {
335 $linkattributes = null;
336 if ($mycourse->visible == 0) {
337 if (!has_capability('moodle/course:viewhiddencourses', $ccontext)) {
338 continue;
340 $linkattributes['class'] = 'dimmed';
342 $params = array('id' => $user->id, 'course' => $mycourse->id);
343 if ($showallcourses) {
344 $params['showallcourses'] = 1;
346 $url = new moodle_url('/user/view.php', $params);
347 $courselisting .= html_writer::link($url, $ccontext->get_context_name(false), $linkattributes);
348 $courselisting .= ', ';
349 } else {
350 $courselisting .= $cfullname . ", ";
351 $PAGE->navbar->add($cfullname);
354 $shown++;
355 if (!$showallcourses && $shown >= 20) {
356 $url = new moodle_url('/user/view.php', array('id' => $user->id, 'course' => $courseid, 'showallcourses' => 1));
357 $courselisting .= html_writer::link($url, '...', array('title' => get_string('viewmore')));
358 break;
361 echo html_writer::tag('dt', get_string('courseprofiles'));
362 echo html_writer::tag('dd', rtrim($courselisting, ', '));
366 if (!empty($CFG->enablebadges) && !empty($CFG->badges_allowcoursebadges)) {
367 profile_display_badges($user->id, $courseid);
370 if (!isset($hiddenfields['suspended'])) {
371 if ($user->suspended) {
372 echo html_writer::tag('dt', "&nbsp;");
373 echo html_writer::tag('dd', get_string('suspended', 'auth'));
377 if (has_capability('moodle/user:viewlastip', $usercontext) && !isset($hiddenfields['lastip'])) {
378 if ($user->lastip) {
379 $iplookupurl = new moodle_url('/iplookup/index.php', array('ip' => $user->lastip, 'user' => $USER->id));
380 $ipstring = html_writer::link($iplookupurl, $user->lastip);
381 } else {
382 $ipstring = get_string("none");
384 echo html_writer::tag('dt', get_string('lastip'));
385 echo html_writer::tag('dd', $ipstring);
387 echo html_writer::end_tag('dl');
388 echo "</div></div>"; // Closing desriptionbox and userprofilebox.
389 // Print messaging link if allowed.
390 if (isloggedin() && has_capability('moodle/site:sendmessage', $usercontext)
391 && !empty($CFG->messaging) && !isguestuser() && !isguestuser($user) && ($USER->id != $user->id)) {
392 echo '<div class="messagebox">';
393 $sendmessageurl = new moodle_url('/message/index.php', array('id' => $user->id));
394 if ($courseid) {
395 $sendmessageurl->param('viewing', MESSAGE_VIEW_COURSE. $courseid);
397 echo html_writer::link($sendmessageurl, get_string('messageselectadd'));
398 echo '</div>';
401 if (empty($CFG->forceloginforprofiles) || $currentuser || has_capability('moodle/user:viewdetails', $usercontext)
402 || has_coursecontact_role($id)) {
403 echo '<div class="fullprofilelink">';
404 echo html_writer::link($CFG->wwwroot.'/user/profile.php?id='.$id, get_string('fullprofile'));
405 echo '</div>';
408 // TODO Add more useful overview info for teachers here, see below.
409 // Show links to notes made about this student (must click to display, for privacy).
410 // Recent comments made in this course.
411 // Recent blogs associated with this course and items in it.
415 echo '</div>'; // Userprofile class.
417 echo $OUTPUT->footer();