Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2752148
UserGroupManagerFactory.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
UserGroupManagerFactory.php
View Options
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace
MediaWiki\User
;
use
MediaWiki\Config\ServiceOptions
;
use
MediaWiki\HookContainer\HookContainer
;
use
MediaWiki\JobQueue\JobQueueGroupFactory
;
use
MediaWiki\Permissions\GroupPermissionsLookup
;
use
MediaWiki\User\TempUser\TempUserConfig
;
use
Psr\Log\LoggerInterface
;
use
Wikimedia\Rdbms\ILBFactory
;
use
Wikimedia\Rdbms\ReadOnlyMode
;
/**
* Factory service for UserGroupManager instances. This allows UserGroupManager to be created for
* cross-wiki access.
*
* @since 1.35
* @ingroup User
*/
class
UserGroupManagerFactory
{
private
ServiceOptions
$options
;
private
ReadOnlyMode
$readOnlyMode
;
private
ILBFactory
$dbLoadBalancerFactory
;
private
UserEditTracker
$userEditTracker
;
private
GroupPermissionsLookup
$groupPermissionLookup
;
private
JobQueueGroupFactory
$jobQueueGroupFactory
;
private
LoggerInterface
$logger
;
/** @var callable[] */
private
$clearCacheCallbacks
;
private
HookContainer
$hookContainer
;
private
TempUserConfig
$tempUserConfig
;
/**
* @var UserGroupManager[] User group manager instances indexed by wiki
*/
private
$instances
=
[];
/**
* @param ServiceOptions $options
* @param ReadOnlyMode $readOnlyMode
* @param ILBFactory $dbLoadBalancerFactory
* @param HookContainer $hookContainer
* @param UserEditTracker $userEditTracker
* @param GroupPermissionsLookup $groupPermissionsLookup
* @param JobQueueGroupFactory $jobQueueGroupFactory
* @param LoggerInterface $logger
* @param TempUserConfig $tempUserConfig Assumed to be the same across all domains.
* @param callable[] $clearCacheCallbacks
*/
public
function
__construct
(
ServiceOptions
$options
,
ReadOnlyMode
$readOnlyMode
,
ILBFactory
$dbLoadBalancerFactory
,
HookContainer
$hookContainer
,
UserEditTracker
$userEditTracker
,
GroupPermissionsLookup
$groupPermissionsLookup
,
JobQueueGroupFactory
$jobQueueGroupFactory
,
LoggerInterface
$logger
,
TempUserConfig
$tempUserConfig
,
array
$clearCacheCallbacks
=
[]
)
{
$this
->
options
=
$options
;
$this
->
readOnlyMode
=
$readOnlyMode
;
$this
->
dbLoadBalancerFactory
=
$dbLoadBalancerFactory
;
$this
->
hookContainer
=
$hookContainer
;
$this
->
userEditTracker
=
$userEditTracker
;
$this
->
groupPermissionLookup
=
$groupPermissionsLookup
;
$this
->
jobQueueGroupFactory
=
$jobQueueGroupFactory
;
$this
->
logger
=
$logger
;
$this
->
tempUserConfig
=
$tempUserConfig
;
$this
->
clearCacheCallbacks
=
$clearCacheCallbacks
;
}
/**
* @param string|false $wikiId
* @return UserGroupManager
*/
public
function
getUserGroupManager
(
$wikiId
=
UserIdentity
::
LOCAL
):
UserGroupManager
{
if
(
is_string
(
$wikiId
)
&&
$this
->
dbLoadBalancerFactory
->
getLocalDomainID
()
===
$wikiId
)
{
$wikiId
=
UserIdentity
::
LOCAL
;
}
$key
=
(
string
)
$wikiId
;
if
(
!
isset
(
$this
->
instances
[
$key
]
)
)
{
$this
->
instances
[
$key
]
=
new
UserGroupManager
(
$this
->
options
,
$this
->
readOnlyMode
,
$this
->
dbLoadBalancerFactory
,
$this
->
hookContainer
,
$this
->
userEditTracker
,
$this
->
groupPermissionLookup
,
$this
->
jobQueueGroupFactory
->
makeJobQueueGroup
(
$wikiId
),
$this
->
logger
,
$this
->
tempUserConfig
,
$this
->
clearCacheCallbacks
,
$wikiId
);
}
return
$this
->
instances
[
$key
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Jul 3, 19:38 (1 d, 57 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8f/97/7c8e2843d9ca7b3fa513a936bac5
Default Alt Text
UserGroupManagerFactory.php (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment