1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup Auth
*/
namespace MediaWiki\Auth;
use MediaWiki\Message\Message;
use MediaWiki\User\User;
/**
* Reset the local password, if signalled via $this->manager->setAuthenticationSessionData()
*
* The authentication data key is 'reset-pass'; the data is an object with the
* following properties:
* - msg: Message object to display to the user
* - hard: Boolean, if true the reset cannot be skipped.
* - req: Optional PasswordAuthenticationRequest to use to actually reset the
* password. Won't be displayed to the user.
*
* @ingroup Auth
* @since 1.27
*/
class ResetPasswordSecondaryAuthenticationProvider extends AbstractSecondaryAuthenticationProvider {
public function getAuthenticationRequests( $action, array $options ) {
return [];
}
public function beginSecondaryAuthentication( $user, array $reqs ) {
return $this->tryReset( $user, $reqs );
}
public function continueSecondaryAuthentication( $user, array $reqs ) {
return $this->tryReset( $user, $reqs );
}
public function beginSecondaryAccountCreation( $user, $creator, array $reqs ) {
return $this->tryReset( $user, $reqs );
}
public function continueSecondaryAccountCreation( $user, $creator, array $reqs ) {
return $this->tryReset( $user, $reqs );
}
/**
* Try to reset the password
* @param User $user
* @param AuthenticationRequest[] $reqs
* @return AuthenticationResponse
*/
protected function tryReset( User $user, array $reqs ) {
$data = $this->manager->getAuthenticationSessionData( 'reset-pass' );
if ( !$data ) {
return AuthenticationResponse::newAbstain();
}
if ( is_array( $data ) ) {
$data = (object)$data;
}
if ( !is_object( $data ) ) {
throw new \UnexpectedValueException( 'reset-pass is not valid' );
}
if ( !isset( $data->msg ) ) {
throw new \UnexpectedValueException( 'reset-pass msg is missing' );
} elseif ( !$data->msg instanceof Message ) {
throw new \UnexpectedValueException( 'reset-pass msg is not valid' );
} elseif ( !isset( $data->hard ) ) {
throw new \UnexpectedValueException( 'reset-pass hard is missing' );
} elseif ( isset( $data->req ) && (
!$data->req instanceof PasswordAuthenticationRequest ||
!array_key_exists( 'retype', $data->req->getFieldInfo() )
) ) {
throw new \UnexpectedValueException( 'reset-pass req is not valid' );
}
if ( !$data->hard ) {
$req = ButtonAuthenticationRequest::getRequestByName( $reqs, 'skipReset' );
if ( $req ) {
$this->manager->removeAuthenticationSessionData( 'reset-pass' );
return AuthenticationResponse::newPass();
}
}
/** @var PasswordAuthenticationRequest $needReq */
$needReq = $data->req ?? new PasswordAuthenticationRequest();
'@phan-var PasswordAuthenticationRequest $needReq';
if ( !$needReq->action ) {
$needReq->action = AuthManager::ACTION_CHANGE;
}
$needReq->required = $data->hard ? AuthenticationRequest::REQUIRED
: AuthenticationRequest::OPTIONAL;
$needReqs = [ $needReq ];
if ( !$data->hard ) {
$needReqs[] = new ButtonAuthenticationRequest(
'skipReset',
wfMessage( 'authprovider-resetpass-skip-label' ),
wfMessage( 'authprovider-resetpass-skip-help' )
);
}
/** @var PasswordAuthenticationRequest $req */
$req = AuthenticationRequest::getRequestByClass( $reqs, get_class( $needReq ) );
'@phan-var PasswordAuthenticationRequest $req';
if ( !$req || !array_key_exists( 'retype', $req->getFieldInfo() ) ) {
return AuthenticationResponse::newUI( $needReqs, $data->msg, 'warning' );
}
if ( $req->password !== $req->retype ) {
return AuthenticationResponse::newUI( $needReqs, new Message( 'badretype' ), 'error' );
}
$req->username = $user->getName();
$status = $this->manager->allowsAuthenticationDataChange( $req );
if ( !$status->isGood() ) {
return AuthenticationResponse::newUI( $needReqs, $status->getMessage(), 'error' );
}
$this->manager->changeAuthenticationData( $req );
$this->manager->removeAuthenticationSessionData( 'reset-pass' );
return AuthenticationResponse::newPass();
}
}
|