MDL-52781 tool_uploaduser: add invalid data warnings if validation fails
[moodle.git] / admin / tool / uploaduser / index.php
blobaaab4611c6903a0a46cc60dbe2ad856ebdbdb9fa
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 * Bulk user registration script from a comma separated file
20 * @package tool
21 * @subpackage uploaduser
22 * @copyright 2004 onwards Martin Dougiamas (http://dougiamas.com)
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require('../../../config.php');
27 require_once($CFG->libdir.'/adminlib.php');
28 require_once($CFG->libdir.'/csvlib.class.php');
29 require_once($CFG->dirroot.'/user/profile/lib.php');
30 require_once($CFG->dirroot.'/user/lib.php');
31 require_once($CFG->dirroot.'/group/lib.php');
32 require_once($CFG->dirroot.'/cohort/lib.php');
33 require_once('locallib.php');
34 require_once('user_form.php');
36 $iid = optional_param('iid', '', PARAM_INT);
37 $previewrows = optional_param('previewrows', 10, PARAM_INT);
39 core_php_time_limit::raise(60*60); // 1 hour should be enough
40 raise_memory_limit(MEMORY_HUGE);
42 require_login();
43 admin_externalpage_setup('tooluploaduser');
44 require_capability('moodle/site:uploadusers', context_system::instance());
46 $struserrenamed = get_string('userrenamed', 'tool_uploaduser');
47 $strusernotrenamedexists = get_string('usernotrenamedexists', 'error');
48 $strusernotrenamedmissing = get_string('usernotrenamedmissing', 'error');
49 $strusernotrenamedoff = get_string('usernotrenamedoff', 'error');
50 $strusernotrenamedadmin = get_string('usernotrenamedadmin', 'error');
52 $struserupdated = get_string('useraccountupdated', 'tool_uploaduser');
53 $strusernotupdated = get_string('usernotupdatederror', 'error');
54 $strusernotupdatednotexists = get_string('usernotupdatednotexists', 'error');
55 $strusernotupdatedadmin = get_string('usernotupdatedadmin', 'error');
57 $struseruptodate = get_string('useraccountuptodate', 'tool_uploaduser');
59 $struseradded = get_string('newuser');
60 $strusernotadded = get_string('usernotaddedregistered', 'error');
61 $strusernotaddederror = get_string('usernotaddederror', 'error');
63 $struserdeleted = get_string('userdeleted', 'tool_uploaduser');
64 $strusernotdeletederror = get_string('usernotdeletederror', 'error');
65 $strusernotdeletedmissing = get_string('usernotdeletedmissing', 'error');
66 $strusernotdeletedoff = get_string('usernotdeletedoff', 'error');
67 $strusernotdeletedadmin = get_string('usernotdeletedadmin', 'error');
69 $strcannotassignrole = get_string('cannotassignrole', 'error');
71 $struserauthunsupported = get_string('userauthunsupported', 'error');
72 $stremailduplicate = get_string('useremailduplicate', 'error');
74 $strinvalidpasswordpolicy = get_string('invalidpasswordpolicy', 'error');
75 $errorstr = get_string('error');
77 $stryes = get_string('yes');
78 $strno = get_string('no');
79 $stryesnooptions = array(0=>$strno, 1=>$stryes);
81 $returnurl = new moodle_url('/admin/tool/uploaduser/index.php');
82 $bulknurl = new moodle_url('/admin/user/user_bulk.php');
84 $today = time();
85 $today = make_timestamp(date('Y', $today), date('m', $today), date('d', $today), 0, 0, 0);
87 // array of all valid fields for validation
88 $STD_FIELDS = array('id', 'username', 'email',
89 'city', 'country', 'lang', 'timezone', 'mailformat',
90 'maildisplay', 'maildigest', 'htmleditor', 'autosubscribe',
91 'institution', 'department', 'idnumber', 'skype',
92 'msn', 'aim', 'yahoo', 'icq', 'phone1', 'phone2', 'address',
93 'url', 'description', 'descriptionformat', 'password',
94 'auth', // watch out when changing auth type or using external auth plugins!
95 'oldusername', // use when renaming users - this is the original username
96 'suspended', // 1 means suspend user account, 0 means activate user account, nothing means keep as is for existing users
97 'deleted', // 1 means delete user
98 'mnethostid', // Can not be used for adding, updating or deleting of users - only for enrolments, groups, cohorts and suspending.
99 'interests',
101 // Include all name fields.
102 $STD_FIELDS = array_merge($STD_FIELDS, get_all_user_name_fields());
104 $PRF_FIELDS = array();
106 if ($proffields = $DB->get_records('user_info_field')) {
107 foreach ($proffields as $key => $proffield) {
108 $profilefieldname = 'profile_field_'.$proffield->shortname;
109 $PRF_FIELDS[] = $profilefieldname;
110 // Re-index $proffields with key as shortname. This will be
111 // used while checking if profile data is key and needs to be converted (eg. menu profile field)
112 $proffields[$profilefieldname] = $proffield;
113 unset($proffields[$key]);
117 if (empty($iid)) {
118 $mform1 = new admin_uploaduser_form1();
120 if ($formdata = $mform1->get_data()) {
121 $iid = csv_import_reader::get_new_iid('uploaduser');
122 $cir = new csv_import_reader($iid, 'uploaduser');
124 $content = $mform1->get_file_content('userfile');
126 $readcount = $cir->load_csv_content($content, $formdata->encoding, $formdata->delimiter_name);
127 $csvloaderror = $cir->get_error();
128 unset($content);
130 if (!is_null($csvloaderror)) {
131 print_error('csvloaderror', '', $returnurl, $csvloaderror);
133 // test if columns ok
134 $filecolumns = uu_validate_user_upload_columns($cir, $STD_FIELDS, $PRF_FIELDS, $returnurl);
135 // continue to form2
137 } else {
138 echo $OUTPUT->header();
140 echo $OUTPUT->heading_with_help(get_string('uploadusers', 'tool_uploaduser'), 'uploadusers', 'tool_uploaduser');
142 $mform1->display();
143 echo $OUTPUT->footer();
144 die;
146 } else {
147 $cir = new csv_import_reader($iid, 'uploaduser');
148 $filecolumns = uu_validate_user_upload_columns($cir, $STD_FIELDS, $PRF_FIELDS, $returnurl);
151 $mform2 = new admin_uploaduser_form2(null, array('columns'=>$filecolumns, 'data'=>array('iid'=>$iid, 'previewrows'=>$previewrows)));
153 // If a file has been uploaded, then process it
154 if ($formdata = $mform2->is_cancelled()) {
155 $cir->cleanup(true);
156 redirect($returnurl);
158 } else if ($formdata = $mform2->get_data()) {
159 // Print the header
160 echo $OUTPUT->header();
161 echo $OUTPUT->heading(get_string('uploadusersresult', 'tool_uploaduser'));
163 $optype = $formdata->uutype;
165 $updatetype = isset($formdata->uuupdatetype) ? $formdata->uuupdatetype : 0;
166 $createpasswords = (!empty($formdata->uupasswordnew) and $optype != UU_USER_UPDATE);
167 $updatepasswords = (!empty($formdata->uupasswordold) and $optype != UU_USER_ADDNEW and $optype != UU_USER_ADDINC and ($updatetype == UU_UPDATE_FILEOVERRIDE or $updatetype == UU_UPDATE_ALLOVERRIDE));
168 $allowrenames = (!empty($formdata->uuallowrenames) and $optype != UU_USER_ADDNEW and $optype != UU_USER_ADDINC);
169 $allowdeletes = (!empty($formdata->uuallowdeletes) and $optype != UU_USER_ADDNEW and $optype != UU_USER_ADDINC);
170 $allowsuspends = (!empty($formdata->uuallowsuspends));
171 $bulk = $formdata->uubulk;
172 $noemailduplicates = empty($CFG->allowaccountssameemail) ? 1 : $formdata->uunoemailduplicates;
173 $standardusernames = $formdata->uustandardusernames;
174 $resetpasswords = isset($formdata->uuforcepasswordchange) ? $formdata->uuforcepasswordchange : UU_PWRESET_NONE;
176 // verification moved to two places: after upload and into form2
177 $usersnew = 0;
178 $usersupdated = 0;
179 $usersuptodate = 0; //not printed yet anywhere
180 $userserrors = 0;
181 $deletes = 0;
182 $deleteerrors = 0;
183 $renames = 0;
184 $renameerrors = 0;
185 $usersskipped = 0;
186 $weakpasswords = 0;
188 // caches
189 $ccache = array(); // course cache - do not fetch all courses here, we will not probably use them all anyway!
190 $cohorts = array();
191 $rolecache = uu_allowed_roles_cache(); // Course roles lookup cache.
192 $sysrolecache = uu_allowed_sysroles_cache(); // System roles lookup cache.
193 $manualcache = array(); // cache of used manual enrol plugins in each course
194 $supportedauths = uu_supported_auths(); // officially supported plugins that are enabled
196 // we use only manual enrol plugin here, if it is disabled no enrol is done
197 if (enrol_is_enabled('manual')) {
198 $manual = enrol_get_plugin('manual');
199 } else {
200 $manual = NULL;
203 // clear bulk selection
204 if ($bulk) {
205 $SESSION->bulk_users = array();
208 // init csv import helper
209 $cir->init();
210 $linenum = 1; //column header is first line
212 // init upload progress tracker
213 $upt = new uu_progress_tracker();
214 $upt->start(); // start table
215 $validation = array();
216 while ($line = $cir->next()) {
217 $upt->flush();
218 $linenum++;
220 $upt->track('line', $linenum);
222 $user = new stdClass();
224 // add fields to user object
225 foreach ($line as $keynum => $value) {
226 if (!isset($filecolumns[$keynum])) {
227 // this should not happen
228 continue;
230 $key = $filecolumns[$keynum];
231 if (strpos($key, 'profile_field_') === 0) {
232 //NOTE: bloody mega hack alert!!
233 if (isset($USER->$key) and is_array($USER->$key)) {
234 // this must be some hacky field that is abusing arrays to store content and format
235 $user->$key = array();
236 $user->{$key['text']} = $value;
237 $user->{$key['format']} = FORMAT_MOODLE;
238 } else {
239 $user->$key = trim($value);
241 } else {
242 $user->$key = trim($value);
245 if (in_array($key, $upt->columns)) {
246 // default value in progress tracking table, can be changed later
247 $upt->track($key, s($value), 'normal');
250 if (!isset($user->username)) {
251 // prevent warnings below
252 $user->username = '';
255 if ($optype == UU_USER_ADDNEW or $optype == UU_USER_ADDINC) {
256 // user creation is a special case - the username may be constructed from templates using firstname and lastname
257 // better never try this in mixed update types
258 $error = false;
259 if (!isset($user->firstname) or $user->firstname === '') {
260 $upt->track('status', get_string('missingfield', 'error', 'firstname'), 'error');
261 $upt->track('firstname', $errorstr, 'error');
262 $error = true;
264 if (!isset($user->lastname) or $user->lastname === '') {
265 $upt->track('status', get_string('missingfield', 'error', 'lastname'), 'error');
266 $upt->track('lastname', $errorstr, 'error');
267 $error = true;
269 if ($error) {
270 $userserrors++;
271 continue;
273 // we require username too - we might use template for it though
274 if (empty($user->username) and !empty($formdata->username)) {
275 $user->username = uu_process_template($formdata->username, $user);
276 $upt->track('username', s($user->username));
280 // normalize username
281 $originalusername = $user->username;
282 if ($standardusernames) {
283 $user->username = core_user::clean_field($user->username, 'username');
286 // make sure we really have username
287 if (empty($user->username)) {
288 $upt->track('status', get_string('missingfield', 'error', 'username'), 'error');
289 $upt->track('username', $errorstr, 'error');
290 $userserrors++;
291 continue;
292 } else if ($user->username === 'guest') {
293 $upt->track('status', get_string('guestnoeditprofileother', 'error'), 'error');
294 $userserrors++;
295 continue;
298 if ($user->username !== core_user::clean_field($user->username, 'username')) {
299 $upt->track('status', get_string('invalidusername', 'error', 'username'), 'error');
300 $upt->track('username', $errorstr, 'error');
301 $userserrors++;
304 if (empty($user->mnethostid)) {
305 $user->mnethostid = $CFG->mnet_localhost_id;
308 if ($existinguser = $DB->get_record('user', array('username'=>$user->username, 'mnethostid'=>$user->mnethostid))) {
309 $upt->track('id', $existinguser->id, 'normal', false);
312 if ($user->mnethostid == $CFG->mnet_localhost_id) {
313 $remoteuser = false;
315 // Find out if username incrementing required.
316 if ($existinguser and $optype == UU_USER_ADDINC) {
317 $user->username = uu_increment_username($user->username);
318 $existinguser = false;
321 } else {
322 if (!$existinguser or $optype == UU_USER_ADDINC) {
323 $upt->track('status', get_string('errormnetadd', 'tool_uploaduser'), 'error');
324 $userserrors++;
325 continue;
328 $remoteuser = true;
330 // Make sure there are no changes of existing fields except the suspended status.
331 foreach ((array)$existinguser as $k => $v) {
332 if ($k === 'suspended') {
333 continue;
335 if (property_exists($user, $k)) {
336 $user->$k = $v;
338 if (in_array($k, $upt->columns)) {
339 if ($k === 'password' or $k === 'oldusername' or $k === 'deleted') {
340 $upt->track($k, '', 'normal', false);
341 } else {
342 $upt->track($k, s($v), 'normal', false);
346 unset($user->oldusername);
347 unset($user->password);
348 $user->auth = $existinguser->auth;
351 // notify about nay username changes
352 if ($originalusername !== $user->username) {
353 $upt->track('username', '', 'normal', false); // clear previous
354 $upt->track('username', s($originalusername).'-->'.s($user->username), 'info');
355 } else {
356 $upt->track('username', s($user->username), 'normal', false);
359 // add default values for remaining fields
360 $formdefaults = array();
361 foreach ($STD_FIELDS as $field) {
362 if (isset($user->$field)) {
363 continue;
365 // all validation moved to form2
366 if (isset($formdata->$field)) {
367 // process templates
368 $user->$field = uu_process_template($formdata->$field, $user);
369 $formdefaults[$field] = true;
370 if (in_array($field, $upt->columns)) {
371 $upt->track($field, s($user->$field), 'normal');
375 foreach ($PRF_FIELDS as $field) {
376 if (isset($user->$field)) {
377 continue;
379 if (isset($formdata->$field)) {
380 // process templates
381 $user->$field = uu_process_template($formdata->$field, $user);
383 // Form contains key and later code expects value.
384 // Convert key to value for required profile fields.
385 require_once($CFG->dirroot.'/user/profile/field/'.$proffields[$field]->datatype.'/field.class.php');
386 $profilefieldclass = 'profile_field_'.$proffields[$field]->datatype;
387 $profilefield = new $profilefieldclass($proffields[$field]->id);
388 if (method_exists($profilefield, 'convert_external_data')) {
389 $user->$field = $profilefield->edit_save_data_preprocess($user->$field, null);
392 $formdefaults[$field] = true;
396 // delete user
397 if (!empty($user->deleted)) {
398 if (!$allowdeletes or $remoteuser) {
399 $usersskipped++;
400 $upt->track('status', $strusernotdeletedoff, 'warning');
401 continue;
403 if ($existinguser) {
404 if (is_siteadmin($existinguser->id)) {
405 $upt->track('status', $strusernotdeletedadmin, 'error');
406 $deleteerrors++;
407 continue;
409 if (delete_user($existinguser)) {
410 $upt->track('status', $struserdeleted);
411 $deletes++;
412 } else {
413 $upt->track('status', $strusernotdeletederror, 'error');
414 $deleteerrors++;
416 } else {
417 $upt->track('status', $strusernotdeletedmissing, 'error');
418 $deleteerrors++;
420 continue;
422 // we do not need the deleted flag anymore
423 unset($user->deleted);
425 // renaming requested?
426 if (!empty($user->oldusername) ) {
427 if (!$allowrenames) {
428 $usersskipped++;
429 $upt->track('status', $strusernotrenamedoff, 'warning');
430 continue;
433 if ($existinguser) {
434 $upt->track('status', $strusernotrenamedexists, 'error');
435 $renameerrors++;
436 continue;
439 if ($user->username === 'guest') {
440 $upt->track('status', get_string('guestnoeditprofileother', 'error'), 'error');
441 $renameerrors++;
442 continue;
445 if ($standardusernames) {
446 $oldusername = core_user::clean_field($user->oldusername, 'username');
447 } else {
448 $oldusername = $user->oldusername;
451 // no guessing when looking for old username, it must be exact match
452 if ($olduser = $DB->get_record('user', array('username'=>$oldusername, 'mnethostid'=>$CFG->mnet_localhost_id))) {
453 $upt->track('id', $olduser->id, 'normal', false);
454 if (is_siteadmin($olduser->id)) {
455 $upt->track('status', $strusernotrenamedadmin, 'error');
456 $renameerrors++;
457 continue;
459 $DB->set_field('user', 'username', $user->username, array('id'=>$olduser->id));
460 $upt->track('username', '', 'normal', false); // clear previous
461 $upt->track('username', s($oldusername).'-->'.s($user->username), 'info');
462 $upt->track('status', $struserrenamed);
463 $renames++;
464 } else {
465 $upt->track('status', $strusernotrenamedmissing, 'error');
466 $renameerrors++;
467 continue;
469 $existinguser = $olduser;
470 $existinguser->username = $user->username;
473 // can we process with update or insert?
474 $skip = false;
475 switch ($optype) {
476 case UU_USER_ADDNEW:
477 if ($existinguser) {
478 $usersskipped++;
479 $upt->track('status', $strusernotadded, 'warning');
480 $skip = true;
482 break;
484 case UU_USER_ADDINC:
485 if ($existinguser) {
486 //this should not happen!
487 $upt->track('status', $strusernotaddederror, 'error');
488 $userserrors++;
489 $skip = true;
491 break;
493 case UU_USER_ADD_UPDATE:
494 break;
496 case UU_USER_UPDATE:
497 if (!$existinguser) {
498 $usersskipped++;
499 $upt->track('status', $strusernotupdatednotexists, 'warning');
500 $skip = true;
502 break;
504 default:
505 // unknown type
506 $skip = true;
509 if ($skip) {
510 continue;
513 if ($existinguser) {
514 $user->id = $existinguser->id;
516 $upt->track('username', html_writer::link(new moodle_url('/user/profile.php', array('id'=>$existinguser->id)), s($existinguser->username)), 'normal', false);
517 $upt->track('suspended', $stryesnooptions[$existinguser->suspended] , 'normal', false);
518 $upt->track('auth', $existinguser->auth, 'normal', false);
520 if (is_siteadmin($user->id)) {
521 $upt->track('status', $strusernotupdatedadmin, 'error');
522 $userserrors++;
523 continue;
526 $existinguser->timemodified = time();
527 // do NOT mess with timecreated or firstaccess here!
529 //load existing profile data
530 profile_load_data($existinguser);
532 $doupdate = false;
533 $dologout = false;
535 if ($updatetype != UU_UPDATE_NOCHANGES and !$remoteuser) {
536 if (!empty($user->auth) and $user->auth !== $existinguser->auth) {
537 $upt->track('auth', s($existinguser->auth).'-->'.s($user->auth), 'info', false);
538 $existinguser->auth = $user->auth;
539 if (!isset($supportedauths[$user->auth])) {
540 $upt->track('auth', $struserauthunsupported, 'warning');
542 $doupdate = true;
543 if ($existinguser->auth === 'nologin') {
544 $dologout = true;
547 $allcolumns = array_merge($STD_FIELDS, $PRF_FIELDS);
548 foreach ($allcolumns as $column) {
549 if ($column === 'username' or $column === 'password' or $column === 'auth' or $column === 'suspended') {
550 // these can not be changed here
551 continue;
553 if (!property_exists($user, $column) or !property_exists($existinguser, $column)) {
554 continue;
556 if ($updatetype == UU_UPDATE_MISSING) {
557 if (!is_null($existinguser->$column) and $existinguser->$column !== '') {
558 continue;
560 } else if ($updatetype == UU_UPDATE_ALLOVERRIDE) {
561 // we override everything
563 } else if ($updatetype == UU_UPDATE_FILEOVERRIDE) {
564 if (!empty($formdefaults[$column])) {
565 // do not override with form defaults
566 continue;
569 if ($existinguser->$column !== $user->$column) {
570 if ($column === 'email') {
571 $select = $DB->sql_like('email', ':email', false, true, false, '|');
572 $params = array('email' => $DB->sql_like_escape($user->email, '|'));
573 if ($DB->record_exists_select('user', $select , $params)) {
575 $changeincase = core_text::strtolower($existinguser->$column) === core_text::strtolower(
576 $user->$column);
578 if ($changeincase) {
579 // If only case is different then switch to lower case and carry on.
580 $user->$column = core_text::strtolower($user->$column);
581 continue;
582 } else if ($noemailduplicates) {
583 $upt->track('email', $stremailduplicate, 'error');
584 $upt->track('status', $strusernotupdated, 'error');
585 $userserrors++;
586 continue 2;
587 } else {
588 $upt->track('email', $stremailduplicate, 'warning');
591 if (!validate_email($user->email)) {
592 $upt->track('email', get_string('invalidemail'), 'warning');
596 if ($column === 'lang') {
597 if (empty($user->lang)) {
598 // Do not change to not-set value.
599 continue;
600 } else if (core_user::clean_field($user->lang, 'lang') === '') {
601 $upt->track('status', get_string('cannotfindlang', 'error', $user->lang), 'warning');
602 continue;
606 if (in_array($column, $upt->columns)) {
607 $upt->track($column, s($existinguser->$column).'-->'.s($user->$column), 'info', false);
609 $existinguser->$column = $user->$column;
610 $doupdate = true;
615 try {
616 $auth = get_auth_plugin($existinguser->auth);
617 } catch (Exception $e) {
618 $upt->track('auth', get_string('userautherror', 'error', s($existinguser->auth)), 'error');
619 $upt->track('status', $strusernotupdated, 'error');
620 $userserrors++;
621 continue;
623 $isinternalauth = $auth->is_internal();
625 // deal with suspending and activating of accounts
626 if ($allowsuspends and isset($user->suspended) and $user->suspended !== '') {
627 $user->suspended = $user->suspended ? 1 : 0;
628 if ($existinguser->suspended != $user->suspended) {
629 $upt->track('suspended', '', 'normal', false);
630 $upt->track('suspended', $stryesnooptions[$existinguser->suspended].'-->'.$stryesnooptions[$user->suspended], 'info', false);
631 $existinguser->suspended = $user->suspended;
632 $doupdate = true;
633 if ($existinguser->suspended) {
634 $dologout = true;
639 // changing of passwords is a special case
640 // do not force password changes for external auth plugins!
641 $oldpw = $existinguser->password;
643 if ($remoteuser) {
644 // Do not mess with passwords of remote users.
646 } else if (!$isinternalauth) {
647 $existinguser->password = AUTH_PASSWORD_NOT_CACHED;
648 $upt->track('password', '-', 'normal', false);
649 // clean up prefs
650 unset_user_preference('create_password', $existinguser);
651 unset_user_preference('auth_forcepasswordchange', $existinguser);
653 } else if (!empty($user->password)) {
654 if ($updatepasswords) {
655 // Check for passwords that we want to force users to reset next
656 // time they log in.
657 $errmsg = null;
658 $weak = !check_password_policy($user->password, $errmsg);
659 if ($resetpasswords == UU_PWRESET_ALL or ($resetpasswords == UU_PWRESET_WEAK and $weak)) {
660 if ($weak) {
661 $weakpasswords++;
662 $upt->track('password', $strinvalidpasswordpolicy, 'warning');
664 set_user_preference('auth_forcepasswordchange', 1, $existinguser);
665 } else {
666 unset_user_preference('auth_forcepasswordchange', $existinguser);
668 unset_user_preference('create_password', $existinguser); // no need to create password any more
670 // Use a low cost factor when generating bcrypt hash otherwise
671 // hashing would be slow when uploading lots of users. Hashes
672 // will be automatically updated to a higher cost factor the first
673 // time the user logs in.
674 $existinguser->password = hash_internal_user_password($user->password, true);
675 $upt->track('password', $user->password, 'normal', false);
676 } else {
677 // do not print password when not changed
678 $upt->track('password', '', 'normal', false);
682 if ($doupdate or $existinguser->password !== $oldpw) {
683 // We want only users that were really updated.
684 user_update_user($existinguser, false, false);
686 $upt->track('status', $struserupdated);
687 $usersupdated++;
689 if (!$remoteuser) {
690 // pre-process custom profile menu fields data from csv file
691 $existinguser = uu_pre_process_custom_profile_data($existinguser);
692 // save custom profile fields data from csv file
693 profile_save_data($existinguser);
696 if ($bulk == UU_BULK_UPDATED or $bulk == UU_BULK_ALL) {
697 if (!in_array($user->id, $SESSION->bulk_users)) {
698 $SESSION->bulk_users[] = $user->id;
702 // Trigger event.
703 \core\event\user_updated::create_from_userid($existinguser->id)->trigger();
705 } else {
706 // no user information changed
707 $upt->track('status', $struseruptodate);
708 $usersuptodate++;
710 if ($bulk == UU_BULK_ALL) {
711 if (!in_array($user->id, $SESSION->bulk_users)) {
712 $SESSION->bulk_users[] = $user->id;
717 if ($dologout) {
718 \core\session\manager::kill_user_sessions($existinguser->id);
721 } else {
722 // save the new user to the database
723 $user->confirmed = 1;
724 $user->timemodified = time();
725 $user->timecreated = time();
726 $user->mnethostid = $CFG->mnet_localhost_id; // we support ONLY local accounts here, sorry
728 if (!isset($user->suspended) or $user->suspended === '') {
729 $user->suspended = 0;
730 } else {
731 $user->suspended = $user->suspended ? 1 : 0;
733 $upt->track('suspended', $stryesnooptions[$user->suspended], 'normal', false);
735 if (empty($user->auth)) {
736 $user->auth = 'manual';
738 $upt->track('auth', $user->auth, 'normal', false);
740 // do not insert record if new auth plugin does not exist!
741 try {
742 $auth = get_auth_plugin($user->auth);
743 } catch (Exception $e) {
744 $upt->track('auth', get_string('userautherror', 'error', s($user->auth)), 'error');
745 $upt->track('status', $strusernotaddederror, 'error');
746 $userserrors++;
747 continue;
749 if (!isset($supportedauths[$user->auth])) {
750 $upt->track('auth', $struserauthunsupported, 'warning');
753 $isinternalauth = $auth->is_internal();
755 if (empty($user->email)) {
756 $upt->track('email', get_string('invalidemail'), 'error');
757 $upt->track('status', $strusernotaddederror, 'error');
758 $userserrors++;
759 continue;
761 } else if ($DB->record_exists('user', array('email'=>$user->email))) {
762 if ($noemailduplicates) {
763 $upt->track('email', $stremailduplicate, 'error');
764 $upt->track('status', $strusernotaddederror, 'error');
765 $userserrors++;
766 continue;
767 } else {
768 $upt->track('email', $stremailduplicate, 'warning');
771 if (!validate_email($user->email)) {
772 $upt->track('email', get_string('invalidemail'), 'warning');
775 if (empty($user->lang)) {
776 $user->lang = '';
777 } else if (core_user::clean_field($user->lang, 'lang') === '') {
778 $upt->track('status', get_string('cannotfindlang', 'error', $user->lang), 'warning');
779 $user->lang = '';
782 $forcechangepassword = false;
784 if ($isinternalauth) {
785 if (empty($user->password)) {
786 if ($createpasswords) {
787 $user->password = 'to be generated';
788 $upt->track('password', '', 'normal', false);
789 $upt->track('password', get_string('uupasswordcron', 'tool_uploaduser'), 'warning', false);
790 } else {
791 $upt->track('password', '', 'normal', false);
792 $upt->track('password', get_string('missingfield', 'error', 'password'), 'error');
793 $upt->track('status', $strusernotaddederror, 'error');
794 $userserrors++;
795 continue;
797 } else {
798 $errmsg = null;
799 $weak = !check_password_policy($user->password, $errmsg);
800 if ($resetpasswords == UU_PWRESET_ALL or ($resetpasswords == UU_PWRESET_WEAK and $weak)) {
801 if ($weak) {
802 $weakpasswords++;
803 $upt->track('password', $strinvalidpasswordpolicy, 'warning');
805 $forcechangepassword = true;
807 // Use a low cost factor when generating bcrypt hash otherwise
808 // hashing would be slow when uploading lots of users. Hashes
809 // will be automatically updated to a higher cost factor the first
810 // time the user logs in.
811 $user->password = hash_internal_user_password($user->password, true);
813 } else {
814 $user->password = AUTH_PASSWORD_NOT_CACHED;
815 $upt->track('password', '-', 'normal', false);
818 $user->id = user_create_user($user, false, false);
819 $upt->track('username', html_writer::link(new moodle_url('/user/profile.php', array('id'=>$user->id)), s($user->username)), 'normal', false);
821 // pre-process custom profile menu fields data from csv file
822 $user = uu_pre_process_custom_profile_data($user);
823 // save custom profile fields data
824 profile_save_data($user);
826 if ($forcechangepassword) {
827 set_user_preference('auth_forcepasswordchange', 1, $user);
829 if ($user->password === 'to be generated') {
830 set_user_preference('create_password', 1, $user);
833 // Trigger event.
834 \core\event\user_created::create_from_userid($user->id)->trigger();
836 $upt->track('status', $struseradded);
837 $upt->track('id', $user->id, 'normal', false);
838 $usersnew++;
840 // make sure user context exists
841 context_user::instance($user->id);
843 if ($bulk == UU_BULK_NEW or $bulk == UU_BULK_ALL) {
844 if (!in_array($user->id, $SESSION->bulk_users)) {
845 $SESSION->bulk_users[] = $user->id;
850 // Update user interests.
851 if (isset($user->interests) && strval($user->interests) !== '') {
852 useredit_update_interests($user, preg_split('/\s*,\s*/', $user->interests, -1, PREG_SPLIT_NO_EMPTY));
855 // add to cohort first, it might trigger enrolments indirectly - do NOT create cohorts here!
856 foreach ($filecolumns as $column) {
857 if (!preg_match('/^cohort\d+$/', $column)) {
858 continue;
861 if (!empty($user->$column)) {
862 $addcohort = $user->$column;
863 if (!isset($cohorts[$addcohort])) {
864 if (is_number($addcohort)) {
865 // only non-numeric idnumbers!
866 $cohort = $DB->get_record('cohort', array('id'=>$addcohort));
867 } else {
868 $cohort = $DB->get_record('cohort', array('idnumber'=>$addcohort));
869 if (empty($cohort) && has_capability('moodle/cohort:manage', context_system::instance())) {
870 // Cohort was not found. Create a new one.
871 $cohortid = cohort_add_cohort((object)array(
872 'idnumber' => $addcohort,
873 'name' => $addcohort,
874 'contextid' => context_system::instance()->id
876 $cohort = $DB->get_record('cohort', array('id'=>$cohortid));
880 if (empty($cohort)) {
881 $cohorts[$addcohort] = get_string('unknowncohort', 'core_cohort', s($addcohort));
882 } else if (!empty($cohort->component)) {
883 // cohorts synchronised with external sources must not be modified!
884 $cohorts[$addcohort] = get_string('external', 'core_cohort');
885 } else {
886 $cohorts[$addcohort] = $cohort;
890 if (is_object($cohorts[$addcohort])) {
891 $cohort = $cohorts[$addcohort];
892 if (!$DB->record_exists('cohort_members', array('cohortid'=>$cohort->id, 'userid'=>$user->id))) {
893 cohort_add_member($cohort->id, $user->id);
894 // we might add special column later, for now let's abuse enrolments
895 $upt->track('enrolments', get_string('useradded', 'core_cohort', s($cohort->name)));
897 } else {
898 // error message
899 $upt->track('enrolments', $cohorts[$addcohort], 'error');
905 // find course enrolments, groups, roles/types and enrol periods
906 // this is again a special case, we always do this for any updated or created users
907 foreach ($filecolumns as $column) {
908 if (preg_match('/^sysrole\d+$/', $column)) {
910 if (!empty($user->$column)) {
911 $sysrolename = $user->$column;
912 if ($sysrolename[0] == '-') {
913 $removing = true;
914 $sysrolename = substr($sysrolename, 1);
915 } else {
916 $removing = false;
919 if (array_key_exists($sysrolename, $sysrolecache)) {
920 $sysroleid = $sysrolecache[$sysrolename]->id;
921 } else {
922 $upt->track('enrolments', get_string('unknownrole', 'error', s($sysrolename)), 'error');
923 continue;
926 if ($removing) {
927 if (user_has_role_assignment($user->id, $sysroleid, SYSCONTEXTID)) {
928 role_unassign($sysroleid, $user->id, SYSCONTEXTID);
929 $upt->track('enrolments', get_string('unassignedsysrole',
930 'tool_uploaduser', $sysrolecache[$sysroleid]->name));
932 } else {
933 if (!user_has_role_assignment($user->id, $sysroleid, SYSCONTEXTID)) {
934 role_assign($sysroleid, $user->id, SYSCONTEXTID);
935 $upt->track('enrolments', get_string('assignedsysrole',
936 'tool_uploaduser', $sysrolecache[$sysroleid]->name));
941 continue;
943 if (!preg_match('/^course\d+$/', $column)) {
944 continue;
946 $i = substr($column, 6);
948 if (empty($user->{'course'.$i})) {
949 continue;
951 $shortname = $user->{'course'.$i};
952 if (!array_key_exists($shortname, $ccache)) {
953 if (!$course = $DB->get_record('course', array('shortname'=>$shortname), 'id, shortname')) {
954 $upt->track('enrolments', get_string('unknowncourse', 'error', s($shortname)), 'error');
955 continue;
957 $ccache[$shortname] = $course;
958 $ccache[$shortname]->groups = null;
960 $courseid = $ccache[$shortname]->id;
961 $coursecontext = context_course::instance($courseid);
962 if (!isset($manualcache[$courseid])) {
963 $manualcache[$courseid] = false;
964 if ($manual) {
965 if ($instances = enrol_get_instances($courseid, false)) {
966 foreach ($instances as $instance) {
967 if ($instance->enrol === 'manual') {
968 $manualcache[$courseid] = $instance;
969 break;
976 if ($courseid == SITEID) {
977 // Technically frontpage does not have enrolments, but only role assignments,
978 // let's not invent new lang strings here for this rarely used feature.
980 if (!empty($user->{'role'.$i})) {
981 $rolename = $user->{'role'.$i};
982 if (array_key_exists($rolename, $rolecache)) {
983 $roleid = $rolecache[$rolename]->id;
984 } else {
985 $upt->track('enrolments', get_string('unknownrole', 'error', s($rolename)), 'error');
986 continue;
989 role_assign($roleid, $user->id, context_course::instance($courseid));
991 $a = new stdClass();
992 $a->course = $shortname;
993 $a->role = $rolecache[$roleid]->name;
994 $upt->track('enrolments', get_string('enrolledincourserole', 'enrol_manual', $a));
997 } else if ($manual and $manualcache[$courseid]) {
999 // find role
1000 $roleid = false;
1001 if (!empty($user->{'role'.$i})) {
1002 $rolename = $user->{'role'.$i};
1003 if (array_key_exists($rolename, $rolecache)) {
1004 $roleid = $rolecache[$rolename]->id;
1005 } else {
1006 $upt->track('enrolments', get_string('unknownrole', 'error', s($rolename)), 'error');
1007 continue;
1010 } else if (!empty($user->{'type'.$i})) {
1011 // if no role, then find "old" enrolment type
1012 $addtype = $user->{'type'.$i};
1013 if ($addtype < 1 or $addtype > 3) {
1014 $upt->track('enrolments', $strerror.': typeN = 1|2|3', 'error');
1015 continue;
1016 } else if (empty($formdata->{'uulegacy'.$addtype})) {
1017 continue;
1018 } else {
1019 $roleid = $formdata->{'uulegacy'.$addtype};
1021 } else {
1022 // no role specified, use the default from manual enrol plugin
1023 $roleid = $manualcache[$courseid]->roleid;
1026 if ($roleid) {
1027 // Find duration and/or enrol status.
1028 $timeend = 0;
1029 $status = null;
1031 if (isset($user->{'enrolstatus'.$i})) {
1032 $enrolstatus = $user->{'enrolstatus'.$i};
1033 if ($enrolstatus == '') {
1034 $status = null;
1035 } else if ($enrolstatus === (string)ENROL_USER_ACTIVE) {
1036 $status = ENROL_USER_ACTIVE;
1037 } else if ($enrolstatus === (string)ENROL_USER_SUSPENDED) {
1038 $status = ENROL_USER_SUSPENDED;
1039 } else {
1040 debugging('Unknown enrolment status.');
1044 if (!empty($user->{'enrolperiod'.$i})) {
1045 $duration = (int)$user->{'enrolperiod'.$i} * 60*60*24; // convert days to seconds
1046 if ($duration > 0) { // sanity check
1047 $timeend = $today + $duration;
1049 } else if ($manualcache[$courseid]->enrolperiod > 0) {
1050 $timeend = $today + $manualcache[$courseid]->enrolperiod;
1053 $manual->enrol_user($manualcache[$courseid], $user->id, $roleid, $today, $timeend, $status);
1055 $a = new stdClass();
1056 $a->course = $shortname;
1057 $a->role = $rolecache[$roleid]->name;
1058 $upt->track('enrolments', get_string('enrolledincourserole', 'enrol_manual', $a));
1062 // find group to add to
1063 if (!empty($user->{'group'.$i})) {
1064 // make sure user is enrolled into course before adding into groups
1065 if (!is_enrolled($coursecontext, $user->id)) {
1066 $upt->track('enrolments', get_string('addedtogroupnotenrolled', '', $user->{'group'.$i}), 'error');
1067 continue;
1069 //build group cache
1070 if (is_null($ccache[$shortname]->groups)) {
1071 $ccache[$shortname]->groups = array();
1072 if ($groups = groups_get_all_groups($courseid)) {
1073 foreach ($groups as $gid=>$group) {
1074 $ccache[$shortname]->groups[$gid] = new stdClass();
1075 $ccache[$shortname]->groups[$gid]->id = $gid;
1076 $ccache[$shortname]->groups[$gid]->name = $group->name;
1077 if (!is_numeric($group->name)) { // only non-numeric names are supported!!!
1078 $ccache[$shortname]->groups[$group->name] = new stdClass();
1079 $ccache[$shortname]->groups[$group->name]->id = $gid;
1080 $ccache[$shortname]->groups[$group->name]->name = $group->name;
1085 // group exists?
1086 $addgroup = $user->{'group'.$i};
1087 if (!array_key_exists($addgroup, $ccache[$shortname]->groups)) {
1088 // if group doesn't exist, create it
1089 $newgroupdata = new stdClass();
1090 $newgroupdata->name = $addgroup;
1091 $newgroupdata->courseid = $ccache[$shortname]->id;
1092 $newgroupdata->description = '';
1093 $gid = groups_create_group($newgroupdata);
1094 if ($gid){
1095 $ccache[$shortname]->groups[$addgroup] = new stdClass();
1096 $ccache[$shortname]->groups[$addgroup]->id = $gid;
1097 $ccache[$shortname]->groups[$addgroup]->name = $newgroupdata->name;
1098 } else {
1099 $upt->track('enrolments', get_string('unknowngroup', 'error', s($addgroup)), 'error');
1100 continue;
1103 $gid = $ccache[$shortname]->groups[$addgroup]->id;
1104 $gname = $ccache[$shortname]->groups[$addgroup]->name;
1106 try {
1107 if (groups_add_member($gid, $user->id)) {
1108 $upt->track('enrolments', get_string('addedtogroup', '', s($gname)));
1109 } else {
1110 $upt->track('enrolments', get_string('addedtogroupnot', '', s($gname)), 'error');
1112 } catch (moodle_exception $e) {
1113 $upt->track('enrolments', get_string('addedtogroupnot', '', s($gname)), 'error');
1114 continue;
1118 $validation[$user->username] = core_user::validate($user);
1120 $upt->close(); // close table
1121 if (!empty($validation)) {
1122 foreach ($validation as $username => $error) {
1123 \core\notification::warning(get_string('invaliduserdata', 'tool_uploaduser', s($username)));
1126 $cir->close();
1127 $cir->cleanup(true);
1129 echo $OUTPUT->box_start('boxwidthnarrow boxaligncenter generalbox', 'uploadresults');
1130 echo '<p>';
1131 if ($optype != UU_USER_UPDATE) {
1132 echo get_string('userscreated', 'tool_uploaduser').': '.$usersnew.'<br />';
1134 if ($optype == UU_USER_UPDATE or $optype == UU_USER_ADD_UPDATE) {
1135 echo get_string('usersupdated', 'tool_uploaduser').': '.$usersupdated.'<br />';
1137 if ($allowdeletes) {
1138 echo get_string('usersdeleted', 'tool_uploaduser').': '.$deletes.'<br />';
1139 echo get_string('deleteerrors', 'tool_uploaduser').': '.$deleteerrors.'<br />';
1141 if ($allowrenames) {
1142 echo get_string('usersrenamed', 'tool_uploaduser').': '.$renames.'<br />';
1143 echo get_string('renameerrors', 'tool_uploaduser').': '.$renameerrors.'<br />';
1145 if ($usersskipped) {
1146 echo get_string('usersskipped', 'tool_uploaduser').': '.$usersskipped.'<br />';
1148 echo get_string('usersweakpassword', 'tool_uploaduser').': '.$weakpasswords.'<br />';
1149 echo get_string('errors', 'tool_uploaduser').': '.$userserrors.'</p>';
1150 echo $OUTPUT->box_end();
1152 if ($bulk) {
1153 echo $OUTPUT->continue_button($bulknurl);
1154 } else {
1155 echo $OUTPUT->continue_button($returnurl);
1157 echo $OUTPUT->footer();
1158 die;
1161 // Print the header
1162 echo $OUTPUT->header();
1164 echo $OUTPUT->heading(get_string('uploaduserspreview', 'tool_uploaduser'));
1166 // NOTE: this is JUST csv processing preview, we must not prevent import from here if there is something in the file!!
1167 // this was intended for validation of csv formatting and encoding, not filtering the data!!!!
1168 // we definitely must not process the whole file!
1170 // preview table data
1171 $data = array();
1172 $cir->init();
1173 $linenum = 1; //column header is first line
1174 $noerror = true; // Keep status of any error.
1175 while ($linenum <= $previewrows and $fields = $cir->next()) {
1176 $linenum++;
1177 $rowcols = array();
1178 $rowcols['line'] = $linenum;
1179 foreach($fields as $key => $field) {
1180 $rowcols[$filecolumns[$key]] = s(trim($field));
1182 $rowcols['status'] = array();
1184 if (isset($rowcols['username'])) {
1185 $stdusername = core_user::clean_field($rowcols['username'], 'username');
1186 if ($rowcols['username'] !== $stdusername) {
1187 $rowcols['status'][] = get_string('invalidusernameupload');
1189 if ($userid = $DB->get_field('user', 'id', array('username'=>$stdusername, 'mnethostid'=>$CFG->mnet_localhost_id))) {
1190 $rowcols['username'] = html_writer::link(new moodle_url('/user/profile.php', array('id'=>$userid)), $rowcols['username']);
1192 } else {
1193 $rowcols['status'][] = get_string('missingusername');
1196 if (isset($rowcols['email'])) {
1197 if (!validate_email($rowcols['email'])) {
1198 $rowcols['status'][] = get_string('invalidemail');
1201 $select = $DB->sql_like('email', ':email', false, true, false, '|');
1202 $params = array('email' => $DB->sql_like_escape($rowcols['email'], '|'));
1203 if ($DB->record_exists_select('user', $select , $params)) {
1204 $rowcols['status'][] = $stremailduplicate;
1208 if (isset($rowcols['city'])) {
1209 $rowcols['city'] = $rowcols['city'];
1211 // Check if rowcols have custom profile field with correct data and update error state.
1212 $noerror = uu_check_custom_profile_data($rowcols) && $noerror;
1213 $rowcols['status'] = implode('<br />', $rowcols['status']);
1214 $data[] = $rowcols;
1216 if ($fields = $cir->next()) {
1217 $data[] = array_fill(0, count($fields) + 2, '...');
1219 $cir->close();
1221 $table = new html_table();
1222 $table->id = "uupreview";
1223 $table->attributes['class'] = 'generaltable';
1224 $table->tablealign = 'center';
1225 $table->summary = get_string('uploaduserspreview', 'tool_uploaduser');
1226 $table->head = array();
1227 $table->data = $data;
1229 $table->head[] = get_string('uucsvline', 'tool_uploaduser');
1230 foreach ($filecolumns as $column) {
1231 $table->head[] = $column;
1233 $table->head[] = get_string('status');
1235 echo html_writer::tag('div', html_writer::table($table), array('class'=>'flexible-wrap'));
1237 // Print the form if valid values are available
1238 if ($noerror) {
1239 $mform2->display();
1241 echo $OUTPUT->footer();
1242 die;