Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4141812
ServiceWiring.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
ServiceWiring.php
View Options
<?php
namespace
MediaWiki\Extension\CentralAuth
;
use
MediaWiki\Config\ServiceOptions
;
use
MediaWiki\Extension\CentralAuth\GlobalGroup\GlobalGroupLookup
;
use
MediaWiki\Extension\CentralAuth\GlobalRename\GlobalRenameDenylist
;
use
MediaWiki\Extension\CentralAuth\GlobalRename\GlobalRenameFactory
;
use
MediaWiki\Extension\CentralAuth\GlobalRename\GlobalRenameRequestStore
;
use
MediaWiki\Extension\CentralAuth\GlobalRename\GlobalRenameUserValidator
;
use
MediaWiki\Extension\CentralAuth\User\CentralAuthAntiSpoofManager
;
use
MediaWiki\Extension\CentralAuth\User\CentralAuthForcedLocalCreationService
;
use
MediaWiki\Extension\CentralAuth\User\GlobalUserSelectQueryBuilderFactory
;
use
MediaWiki\Logger\LoggerFactory
;
use
MediaWiki\MediaWikiServices
;
// PHPUnit does not understand coverage for this file.
// It is covered though, see CentralAuthServiceWiringTest.
// @codeCoverageIgnoreStart
return
[
'CentralAuth.FilteredRequestTracker'
=>
static
function
(
MediaWikiServices
$services
):
FilteredRequestTracker
{
return
new
FilteredRequestTracker
();
},
'CentralAuth.CentralAuthAntiSpoofManager'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthAntiSpoofManager
{
return
new
CentralAuthAntiSpoofManager
(
new
ServiceOptions
(
CentralAuthAntiSpoofManager
::
CONSTRUCTOR_OPTIONS
,
$services
->
getMainConfig
()
),
LoggerFactory
::
getInstance
(
'antispoof'
),
$services
->
getDBLoadBalancerFactory
(),
CentralAuthServices
::
getDatabaseManager
(
$services
)
);
},
'CentralAuth.CentralAuthDatabaseManager'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthDatabaseManager
{
return
new
CentralAuthDatabaseManager
(
new
ServiceOptions
(
CentralAuthDatabaseManager
::
CONSTRUCTOR_OPTIONS
,
$services
->
getMainConfig
()
),
$services
->
getDBLoadBalancerFactory
(),
$services
->
getReadOnlyMode
()
);
},
'CentralAuth.CentralAuthEditCounter'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthEditCounter
{
return
new
CentralAuthEditCounter
(
CentralAuthServices
::
getDatabaseManager
(
$services
),
$services
->
getMainWANObjectCache
()
);
},
'CentralAuth.CentralAuthForcedLocalCreationService'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthForcedLocalCreationService
{
return
new
CentralAuthForcedLocalCreationService
(
$services
->
getUserFactory
(),
CentralAuthServices
::
getUtilityService
(
$services
)
);
},
'CentralAuth.CentralAuthSessionManager'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthSessionManager
{
return
new
CentralAuthSessionManager
(
new
ServiceOptions
(
CentralAuthSessionManager
::
CONSTRUCTOR_OPTIONS
,
$services
->
getMainConfig
()
),
$services
->
getStatsdDataFactory
(),
$services
->
getStatsFactory
()
);
},
'CentralAuth.CentralAuthTokenManager'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthTokenManager
{
return
new
CentralAuthTokenManager
(
$services
->
getMicroStash
(),
LoggerFactory
::
getInstance
(
'CentralAuth'
)
);
},
'CentralAuth.CentralAuthUIService'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthUIService
{
return
new
CentralAuthUIService
(
$services
->
getTitleFactory
()
);
},
'CentralAuth.CentralAuthUtilityService'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthUtilityService
{
return
new
CentralAuthUtilityService
(
$services
->
getMainConfig
(),
$services
->
getAuthManager
(),
$services
->
getTitleFactory
(),
$services
->
getJobQueueGroupFactory
(),
$services
->
getJobFactory
()
);
},
'CentralAuth.CentralAuthWikiListService'
=>
static
function
(
MediaWikiServices
$services
):
CentralAuthWikiListService
{
return
new
CentralAuthWikiListService
(
new
ServiceOptions
(
CentralAuthWikiListService
::
CONSTRUCTOR_OPTIONS
,
$services
->
getMainConfig
()
),
$services
->
getHookContainer
()
);
},
'CentralAuth.GlobalRenameDenylist'
=>
static
function
(
MediaWikiServices
$services
):
GlobalRenameDenylist
{
$config
=
$services
->
getMainConfig
();
return
new
GlobalRenameDenylist
(
LoggerFactory
::
getInstance
(
'CentralAuth'
),
$services
->
getHttpRequestFactory
(),
$services
->
getWikiPageFactory
(),
$config
->
get
(
'GlobalRenameDenylist'
)
);
},
'CentralAuth.GlobalRenameRequestStore'
=>
static
function
(
MediaWikiServices
$services
):
GlobalRenameRequestStore
{
return
new
GlobalRenameRequestStore
(
CentralAuthServices
::
getDatabaseManager
(
$services
),
$services
->
getUserNameUtils
()
);
},
'CentralAuth.GlobalRenameUserValidator'
=>
static
function
(
MediaWikiServices
$services
):
GlobalRenameUserValidator
{
return
new
GlobalRenameUserValidator
(
$services
->
getUserNameUtils
()
);
},
'CentralAuth.GlobalGroupLookup'
=>
static
function
(
MediaWikiServices
$services
):
GlobalGroupLookup
{
return
new
GlobalGroupLookup
(
CentralAuthServices
::
getDatabaseManager
(
$services
)
);
},
'CentralAuth.GlobalRenameFactory'
=>
static
function
(
MediaWikiServices
$services
):
GlobalRenameFactory
{
return
new
GlobalRenameFactory
(
$services
->
getJobQueueGroupFactory
(),
$services
->
getUserFactory
(),
CentralAuthServices
::
getAntiSpoofManager
(
$services
),
CentralAuthServices
::
getDatabaseManager
(
$services
)
);
},
'CentralAuth.GlobalUserSelectQueryBuilderFactory'
=>
static
function
(
MediaWikiServices
$services
):
GlobalUserSelectQueryBuilderFactory
{
return
new
GlobalUserSelectQueryBuilderFactory
(
CentralAuthServices
::
getDatabaseManager
(
$services
)->
getCentralReplicaDB
(),
$services
->
getActorStore
(),
$services
->
getUserNameUtils
(),
$services
->
getTempUserConfig
()
);
},
'CentralAuth.SharedDomainUtils'
=>
static
function
(
MediaWikiServices
$services
):
SharedDomainUtils
{
return
new
SharedDomainUtils
(
$services
->
getMainConfig
(),
$services
->
getTitleFactory
(),
$services
->
has
(
"MobileFrontend.Context"
)
?
$services
->
get
(
"MobileFrontend.Context"
)
:
null
);
},
];
// @codeCoverageIgnoreEnd
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Aug 19, 16:06 (4 w, 18 m ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
11/00/e78226bbdfcdabb1b9c7eb0bc127
Default Alt Text
ServiceWiring.php (5 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment