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
23 * @license GNU GPL v2+
25 class SiteListFileCacheBuilder
{
38 * @param SiteStore $siteStore
39 * @param string $cacheFile
41 public function __construct( SiteStore
$siteStore, $cacheFile ) {
42 $this->siteStore
= $siteStore;
43 $this->cacheFile
= $cacheFile;
46 public function build() {
47 $this->sites
= $this->siteStore
->getSites( 'recache' );
48 $this->cacheSites( $this->sites
->getArrayCopy() );
52 * @param Site[] $sites
54 * @throws MWException if in manualRecache mode
57 private function cacheSites( array $sites ) {
58 $sitesArray = array();
60 foreach ( $sites as $site ) {
61 $globalId = $site->getGlobalId();
62 $sitesArray[$globalId] = $this->getSiteAsArray( $site );
65 $json = json_encode( array(
66 'sites' => $sitesArray
69 $result = file_put_contents( $this->cacheFile
, $json );
71 return $result !== false;
79 private function getSiteAsArray( Site
$site ) {
80 $siteEntry = unserialize( $site->serialize() );
81 $siteIdentifiers = $this->buildLocalIdentifiers( $site );
82 $identifiersArray = array();
84 foreach ( $siteIdentifiers as $identifier ) {
85 $identifiersArray[] = $identifier;
88 $siteEntry['identifiers'] = $identifiersArray;
96 * @return array Site local identifiers
98 private function buildLocalIdentifiers( Site
$site ) {
101 foreach ( $site->getLocalIds() as $idType => $ids ) {
102 foreach ( $ids as $id ) {