Merge branch 'MDL-61801-33' of git://github.com/andrewnicols/moodle into MOODLE_33_STABLE
[moodle.git] / login / change_password.php
blobccc1cab82da53d69485f9362dda7c2f7cd557010
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 * Change password page.
21 * @package core
22 * @subpackage auth
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');
28 require_once($CFG->dirroot.'/user/lib.php');
29 require_once('change_password_form.php');
30 require_once($CFG->libdir.'/authlib.php');
31 require_once($CFG->dirroot.'/webservice/lib.php');
33 $id = optional_param('id', SITEID, PARAM_INT); // current course
34 $return = optional_param('return', 0, PARAM_BOOL); // redirect after password change
36 $systemcontext = context_system::instance();
38 //HTTPS is required in this page when $CFG->loginhttps enabled
39 $PAGE->https_required();
41 $PAGE->set_url('/login/change_password.php', array('id'=>$id));
43 $PAGE->set_context($systemcontext);
45 if ($return) {
46 // this redirect prevents security warning because https can not POST to http pages
47 if (empty($SESSION->wantsurl)
48 or stripos(str_replace('https://', 'http://', $SESSION->wantsurl), str_replace('https://', 'http://', $CFG->wwwroot.'/login/change_password.php')) === 0) {
49 $returnto = "$CFG->wwwroot/user/preferences.php?userid=$USER->id&course=$id";
50 } else {
51 $returnto = $SESSION->wantsurl;
53 unset($SESSION->wantsurl);
55 redirect($returnto);
58 $strparticipants = get_string('participants');
60 if (!$course = $DB->get_record('course', array('id'=>$id))) {
61 print_error('invalidcourseid');
64 // require proper login; guest user can not change password
65 if (!isloggedin() or isguestuser()) {
66 if (empty($SESSION->wantsurl)) {
67 $SESSION->wantsurl = $CFG->httpswwwroot.'/login/change_password.php';
69 redirect(get_login_url());
72 $PAGE->set_context(context_user::instance($USER->id));
73 $PAGE->set_pagelayout('admin');
74 $PAGE->set_course($course);
76 // do not require change own password cap if change forced
77 if (!get_user_preferences('auth_forcepasswordchange', false)) {
78 require_capability('moodle/user:changeownpassword', $systemcontext);
81 // do not allow "Logged in as" users to change any passwords
82 if (\core\session\manager::is_loggedinas()) {
83 print_error('cannotcallscript');
86 if (is_mnet_remote_user($USER)) {
87 $message = get_string('usercannotchangepassword', 'mnet');
88 if ($idprovider = $DB->get_record('mnet_host', array('id'=>$USER->mnethostid))) {
89 $message .= get_string('userchangepasswordlink', 'mnet', $idprovider);
91 print_error('userchangepasswordlink', 'mnet', '', $message);
94 // load the appropriate auth plugin
95 $userauth = get_auth_plugin($USER->auth);
97 if (!$userauth->can_change_password()) {
98 print_error('nopasswordchange', 'auth');
101 if ($changeurl = $userauth->change_password_url()) {
102 // this internal scrip not used
103 redirect($changeurl);
106 $mform = new login_change_password_form();
107 $mform->set_data(array('id'=>$course->id));
109 $navlinks = array();
110 $navlinks[] = array('name' => $strparticipants, 'link' => "$CFG->wwwroot/user/index.php?id=$course->id", 'type' => 'misc');
112 if ($mform->is_cancelled()) {
113 redirect($CFG->wwwroot.'/user/preferences.php?userid='.$USER->id.'&amp;course='.$course->id);
114 } else if ($data = $mform->get_data()) {
116 if (!$userauth->user_update_password($USER, $data->newpassword1)) {
117 print_error('errorpasswordupdate', 'auth');
120 user_add_password_history($USER->id, $data->newpassword1);
122 if (!empty($CFG->passwordchangelogout)) {
123 \core\session\manager::kill_user_sessions($USER->id, session_id());
126 if (!empty($data->signoutofotherservices)) {
127 webservice::delete_user_ws_tokens($USER->id);
130 // Reset login lockout - we want to prevent any accidental confusion here.
131 login_unlock_account($USER);
133 // register success changing password
134 unset_user_preference('auth_forcepasswordchange', $USER);
135 unset_user_preference('create_password', $USER);
137 $strpasswordchanged = get_string('passwordchanged');
139 $fullname = fullname($USER, true);
141 $PAGE->set_title($strpasswordchanged);
142 $PAGE->set_heading(fullname($USER));
143 echo $OUTPUT->header();
145 notice($strpasswordchanged, new moodle_url($PAGE->url, array('return'=>1)));
147 echo $OUTPUT->footer();
148 exit;
151 // make sure we really are on the https page when https login required
152 $PAGE->verify_https_required();
154 $strchangepassword = get_string('changepassword');
156 $fullname = fullname($USER, true);
158 $PAGE->set_title($strchangepassword);
159 $PAGE->set_heading($fullname);
160 echo $OUTPUT->header();
162 if (get_user_preferences('auth_forcepasswordchange')) {
163 echo $OUTPUT->notification(get_string('forcepasswordchangenotice'));
165 $mform->display();
166 echo $OUTPUT->footer();