MDL-51177 core: Ignore built files in stylelint
[moodle.git] / lib / authlib.php
blob6752ae4e1b10e911cb8ecc78dcd0a18091dca1f9
1 <?php
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.
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/>.
18 /**
19 * Multiple plugin authentication Support library
21 * 2006-08-28 File created, AUTH return values defined.
23 * @package core
24 * @subpackage auth
25 * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 defined('MOODLE_INTERNAL') || die();
31 /**
32 * Returned when the login was successful.
34 define('AUTH_OK', 0);
36 /**
37 * Returned when the login was unsuccessful.
39 define('AUTH_FAIL', 1);
41 /**
42 * Returned when the login was denied (a reason for AUTH_FAIL).
44 define('AUTH_DENIED', 2);
46 /**
47 * Returned when some error occurred (a reason for AUTH_FAIL).
49 define('AUTH_ERROR', 4);
51 /**
52 * Authentication - error codes for user confirm
54 define('AUTH_CONFIRM_FAIL', 0);
55 define('AUTH_CONFIRM_OK', 1);
56 define('AUTH_CONFIRM_ALREADY', 2);
57 define('AUTH_CONFIRM_ERROR', 3);
59 # MDL-14055
60 define('AUTH_REMOVEUSER_KEEP', 0);
61 define('AUTH_REMOVEUSER_SUSPEND', 1);
62 define('AUTH_REMOVEUSER_FULLDELETE', 2);
64 /** Login attempt successful. */
65 define('AUTH_LOGIN_OK', 0);
67 /** Can not login because user does not exist. */
68 define('AUTH_LOGIN_NOUSER', 1);
70 /** Can not login because user is suspended. */
71 define('AUTH_LOGIN_SUSPENDED', 2);
73 /** Can not login, most probably password did not match. */
74 define('AUTH_LOGIN_FAILED', 3);
76 /** Can not login because user is locked out. */
77 define('AUTH_LOGIN_LOCKOUT', 4);
79 /** Can not login becauser user is not authorised. */
80 define('AUTH_LOGIN_UNAUTHORISED', 5);
82 /**
83 * Abstract authentication plugin.
85 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
86 * @package moodlecore
88 class auth_plugin_base {
90 /**
91 * The configuration details for the plugin.
92 * @var object
94 var $config;
96 /**
97 * Authentication plugin type - the same as db field.
98 * @var string
100 var $authtype;
102 * The fields we can lock and update from/to external authentication backends
103 * @var array
105 var $userfields = \core_user::AUTHSYNCFIELDS;
108 * Moodle custom fields to sync with.
109 * @var array()
111 var $customfields = null;
114 * The tag we want to prepend to any error log messages.
116 * @var string
118 protected $errorlogtag = '';
121 * This is the primary method that is used by the authenticate_user_login()
122 * function in moodlelib.php.
124 * This method should return a boolean indicating
125 * whether or not the username and password authenticate successfully.
127 * Returns true if the username and password work and false if they are
128 * wrong or don't exist.
130 * @param string $username The username (with system magic quotes)
131 * @param string $password The password (with system magic quotes)
133 * @return bool Authentication success or failure.
135 function user_login($username, $password) {
136 print_error('mustbeoveride', 'debug', '', 'user_login()' );
140 * Returns true if this authentication plugin can change the users'
141 * password.
143 * @return bool
145 function can_change_password() {
146 //override if needed
147 return false;
151 * Returns the URL for changing the users' passwords, or empty if the default
152 * URL can be used.
154 * This method is used if can_change_password() returns true.
155 * This method is called only when user is logged in, it may use global $USER.
156 * If you are using a plugin config variable in this method, please make sure it is set before using it,
157 * as this method can be called even if the plugin is disabled, in which case the config values won't be set.
159 * @return moodle_url url of the profile page or null if standard used
161 function change_password_url() {
162 //override if needed
163 return null;
167 * Returns true if this authentication plugin can edit the users'
168 * profile.
170 * @return bool
172 function can_edit_profile() {
173 //override if needed
174 return true;
178 * Returns the URL for editing the users' profile, or empty if the default
179 * URL can be used.
181 * This method is used if can_edit_profile() returns true.
182 * This method is called only when user is logged in, it may use global $USER.
184 * @return moodle_url url of the profile page or null if standard used
186 function edit_profile_url() {
187 //override if needed
188 return null;
192 * Returns true if this authentication plugin is "internal".
194 * Internal plugins use password hashes from Moodle user table for authentication.
196 * @return bool
198 function is_internal() {
199 //override if needed
200 return true;
204 * Returns false if this plugin is enabled but not configured.
206 * @return bool
208 public function is_configured() {
209 return false;
213 * Indicates if password hashes should be stored in local moodle database.
214 * @return bool true means md5 password hash stored in user table, false means flag 'not_cached' stored there instead
216 function prevent_local_passwords() {
217 return !$this->is_internal();
221 * Indicates if moodle should automatically update internal user
222 * records with data from external sources using the information
223 * from get_userinfo() method.
225 * @return bool true means automatically copy data from ext to user table
227 function is_synchronised_with_external() {
228 return !$this->is_internal();
232 * Updates the user's password.
234 * In previous versions of Moodle, the function
235 * auth_user_update_password accepted a username as the first parameter. The
236 * revised function expects a user object.
238 * @param object $user User table object
239 * @param string $newpassword Plaintext password
241 * @return bool True on success
243 function user_update_password($user, $newpassword) {
244 //override if needed
245 return true;
249 * Called when the user record is updated.
250 * Modifies user in external database. It takes olduser (before changes) and newuser (after changes)
251 * compares information saved modified information to external db.
253 * @param mixed $olduser Userobject before modifications (without system magic quotes)
254 * @param mixed $newuser Userobject new modified userobject (without system magic quotes)
255 * @return boolean true if updated or update ignored; false if error
258 function user_update($olduser, $newuser) {
259 //override if needed
260 return true;
264 * User delete requested - internal user record is mared as deleted already, username not present anymore.
266 * Do any action in external database.
268 * @param object $user Userobject before delete (without system magic quotes)
269 * @return void
271 function user_delete($olduser) {
272 //override if needed
273 return;
277 * Returns true if plugin allows resetting of internal password.
279 * @return bool
281 function can_reset_password() {
282 //override if needed
283 return false;
287 * Returns true if plugin allows resetting of internal password.
289 * @return bool
291 function can_signup() {
292 //override if needed
293 return false;
297 * Sign up a new user ready for confirmation.
298 * Password is passed in plaintext.
300 * @param object $user new user object
301 * @param boolean $notify print notice with link and terminate
303 function user_signup($user, $notify=true) {
304 //override when can signup
305 print_error('mustbeoveride', 'debug', '', 'user_signup()' );
309 * Return a form to capture user details for account creation.
310 * This is used in /login/signup.php.
311 * @return moodle_form A form which edits a record from the user table.
313 function signup_form() {
314 global $CFG;
316 require_once($CFG->dirroot.'/login/signup_form.php');
317 return new login_signup_form(null, null, 'post', '', array('autocomplete'=>'on'));
321 * Returns true if plugin allows confirming of new users.
323 * @return bool
325 function can_confirm() {
326 //override if needed
327 return false;
331 * Confirm the new user as registered.
333 * @param string $username
334 * @param string $confirmsecret
336 function user_confirm($username, $confirmsecret) {
337 //override when can confirm
338 print_error('mustbeoveride', 'debug', '', 'user_confirm()' );
342 * Checks if user exists in external db
344 * @param string $username (with system magic quotes)
345 * @return bool
347 function user_exists($username) {
348 //override if needed
349 return false;
353 * return number of days to user password expires
355 * If userpassword does not expire it should return 0. If password is already expired
356 * it should return negative value.
358 * @param mixed $username username (with system magic quotes)
359 * @return integer
361 function password_expire($username) {
362 return 0;
365 * Sync roles for this user - usually creator
367 * @param $user object user object (without system magic quotes)
369 function sync_roles($user) {
370 //override if needed
374 * Read user information from external database and returns it as array().
375 * Function should return all information available. If you are saving
376 * this information to moodle user-table you should honour synchronisation flags
378 * @param string $username username
380 * @return mixed array with no magic quotes or false on error
382 function get_userinfo($username) {
383 //override if needed
384 return array();
388 * Prints a form for configuring this authentication plugin.
390 * This function is called from admin/auth.php, and outputs a full page with
391 * a form for configuring this plugin.
393 * @param object $config
394 * @param object $err
395 * @param array $user_fields
396 * @deprecated since Moodle 3.3
398 function config_form($config, $err, $user_fields) {
399 debugging('Use of config.html files have been deprecated, please update your code to use the admin settings API.');
400 //override if needed
404 * A chance to validate form data, and last chance to
405 * do stuff before it is inserted in config_plugin
406 * @param object object with submitted configuration settings (without system magic quotes)
407 * @param array $err array of error messages
408 * @deprecated since Moodle 3.3
410 function validate_form($form, &$err) {
411 debugging('Use of config.html files have been deprecated, please update your code to use the admin settings API.');
412 //override if needed
416 * Processes and stores configuration data for this authentication plugin.
418 * @param object object with submitted configuration settings (without system magic quotes)
419 * @deprecated since Moodle 3.3
421 function process_config($config) {
422 debugging('Use of config.html files have been deprecated, please update your code to use the admin settings API.');
423 //override if needed
424 return true;
428 * Hook for overriding behaviour of login page.
429 * This method is called from login/index.php page for all enabled auth plugins.
431 * @global object
432 * @global object
434 function loginpage_hook() {
435 global $frm; // can be used to override submitted login form
436 global $user; // can be used to replace authenticate_user_login()
438 //override if needed
442 * Hook for overriding behaviour before going to the login page.
444 * This method is called from require_login from potentially any page for
445 * all enabled auth plugins and gives each plugin a chance to redirect
446 * directly to an external login page, or to instantly login a user where
447 * possible.
449 * If an auth plugin implements this hook, it must not rely on ONLY this
450 * hook in order to work, as there are many ways a user can browse directly
451 * to the standard login page. As a general rule in this case you should
452 * also implement the loginpage_hook as well.
455 function pre_loginpage_hook() {
456 // override if needed, eg by redirecting to an external login page
457 // or logging in a user:
458 // complete_user_login($user);
462 * Pre user_login hook.
463 * This method is called from authenticate_user_login() right after the user
464 * object is generated. This gives the auth plugins an option to make adjustments
465 * before the verification process starts.
467 * @param object $user user object, later used for $USER
469 public function pre_user_login_hook(&$user) {
470 // Override if needed.
474 * Post authentication hook.
475 * This method is called from authenticate_user_login() for all enabled auth plugins.
477 * @param object $user user object, later used for $USER
478 * @param string $username (with system magic quotes)
479 * @param string $password plain text password (with system magic quotes)
481 function user_authenticated_hook(&$user, $username, $password) {
482 //override if needed
486 * Pre logout hook.
487 * This method is called from require_logout() for all enabled auth plugins,
489 * @global object
491 function prelogout_hook() {
492 global $USER; // use $USER->auth to find the plugin used for login
494 //override if needed
498 * Hook for overriding behaviour of logout page.
499 * This method is called from login/logout.php page for all enabled auth plugins.
501 * @global object
502 * @global string
504 function logoutpage_hook() {
505 global $USER; // use $USER->auth to find the plugin used for login
506 global $redirect; // can be used to override redirect after logout
508 //override if needed
512 * Hook called before timing out of database session.
513 * This is useful for SSO and MNET.
515 * @param object $user
516 * @param string $sid session id
517 * @param int $timecreated start of session
518 * @param int $timemodified user last seen
519 * @return bool true means do not timeout session yet
521 function ignore_timeout_hook($user, $sid, $timecreated, $timemodified) {
522 return false;
526 * Return the properly translated human-friendly title of this auth plugin
528 * @todo Document this function
530 function get_title() {
531 return get_string('pluginname', "auth_{$this->authtype}");
535 * Get the auth description (from core or own auth lang files)
537 * @return string The description
539 function get_description() {
540 $authdescription = get_string("auth_{$this->authtype}description", "auth_{$this->authtype}");
541 return $authdescription;
545 * Returns whether or not the captcha element is enabled.
547 * @abstract Implement in child classes
548 * @return bool
550 function is_captcha_enabled() {
551 return false;
555 * Returns whether or not this authentication plugin can be manually set
556 * for users, for example, when bulk uploading users.
558 * This should be overriden by authentication plugins where setting the
559 * authentication method manually is allowed.
561 * @return bool
562 * @since Moodle 2.6
564 function can_be_manually_set() {
565 // Override if needed.
566 return false;
570 * Returns a list of potential IdPs that this authentication plugin supports.
572 * This is used to provide links on the login page and the login block.
574 * The parameter $wantsurl is typically used by the plugin to implement a
575 * return-url feature.
577 * The returned value is expected to be a list of associative arrays with
578 * string keys:
580 * - url => (moodle_url|string) URL of the page to send the user to for authentication
581 * - name => (string) Human readable name of the IdP
582 * - iconurl => (moodle_url|string) URL of the icon representing the IdP (since Moodle 3.3)
584 * For legacy reasons, pre-3.3 plugins can provide the icon via the key:
586 * - icon => (pix_icon) Icon representing the IdP
588 * @param string $wantsurl The relative url fragment the user wants to get to.
589 * @return array List of associative arrays with keys url, name, iconurl|icon
591 function loginpage_idp_list($wantsurl) {
592 return array();
596 * Return custom user profile fields.
598 * @return array list of custom fields.
600 public function get_custom_user_profile_fields() {
601 global $DB;
602 // If already retrieved then return.
603 if (!is_null($this->customfields)) {
604 return $this->customfields;
607 $this->customfields = array();
608 if ($proffields = $DB->get_records('user_info_field')) {
609 foreach ($proffields as $proffield) {
610 $this->customfields[] = 'profile_field_'.$proffield->shortname;
613 unset($proffields);
615 return $this->customfields;
619 * Post logout hook.
621 * This method is used after moodle logout by auth classes to execute server logout.
623 * @param stdClass $user clone of USER object before the user session was terminated
625 public function postlogout_hook($user) {
629 * Update a local user record from an external source.
630 * This is a lighter version of the one in moodlelib -- won't do
631 * expensive ops such as enrolment.
633 * @param string $username username
634 * @param array $updatekeys fields to update, false updates all fields.
635 * @param bool $triggerevent set false if user_updated event should not be triggered.
636 * This will not affect user_password_updated event triggering.
637 * @param bool $suspenduser Should the user be suspended?
638 * @return stdClass|bool updated user record or false if there is no new info to update.
640 protected function update_user_record($username, $updatekeys = false, $triggerevent = false, $suspenduser = false) {
641 global $CFG, $DB;
643 require_once($CFG->dirroot.'/user/profile/lib.php');
645 // Just in case check text case.
646 $username = trim(core_text::strtolower($username));
648 // Get the current user record.
649 $user = $DB->get_record('user', array('username' => $username, 'mnethostid' => $CFG->mnet_localhost_id));
650 if (empty($user)) { // Trouble.
651 error_log($this->errorlogtag . get_string('auth_usernotexist', 'auth', $username));
652 print_error('auth_usernotexist', 'auth', '', $username);
653 die;
656 // Protect the userid from being overwritten.
657 $userid = $user->id;
659 $needsupdate = false;
661 if ($newinfo = $this->get_userinfo($username)) {
662 $newinfo = truncate_userinfo($newinfo);
664 if (empty($updatekeys)) { // All keys? this does not support removing values.
665 $updatekeys = array_keys($newinfo);
668 if (!empty($updatekeys)) {
669 $newuser = new stdClass();
670 $newuser->id = $userid;
671 // The cast to int is a workaround for MDL-53959.
672 $newuser->suspended = (int) $suspenduser;
673 // Load all custom fields.
674 $profilefields = (array) profile_user_record($user->id, false);
675 $newprofilefields = [];
677 foreach ($updatekeys as $key) {
678 if (isset($newinfo[$key])) {
679 $value = $newinfo[$key];
680 } else {
681 $value = '';
684 if (!empty($this->config->{'field_updatelocal_' . $key})) {
685 if (preg_match('/^profile_field_(.*)$/', $key, $match)) {
686 // Custom field.
687 $field = $match[1];
688 $currentvalue = isset($profilefields[$field]) ? $profilefields[$field] : null;
689 $newprofilefields[$field] = $value;
690 } else {
691 // Standard field.
692 $currentvalue = isset($user->$key) ? $user->$key : null;
693 $newuser->$key = $value;
696 // Only update if it's changed.
697 if ($currentvalue !== $value) {
698 $needsupdate = true;
704 if ($needsupdate) {
705 user_update_user($newuser, false, $triggerevent);
706 profile_save_custom_fields($newuser->id, $newprofilefields);
707 return $DB->get_record('user', array('id' => $userid, 'deleted' => 0));
711 return false;
715 * Return the list of enabled identity providers.
717 * Each identity provider data contains the keys url, name and iconurl (or
718 * icon). See the documentation of {@link auth_plugin_base::loginpage_idp_list()}
719 * for detailed description of the returned structure.
721 * @param array $authsequence site's auth sequence (list of auth plugins ordered)
722 * @return array List of arrays describing the identity providers
724 public static function get_identity_providers($authsequence) {
725 global $SESSION;
727 $identityproviders = [];
728 foreach ($authsequence as $authname) {
729 $authplugin = get_auth_plugin($authname);
730 $wantsurl = (isset($SESSION->wantsurl)) ? $SESSION->wantsurl : '';
731 $identityproviders = array_merge($identityproviders, $authplugin->loginpage_idp_list($wantsurl));
733 return $identityproviders;
737 * Prepare a list of identity providers for output.
739 * @param array $identityproviders as returned by {@link self::get_identity_providers()}
740 * @param renderer_base $output
741 * @return array the identity providers ready for output
743 public static function prepare_identity_providers_for_output($identityproviders, renderer_base $output) {
744 $data = [];
745 foreach ($identityproviders as $idp) {
746 if (!empty($idp['icon'])) {
747 // Pre-3.3 auth plugins provide icon as a pix_icon instance. New auth plugins (since 3.3) provide iconurl.
748 $idp['iconurl'] = $output->image_url($idp['icon']->pix, $idp['icon']->component);
750 if ($idp['iconurl'] instanceof moodle_url) {
751 $idp['iconurl'] = $idp['iconurl']->out(false);
753 unset($idp['icon']);
754 if ($idp['url'] instanceof moodle_url) {
755 $idp['url'] = $idp['url']->out(false);
757 $data[] = $idp;
759 return $data;
764 * Verify if user is locked out.
766 * @param stdClass $user
767 * @return bool true if user locked out
769 function login_is_lockedout($user) {
770 global $CFG;
772 if ($user->mnethostid != $CFG->mnet_localhost_id) {
773 return false;
775 if (isguestuser($user)) {
776 return false;
779 if (empty($CFG->lockoutthreshold)) {
780 // Lockout not enabled.
781 return false;
784 if (get_user_preferences('login_lockout_ignored', 0, $user)) {
785 // This preference may be used for accounts that must not be locked out.
786 return false;
789 $locked = get_user_preferences('login_lockout', 0, $user);
790 if (!$locked) {
791 return false;
794 if (empty($CFG->lockoutduration)) {
795 // Locked out forever.
796 return true;
799 if (time() - $locked < $CFG->lockoutduration) {
800 return true;
803 login_unlock_account($user);
805 return false;
809 * To be called after valid user login.
810 * @param stdClass $user
812 function login_attempt_valid($user) {
813 global $CFG;
815 // Note: user_loggedin event is triggered in complete_user_login().
817 if ($user->mnethostid != $CFG->mnet_localhost_id) {
818 return;
820 if (isguestuser($user)) {
821 return;
824 // Always unlock here, there might be some race conditions or leftovers when switching threshold.
825 login_unlock_account($user);
829 * To be called after failed user login.
830 * @param stdClass $user
832 function login_attempt_failed($user) {
833 global $CFG;
835 if ($user->mnethostid != $CFG->mnet_localhost_id) {
836 return;
838 if (isguestuser($user)) {
839 return;
842 $count = get_user_preferences('login_failed_count', 0, $user);
843 $last = get_user_preferences('login_failed_last', 0, $user);
844 $sincescuccess = get_user_preferences('login_failed_count_since_success', $count, $user);
845 $sincescuccess = $sincescuccess + 1;
846 set_user_preference('login_failed_count_since_success', $sincescuccess, $user);
848 if (empty($CFG->lockoutthreshold)) {
849 // No threshold means no lockout.
850 // Always unlock here, there might be some race conditions or leftovers when switching threshold.
851 login_unlock_account($user);
852 return;
855 if (!empty($CFG->lockoutwindow) and time() - $last > $CFG->lockoutwindow) {
856 $count = 0;
859 $count = $count+1;
861 set_user_preference('login_failed_count', $count, $user);
862 set_user_preference('login_failed_last', time(), $user);
864 if ($count >= $CFG->lockoutthreshold) {
865 login_lock_account($user);
870 * Lockout user and send notification email.
872 * @param stdClass $user
874 function login_lock_account($user) {
875 global $CFG;
877 if ($user->mnethostid != $CFG->mnet_localhost_id) {
878 return;
880 if (isguestuser($user)) {
881 return;
884 if (get_user_preferences('login_lockout_ignored', 0, $user)) {
885 // This user can not be locked out.
886 return;
889 $alreadylockedout = get_user_preferences('login_lockout', 0, $user);
891 set_user_preference('login_lockout', time(), $user);
893 if ($alreadylockedout == 0) {
894 $secret = random_string(15);
895 set_user_preference('login_lockout_secret', $secret, $user);
897 $oldforcelang = force_current_language($user->lang);
899 $site = get_site();
900 $supportuser = core_user::get_support_user();
902 $data = new stdClass();
903 $data->firstname = $user->firstname;
904 $data->lastname = $user->lastname;
905 $data->username = $user->username;
906 $data->sitename = format_string($site->fullname);
907 $data->link = $CFG->wwwroot.'/login/unlock_account.php?u='.$user->id.'&s='.$secret;
908 $data->admin = generate_email_signoff();
910 $message = get_string('lockoutemailbody', 'admin', $data);
911 $subject = get_string('lockoutemailsubject', 'admin', format_string($site->fullname));
913 if ($message) {
914 // Directly email rather than using the messaging system to ensure its not routed to a popup or jabber.
915 email_to_user($user, $supportuser, $subject, $message);
918 force_current_language($oldforcelang);
923 * Unlock user account and reset timers.
925 * @param stdClass $user
927 function login_unlock_account($user) {
928 unset_user_preference('login_lockout', $user);
929 unset_user_preference('login_failed_count', $user);
930 unset_user_preference('login_failed_last', $user);
932 // Note: do not clear the lockout secret because user might click on the link repeatedly.
936 * Returns whether or not the captcha element is enabled, and the admin settings fulfil its requirements.
937 * @return bool
939 function signup_captcha_enabled() {
940 global $CFG;
941 $authplugin = get_auth_plugin($CFG->registerauth);
942 return !empty($CFG->recaptchapublickey) && !empty($CFG->recaptchaprivatekey) && $authplugin->is_captcha_enabled();
946 * Validates the standard sign-up data (except recaptcha that is validated by the form element).
948 * @param array $data the sign-up data
949 * @param array $files files among the data
950 * @return array list of errors, being the key the data element name and the value the error itself
951 * @since Moodle 3.2
953 function signup_validate_data($data, $files) {
954 global $CFG, $DB;
956 $errors = array();
957 $authplugin = get_auth_plugin($CFG->registerauth);
959 if ($DB->record_exists('user', array('username' => $data['username'], 'mnethostid' => $CFG->mnet_localhost_id))) {
960 $errors['username'] = get_string('usernameexists');
961 } else {
962 // Check allowed characters.
963 if ($data['username'] !== core_text::strtolower($data['username'])) {
964 $errors['username'] = get_string('usernamelowercase');
965 } else {
966 if ($data['username'] !== core_user::clean_field($data['username'], 'username')) {
967 $errors['username'] = get_string('invalidusername');
973 // Check if user exists in external db.
974 // TODO: maybe we should check all enabled plugins instead.
975 if ($authplugin->user_exists($data['username'])) {
976 $errors['username'] = get_string('usernameexists');
979 if (! validate_email($data['email'])) {
980 $errors['email'] = get_string('invalidemail');
982 } else if ($DB->record_exists('user', array('email' => $data['email']))) {
983 $errors['email'] = get_string('emailexists') . ' ' .
984 get_string('emailexistssignuphint', 'moodle',
985 html_writer::link(new moodle_url('/login/forgot_password.php'), get_string('emailexistshintlink')));
987 if (empty($data['email2'])) {
988 $errors['email2'] = get_string('missingemail');
990 } else if ($data['email2'] != $data['email']) {
991 $errors['email2'] = get_string('invalidemail');
993 if (!isset($errors['email'])) {
994 if ($err = email_is_not_allowed($data['email'])) {
995 $errors['email'] = $err;
999 $errmsg = '';
1000 if (!check_password_policy($data['password'], $errmsg)) {
1001 $errors['password'] = $errmsg;
1004 // Validate customisable profile fields. (profile_validation expects an object as the parameter with userid set).
1005 $dataobject = (object)$data;
1006 $dataobject->id = 0;
1007 $errors += profile_validation($dataobject, $files);
1009 return $errors;
1013 * Add the missing fields to a user that is going to be created
1015 * @param stdClass $user the new user object
1016 * @return stdClass the user filled
1017 * @since Moodle 3.2
1019 function signup_setup_new_user($user) {
1020 global $CFG;
1022 $user->confirmed = 0;
1023 $user->lang = current_language();
1024 $user->firstaccess = 0;
1025 $user->timecreated = time();
1026 $user->mnethostid = $CFG->mnet_localhost_id;
1027 $user->secret = random_string(15);
1028 $user->auth = $CFG->registerauth;
1029 // Initialize alternate name fields to empty strings.
1030 $namefields = array_diff(get_all_user_name_fields(), useredit_get_required_name_fields());
1031 foreach ($namefields as $namefield) {
1032 $user->$namefield = '';
1034 return $user;
1038 * Check if user confirmation is enabled on this site and return the auth plugin handling registration if enabled.
1040 * @return stdClass the current auth plugin handling user registration or false if registration not enabled
1041 * @since Moodle 3.2
1043 function signup_get_user_confirmation_authplugin() {
1044 global $CFG;
1046 if (empty($CFG->registerauth)) {
1047 return false;
1049 $authplugin = get_auth_plugin($CFG->registerauth);
1051 if (!$authplugin->can_confirm()) {
1052 return false;
1054 return $authplugin;
1058 * Check if sign-up is enabled in the site. If is enabled, the function will return the authplugin instance.
1060 * @return mixed false if sign-up is not enabled, the authplugin instance otherwise.
1061 * @since Moodle 3.2
1063 function signup_is_enabled() {
1064 global $CFG;
1066 if (!empty($CFG->registerauth)) {
1067 $authplugin = get_auth_plugin($CFG->registerauth);
1068 if ($authplugin->can_signup()) {
1069 return $authplugin;
1072 return false;
1076 * Helper function used to print locking for auth plugins on admin pages.
1077 * @param stdclass $settings Moodle admin settings instance
1078 * @param string $auth authentication plugin shortname
1079 * @param array $userfields user profile fields
1080 * @param string $helptext help text to be displayed at top of form
1081 * @param boolean $mapremotefields Map fields or lock only.
1082 * @param boolean $updateremotefields Allow remote updates
1083 * @param array $customfields list of custom profile fields
1084 * @since Moodle 3.3
1086 function display_auth_lock_options($settings, $auth, $userfields, $helptext, $mapremotefields, $updateremotefields, $customfields = array()) {
1087 global $DB;
1089 // Introductory explanation and help text.
1090 if ($mapremotefields) {
1091 $settings->add(new admin_setting_heading($auth.'/data_mapping', new lang_string('auth_data_mapping', 'auth'), $helptext));
1092 } else {
1093 $settings->add(new admin_setting_heading($auth.'/auth_fieldlocks', new lang_string('auth_fieldlocks', 'auth'), $helptext));
1096 // Generate the list of options.
1097 $lockoptions = array ('unlocked' => get_string('unlocked', 'auth'),
1098 'unlockedifempty' => get_string('unlockedifempty', 'auth'),
1099 'locked' => get_string('locked', 'auth'));
1100 $updatelocaloptions = array('oncreate' => get_string('update_oncreate', 'auth'),
1101 'onlogin' => get_string('update_onlogin', 'auth'));
1102 $updateextoptions = array('0' => get_string('update_never', 'auth'),
1103 '1' => get_string('update_onupdate', 'auth'));
1105 // Generate the list of profile fields to allow updates / lock.
1106 if (!empty($customfields)) {
1107 $userfields = array_merge($userfields, $customfields);
1108 $customfieldname = $DB->get_records('user_info_field', null, '', 'shortname, name');
1111 foreach ($userfields as $field) {
1112 // Define the fieldname we display to the user.
1113 // this includes special handling for some profile fields.
1114 $fieldname = $field;
1115 $fieldnametoolong = false;
1116 if ($fieldname === 'lang') {
1117 $fieldname = get_string('language');
1118 } else if (!empty($customfields) && in_array($field, $customfields)) {
1119 // If custom field then pick name from database.
1120 $fieldshortname = str_replace('profile_field_', '', $fieldname);
1121 $fieldname = $customfieldname[$fieldshortname]->name;
1122 if (core_text::strlen($fieldshortname) > 67) {
1123 // If custom profile field name is longer than 67 characters we will not be able to store the setting
1124 // such as 'field_updateremote_profile_field_NOTSOSHORTSHORTNAME' in the database because the character
1125 // limit for the setting name is 100.
1126 $fieldnametoolong = true;
1128 } else if ($fieldname == 'url') {
1129 $fieldname = get_string('webpage');
1130 } else {
1131 $fieldname = get_string($fieldname);
1134 // Generate the list of fields / mappings.
1135 if ($fieldnametoolong) {
1136 // Display a message that the field can not be mapped because it's too long.
1137 $url = new moodle_url('/user/profile/index.php');
1138 $a = (object)['fieldname' => s($fieldname), 'shortname' => s($field), 'charlimit' => 67, 'link' => $url->out()];
1139 $settings->add(new admin_setting_heading($auth.'/field_not_mapped_'.sha1($field), '',
1140 get_string('cannotmapfield', 'auth', $a)));
1141 } else if ($mapremotefields) {
1142 // We are mapping to a remote field here.
1143 // Mapping.
1144 $settings->add(new admin_setting_configtext("auth_{$auth}/field_map_{$field}",
1145 get_string('auth_fieldmapping', 'auth', $fieldname), '', '', PARAM_RAW, 30));
1147 // Update local.
1148 $settings->add(new admin_setting_configselect("auth_{$auth}/field_updatelocal_{$field}",
1149 get_string('auth_updatelocalfield', 'auth', $fieldname), '', 'oncreate', $updatelocaloptions));
1151 // Update remote.
1152 if ($updateremotefields) {
1153 $settings->add(new admin_setting_configselect("auth_{$auth}/field_updateremote_{$field}",
1154 get_string('auth_updateremotefield', 'auth', $fieldname), '', 0, $updateextoptions));
1157 // Lock fields.
1158 $settings->add(new admin_setting_configselect("auth_{$auth}/field_lock_{$field}",
1159 get_string('auth_fieldlockfield', 'auth', $fieldname), '', 'unlocked', $lockoptions));
1161 } else {
1162 // Lock fields Only.
1163 $settings->add(new admin_setting_configselect("auth_{$auth}/field_lock_{$field}",
1164 get_string('auth_fieldlockfield', 'auth', $fieldname), '', 'unlocked', $lockoptions));