MDL-45536 atto_html: Update the textarea size when switching to HTML view
[moodle.git] / lib / authlib.php
blob2be318eaf69f7d24b3ffcf3530c28ed8b429793a
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);
80 /**
81 * Abstract authentication plugin.
83 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
84 * @package moodlecore
86 class auth_plugin_base {
88 /**
89 * The configuration details for the plugin.
90 * @var object
92 var $config;
94 /**
95 * Authentication plugin type - the same as db field.
96 * @var string
98 var $authtype;
100 * The fields we can lock and update from/to external authentication backends
101 * @var array
103 var $userfields = array(
104 'firstname',
105 'lastname',
106 'email',
107 'city',
108 'country',
109 'lang',
110 'description',
111 'url',
112 'idnumber',
113 'institution',
114 'department',
115 'phone1',
116 'phone2',
117 'address'
121 * Moodle custom fields to sync with.
122 * @var array()
124 var $customfields = null;
127 * This is the primary method that is used by the authenticate_user_login()
128 * function in moodlelib.php.
130 * This method should return a boolean indicating
131 * whether or not the username and password authenticate successfully.
133 * Returns true if the username and password work and false if they are
134 * wrong or don't exist.
136 * @param string $username The username (with system magic quotes)
137 * @param string $password The password (with system magic quotes)
139 * @return bool Authentication success or failure.
141 function user_login($username, $password) {
142 print_error('mustbeoveride', 'debug', '', 'user_login()' );
146 * Returns true if this authentication plugin can change the users'
147 * password.
149 * @return bool
151 function can_change_password() {
152 //override if needed
153 return false;
157 * Returns the URL for changing the users' passwords, or empty if the default
158 * URL can be used.
160 * This method is used if can_change_password() returns true.
161 * This method is called only when user is logged in, it may use global $USER.
162 * If you are using a plugin config variable in this method, please make sure it is set before using it,
163 * as this method can be called even if the plugin is disabled, in which case the config values won't be set.
165 * @return moodle_url url of the profile page or null if standard used
167 function change_password_url() {
168 //override if needed
169 return null;
173 * Returns true if this authentication plugin can edit the users'
174 * profile.
176 * @return bool
178 function can_edit_profile() {
179 //override if needed
180 return true;
184 * Returns the URL for editing the users' profile, or empty if the default
185 * URL can be used.
187 * This method is used if can_edit_profile() returns true.
188 * This method is called only when user is logged in, it may use global $USER.
190 * @return moodle_url url of the profile page or null if standard used
192 function edit_profile_url() {
193 //override if needed
194 return null;
198 * Returns true if this authentication plugin is "internal".
200 * Internal plugins use password hashes from Moodle user table for authentication.
202 * @return bool
204 function is_internal() {
205 //override if needed
206 return true;
210 * Indicates if password hashes should be stored in local moodle database.
211 * @return bool true means md5 password hash stored in user table, false means flag 'not_cached' stored there instead
213 function prevent_local_passwords() {
214 return !$this->is_internal();
218 * Indicates if moodle should automatically update internal user
219 * records with data from external sources using the information
220 * from get_userinfo() method.
222 * @return bool true means automatically copy data from ext to user table
224 function is_synchronised_with_external() {
225 return !$this->is_internal();
229 * Updates the user's password.
231 * In previous versions of Moodle, the function
232 * auth_user_update_password accepted a username as the first parameter. The
233 * revised function expects a user object.
235 * @param object $user User table object
236 * @param string $newpassword Plaintext password
238 * @return bool True on success
240 function user_update_password($user, $newpassword) {
241 //override if needed
242 return true;
246 * Called when the user record is updated.
247 * Modifies user in external database. It takes olduser (before changes) and newuser (after changes)
248 * compares information saved modified information to external db.
250 * @param mixed $olduser Userobject before modifications (without system magic quotes)
251 * @param mixed $newuser Userobject new modified userobject (without system magic quotes)
252 * @return boolean true if updated or update ignored; false if error
255 function user_update($olduser, $newuser) {
256 //override if needed
257 return true;
261 * User delete requested - internal user record is mared as deleted already, username not present anymore.
263 * Do any action in external database.
265 * @param object $user Userobject before delete (without system magic quotes)
266 * @return void
268 function user_delete($olduser) {
269 //override if needed
270 return;
274 * Returns true if plugin allows resetting of internal password.
276 * @return bool
278 function can_reset_password() {
279 //override if needed
280 return false;
284 * Returns true if plugin allows resetting of internal password.
286 * @return bool
288 function can_signup() {
289 //override if needed
290 return false;
294 * Sign up a new user ready for confirmation.
295 * Password is passed in plaintext.
297 * @param object $user new user object
298 * @param boolean $notify print notice with link and terminate
300 function user_signup($user, $notify=true) {
301 //override when can signup
302 print_error('mustbeoveride', 'debug', '', 'user_signup()' );
306 * Return a form to capture user details for account creation.
307 * This is used in /login/signup.php.
308 * @return moodle_form A form which edits a record from the user table.
310 function signup_form() {
311 global $CFG;
313 require_once($CFG->dirroot.'/login/signup_form.php');
314 return new login_signup_form(null, null, 'post', '', array('autocomplete'=>'on'));
318 * Returns true if plugin allows confirming of new users.
320 * @return bool
322 function can_confirm() {
323 //override if needed
324 return false;
328 * Confirm the new user as registered.
330 * @param string $username
331 * @param string $confirmsecret
333 function user_confirm($username, $confirmsecret) {
334 //override when can confirm
335 print_error('mustbeoveride', 'debug', '', 'user_confirm()' );
339 * Checks if user exists in external db
341 * @param string $username (with system magic quotes)
342 * @return bool
344 function user_exists($username) {
345 //override if needed
346 return false;
350 * return number of days to user password expires
352 * If userpassword does not expire it should return 0. If password is already expired
353 * it should return negative value.
355 * @param mixed $username username (with system magic quotes)
356 * @return integer
358 function password_expire($username) {
359 return 0;
362 * Sync roles for this user - usually creator
364 * @param $user object user object (without system magic quotes)
366 function sync_roles($user) {
367 //override if needed
371 * Read user information from external database and returns it as array().
372 * Function should return all information available. If you are saving
373 * this information to moodle user-table you should honour synchronisation flags
375 * @param string $username username
377 * @return mixed array with no magic quotes or false on error
379 function get_userinfo($username) {
380 //override if needed
381 return array();
385 * Prints a form for configuring this authentication plugin.
387 * This function is called from admin/auth.php, and outputs a full page with
388 * a form for configuring this plugin.
390 * @param object $config
391 * @param object $err
392 * @param array $user_fields
394 function config_form($config, $err, $user_fields) {
395 //override if needed
399 * A chance to validate form data, and last chance to
400 * do stuff before it is inserted in config_plugin
401 * @param object object with submitted configuration settings (without system magic quotes)
402 * @param array $err array of error messages
404 function validate_form($form, &$err) {
405 //override if needed
409 * Processes and stores configuration data for this authentication plugin.
411 * @param object object with submitted configuration settings (without system magic quotes)
413 function process_config($config) {
414 //override if needed
415 return true;
419 * Hook for overriding behaviour of login page.
420 * This method is called from login/index.php page for all enabled auth plugins.
422 * @global object
423 * @global object
425 function loginpage_hook() {
426 global $frm; // can be used to override submitted login form
427 global $user; // can be used to replace authenticate_user_login()
429 //override if needed
433 * Post authentication hook.
434 * This method is called from authenticate_user_login() for all enabled auth plugins.
436 * @param object $user user object, later used for $USER
437 * @param string $username (with system magic quotes)
438 * @param string $password plain text password (with system magic quotes)
440 function user_authenticated_hook(&$user, $username, $password) {
441 //override if needed
445 * Pre logout hook.
446 * This method is called from require_logout() for all enabled auth plugins,
448 * @global object
450 function prelogout_hook() {
451 global $USER; // use $USER->auth to find the plugin used for login
453 //override if needed
457 * Hook for overriding behaviour of logout page.
458 * This method is called from login/logout.php page for all enabled auth plugins.
460 * @global object
461 * @global string
463 function logoutpage_hook() {
464 global $USER; // use $USER->auth to find the plugin used for login
465 global $redirect; // can be used to override redirect after logout
467 //override if needed
471 * Hook called before timing out of database session.
472 * This is useful for SSO and MNET.
474 * @param object $user
475 * @param string $sid session id
476 * @param int $timecreated start of session
477 * @param int $timemodified user last seen
478 * @return bool true means do not timeout session yet
480 function ignore_timeout_hook($user, $sid, $timecreated, $timemodified) {
481 return false;
485 * Return the properly translated human-friendly title of this auth plugin
487 * @todo Document this function
489 function get_title() {
490 return get_string('pluginname', "auth_{$this->authtype}");
494 * Get the auth description (from core or own auth lang files)
496 * @return string The description
498 function get_description() {
499 $authdescription = get_string("auth_{$this->authtype}description", "auth_{$this->authtype}");
500 return $authdescription;
504 * Returns whether or not the captcha element is enabled, and the admin settings fulfil its requirements.
506 * @abstract Implement in child classes
507 * @return bool
509 function is_captcha_enabled() {
510 return false;
514 * Returns whether or not this authentication plugin can be manually set
515 * for users, for example, when bulk uploading users.
517 * This should be overriden by authentication plugins where setting the
518 * authentication method manually is allowed.
520 * @return bool
521 * @since Moodle 2.6
523 function can_be_manually_set() {
524 // Override if needed.
525 return false;
529 * Returns a list of potential IdPs that this authentication plugin supports.
530 * This is used to provide links on the login page.
532 * @param string $wantsurl the relative url fragment the user wants to get to. You can use this to compose a returnurl, for example
534 * @return array like:
535 * array(
536 * array(
537 * 'url' => 'http://someurl',
538 * 'icon' => new pix_icon(...),
539 * 'name' => get_string('somename', 'auth_yourplugin'),
540 * ),
543 function loginpage_idp_list($wantsurl) {
544 return array();
548 * Return custom user profile fields.
550 * @return array list of custom fields.
552 public function get_custom_user_profile_fields() {
553 global $DB;
554 // If already retrieved then return.
555 if (!is_null($this->customfields)) {
556 return $this->customfields;
559 $this->customfields = array();
560 if ($proffields = $DB->get_records('user_info_field')) {
561 foreach ($proffields as $proffield) {
562 $this->customfields[] = 'profile_field_'.$proffield->shortname;
565 unset($proffields);
567 return $this->customfields;
572 * Verify if user is locked out.
574 * @param stdClass $user
575 * @return bool true if user locked out
577 function login_is_lockedout($user) {
578 global $CFG;
580 if ($user->mnethostid != $CFG->mnet_localhost_id) {
581 return false;
583 if (isguestuser($user)) {
584 return false;
587 if (empty($CFG->lockoutthreshold)) {
588 // Lockout not enabled.
589 return false;
592 if (get_user_preferences('login_lockout_ignored', 0, $user)) {
593 // This preference may be used for accounts that must not be locked out.
594 return false;
597 $locked = get_user_preferences('login_lockout', 0, $user);
598 if (!$locked) {
599 return false;
602 if (empty($CFG->lockoutduration)) {
603 // Locked out forever.
604 return true;
607 if (time() - $locked < $CFG->lockoutduration) {
608 return true;
611 login_unlock_account($user);
613 return false;
617 * To be called after valid user login.
618 * @param stdClass $user
620 function login_attempt_valid($user) {
621 global $CFG;
623 // Note: user_loggedin event is triggered in complete_user_login().
625 if ($user->mnethostid != $CFG->mnet_localhost_id) {
626 return;
628 if (isguestuser($user)) {
629 return;
632 // Always unlock here, there might be some race conditions or leftovers when switching threshold.
633 login_unlock_account($user);
637 * To be called after failed user login.
638 * @param stdClass $user
640 function login_attempt_failed($user) {
641 global $CFG;
643 if ($user->mnethostid != $CFG->mnet_localhost_id) {
644 return;
646 if (isguestuser($user)) {
647 return;
650 $count = get_user_preferences('login_failed_count', 0, $user);
651 $last = get_user_preferences('login_failed_last', 0, $user);
652 $sincescuccess = get_user_preferences('login_failed_count_since_success', $count, $user);
653 $sincescuccess = $sincescuccess + 1;
654 set_user_preference('login_failed_count_since_success', $sincescuccess, $user);
656 if (empty($CFG->lockoutthreshold)) {
657 // No threshold means no lockout.
658 // Always unlock here, there might be some race conditions or leftovers when switching threshold.
659 login_unlock_account($user);
660 return;
663 if (!empty($CFG->lockoutwindow) and time() - $last > $CFG->lockoutwindow) {
664 $count = 0;
667 $count = $count+1;
669 set_user_preference('login_failed_count', $count, $user);
670 set_user_preference('login_failed_last', time(), $user);
672 if ($count >= $CFG->lockoutthreshold) {
673 login_lock_account($user);
678 * Lockout user and send notification email.
680 * @param stdClass $user
682 function login_lock_account($user) {
683 global $CFG;
685 if ($user->mnethostid != $CFG->mnet_localhost_id) {
686 return;
688 if (isguestuser($user)) {
689 return;
692 if (get_user_preferences('login_lockout_ignored', 0, $user)) {
693 // This user can not be locked out.
694 return;
697 $alreadylockedout = get_user_preferences('login_lockout', 0, $user);
699 set_user_preference('login_lockout', time(), $user);
701 if ($alreadylockedout == 0) {
702 $secret = random_string(15);
703 set_user_preference('login_lockout_secret', $secret, $user);
705 $oldforcelang = force_current_language($user->lang);
707 $site = get_site();
708 $supportuser = core_user::get_support_user();
710 $data = new stdClass();
711 $data->firstname = $user->firstname;
712 $data->lastname = $user->lastname;
713 $data->username = $user->username;
714 $data->sitename = format_string($site->fullname);
715 $data->link = $CFG->wwwroot.'/login/unlock_account.php?u='.$user->id.'&s='.$secret;
716 $data->admin = generate_email_signoff();
718 $message = get_string('lockoutemailbody', 'admin', $data);
719 $subject = get_string('lockoutemailsubject', 'admin', format_string($site->fullname));
721 if ($message) {
722 // Directly email rather than using the messaging system to ensure its not routed to a popup or jabber.
723 email_to_user($user, $supportuser, $subject, $message);
726 force_current_language($oldforcelang);
731 * Unlock user account and reset timers.
733 * @param stdClass $user
735 function login_unlock_account($user) {
736 unset_user_preference('login_lockout', $user);
737 unset_user_preference('login_failed_count', $user);
738 unset_user_preference('login_failed_last', $user);
740 // Note: do not clear the lockout secret because user might click on the link repeatedly.