3 * Utility class for bot passwords
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
21 use MediaWiki\Session\BotPasswordSessionProvider
;
22 use MediaWiki\Session\SessionInfo
;
25 * Utility class for bot passwords
28 class BotPassword
implements IDBAccessObject
{
30 const APPID_MAXLENGTH
= 32;
44 /** @var MWRestrictions */
45 private $restrictions;
51 private $flags = self
::READ_NORMAL
;
54 * @param object $row bot_passwords database row
55 * @param bool $isSaved Whether the bot password was read from the database
56 * @param int $flags IDBAccessObject read flags
58 protected function __construct( $row, $isSaved, $flags = self
::READ_NORMAL
) {
59 $this->isSaved
= $isSaved;
60 $this->flags
= $flags;
62 $this->centralId
= (int)$row->bp_user
;
63 $this->appId
= $row->bp_app_id
;
64 $this->token
= $row->bp_token
;
65 $this->restrictions
= MWRestrictions
::newFromJson( $row->bp_restrictions
);
66 $this->grants
= FormatJson
::decode( $row->bp_grants
);
70 * Get a database connection for the bot passwords database
71 * @param int $db Index of the connection to get, e.g. DB_MASTER or DB_SLAVE.
72 * @return DatabaseBase
74 public static function getDB( $db ) {
75 global $wgBotPasswordsCluster, $wgBotPasswordsDatabase;
77 $lb = $wgBotPasswordsCluster
78 ?
wfGetLBFactory()->getExternalLB( $wgBotPasswordsCluster )
79 : wfGetLB( $wgBotPasswordsDatabase );
80 return $lb->getConnectionRef( $db, array(), $wgBotPasswordsDatabase );
84 * Load a BotPassword from the database
86 * @param string $appId
87 * @param int $flags IDBAccessObject read flags
88 * @return BotPassword|null
90 public static function newFromUser( User
$user, $appId, $flags = self
::READ_NORMAL
) {
91 $centralId = CentralIdLookup
::factory()->centralIdFromLocalUser(
92 $user, CentralIdLookup
::AUDIENCE_RAW
, $flags
94 return $centralId ? self
::newFromCentralId( $centralId, $appId, $flags ) : null;
98 * Load a BotPassword from the database
99 * @param int $centralId from CentralIdLookup
100 * @param string $appId
101 * @param int $flags IDBAccessObject read flags
102 * @return BotPassword|null
104 public static function newFromCentralId( $centralId, $appId, $flags = self
::READ_NORMAL
) {
105 global $wgEnableBotPasswords;
107 if ( !$wgEnableBotPasswords ) {
111 list( $index, $options ) = DBAccessObjectUtils
::getDBOptions( $flags );
112 $db = self
::getDB( $index );
113 $row = $db->selectRow(
115 array( 'bp_user', 'bp_app_id', 'bp_token', 'bp_restrictions', 'bp_grants' ),
116 array( 'bp_user' => $centralId, 'bp_app_id' => $appId ),
120 return $row ?
new self( $row, true, $flags ) : null;
124 * Create an unsaved BotPassword
125 * @param array $data Data to use to create the bot password. Keys are:
126 * - user: (User) User object to create the password for. Overrides username and centralId.
127 * - username: (string) Username to create the password for. Overrides centralId.
128 * - centralId: (int) User central ID to create the password for.
129 * - appId: (string) App ID for the password.
130 * - restrictions: (MWRestrictions, optional) Restrictions.
131 * - grants: (string[], optional) Grants.
132 * @param int $flags IDBAccessObject read flags
133 * @return BotPassword|null
135 public static function newUnsaved( array $data, $flags = self
::READ_NORMAL
) {
136 $row = (object)array(
138 'bp_app_id' => isset( $data['appId'] ) ?
trim( $data['appId'] ) : '',
139 'bp_token' => '**unsaved**',
140 'bp_restrictions' => isset( $data['restrictions'] )
141 ?
$data['restrictions']
142 : MWRestrictions
::newDefault(),
143 'bp_grants' => isset( $data['grants'] ) ?
$data['grants'] : array(),
147 $row->bp_app_id
=== '' ||
strlen( $row->bp_app_id
) > self
::APPID_MAXLENGTH ||
148 !$row->bp_restrictions
instanceof MWRestrictions ||
149 !is_array( $row->bp_grants
)
154 $row->bp_restrictions
= $row->bp_restrictions
->toJson();
155 $row->bp_grants
= FormatJson
::encode( $row->bp_grants
);
157 if ( isset( $data['user'] ) ) {
158 if ( !$data['user'] instanceof User
) {
161 $row->bp_user
= CentralIdLookup
::factory()->centralIdFromLocalUser(
162 $data['user'], CentralIdLookup
::AUDIENCE_RAW
, $flags
164 } elseif ( isset( $data['username'] ) ) {
165 $row->bp_user
= CentralIdLookup
::factory()->centralIdFromName(
166 $data['username'], CentralIdLookup
::AUDIENCE_RAW
, $flags
168 } elseif ( isset( $data['centralId'] ) ) {
169 $row->bp_user
= $data['centralId'];
171 if ( !$row->bp_user
) {
175 return new self( $row, false, $flags );
179 * Indicate whether this is known to be saved
182 public function isSaved() {
183 return $this->isSaved
;
187 * Get the central user ID
190 public function getUserCentralId() {
191 return $this->centralId
;
198 public function getAppId() {
206 public function getToken() {
211 * Get the restrictions
212 * @return MWRestrictions
214 public function getRestrictions() {
215 return $this->restrictions
;
222 public function getGrants() {
223 return $this->grants
;
227 * Get the separator for combined user name + app ID
230 public static function getSeparator() {
231 global $wgUserrightsInterwikiDelimiter;
232 return $wgUserrightsInterwikiDelimiter;
239 protected function getPassword() {
240 list( $index, $options ) = DBAccessObjectUtils
::getDBOptions( $this->flags
);
241 $db = self
::getDB( $index );
242 $password = $db->selectField(
245 array( 'bp_user' => $this->centralId
, 'bp_app_id' => $this->appId
),
249 if ( $password === false ) {
250 return PasswordFactory
::newInvalidPassword();
253 $passwordFactory = new \
PasswordFactory();
254 $passwordFactory->init( \RequestContext
::getMain()->getConfig() );
256 return $passwordFactory->newFromCiphertext( $password );
257 } catch ( PasswordError
$ex ) {
258 return PasswordFactory
::newInvalidPassword();
263 * Save the BotPassword to the database
264 * @param string $operation 'update' or 'insert'
265 * @param Password|null $password Password to set.
266 * @return bool Success
268 public function save( $operation, Password
$password = null ) {
270 'bp_user' => $this->centralId
,
271 'bp_app_id' => $this->appId
,
274 'bp_token' => MWCryptRand
::generateHex( User
::TOKEN_LENGTH
),
275 'bp_restrictions' => $this->restrictions
->toJson(),
276 'bp_grants' => FormatJson
::encode( $this->grants
),
279 if ( $password !== null ) {
280 $fields['bp_password'] = $password->toString();
281 } elseif ( $operation === 'insert' ) {
282 $fields['bp_password'] = PasswordFactory
::newInvalidPassword()->toString();
285 $dbw = self
::getDB( DB_MASTER
);
286 switch ( $operation ) {
288 $dbw->insert( 'bot_passwords', $fields +
$conds, __METHOD__
, array( 'IGNORE' ) );
292 $dbw->update( 'bot_passwords', $fields, $conds, __METHOD__
);
298 $ok = (bool)$dbw->affectedRows();
300 $this->token
= $dbw->selectField( 'bot_passwords', 'bp_token', $conds, __METHOD__
);
301 $this->isSaved
= true;
307 * Delete the BotPassword from the database
308 * @return bool Success
310 public function delete() {
312 'bp_user' => $this->centralId
,
313 'bp_app_id' => $this->appId
,
315 $dbw = self
::getDB( DB_MASTER
);
316 $dbw->delete( 'bot_passwords', $conds, __METHOD__
);
317 $ok = (bool)$dbw->affectedRows();
319 $this->token
= '**unsaved**';
320 $this->isSaved
= false;
326 * Invalidate all passwords for a user, by name
327 * @param string $username User name
328 * @return bool Whether any passwords were invalidated
330 public static function invalidateAllPasswordsForUser( $username ) {
331 $centralId = CentralIdLookup
::factory()->centralIdFromName(
332 $username, CentralIdLookup
::AUDIENCE_RAW
, CentralIdLookup
::READ_LATEST
334 return $centralId && self
::invalidateAllPasswordsForCentralId( $centralId );
338 * Invalidate all passwords for a user, by central ID
339 * @param int $centralId
340 * @return bool Whether any passwords were invalidated
342 public static function invalidateAllPasswordsForCentralId( $centralId ) {
343 global $wgEnableBotPasswords;
345 if ( !$wgEnableBotPasswords ) {
349 $dbw = self
::getDB( DB_MASTER
);
352 array( 'bp_password' => PasswordFactory
::newInvalidPassword()->toString() ),
353 array( 'bp_user' => $centralId ),
356 return (bool)$dbw->affectedRows();
360 * Remove all passwords for a user, by name
361 * @param string $username User name
362 * @return bool Whether any passwords were removed
364 public static function removeAllPasswordsForUser( $username ) {
365 $centralId = CentralIdLookup
::factory()->centralIdFromName(
366 $username, CentralIdLookup
::AUDIENCE_RAW
, CentralIdLookup
::READ_LATEST
368 return $centralId && self
::removeAllPasswordsForCentralId( $centralId );
372 * Remove all passwords for a user, by central ID
373 * @param int $centralId
374 * @return bool Whether any passwords were removed
376 public static function removeAllPasswordsForCentralId( $centralId ) {
377 global $wgEnableBotPasswords;
379 if ( !$wgEnableBotPasswords ) {
383 $dbw = self
::getDB( DB_MASTER
);
386 array( 'bp_user' => $centralId ),
389 return (bool)$dbw->affectedRows();
393 * Try to log the user in
394 * @param string $username Combined user name and app ID
395 * @param string $password Supplied password
396 * @param WebRequest $request
397 * @return Status On success, the good status's value is the new Session object
399 public static function login( $username, $password, WebRequest
$request ) {
400 global $wgEnableBotPasswords;
402 if ( !$wgEnableBotPasswords ) {
403 return Status
::newFatal( 'botpasswords-disabled' );
406 $manager = MediaWiki\Session\SessionManager
::singleton();
407 $provider = $manager->getProvider(
408 'MediaWiki\\Session\\BotPasswordSessionProvider'
411 return Status
::newFatal( 'botpasswords-no-provider' );
414 // Split name into name+appId
415 $sep = self
::getSeparator();
416 if ( strpos( $username, $sep ) === false ) {
417 return Status
::newFatal( 'botpasswords-invalid-name', $sep );
419 list( $name, $appId ) = explode( $sep, $username, 2 );
421 // Find the named user
422 $user = User
::newFromName( $name );
423 if ( !$user ||
$user->isAnon() ) {
424 return Status
::newFatal( 'nosuchuser', $name );
427 // Get the bot password
428 $bp = self
::newFromUser( $user, $appId );
430 return Status
::newFatal( 'botpasswords-not-exist', $name, $appId );
433 // Check restrictions
434 $status = $bp->getRestrictions()->check( $request );
435 if ( !$status->isOk() ) {
436 return Status
::newFatal( 'botpasswords-restriction-failed' );
439 // Check the password
440 if ( !$bp->getPassword()->equals( $password ) ) {
441 return Status
::newFatal( 'wrongpassword' );
444 // Ok! Create the session.
445 return Status
::newGood( $provider->newSessionForRequest( $user, $bp, $request ) );