Remove ancient DB_READ/DB_WRITE constants
[mediawiki.git] / includes / site / SitesCacheFileBuilder.php
blobb4046e364cd0e665e7aa1bad80ea56c5b5dddc08
1 <?php
3 /**
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 * http://www.gnu.org/copyleft/gpl.html
19 * @since 1.25
21 * @file
23 * @license GNU GPL v2+
25 class SitesCacheFileBuilder {
27 /**
28 * @var SiteLookup
30 private $siteLookup;
32 /**
33 * @var string
35 private $cacheFile;
37 /**
38 * @param SiteLookup $siteLookup
39 * @param string $cacheFile
41 public function __construct( SiteLookup $siteLookup, $cacheFile ) {
42 $this->siteLookup = $siteLookup;
43 $this->cacheFile = $cacheFile;
46 public function build() {
47 $this->sites = $this->siteLookup->getSites();
48 $this->cacheSites( $this->sites->getArrayCopy() );
51 /**
52 * @param Site[] $sites
54 * @throws MWException if in manualRecache mode
55 * @return bool
57 private function cacheSites( array $sites ) {
58 $sitesArray = [];
60 foreach ( $sites as $site ) {
61 $globalId = $site->getGlobalId();
62 $sitesArray[$globalId] = $this->getSiteAsArray( $site );
65 $json = json_encode( [
66 'sites' => $sitesArray
67 ] );
69 $result = file_put_contents( $this->cacheFile, $json );
71 return $result !== false;
74 /**
75 * @param Site $site
77 * @return array
79 private function getSiteAsArray( Site $site ) {
80 $siteEntry = unserialize( $site->serialize() );
81 $siteIdentifiers = $this->buildLocalIdentifiers( $site );
82 $identifiersArray = [];
84 foreach ( $siteIdentifiers as $identifier ) {
85 $identifiersArray[] = $identifier;
88 $siteEntry['identifiers'] = $identifiersArray;
90 return $siteEntry;
93 /**
94 * @param Site $site
96 * @return array Site local identifiers
98 private function buildLocalIdentifiers( Site $site ) {
99 $localIds = [];
101 foreach ( $site->getLocalIds() as $idType => $ids ) {
102 foreach ( $ids as $id ) {
103 $localIds[] = [
104 'type' => $idType,
105 'key' => $id
110 return $localIds;