2019-03-14 14:39:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use MediaWiki\Extension\OATHAuth\OATHAuth;
|
2019-10-11 17:58:52 +00:00
|
|
|
use MediaWiki\Extension\OATHAuth\OATHUserRepository;
|
2020-01-14 08:27:29 +00:00
|
|
|
use MediaWiki\MediaWikiServices;
|
2019-03-14 14:39:10 +00:00
|
|
|
|
|
|
|
return [
|
|
|
|
'OATHAuth' => function ( MediaWikiServices $services ) {
|
|
|
|
return new OATHAuth(
|
|
|
|
$services->getMainConfig(),
|
|
|
|
$services->getDBLoadBalancerFactory()
|
|
|
|
);
|
|
|
|
},
|
|
|
|
'OATHUserRepository' => function ( MediaWikiServices $services ) {
|
|
|
|
global $wgOATHAuthDatabase;
|
|
|
|
$auth = $services->getService( 'OATHAuth' );
|
|
|
|
return new OATHUserRepository(
|
|
|
|
$services->getDBLoadBalancerFactory()->getMainLB( $wgOATHAuthDatabase ),
|
|
|
|
new \HashBagOStuff( [
|
|
|
|
'maxKey' => 5
|
|
|
|
] ),
|
|
|
|
$auth
|
|
|
|
);
|
|
|
|
}
|
|
|
|
];
|