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 | * Allows you to edit a users profile | |
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->libdir.'/gdlib.php'); | |
28 | require_once($CFG->libdir.'/adminlib.php'); | |
29 | require_once($CFG->dirroot.'/user/editadvanced_form.php'); | |
30 | require_once($CFG->dirroot.'/user/editlib.php'); | |
31 | require_once($CFG->dirroot.'/user/profile/lib.php'); | |
ce221eb5 | 32 | |
17c70aa0 PS |
33 | //HTTPS is required in this page when $CFG->loginhttps enabled |
34 | $PAGE->https_required(); | |
ce221eb5 | 35 | |
36 | $id = optional_param('id', $USER->id, PARAM_INT); // user id; -1 if creating new user | |
37 | $course = optional_param('course', SITEID, PARAM_INT); // course id (defaults to Site) | |
38 | ||
17c70aa0 | 39 | $PAGE->set_url('/user/editadvanced.php', array('course'=>$course, 'id'=>$id)); |
ce221eb5 | 40 | |
3406acde SH |
41 | $course = $DB->get_record('course', array('id'=>$course), '*', MUST_EXIST); |
42 | ||
ce221eb5 | 43 | if (!empty($USER->newadminuser)) { |
44 | $PAGE->set_course($SITE); | |
78946b9b | 45 | $PAGE->set_pagelayout('maintenance'); |
ce221eb5 | 46 | } else { |
47 | require_login($course); | |
3406acde | 48 | $PAGE->set_pagelayout('admin'); |
ce221eb5 | 49 | } |
50 | ||
51 | if ($course->id == SITEID) { | |
52 | $coursecontext = get_context_instance(CONTEXT_SYSTEM); // SYSTEM context | |
53 | } else { | |
54 | $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id); // Course context | |
55 | } | |
56 | $systemcontext = get_context_instance(CONTEXT_SYSTEM); | |
57 | ||
58 | if ($id == -1) { | |
59 | // creating new user | |
bf718f50 | 60 | $user = new stdClass(); |
ce221eb5 | 61 | $user->id = -1; |
6b8ad965 | 62 | $user->auth = 'manual'; |
ce221eb5 | 63 | $user->confirmed = 1; |
64 | $user->deleted = 0; | |
3406acde SH |
65 | require_capability('moodle/user:create', $systemcontext); |
66 | admin_externalpage_setup('addnewuser', '', array('id' => -1)); | |
ce221eb5 | 67 | } else { |
68 | // editing existing user | |
69 | require_capability('moodle/user:update', $systemcontext); | |
3406acde SH |
70 | $user = $DB->get_record('user', array('id'=>$id), '*', MUST_EXIST); |
71 | $PAGE->set_context(get_context_instance(CONTEXT_USER, $user->id)); | |
5ac851fb SH |
72 | if ($user->id == $USER->id) { |
73 | if ($course->id != SITEID && $node = $PAGE->navigation->find($course->id, navigation_node::TYPE_COURSE)) { | |
74 | $node->make_active(); | |
75 | $PAGE->navbar->includesettingsbase = true; | |
76 | } | |
77 | } else { | |
78 | $PAGE->navigation->extend_for_user($user); | |
79 | } | |
ce221eb5 | 80 | } |
ad6226fb | 81 | |
ce221eb5 | 82 | // remote users cannot be edited |
83 | if ($user->id != -1 and is_mnet_remote_user($user)) { | |
84 | redirect($CFG->wwwroot . "/user/view.php?id=$id&course={$course->id}"); | |
85 | } | |
ad6226fb | 86 | |
4f622c38 PS |
87 | if ($user->id != $USER->id and is_siteadmin($user) and !is_siteadmin($USER)) { // Only admins may edit other admins |
88 | print_error('useradmineditadmin'); | |
ce221eb5 | 89 | } |
ad6226fb | 90 | |
ce221eb5 | 91 | if (isguestuser($user->id)) { // the real guest user can not be edited |
92 | print_error('guestnoeditprofileother'); | |
93 | } | |
ad6226fb | 94 | |
ce221eb5 | 95 | if ($user->deleted) { |
96 | echo $OUTPUT->header(); | |
97 | echo $OUTPUT->heading(get_string('userdeleted')); | |
98 | echo $OUTPUT->footer(); | |
99 | die; | |
100 | } | |
101 | ||
ce221eb5 | 102 | //load user preferences |
103 | useredit_load_preferences($user); | |
104 | ||
105 | //Load custom profile fields data | |
106 | profile_load_data($user); | |
107 | ||
108 | //User interests | |
109 | if (!empty($CFG->usetags)) { | |
110 | require_once($CFG->dirroot.'/tag/lib.php'); | |
111 | $user->interests = tag_get_tags_array('user', $id); | |
112 | } | |
113 | ||
8bdc9cac | 114 | if ($user->id !== -1) { |
4f0c2d00 | 115 | $usercontext = get_context_instance(CONTEXT_USER, $user->id); |
8bdc9cac | 116 | $editoroptions = array('maxfiles'=>EDITOR_UNLIMITED_FILES, 'maxbytes'=>$CFG->maxbytes, 'trusttext'=>false, 'forcehttps'=>false); |
64f93798 | 117 | $user = file_prepare_standard_editor($user, 'description', $editoroptions, $usercontext, 'user', 'profile', 0); |
8bdc9cac | 118 | } else { |
4f0c2d00 | 119 | $usercontext = null; |
8bdc9cac SH |
120 | // This is a new user, we don't want to add files here |
121 | $editoroptions = array('maxfiles'=>0, 'maxbytes'=>0, 'trusttext'=>false, 'forcehttps'=>false); | |
122 | } | |
123 | ||
ce221eb5 | 124 | //create form |
8bdc9cac | 125 | $userform = new user_editadvanced_form(null, array('editoroptions'=>$editoroptions)); |
ce221eb5 | 126 | $userform->set_data($user); |
127 | ||
128 | if ($usernew = $userform->get_data()) { | |
129 | add_to_log($course->id, 'user', 'update', "view.php?id=$user->id&course=$course->id", ''); | |
130 | ||
131 | if (empty($usernew->auth)) { | |
132 | //user editing self | |
133 | $authplugin = get_auth_plugin($user->auth); | |
134 | unset($usernew->auth); //can not change/remove | |
135 | } else { | |
136 | $authplugin = get_auth_plugin($usernew->auth); | |
1e1c51a3 | 137 | } |
6b8ad965 PS |
138 | |
139 | $usernew->timemodified = time(); | |
ad6226fb | 140 | |
ce221eb5 | 141 | if ($usernew->id == -1) { |
142 | //TODO check out if it makes sense to create account with this auth plugin and what to do with the password | |
143 | unset($usernew->id); | |
64f93798 | 144 | $usernew = file_postupdate_standard_editor($usernew, 'description', $editoroptions, null, 'user', 'profile', null); |
ce221eb5 | 145 | $usernew->mnethostid = $CFG->mnet_localhost_id; // always local user |
d3d393ab RW |
146 | $usernew->confirmed = 1; |
147 | $usernew->timecreated = time(); | |
6b8ad965 | 148 | $usernew->password = hash_internal_user_password($usernew->newpassword); |
ce221eb5 | 149 | $usernew->id = $DB->insert_record('user', $usernew); |
150 | $usercreated = true; | |
ad6226fb | 151 | |
ce221eb5 | 152 | } else { |
64f93798 | 153 | $usernew = file_postupdate_standard_editor($usernew, 'description', $editoroptions, $usercontext, 'user', 'profile', 0); |
ce221eb5 | 154 | $DB->update_record('user', $usernew); |
155 | // pass a true $userold here | |
156 | if (! $authplugin->user_update($user, $userform->get_data())) { | |
157 | // auth update failed, rollback for moodle | |
158 | $DB->update_record('user', $user); | |
159 | print_error('cannotupdateuseronexauth', '', '', $user->auth); | |
d8734783 | 160 | } |
ad6226fb | 161 | |
ce221eb5 | 162 | //set new password if specified |
163 | if (!empty($usernew->newpassword)) { | |
164 | if ($authplugin->can_change_password()) { | |
165 | if (!$authplugin->user_update_password($usernew, $usernew->newpassword)){ | |
166 | print_error('cannotupdatepasswordonextauth', '', '', $usernew->auth); | |
ad6226fb | 167 | } |
8bdb31ed | 168 | unset_user_preference('create_password', $usernew); // prevent cron from generating the password |
ad6226fb | 169 | } |
170 | } | |
ce221eb5 | 171 | $usercreated = false; |
172 | } | |
ad6226fb | 173 | |
ce221eb5 | 174 | $usercontext = get_context_instance(CONTEXT_USER, $usernew->id); |
98bc6446 | 175 | |
ce221eb5 | 176 | //update preferences |
177 | useredit_update_user_preference($usernew); | |
ad6226fb | 178 | |
ce221eb5 | 179 | // update tags |
de2d81fa | 180 | if (!empty($CFG->usetags) and empty($USER->newadminuser)) { |
ce221eb5 | 181 | useredit_update_interests($usernew, $usernew->interests); |
182 | } | |
1e1c51a3 | 183 | |
ce221eb5 | 184 | //update user picture |
de2d81fa | 185 | if (!empty($CFG->gdversion) and empty($USER->newadminuser)) { |
ce221eb5 | 186 | useredit_update_picture($usernew, $userform); |
187 | } | |
ad6226fb | 188 | |
ce221eb5 | 189 | // update mail bounces |
190 | useredit_update_bounces($user, $usernew); | |
ad6226fb | 191 | |
ce221eb5 | 192 | // update forum track preference |
193 | useredit_update_trackforums($user, $usernew); | |
ad6226fb | 194 | |
ce221eb5 | 195 | // save custom profile fields data |
196 | profile_save_data($usernew); | |
ad6226fb | 197 | |
ce221eb5 | 198 | // reload from db |
199 | $usernew = $DB->get_record('user', array('id'=>$usernew->id)); | |
5e61d1a4 | 200 | |
ce221eb5 | 201 | // trigger events |
202 | if ($usercreated) { | |
ce221eb5 | 203 | events_trigger('user_created', $usernew); |
204 | } else { | |
205 | events_trigger('user_updated', $usernew); | |
206 | } | |
2942a5cd | 207 | |
ce221eb5 | 208 | if ($user->id == $USER->id) { |
209 | // Override old $USER session variable | |
210 | foreach ((array)$usernew as $variable => $value) { | |
211 | $USER->$variable = $value; | |
212 | } | |
a1248ca4 PS |
213 | // preload custom fields |
214 | profile_load_custom_fields($USER); | |
215 | ||
ce221eb5 | 216 | if (!empty($USER->newadminuser)) { |
217 | unset($USER->newadminuser); | |
218 | // apply defaults again - some of them might depend on admin user info, backup, roles, etc. | |
219 | admin_apply_default_settings(NULL , false); | |
220 | // redirect to admin/ to continue with installation | |
221 | redirect("$CFG->wwwroot/$CFG->admin/"); | |
afb5b0ae | 222 | } else { |
ce221eb5 | 223 | redirect("$CFG->wwwroot/user/view.php?id=$USER->id&course=$course->id"); |
ad6226fb | 224 | } |
ce221eb5 | 225 | } else { |
6b8ad965 | 226 | session_gc(); // remove stale sessions |
ce221eb5 | 227 | redirect("$CFG->wwwroot/$CFG->admin/user.php"); |
ad6226fb | 228 | } |
ce221eb5 | 229 | //never reached |
230 | } | |
ad6226fb | 231 | |
17c70aa0 PS |
232 | // make sure we really are on the https page when https login required |
233 | $PAGE->verify_https_required(); | |
234 | ||
ad6226fb | 235 | |
236 | /// Display page header | |
ce221eb5 | 237 | if ($user->id == -1 or ($user->id != $USER->id)) { |
238 | if ($user->id == -1) { | |
61ef8f9f | 239 | echo $OUTPUT->header(); |
ad6226fb | 240 | } else { |
8cb89f5b | 241 | $PAGE->set_heading($SITE->fullname); |
61ef8f9f | 242 | echo $OUTPUT->header(); |
ce221eb5 | 243 | $userfullname = fullname($user, true); |
244 | echo $OUTPUT->heading($userfullname); | |
245 | } | |
246 | } else if (!empty($USER->newadminuser)) { | |
247 | $strinstallation = get_string('installation', 'install'); | |
248 | $strprimaryadminsetup = get_string('primaryadminsetup'); | |
249 | ||
250 | $PAGE->navbar->add($strprimaryadminsetup); | |
251 | $PAGE->set_title($strinstallation); | |
252 | $PAGE->set_heading($strinstallation); | |
253 | $PAGE->set_cacheable(false); | |
254 | ||
255 | echo $OUTPUT->header(); | |
256 | echo $OUTPUT->box(get_string('configintroadmin', 'admin'), 'generalbox boxwidthnormal boxaligncenter'); | |
257 | echo '<br />'; | |
258 | } else { | |
259 | $streditmyprofile = get_string('editmyprofile'); | |
260 | $strparticipants = get_string('participants'); | |
261 | $strnewuser = get_string('newuser'); | |
262 | $userfullname = fullname($user, true); | |
263 | ||
ce221eb5 | 264 | $PAGE->set_title("$course->shortname: $streditmyprofile"); |
265 | $PAGE->set_heading($course->fullname); | |
266 | ||
267 | echo $OUTPUT->header(); | |
03d9401e | 268 | echo $OUTPUT->heading($userfullname); |
ce221eb5 | 269 | } |
ad6226fb | 270 | |
271 | /// Finally display THE form | |
ce221eb5 | 272 | $userform->display(); |
ad6226fb | 273 | |
274 | /// and proper footer | |
ce221eb5 | 275 | echo $OUTPUT->footer(); |
ad6226fb | 276 |