3 // This file is part of Moodle - http://moodle.org/
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.
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/>.
23 * @copyright 1999 onwards Martin Dougiamas http://dougiamas.com
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 require('../config.php');
29 redirect_if_major_upgrade_required();
31 $testsession = optional_param('testsession', 0, PARAM_INT
); // test session works properly
32 $cancel = optional_param('cancel', 0, PARAM_BOOL
); // redirect to frontpage, needed for loginhttps
35 redirect(new moodle_url('/'));
38 //HTTPS is required in this page when $CFG->loginhttps enabled
39 $PAGE->https_required();
41 $context = get_context_instance(CONTEXT_SYSTEM
);
42 $PAGE->set_url("$CFG->httpswwwroot/login/index.php");
43 $PAGE->set_context($context);
44 $PAGE->set_pagelayout('login');
46 /// Initialize variables
50 // login page requested session test
52 if ($testsession == $USER->id
) {
53 if (isset($SESSION->wantsurl
)) {
54 $urltogo = $SESSION->wantsurl
;
56 $urltogo = $CFG->wwwroot
.'/';
58 unset($SESSION->wantsurl
);
61 // TODO: try to find out what is the exact reason why sessions do not work
62 $errormsg = get_string("cookiesnotenabled");
67 /// Check for timed out sessions
68 if (!empty($SESSION->has_timed_out
)) {
69 $session_has_timed_out = true;
70 unset($SESSION->has_timed_out
);
72 $session_has_timed_out = false;
75 /// auth plugins may override these - SSO anyone?
79 $authsequence = get_enabled_auth_plugins(true); // auths, in sequence
80 foreach($authsequence as $authname) {
81 $authplugin = get_auth_plugin($authname);
82 $authplugin->loginpage_hook();
86 /// Define variables used in page
89 $loginsite = get_string("loginsite");
90 $PAGE->navbar
->add($loginsite);
92 if ($user !== false or $frm !== false or $errormsg !== '') {
93 // some auth plugin already supplied full user, fake form data or prevented user login with error message
95 } else if (!empty($SESSION->wantsurl
) && file_exists($CFG->dirroot
.'/login/weblinkauth.php')) {
96 // Handles the case of another Moodle site linking into a page on this site
97 //TODO: move weblink into own auth plugin
98 include($CFG->dirroot
.'/login/weblinkauth.php');
99 if (function_exists('weblink_auth')) {
100 $user = weblink_auth($SESSION->wantsurl
);
103 $frm->username
= $user->username
;
105 $frm = data_submitted();
109 $frm = data_submitted();
112 /// Check if the user has actually submitted login data to us
114 if ($frm and isset($frm->username
)) { // Login WITH cookies
116 $frm->username
= trim(moodle_strtolower($frm->username
));
118 if (is_enabled_auth('none') ) {
119 if ($frm->username
!== clean_param($frm->username
, PARAM_USERNAME
)) {
120 $errormsg = get_string('username').': '.get_string("invalidusername");
127 //user already supplied by aut plugin prelogin hook
128 } else if (($frm->username
== 'guest') and empty($CFG->guestloginbutton
)) {
129 $user = false; /// Can't log in as guest if guest button is disabled
132 if (empty($errormsg)) {
133 $user = authenticate_user_login($frm->username
, $frm->password
);
137 // Intercept 'restored' users to provide them with info & reset password
138 if (!$user and $frm and is_restored_user($frm->username
)) {
139 $PAGE->set_title(get_string('restoredaccount'));
140 $PAGE->set_heading($site->fullname
);
141 echo $OUTPUT->header();
142 echo $OUTPUT->heading(get_string('restoredaccount'));
143 echo $OUTPUT->box(get_string('restoredaccountinfo'), 'generalbox boxaligncenter');
144 require_once('restored_password_form.php'); // Use our "supplanter" login_forgot_password_form. MDL-20846
145 $form = new login_forgot_password_form('forgot_password.php', array('username' => $frm->username
));
147 echo $OUTPUT->footer();
151 update_login_count();
156 if (isguestuser($user)) {
157 // no predefined language for guests - use existing session or default site lang
160 } else if (!empty($user->lang
)) {
161 // unset previous session language - use user preference instead
162 unset($SESSION->lang
);
165 if (empty($user->confirmed
)) { // This account was never confirmed
166 $PAGE->set_title(get_string("mustconfirm"));
167 $PAGE->set_heading($site->fullname
);
168 echo $OUTPUT->header();
169 echo $OUTPUT->heading(get_string("mustconfirm"));
170 echo $OUTPUT->box(get_string("emailconfirmsent", "", $user->email
), "generalbox boxaligncenter");
171 echo $OUTPUT->footer();
175 /// Let's get them all set up.
176 add_to_log(SITEID
, 'user', 'login', "view.php?id=$USER->id&course=".SITEID
,
177 $user->id
, 0, $user->id
);
178 complete_user_login($user, true); // sets the username cookie
180 /// Prepare redirection
181 if (user_not_fully_set_up($USER)) {
182 $urltogo = $CFG->wwwroot
.'/user/edit.php';
183 // We don't delete $SESSION->wantsurl yet, so we get there later
185 } else if (isset($SESSION->wantsurl
) and (strpos($SESSION->wantsurl
, $CFG->wwwroot
) === 0 or strpos($SESSION->wantsurl
, str_replace('http://', 'https://', $CFG->wwwroot
)) === 0)) {
186 $urltogo = $SESSION->wantsurl
; /// Because it's an address in this site
187 unset($SESSION->wantsurl
);
190 // no wantsurl stored or external - go to homepage
191 $urltogo = $CFG->wwwroot
.'/';
192 unset($SESSION->wantsurl
);
195 /// Go to my-moodle page instead of site homepage if defaulthomepage set to homepage_my
196 if (!empty($CFG->defaulthomepage
) && $CFG->defaulthomepage
== HOMEPAGE_MY
&& !is_siteadmin() && !isguestuser()) {
197 if ($urltogo == $CFG->wwwroot
or $urltogo == $CFG->wwwroot
.'/' or $urltogo == $CFG->wwwroot
.'/index.php') {
198 $urltogo = $CFG->wwwroot
.'/my/';
203 /// check if user password has expired
204 /// Currently supported only for ldap-authentication module
205 $userauth = get_auth_plugin($USER->auth
);
206 if (!empty($userauth->config
->expiration
) and $userauth->config
->expiration
== 1) {
207 if ($userauth->can_change_password()) {
208 $passwordchangeurl = $userauth->change_password_url();
209 if (!$passwordchangeurl) {
210 $passwordchangeurl = $CFG->httpswwwroot
.'/login/change_password.php';
213 $passwordchangeurl = $CFG->httpswwwroot
.'/login/change_password.php';
215 $days2expire = $userauth->password_expire($USER->username
);
216 $PAGE->set_title("$site->fullname: $loginsite");
217 $PAGE->set_heading("$site->fullname");
218 if (intval($days2expire) > 0 && intval($days2expire) < intval($userauth->config
->expiration_warning
)) {
219 echo $OUTPUT->header();
220 echo $OUTPUT->confirm(get_string('auth_passwordwillexpire', 'auth', $days2expire), $passwordchangeurl, $urltogo);
221 echo $OUTPUT->footer();
223 } elseif (intval($days2expire) < 0 ) {
224 echo $OUTPUT->header();
225 echo $OUTPUT->confirm(get_string('auth_passwordisexpired', 'auth'), $passwordchangeurl, $urltogo);
226 echo $OUTPUT->footer();
233 // test the session actually works by redirecting to self
234 $SESSION->wantsurl
= $urltogo;
235 redirect(new moodle_url(get_login_url(), array('testsession'=>$USER->id
)));
238 if (empty($errormsg)) {
239 $errormsg = get_string("invalidlogin");
245 /// Detect problems with timedout sessions
246 if ($session_has_timed_out and !data_submitted()) {
247 $errormsg = get_string('sessionerroruser', 'error');
251 /// First, let's remember where the user was trying to get to before they got here
253 if (empty($SESSION->wantsurl
)) {
254 $SESSION->wantsurl
= (array_key_exists('HTTP_REFERER',$_SERVER) &&
255 $_SERVER["HTTP_REFERER"] != $CFG->wwwroot
&&
256 $_SERVER["HTTP_REFERER"] != $CFG->wwwroot
.'/' &&
257 $_SERVER["HTTP_REFERER"] != $CFG->httpswwwroot
.'/login/' &&
258 $_SERVER["HTTP_REFERER"] != $CFG->httpswwwroot
.'/login/index.php')
259 ?
$_SERVER["HTTP_REFERER"] : NULL;
262 /// Redirect to alternative login URL if needed
263 if (!empty($CFG->alternateloginurl
)) {
264 $loginurl = $CFG->alternateloginurl
;
266 if (strpos($SESSION->wantsurl
, $loginurl) === 0) {
267 //we do not want to return to alternate url
268 $SESSION->wantsurl
= NULL;
272 if (strpos($loginurl, '?') === false) {
277 $loginurl .= 'errorcode='.$errorcode;
283 // make sure we really are on the https page when https login required
284 $PAGE->verify_https_required();
286 /// Generate the login page with forms
288 if (!isset($frm) or !is_object($frm)) {
289 $frm = new stdClass();
292 if (empty($frm->username
) && $authsequence[0] != 'shibboleth') { // See bug 5184
293 if (!empty($_GET["username"])) {
294 $frm->username
= $_GET["username"];
296 $frm->username
= get_moodle_cookie() === 'nobody' ?
'' : get_moodle_cookie();
302 if (!empty($frm->username
)) {
308 if (!empty($CFG->registerauth
) or is_enabled_auth('none') or !empty($CFG->auth_instructions
)) {
309 $show_instructions = true;
311 $show_instructions = false;
314 $potentialidps = array();
315 foreach($authsequence as $authname) {
316 $authplugin = get_auth_plugin($authname);
317 $potentialidps = array_merge($potentialidps, $authplugin->loginpage_idp_list($SESSION->wantsurl
));
320 $PAGE->set_title("$site->fullname: $loginsite");
321 $PAGE->set_heading("$site->fullname");
323 echo $OUTPUT->header();
325 if (isloggedin() and !isguestuser()) {
326 // prevent logging when already logged in, we do not want them to relogin by accident because sesskey would be changed
327 echo $OUTPUT->box_start();
328 $logout = new single_button(new moodle_url($CFG->httpswwwroot
.'/login/logout.php', array('sesskey'=>sesskey(),'loginpage'=>1)), get_string('logout'), 'post');
329 $continue = new single_button(new moodle_url($CFG->httpswwwroot
.'/login/index.php', array('cancel'=>1)), get_string('cancel'), 'get');
330 echo $OUTPUT->confirm(get_string('alreadyloggedin', 'error', fullname($USER)), $logout, $continue);
331 echo $OUTPUT->box_end();
333 include("index_form.html");
334 if (!empty($CFG->loginpageautofocus
)) {
335 //focus username or password
336 $PAGE->requires
->js_init_call('M.util.focus_login_form', null, true);
340 echo $OUTPUT->footer();