3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
22 namespace MediaWiki\Auth
;
27 * A primary authentication provider that uses the temporary password field in
30 * A successful login will force a password reset.
32 * @note For proper operation, this should generally come before any other
33 * password-based authentication providers.
37 class TemporaryPasswordPrimaryAuthenticationProvider
38 extends AbstractPasswordPrimaryAuthenticationProvider
41 protected $emailEnabled = null;
44 protected $newPasswordExpiry = null;
47 protected $passwordReminderResendTime = null;
50 * @param array $params
51 * - emailEnabled: (bool) must be true for the option to email passwords to be present
52 * - newPasswordExpiry: (int) expiraton time of temporary passwords, in seconds
53 * - passwordReminderResendTime: (int) cooldown period in hours until a password reminder can
54 * be sent to the same user again,
56 public function __construct( $params = [] ) {
57 parent
::__construct( $params );
59 if ( isset( $params['emailEnabled'] ) ) {
60 $this->emailEnabled
= (bool)$params['emailEnabled'];
62 if ( isset( $params['newPasswordExpiry'] ) ) {
63 $this->newPasswordExpiry
= (int)$params['newPasswordExpiry'];
65 if ( isset( $params['passwordReminderResendTime'] ) ) {
66 $this->passwordReminderResendTime
= $params['passwordReminderResendTime'];
70 public function setConfig( \Config
$config ) {
71 parent
::setConfig( $config );
73 if ( $this->emailEnabled
=== null ) {
74 $this->emailEnabled
= $this->config
->get( 'EnableEmail' );
76 if ( $this->newPasswordExpiry
=== null ) {
77 $this->newPasswordExpiry
= $this->config
->get( 'NewPasswordExpiry' );
79 if ( $this->passwordReminderResendTime
=== null ) {
80 $this->passwordReminderResendTime
= $this->config
->get( 'PasswordReminderResendTime' );
84 protected function getPasswordResetData( $username, $data ) {
87 'msg' => wfMessage( 'resetpass-temp-emailed' ),
92 public function getAuthenticationRequests( $action, array $options ) {
94 case AuthManager
::ACTION_LOGIN
:
95 return [ new PasswordAuthenticationRequest() ];
97 case AuthManager
::ACTION_CHANGE
:
98 return [ TemporaryPasswordAuthenticationRequest
::newRandom() ];
100 case AuthManager
::ACTION_CREATE
:
101 if ( isset( $options['username'] ) && $this->emailEnabled
) {
102 // Creating an account for someone else
103 return [ TemporaryPasswordAuthenticationRequest
::newRandom() ];
105 // It's not terribly likely that an anonymous user will
106 // be creating an account for someone else.
110 case AuthManager
::ACTION_REMOVE
:
111 return [ new TemporaryPasswordAuthenticationRequest
];
118 public function beginPrimaryAuthentication( array $reqs ) {
119 $req = AuthenticationRequest
::getRequestByClass( $reqs, PasswordAuthenticationRequest
::class );
120 if ( !$req ||
$req->username
=== null ||
$req->password
=== null ) {
121 return AuthenticationResponse
::newAbstain();
124 $username = User
::getCanonicalName( $req->username
, 'usable' );
125 if ( $username === false ) {
126 return AuthenticationResponse
::newAbstain();
129 $dbr = wfGetDB( DB_REPLICA
);
130 $row = $dbr->selectRow(
133 'user_id', 'user_newpassword', 'user_newpass_time',
135 [ 'user_name' => $username ],
139 return AuthenticationResponse
::newAbstain();
142 $status = $this->checkPasswordValidity( $username, $req->password
);
143 if ( !$status->isOK() ) {
144 // Fatal, can't log in
145 return AuthenticationResponse
::newFail( $status->getMessage() );
148 $pwhash = $this->getPassword( $row->user_newpassword
);
149 if ( !$pwhash->equals( $req->password
) ) {
150 return $this->failResponse( $req );
153 if ( !$this->isTimestampValid( $row->user_newpass_time
) ) {
154 return $this->failResponse( $req );
157 $this->setPasswordResetFlag( $username, $status );
159 return AuthenticationResponse
::newPass( $username );
162 public function testUserCanAuthenticate( $username ) {
163 $username = User
::getCanonicalName( $username, 'usable' );
164 if ( $username === false ) {
168 $dbr = wfGetDB( DB_REPLICA
);
169 $row = $dbr->selectRow(
171 [ 'user_newpassword', 'user_newpass_time' ],
172 [ 'user_name' => $username ],
179 if ( $this->getPassword( $row->user_newpassword
) instanceof \InvalidPassword
) {
183 if ( !$this->isTimestampValid( $row->user_newpass_time
) ) {
190 public function testUserExists( $username, $flags = User
::READ_NORMAL
) {
191 $username = User
::getCanonicalName( $username, 'usable' );
192 if ( $username === false ) {
196 list( $db, $options ) = \DBAccessObjectUtils
::getDBOptions( $flags );
197 return (bool)wfGetDB( $db )->selectField(
200 [ 'user_name' => $username ],
206 public function providerAllowsAuthenticationDataChange(
207 AuthenticationRequest
$req, $checkData = true
209 if ( get_class( $req ) !== TemporaryPasswordAuthenticationRequest
::class ) {
210 // We don't really ignore it, but this is what the caller expects.
211 return \StatusValue
::newGood( 'ignored' );
215 return \StatusValue
::newGood();
218 $username = User
::getCanonicalName( $req->username
, 'usable' );
219 if ( $username === false ) {
220 return \StatusValue
::newGood( 'ignored' );
223 $row = wfGetDB( DB_MASTER
)->selectRow(
225 [ 'user_id', 'user_newpass_time' ],
226 [ 'user_name' => $username ],
231 return \StatusValue
::newGood( 'ignored' );
234 $sv = \StatusValue
::newGood();
235 if ( $req->password
!== null ) {
236 $sv->merge( $this->checkPasswordValidity( $username, $req->password
) );
238 if ( $req->mailpassword
) {
239 if ( !$this->emailEnabled
&& !$req->hasBackchannel
) {
240 return \StatusValue
::newFatal( 'passwordreset-emaildisabled' );
243 // We don't check whether the user has an email address;
244 // that information should not be exposed to the caller.
246 // do not allow temporary password creation within
247 // $wgPasswordReminderResendTime from the last attempt
249 $this->passwordReminderResendTime
250 && $row->user_newpass_time
251 && time() < wfTimestamp( TS_UNIX
, $row->user_newpass_time
)
252 +
$this->passwordReminderResendTime
* 3600
254 // Round the time in hours to 3 d.p., in case someone is specifying
255 // minutes or seconds.
256 return \StatusValue
::newFatal( 'throttled-mailpassword',
257 round( $this->passwordReminderResendTime
, 3 ) );
260 if ( !$req->caller
) {
261 return \StatusValue
::newFatal( 'passwordreset-nocaller' );
263 if ( !\IP
::isValid( $req->caller
) ) {
264 $caller = User
::newFromName( $req->caller
);
266 return \StatusValue
::newFatal( 'passwordreset-nosuchcaller', $req->caller
);
274 public function providerChangeAuthenticationData( AuthenticationRequest
$req ) {
275 $username = $req->username
!== null ? User
::getCanonicalName( $req->username
, 'usable' ) : false;
276 if ( $username === false ) {
280 $dbw = wfGetDB( DB_MASTER
);
283 if ( $req->action
!== AuthManager
::ACTION_REMOVE
&&
284 get_class( $req ) === TemporaryPasswordAuthenticationRequest
::class
286 $pwhash = $this->getPasswordFactory()->newFromPlaintext( $req->password
);
287 $newpassTime = $dbw->timestamp();
288 $sendMail = $req->mailpassword
;
290 // Invalidate the temporary password when any other auth is reset, or when removing
291 $pwhash = $this->getPasswordFactory()->newFromCiphertext( null );
298 'user_newpassword' => $pwhash->toString(),
299 'user_newpass_time' => $newpassTime,
301 [ 'user_name' => $username ],
306 // Send email after DB commit
307 $dbw->onTransactionIdle(
308 function () use ( $req ) {
309 /** @var TemporaryPasswordAuthenticationRequest $req */
310 $this->sendPasswordResetEmail( $req );
317 public function accountCreationType() {
318 return self
::TYPE_CREATE
;
321 public function testForAccountCreation( $user, $creator, array $reqs ) {
322 /** @var TemporaryPasswordAuthenticationRequest $req */
323 $req = AuthenticationRequest
::getRequestByClass(
324 $reqs, TemporaryPasswordAuthenticationRequest
::class
327 $ret = \StatusValue
::newGood();
329 if ( $req->mailpassword
&& !$req->hasBackchannel
) {
330 if ( !$this->emailEnabled
) {
331 $ret->merge( \StatusValue
::newFatal( 'emaildisabled' ) );
332 } elseif ( !$user->getEmail() ) {
333 $ret->merge( \StatusValue
::newFatal( 'noemailcreate' ) );
338 $this->checkPasswordValidity( $user->getName(), $req->password
)
344 public function beginPrimaryAccountCreation( $user, $creator, array $reqs ) {
345 /** @var TemporaryPasswordAuthenticationRequest $req */
346 $req = AuthenticationRequest
::getRequestByClass(
347 $reqs, TemporaryPasswordAuthenticationRequest
::class
350 if ( $req->username
!== null && $req->password
!== null ) {
351 // Nothing we can do yet, because the user isn't in the DB yet
352 if ( $req->username
!== $user->getName() ) {
353 $req = clone( $req );
354 $req->username
= $user->getName();
357 if ( $req->mailpassword
) {
358 // prevent EmailNotificationSecondaryAuthenticationProvider from sending another mail
359 $this->manager
->setAuthenticationSessionData( 'no-email', true );
362 $ret = AuthenticationResponse
::newPass( $req->username
);
363 $ret->createRequest
= $req;
367 return AuthenticationResponse
::newAbstain();
370 public function finishAccountCreation( $user, $creator, AuthenticationResponse
$res ) {
371 /** @var TemporaryPasswordAuthenticationRequest $req */
372 $req = $res->createRequest
;
373 $mailpassword = $req->mailpassword
;
374 $req->mailpassword
= false; // providerChangeAuthenticationData would send the wrong email
376 // Now that the user is in the DB, set the password on it.
377 $this->providerChangeAuthenticationData( $req );
379 if ( $mailpassword ) {
380 // Send email after DB commit
381 wfGetDB( DB_MASTER
)->onTransactionIdle(
382 function () use ( $user, $creator, $req ) {
383 $this->sendNewAccountEmail( $user, $creator, $req->password
);
389 return $mailpassword ?
'byemail' : null;
393 * Check that a temporary password is still valid (hasn't expired).
394 * @param string $timestamp A timestamp in MediaWiki (TS_MW) format
397 protected function isTimestampValid( $timestamp ) {
398 $time = wfTimestampOrNull( TS_MW
, $timestamp );
399 if ( $time !== null ) {
400 $expiry = wfTimestamp( TS_UNIX
, $time ) +
$this->newPasswordExpiry
;
401 if ( time() >= $expiry ) {
409 * Send an email about the new account creation and the temporary password.
410 * @param User $user The new user account
411 * @param User $creatingUser The user who created the account (can be anonymous)
412 * @param string $password The temporary password
415 protected function sendNewAccountEmail( User
$user, User
$creatingUser, $password ) {
416 $ip = $creatingUser->getRequest()->getIP();
417 // @codeCoverageIgnoreStart
419 return \Status
::newFatal( 'badipaddress' );
421 // @codeCoverageIgnoreEnd
423 \Hooks
::run( 'User::mailPasswordInternal', [ &$creatingUser, &$ip, &$user ] );
425 $mainPageUrl = \Title
::newMainPage()->getCanonicalURL();
426 $userLanguage = $user->getOption( 'language' );
427 $subjectMessage = wfMessage( 'createaccount-title' )->inLanguage( $userLanguage );
428 $bodyMessage = wfMessage( 'createaccount-text', $ip, $user->getName(), $password,
429 '<' . $mainPageUrl . '>', round( $this->newPasswordExpiry
/ 86400 ) )
430 ->inLanguage( $userLanguage );
432 $status = $user->sendMail( $subjectMessage->text(), $bodyMessage->text() );
434 // TODO show 'mailerror' message on error, 'accmailtext' success message otherwise?
435 // @codeCoverageIgnoreStart
436 if ( !$status->isGood() ) {
437 $this->logger
->warning( 'Could not send account creation email: ' .
438 $status->getWikiText( false, false, 'en' ) );
440 // @codeCoverageIgnoreEnd
446 * @param TemporaryPasswordAuthenticationRequest $req
449 protected function sendPasswordResetEmail( TemporaryPasswordAuthenticationRequest
$req ) {
450 $user = User
::newFromName( $req->username
);
452 return \Status
::newFatal( 'noname' );
454 $userLanguage = $user->getOption( 'language' );
455 $callerIsAnon = \IP
::isValid( $req->caller
);
456 $callerName = $callerIsAnon ?
$req->caller
: User
::newFromName( $req->caller
)->getName();
457 $passwordMessage = wfMessage( 'passwordreset-emailelement', $user->getName(),
458 $req->password
)->inLanguage( $userLanguage );
459 $emailMessage = wfMessage( $callerIsAnon ?
'passwordreset-emailtext-ip'
460 : 'passwordreset-emailtext-user' )->inLanguage( $userLanguage );
461 $emailMessage->params( $callerName, $passwordMessage->text(), 1,
462 '<' . \Title
::newMainPage()->getCanonicalURL() . '>',
463 round( $this->newPasswordExpiry
/ 86400 ) );
464 $emailTitle = wfMessage( 'passwordreset-emailtitle' )->inLanguage( $userLanguage );
465 return $user->sendMail( $emailTitle->text(), $emailMessage->text() );