mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-28 10:10:19 +00:00
28d625e6bc
Bug: T136224 Change-Id: I405d2f544409d635e4fac1d5222c42e8036c6945
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
|
|
class OATHUserRepository {
|
|
/** @var LoadBalancer */
|
|
protected $lb;
|
|
|
|
public function __construct( LoadBalancer $lb ) {
|
|
$this->lb = $lb;
|
|
}
|
|
|
|
public function findByUser( User $user ) {
|
|
$oathUser = new OATHUser( $user, null );
|
|
|
|
$uid = CentralIdLookup::factory()->centralIdFromLocalUser( $user );
|
|
$res = $this->getDB( DB_SLAVE )
|
|
->selectRow( 'oathauth_users', '*', array( 'id' => $uid ), __METHOD__ );
|
|
if ( $res ) {
|
|
$key = new OATHAuthKey( $res->secret, explode( ',', $res->scratch_tokens ) );
|
|
$oathUser->setKey( $key );
|
|
}
|
|
|
|
return $oathUser;
|
|
}
|
|
|
|
public function persist( OATHUser $user ) {
|
|
$this->getDB( DB_MASTER )->replace(
|
|
'oathauth_users',
|
|
array( 'id' ),
|
|
array(
|
|
'id' => CentralIdLookup::factory()->centralIdFromLocalUser( $user->getUser() ),
|
|
'secret' => $user->getKey()->getSecret(),
|
|
'scratch_tokens' => implode( ',', $user->getKey()->getScratchTokens() ),
|
|
),
|
|
__METHOD__
|
|
);
|
|
}
|
|
|
|
public function remove( OATHUser $user ) {
|
|
$this->getDB( DB_MASTER )->delete(
|
|
'oathauth_users',
|
|
array( '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, array(), $wgOATHAuthDatabase );
|
|
}
|
|
}
|