Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
90.00% |
9 / 10 |
|
50.00% |
1 / 2 |
CRAP | |
0.00% |
0 / 1 |
BlockRestrictionStoreFactory | |
90.00% |
9 / 10 |
|
50.00% |
1 / 2 |
6.04 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
getBlockRestrictionStore | |
88.89% |
8 / 9 |
|
0.00% |
0 / 1 |
5.03 |
1 | <?php |
2 | /** |
3 | * This program is free software; you can redistribute it and/or modify |
4 | * it under the terms of the GNU General Public License as published by |
5 | * the Free Software Foundation; either version 2 of the License, or |
6 | * (at your option) any later version. |
7 | * |
8 | * This program is distributed in the hope that it will be useful, |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
11 | * GNU General Public License for more details. |
12 | * |
13 | * You should have received a copy of the GNU General Public License along |
14 | * with this program; if not, write to the Free Software Foundation, Inc., |
15 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
16 | * http://www.gnu.org/copyleft/gpl.html |
17 | * |
18 | * @file |
19 | */ |
20 | |
21 | namespace MediaWiki\Block; |
22 | |
23 | use MediaWiki\DAO\WikiAwareEntity; |
24 | use Wikimedia\Rdbms\LBFactory; |
25 | |
26 | /** |
27 | * @author Zabe |
28 | * |
29 | * @since 1.38 |
30 | */ |
31 | class BlockRestrictionStoreFactory { |
32 | private LBFactory $loadBalancerFactory; |
33 | |
34 | /** @var BlockRestrictionStore[] */ |
35 | private array $storeCache = []; |
36 | |
37 | public function __construct( LBFactory $loadBalancerFactory ) { |
38 | $this->loadBalancerFactory = $loadBalancerFactory; |
39 | } |
40 | |
41 | /** |
42 | * @param string|false $wikiId |
43 | * @return BlockRestrictionStore |
44 | */ |
45 | public function getBlockRestrictionStore( $wikiId = WikiAwareEntity::LOCAL ): BlockRestrictionStore { |
46 | if ( is_string( $wikiId ) && $this->loadBalancerFactory->getLocalDomainID() === $wikiId ) { |
47 | $wikiId = WikiAwareEntity::LOCAL; |
48 | } |
49 | |
50 | $storeCacheKey = $wikiId === WikiAwareEntity::LOCAL ? 'LOCAL' : 'crosswikistore-' . $wikiId; |
51 | if ( !isset( $this->storeCache[$storeCacheKey] ) ) { |
52 | $this->storeCache[$storeCacheKey] = new BlockRestrictionStore( |
53 | $this->loadBalancerFactory, |
54 | $wikiId |
55 | ); |
56 | } |
57 | return $this->storeCache[$storeCacheKey]; |
58 | } |
59 | } |