3 * User password reset helper for MediaWiki.
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.
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.
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
23 use MediaWiki\Auth\AuthManager
;
24 use MediaWiki\Auth\TemporaryPasswordAuthenticationRequest
;
27 * Helper class for the password reset functionality shared by the web UI and the API.
29 * Requires the TemporaryPasswordPrimaryAuthenticationProvider and the
30 * EmailNotificationSecondaryAuthenticationProvider (or something providing equivalent
31 * functionality) to be enabled.
37 /** @var AuthManager */
38 protected $authManager;
41 * In-process cache for isAllowed lookups, by username. Contains pairs of StatusValue objects
42 * (for false and true value of $displayPassword, respectively).
45 private $permissionCache;
47 public function __construct( Config
$config, AuthManager
$authManager ) {
48 $this->config
= $config;
49 $this->authManager
= $authManager;
50 $this->permissionCache
= new HashBagOStuff( [ 'maxKeys' => 1 ] );
54 * Check if a given user has permission to use this functionality.
56 * @param bool $displayPassword If set, also check whether the user is allowed to reset the
57 * password of another user and see the temporary password.
60 public function isAllowed( User
$user, $displayPassword = false ) {
61 $statuses = $this->permissionCache
->get( $user->getName() );
63 list ( $status, $status2 ) = $statuses;
65 $resetRoutes = $this->config
->get( 'PasswordResetRoutes' );
66 $status = StatusValue
::newGood();
68 if ( !is_array( $resetRoutes ) ||
69 !in_array( true, array_values( $resetRoutes ), true )
71 // Maybe password resets are disabled, or there are no allowable routes
72 $status = StatusValue
::newFatal( 'passwordreset-disabled' );
74 ( $providerStatus = $this->authManager
->allowsAuthenticationDataChange(
75 new TemporaryPasswordAuthenticationRequest(), false ) )
76 && !$providerStatus->isGood()
78 // Maybe the external auth plugin won't allow local password changes
79 $status = StatusValue
::newFatal( 'resetpass_forbidden-reason',
80 $providerStatus->getMessage() );
81 } elseif ( !$this->config
->get( 'EnableEmail' ) ) {
82 // Maybe email features have been disabled
83 $status = StatusValue
::newFatal( 'passwordreset-emaildisabled' );
84 } elseif ( !$user->isAllowed( 'editmyprivateinfo' ) ) {
85 // Maybe not all users have permission to change private data
86 $status = StatusValue
::newFatal( 'badaccess' );
87 } elseif ( $user->isBlocked() ) {
88 // Maybe the user is blocked (check this here rather than relying on the parent
89 // method as we have a more specific error message to use here
90 $status = StatusValue
::newFatal( 'blocked-mailpassword' );
93 $status2 = StatusValue
::newGood();
94 if ( !$user->isAllowed( 'passwordreset' ) ) {
95 $status2 = StatusValue
::newFatal( 'badaccess' );
98 $this->permissionCache
->set( $user->getName(), [ $status, $status2 ] );
101 if ( !$displayPassword ||
!$status->isGood() ) {
109 * Do a password reset. Authorization is the caller's responsibility.
111 * Process the form. At this point we know that the user passes all the criteria in
112 * userCanExecute(), and if the data array contains 'Username', etc, then Username
113 * resets are allowed.
114 * @param User $performingUser The user that does the password reset
115 * @param string $username The user whose password is reset
116 * @param string $email Alternative way to specify the user
117 * @param bool $displayPassword Whether to display the password
118 * @return StatusValue Will contain the passwords as a username => password array if the
119 * $displayPassword flag was set
120 * @throws LogicException When the user is not allowed to perform the action
121 * @throws MWException On unexpected DB errors
123 public function execute(
124 User
$performingUser, $username = null, $email = null, $displayPassword = false
126 if ( !$this->isAllowed( $performingUser, $displayPassword )->isGood() ) {
127 $action = $this->isAllowed( $performingUser )->isGood() ?
'display' : 'reset';
128 throw new LogicException( 'User ' . $performingUser->getName()
129 . ' is not allowed to ' . $action . ' passwords' );
132 $resetRoutes = $this->config
->get( 'PasswordResetRoutes' )
133 +
[ 'username' => false, 'email' => false ];
134 if ( $resetRoutes['username'] && $username ) {
135 $method = 'username';
136 $users = [ User
::newFromName( $username ) ];
137 } elseif ( $resetRoutes['email'] && $email ) {
138 if ( !Sanitizer
::validateEmail( $email ) ) {
139 return StatusValue
::newFatal( 'passwordreset-invalidemail' );
142 $users = $this->getUsersByEmail( $email );
144 // The user didn't supply any data
145 return StatusValue
::newFatal( 'passwordreset-nodata' );
148 // Check for hooks (captcha etc), and allow them to modify the users list
151 'Username' => $username,
153 'Capture' => $displayPassword ?
'1' : null,
155 if ( !Hooks
::run( 'SpecialPasswordResetOnSubmit', [ &$users, $data, &$error ] ) ) {
156 return StatusValue
::newFatal( Message
::newFromSpecifier( $error ) );
160 if ( $method === 'email' ) {
161 // Don't reveal whether or not an email address is in use
162 return StatusValue
::newGood( [] );
164 return StatusValue
::newFatal( 'noname' );
168 $firstUser = $users[0];
170 if ( !$firstUser instanceof User ||
!$firstUser->getId() ) {
171 // Don't parse username as wikitext (bug 65501)
172 return StatusValue
::newFatal( wfMessage( 'nosuchuser', wfEscapeWikiText( $username ) ) );
175 // Check against the rate limiter
176 if ( $performingUser->pingLimiter( 'mailpassword' ) ) {
177 return StatusValue
::newFatal( 'actionthrottledtext' );
180 // All the users will have the same email address
181 if ( !$firstUser->getEmail() ) {
182 // This won't be reachable from the email route, so safe to expose the username
183 return StatusValue
::newFatal( wfMessage( 'noemail',
184 wfEscapeWikiText( $firstUser->getName() ) ) );
187 // We need to have a valid IP address for the hook, but per bug 18347, we should
188 // send the user's name if they're logged in.
189 $ip = $performingUser->getRequest()->getIP();
191 return StatusValue
::newFatal( 'badipaddress' );
194 Hooks
::run( 'User::mailPasswordInternal', [ &$performingUser, &$ip, &$firstUser ] );
196 $result = StatusValue
::newGood();
198 foreach ( $users as $user ) {
199 $req = TemporaryPasswordAuthenticationRequest
::newRandom();
200 $req->username
= $user->getName();
201 $req->mailpassword
= true;
202 $req->hasBackchannel
= $displayPassword;
203 $req->caller
= $performingUser->getName();
204 $status = $this->authManager
->allowsAuthenticationDataChange( $req, true );
205 if ( $status->isGood() && $status->getValue() !== 'ignored' ) {
207 } elseif ( $result->isGood() ) {
208 // only record the first error, to avoid exposing the number of users having the
209 // same email address
210 if ( $status->getValue() === 'ignored' ) {
211 $status = StatusValue
::newFatal( 'passwordreset-ignored' );
213 $result->merge( $status );
217 if ( !$result->isGood() ) {
222 foreach ( $reqs as $req ) {
223 $this->authManager
->changeAuthenticationData( $req );
224 // TODO record mail sending errors
225 if ( $displayPassword ) {
226 $passwords[$req->username
] = $req->password
;
230 return StatusValue
::newGood( $passwords );
234 * @param string $email
236 * @throws MWException On unexpected database errors
238 protected function getUsersByEmail( $email ) {
239 $res = wfGetDB( DB_SLAVE
)->select(
241 User
::selectFields(),
242 [ 'user_email' => $email ],
247 // Some sort of database error, probably unreachable
248 throw new MWException( 'Unknown database error in ' . __METHOD__
);
252 foreach ( $res as $row ) {
253 $users[] = User
::newFromRow( $row );