Moodle release 2.7.17
[moodle.git] / auth / email / auth.php
blobd7e88294a606db4174d825a54b8138f769441a74
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 * Authentication Plugin: Email Authentication
20 * @author Martin Dougiamas
21 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
22 * @package auth_email
25 defined('MOODLE_INTERNAL') || die();
27 require_once($CFG->libdir.'/authlib.php');
29 /**
30 * Email authentication plugin.
32 class auth_plugin_email extends auth_plugin_base {
34 /**
35 * Constructor.
37 function auth_plugin_email() {
38 $this->authtype = 'email';
39 $this->config = get_config('auth/email');
42 /**
43 * Returns true if the username and password work and false if they are
44 * wrong or don't exist.
46 * @param string $username The username
47 * @param string $password The password
48 * @return bool Authentication success or failure.
50 function user_login ($username, $password) {
51 global $CFG, $DB;
52 if ($user = $DB->get_record('user', array('username'=>$username, 'mnethostid'=>$CFG->mnet_localhost_id))) {
53 return validate_internal_user_password($user, $password);
55 return false;
58 /**
59 * Updates the user's password.
61 * called when the user password is updated.
63 * @param object $user User table object (with system magic quotes)
64 * @param string $newpassword Plaintext password (with system magic quotes)
65 * @return boolean result
68 function user_update_password($user, $newpassword) {
69 $user = get_complete_user_data('id', $user->id);
70 // This will also update the stored hash to the latest algorithm
71 // if the existing hash is using an out-of-date algorithm (or the
72 // legacy md5 algorithm).
73 return update_internal_user_password($user, $newpassword);
76 function can_signup() {
77 return true;
80 /**
81 * Sign up a new user ready for confirmation.
82 * Password is passed in plaintext.
84 * @param object $user new user object
85 * @param boolean $notify print notice with link and terminate
87 function user_signup($user, $notify=true) {
88 global $CFG, $DB;
89 require_once($CFG->dirroot.'/user/profile/lib.php');
90 require_once($CFG->dirroot.'/user/lib.php');
92 $user->password = hash_internal_user_password($user->password);
93 if (empty($user->calendartype)) {
94 $user->calendartype = $CFG->calendartype;
97 $user->id = user_create_user($user, false, false);
99 // Save any custom profile field information.
100 profile_save_data($user);
102 // Trigger event.
103 \core\event\user_created::create_from_userid($user->id)->trigger();
105 if (! send_confirmation_email($user)) {
106 print_error('auth_emailnoemail','auth_email');
109 if ($notify) {
110 global $CFG, $PAGE, $OUTPUT;
111 $emailconfirm = get_string('emailconfirm');
112 $PAGE->navbar->add($emailconfirm);
113 $PAGE->set_title($emailconfirm);
114 $PAGE->set_heading($PAGE->course->fullname);
115 echo $OUTPUT->header();
116 notice(get_string('emailconfirmsent', '', $user->email), "$CFG->wwwroot/index.php");
117 } else {
118 return true;
123 * Returns true if plugin allows confirming of new users.
125 * @return bool
127 function can_confirm() {
128 return true;
132 * Confirm the new user as registered.
134 * @param string $username
135 * @param string $confirmsecret
137 function user_confirm($username, $confirmsecret) {
138 global $DB;
139 $user = get_complete_user_data('username', $username);
141 if (!empty($user)) {
142 if ($user->auth != $this->authtype) {
143 return AUTH_CONFIRM_ERROR;
145 } else if ($user->secret == $confirmsecret && $user->confirmed) {
146 return AUTH_CONFIRM_ALREADY;
148 } else if ($user->secret == $confirmsecret) { // They have provided the secret key to get in
149 $DB->set_field("user", "confirmed", 1, array("id"=>$user->id));
150 if ($user->firstaccess == 0) {
151 $DB->set_field("user", "firstaccess", time(), array("id"=>$user->id));
153 return AUTH_CONFIRM_OK;
155 } else {
156 return AUTH_CONFIRM_ERROR;
160 function prevent_local_passwords() {
161 return false;
165 * Returns true if this authentication plugin is 'internal'.
167 * @return bool
169 function is_internal() {
170 return true;
174 * Returns true if this authentication plugin can change the user's
175 * password.
177 * @return bool
179 function can_change_password() {
180 return true;
184 * Returns the URL for changing the user's pw, or empty if the default can
185 * be used.
187 * @return moodle_url
189 function change_password_url() {
190 return null; // use default internal method
194 * Returns true if plugin allows resetting of internal password.
196 * @return bool
198 function can_reset_password() {
199 return true;
203 * Returns true if plugin can be manually set.
205 * @return bool
207 function can_be_manually_set() {
208 return true;
212 * Prints a form for configuring this authentication plugin.
214 * This function is called from admin/auth.php, and outputs a full page with
215 * a form for configuring this plugin.
217 * @param array $page An object containing all the data for this page.
219 function config_form($config, $err, $user_fields) {
220 include "config.html";
224 * Processes and stores configuration data for this authentication plugin.
226 function process_config($config) {
227 // set to defaults if undefined
228 if (!isset($config->recaptcha)) {
229 $config->recaptcha = false;
232 // save settings
233 set_config('recaptcha', $config->recaptcha, 'auth/email');
234 return true;
238 * Returns whether or not the captcha element is enabled, and the admin settings fulfil its requirements.
239 * @return bool
241 function is_captcha_enabled() {
242 global $CFG;
243 return isset($CFG->recaptchapublickey) && isset($CFG->recaptchaprivatekey) && get_config("auth/{$this->authtype}", 'recaptcha');