timeline: if a section is set to hidden and the user is not capable of editing a...
[moodle-blog-course-format.git] / auth / email / auth.php
bloba5e4f201335f639834155fe280ce20b290dd47c8
1 <?php
3 /**
4 * @author Martin Dougiamas
5 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
6 * @package moodle multiauth
8 * Authentication Plugin: Email Authentication
10 * Standard authentication function.
12 * 2006-08-28 File created.
15 if (!defined('MOODLE_INTERNAL')) {
16 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
19 require_once($CFG->libdir.'/authlib.php');
21 /**
22 * Email authentication plugin.
24 class auth_plugin_email extends auth_plugin_base {
26 /**
27 * Constructor.
29 function auth_plugin_email() {
30 $this->authtype = 'email';
31 $this->config = get_config('auth/email');
34 /**
35 * Returns true if the username and password work and false if they are
36 * wrong or don't exist.
38 * @param string $username The username
39 * @param string $password The password
40 * @return bool Authentication success or failure.
42 function user_login ($username, $password) {
43 global $CFG;
44 if ($user = get_record('user', 'username', $username, 'mnethostid', $CFG->mnet_localhost_id)) {
45 return validate_internal_user_password($user, $password);
47 return false;
50 /**
51 * Updates the user's password.
53 * called when the user password is updated.
55 * @param object $user User table object (with system magic quotes)
56 * @param string $newpassword Plaintext password (with system magic quotes)
57 * @return boolean result
60 function user_update_password($user, $newpassword) {
61 $user = get_complete_user_data('id', $user->id);
62 return update_internal_user_password($user, $newpassword);
65 function can_signup() {
66 return true;
69 /**
70 * Sign up a new user ready for confirmation.
71 * Password is passed in plaintext.
73 * @param object $user new user object (with system magic quotes)
74 * @param boolean $notify print notice with link and terminate
76 function user_signup($user, $notify=true) {
77 global $CFG;
78 require_once($CFG->dirroot.'/user/profile/lib.php');
80 $user->password = hash_internal_user_password($user->password);
82 if (! ($user->id = insert_record('user', $user)) ) {
83 print_error('auth_emailnoinsert','auth');
86 /// Save any custom profile field information
87 profile_save_data($user);
89 $user = get_record('user', 'id', $user->id);
90 events_trigger('user_created', $user);
92 if (! send_confirmation_email($user)) {
93 print_error('auth_emailnoemail','auth');
96 if ($notify) {
97 global $CFG;
98 $emailconfirm = get_string('emailconfirm');
99 $navlinks = array();
100 $navlinks[] = array('name' => $emailconfirm, 'link' => null, 'type' => 'misc');
101 $navigation = build_navigation($navlinks);
103 print_header($emailconfirm, $emailconfirm, $navigation);
104 notice(get_string('emailconfirmsent', '', $user->email), "$CFG->wwwroot/index.php");
105 } else {
106 return true;
111 * Returns true if plugin allows confirming of new users.
113 * @return bool
115 function can_confirm() {
116 return true;
120 * Confirm the new user as registered.
122 * @param string $username (with system magic quotes)
123 * @param string $confirmsecret (with system magic quotes)
125 function user_confirm($username, $confirmsecret) {
126 $user = get_complete_user_data('username', $username);
128 if (!empty($user)) {
129 if ($user->confirmed) {
130 return AUTH_CONFIRM_ALREADY;
132 } else if ($user->auth != 'email') {
133 return AUTH_CONFIRM_ERROR;
135 } else if ($user->secret == stripslashes($confirmsecret)) { // They have provided the secret key to get in
136 if (!set_field("user", "confirmed", 1, "id", $user->id)) {
137 return AUTH_CONFIRM_FAIL;
139 if (!set_field("user", "firstaccess", time(), "id", $user->id)) {
140 return AUTH_CONFIRM_FAIL;
142 return AUTH_CONFIRM_OK;
144 } else {
145 return AUTH_CONFIRM_ERROR;
149 function prevent_local_passwords() {
150 return false;
154 * Returns true if this authentication plugin is 'internal'.
156 * @return bool
158 function is_internal() {
159 return true;
163 * Returns true if this authentication plugin can change the user's
164 * password.
166 * @return bool
168 function can_change_password() {
169 return true;
173 * Returns the URL for changing the user's pw, or empty if the default can
174 * be used.
176 * @return mixed
178 function change_password_url() {
179 return ''; // use dafult internal method
183 * Returns true if plugin allows resetting of internal password.
185 * @return bool
187 function can_reset_password() {
188 return true;
192 * Prints a form for configuring this authentication plugin.
194 * This function is called from admin/auth.php, and outputs a full page with
195 * a form for configuring this plugin.
197 * @param array $page An object containing all the data for this page.
199 function config_form($config, $err, $user_fields) {
200 include "config.html";
204 * Processes and stores configuration data for this authentication plugin.
206 function process_config($config) {
207 // set to defaults if undefined
208 if (!isset($config->recaptcha)) {
209 $config->recaptcha = false;
212 // save settings
213 set_config('recaptcha', $config->recaptcha, 'auth/email');
214 return true;
218 * Returns whether or not the captcha element is enabled, and the admin settings fulfil its requirements.
219 * @abstract Implement in child classes
220 * @return bool
222 function is_captcha_enabled() {
223 return false;