mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-12 01:12:37 +00:00
52686c04b7
Update DatabaseBase type hint Update some deprecated code usages Change-Id: I86aa4507447040754d0c9f20171f7e22aed4a0cc
70 lines
1.5 KiB
PHP
70 lines
1.5 KiB
PHP
<?php
|
|
|
|
class OATHUserRepository {
|
|
/** @var LoadBalancer */
|
|
protected $lb;
|
|
|
|
/**
|
|
* OATHUserRepository constructor.
|
|
* @param LoadBalancer $lb
|
|
*/
|
|
public function __construct( LoadBalancer $lb ) {
|
|
$this->lb = $lb;
|
|
}
|
|
|
|
/**
|
|
* @param User $user
|
|
* @return OATHUser
|
|
*/
|
|
public function findByUser( User $user ) {
|
|
$oathUser = new OATHUser( $user, null );
|
|
|
|
$uid = CentralIdLookup::factory()->centralIdFromLocalUser( $user );
|
|
$res = $this->getDB( DB_SLAVE )
|
|
->selectRow( 'oathauth_users', '*', [ 'id' => $uid ], __METHOD__ );
|
|
if ( $res ) {
|
|
$key = new OATHAuthKey( $res->secret, explode( ',', $res->scratch_tokens ) );
|
|
$oathUser->setKey( $key );
|
|
}
|
|
|
|
return $oathUser;
|
|
}
|
|
|
|
/**
|
|
* @param OATHUser $user
|
|
*/
|
|
public function persist( OATHUser $user ) {
|
|
$this->getDB( DB_MASTER )->replace(
|
|
'oathauth_users',
|
|
[ 'id' ],
|
|
[
|
|
'id' => CentralIdLookup::factory()->centralIdFromLocalUser( $user->getUser() ),
|
|
'secret' => $user->getKey()->getSecret(),
|
|
'scratch_tokens' => implode( ',', $user->getKey()->getScratchTokens() ),
|
|
],
|
|
__METHOD__
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param OATHUser $user
|
|
*/
|
|
public function remove( OATHUser $user ) {
|
|
$this->getDB( DB_MASTER )->delete(
|
|
'oathauth_users',
|
|
[ 'id' => CentralIdLookup::factory()->centralIdFromLocalUser( $user->getUser() ) ],
|
|
__METHOD__
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param integer $index DB_MASTER/DB_SLAVE
|
|
* @return DBConnRef
|
|
*/
|
|
private function getDB( $index ) {
|
|
global $wgOATHAuthDatabase;
|
|
|
|
return $this->lb->getConnectionRef( $index, [], $wgOATHAuthDatabase );
|
|
}
|
|
}
|