mediawiki-extensions-OATHAuth/OATHUserRepository.php

56 lines
1.4 KiB
PHP
Raw Normal View History

<?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 );
}
}