Merge "Allow adding Deleted log entries"
[lhc/web/wiklou.git] / includes / specials / SpecialChangePassword.php
1 <?php
2 /**
3 * Implements Special:ChangePassword
4 *
5 * This program 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 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program 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.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Let users recover their password.
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialChangePassword extends FormSpecialPage {
30 protected $mUserName;
31 protected $mDomain;
32
33 // Optional Wikitext Message to show above the password change form
34 protected $mPreTextMessage = null;
35
36 // label for old password input
37 protected $mOldPassMsg = null;
38
39 public function __construct() {
40 parent::__construct( 'ChangePassword', 'editmyprivateinfo' );
41 $this->listed( false );
42 }
43
44 /**
45 * Main execution point
46 */
47 function execute( $par ) {
48 $this->getOutput()->disallowUserJs();
49
50 parent::execute( $par );
51 }
52
53 protected function checkExecutePermissions( User $user ) {
54 parent::checkExecutePermissions( $user );
55
56 if ( !$this->getRequest()->wasPosted() ) {
57 $this->requireLogin( 'resetpass-no-info' );
58 }
59 }
60
61 /**
62 * Set a message at the top of the Change Password form
63 * @since 1.23
64 * @param Message $msg to parse and add to the form header
65 */
66 public function setChangeMessage( Message $msg ) {
67 $this->mPreTextMessage = $msg;
68 }
69
70 /**
71 * Set a message at the top of the Change Password form
72 * @since 1.23
73 * @param string $msg Message label for old/temp password field
74 */
75 public function setOldPasswordMessage( $msg ) {
76 $this->mOldPassMsg = $msg;
77 }
78
79 protected function getFormFields() {
80 global $wgCookieExpiration;
81
82 $user = $this->getUser();
83 $request = $this->getRequest();
84
85 $oldpassMsg = $this->mOldPassMsg;
86 if ( $oldpassMsg === null ) {
87 $oldpassMsg = $user->isLoggedIn() ? 'oldpassword' : 'resetpass-temp-password';
88 }
89
90 $fields = array(
91 'Name' => array(
92 'type' => 'info',
93 'label-message' => 'username',
94 'default' => $request->getVal( 'wpName', $user->getName() ),
95 ),
96 'Password' => array(
97 'type' => 'password',
98 'label-message' => $oldpassMsg,
99 ),
100 'NewPassword' => array(
101 'type' => 'password',
102 'label-message' => 'newpassword',
103 ),
104 'Retype' => array(
105 'type' => 'password',
106 'label-message' => 'retypenew',
107 ),
108 );
109
110 if ( !$this->getUser()->isLoggedIn() ) {
111 if ( !LoginForm::getLoginToken() ) {
112 LoginForm::setLoginToken();
113 }
114 $fields['LoginOnChangeToken'] = array(
115 'type' => 'hidden',
116 'label' => 'Change Password Token',
117 'default' => LoginForm::getLoginToken(),
118 );
119 }
120
121 $extraFields = array();
122 wfRunHooks( 'ChangePasswordForm', array( &$extraFields ) );
123 foreach ( $extraFields as $extra ) {
124 list( $name, $label, $type, $default ) = $extra;
125 $fields[$name] = array(
126 'type' => $type,
127 'name' => $name,
128 'label-message' => $label,
129 'default' => $default,
130 );
131 }
132
133 if ( !$user->isLoggedIn() ) {
134 $fields['Remember'] = array(
135 'type' => 'check',
136 'label' => $this->msg( 'remembermypassword' )
137 ->numParams( ceil( $wgCookieExpiration / ( 3600 * 24 ) ) )
138 ->text(),
139 'default' => $request->getVal( 'wpRemember' ),
140 );
141 }
142
143 return $fields;
144 }
145
146 protected function alterForm( HTMLForm $form ) {
147 $form->setId( 'mw-resetpass-form' );
148 $form->setTableId( 'mw-resetpass-table' );
149 $form->setWrapperLegendMsg( 'resetpass_header' );
150 $form->setSubmitTextMsg(
151 $this->getUser()->isLoggedIn()
152 ? 'resetpass-submit-loggedin'
153 : 'resetpass_submit'
154 );
155 $form->addButton( 'wpCancel', $this->msg( 'resetpass-submit-cancel' )->text() );
156 $form->setHeaderText( $this->msg( 'resetpass_text' )->parseAsBlock() );
157 if ( $this->mPreTextMessage instanceof Message ) {
158 $form->addPreText( $this->mPreTextMessage->parseAsBlock() );
159 }
160 $form->addHiddenFields(
161 $this->getRequest()->getValues( 'wpName', 'wpDomain', 'returnto', 'returntoquery' ) );
162 }
163
164 public function onSubmit( array $data ) {
165 global $wgAuth;
166
167 $request = $this->getRequest();
168
169 if ( $request->getCheck( 'wpLoginToken' ) ) {
170 // This comes from Special:Userlogin when logging in with a temporary password
171 return false;
172 }
173
174 if ( !$this->getUser()->isLoggedIn()
175 && $request->getVal( 'wpLoginOnChangeToken' ) !== LoginForm::getLoginToken()
176 ) {
177 // Potential CSRF (bug 62497)
178 return false;
179 }
180
181 if ( $request->getCheck( 'wpCancel' ) ) {
182 $titleObj = Title::newFromText( $request->getVal( 'returnto' ) );
183 if ( !$titleObj instanceof Title ) {
184 $titleObj = Title::newMainPage();
185 }
186 $query = $request->getVal( 'returntoquery' );
187 $this->getOutput()->redirect( $titleObj->getFullURL( $query ) );
188
189 return true;
190 }
191
192 try {
193 $this->mUserName = $request->getVal( 'wpName', $this->getUser()->getName() );
194 $this->mDomain = $wgAuth->getDomain();
195
196 if ( !$wgAuth->allowPasswordChange() ) {
197 throw new ErrorPageError( 'changepassword', 'resetpass_forbidden' );
198 }
199
200 $this->attemptReset( $data['Password'], $data['NewPassword'], $data['Retype'] );
201
202 return true;
203 } catch ( PasswordError $e ) {
204 return $e->getMessage();
205 }
206 }
207
208 public function onSuccess() {
209 if ( $this->getUser()->isLoggedIn() ) {
210 $this->getOutput()->wrapWikiMsg(
211 "<div class=\"successbox\">\n$1\n</div>",
212 'changepassword-success'
213 );
214 $this->getOutput()->returnToMain();
215 } else {
216 $request = $this->getRequest();
217 LoginForm::setLoginToken();
218 $token = LoginForm::getLoginToken();
219 $data = array(
220 'action' => 'submitlogin',
221 'wpName' => $this->mUserName,
222 'wpDomain' => $this->mDomain,
223 'wpLoginToken' => $token,
224 'wpPassword' => $request->getVal( 'wpNewPassword' ),
225 ) + $request->getValues( 'wpRemember', 'returnto', 'returntoquery' );
226 $login = new LoginForm( new DerivativeRequest( $request, $data, true ) );
227 $login->setContext( $this->getContext() );
228 $login->execute( null );
229 }
230 }
231
232 /**
233 * @throws PasswordError when cannot set the new password because requirements not met.
234 */
235 protected function attemptReset( $oldpass, $newpass, $retype ) {
236 global $wgPasswordAttemptThrottle;
237
238 $isSelf = ( $this->mUserName === $this->getUser()->getName() );
239 if ( $isSelf ) {
240 $user = $this->getUser();
241 } else {
242 $user = User::newFromName( $this->mUserName );
243 }
244
245 if ( !$user || $user->isAnon() ) {
246 throw new PasswordError( $this->msg( 'nosuchusershort', $this->mUserName )->text() );
247 }
248
249 if ( $newpass !== $retype ) {
250 wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'badretype' ) );
251 throw new PasswordError( $this->msg( 'badretype' )->text() );
252 }
253
254 $throttleCount = LoginForm::incLoginThrottle( $this->mUserName );
255 if ( $throttleCount === true ) {
256 $lang = $this->getLanguage();
257 throw new PasswordError( $this->msg( 'changepassword-throttled' )
258 ->params( $lang->formatDuration( $wgPasswordAttemptThrottle['seconds'] ) )
259 ->text()
260 );
261 }
262
263 // @TODO Make these separate messages, since the message is written for both cases
264 if ( !$user->checkTemporaryPassword( $oldpass ) && !$user->checkPassword( $oldpass ) ) {
265 wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'wrongpassword' ) );
266 throw new PasswordError( $this->msg( 'resetpass-wrong-oldpass' )->text() );
267 }
268
269 // User is resetting their password to their old password
270 if ( $oldpass === $newpass ) {
271 throw new PasswordError( $this->msg( 'resetpass-recycled' )->text() );
272 }
273
274 // Do AbortChangePassword after checking mOldpass, so we don't leak information
275 // by possibly aborting a new password before verifying the old password.
276 $abortMsg = 'resetpass-abort-generic';
277 if ( !wfRunHooks( 'AbortChangePassword', array( $user, $oldpass, $newpass, &$abortMsg ) ) ) {
278 wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'abortreset' ) );
279 throw new PasswordError( $this->msg( $abortMsg )->text() );
280 }
281
282 // Please reset throttle for successful logins, thanks!
283 if ( $throttleCount ) {
284 LoginForm::clearLoginThrottle( $this->mUserName );
285 }
286
287 try {
288 $user->setPassword( $newpass );
289 wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'success' ) );
290 } catch ( PasswordError $e ) {
291 wfRunHooks( 'PrefsPasswordAudit', array( $user, $newpass, 'error' ) );
292 throw new PasswordError( $e->getMessage() );
293 }
294
295 if ( $isSelf ) {
296 // This is needed to keep the user connected since
297 // changing the password also modifies the user's token.
298 $remember = $this->getRequest()->getCookie( 'Token' ) !== null;
299 $user->setCookies( null, null, $remember );
300 }
301 $user->resetPasswordExpiration();
302 $user->saveSettings();
303 }
304
305 public function requiresUnblock() {
306 return false;
307 }
308
309 protected function getGroupName() {
310 return 'users';
311 }
312 }