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.
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.
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
20 * @license GNU GPL v2+
24 * Provides a file-based cache of a SiteStore, stored as a json file.
25 * The cache can be built with the rebuildSitesCache.php maintenance script,
26 * and a MediaWiki instance can be setup to use this by setting the
27 * 'wgSitesCacheFile' configuration to the cache file location.
31 class SiteListFileCache
{
36 private $sites = null;
44 * @param string $cacheFile
46 public function __construct( $cacheFile ) {
47 $this->cacheFile
= $cacheFile;
55 public function getSites() {
56 if ( $this->sites
=== null ) {
57 $this->sites
= $this->loadSitesFromCache();
64 * @param string $globalId
70 public function getSite( $globalId ) {
71 $sites = $this->getSites();
73 return $sites->hasSite( $globalId ) ?
$sites->getSite( $globalId ) : null;
79 private function loadSitesFromCache() {
80 $data = $this->loadJsonFile();
82 $sites = new SiteList();
84 // @todo lazy initialize the site objects in the site list (e.g. only when needed to access)
85 foreach ( $data['sites'] as $siteArray ) {
86 $sites[] = $this->newSiteFromArray( $siteArray );
96 private function loadJsonFile() {
97 if ( !is_readable( $this->cacheFile
) ) {
98 throw new MWException( 'SiteList cache file not found.' );
101 $contents = file_get_contents( $this->cacheFile
);
102 $data = json_decode( $contents, true );
104 if ( !is_array( $data ) ||
!array_key_exists( 'sites', $data ) ) {
105 throw new MWException( 'SiteStore json cache data is invalid.' );
116 private function newSiteFromArray( array $data ) {
117 $siteType = array_key_exists( 'type', $data ) ?
$data['type'] : Site
::TYPE_UNKNOWN
;
118 $site = Site
::newForType( $siteType );
120 $site->setGlobalId( $data['globalid'] );
121 $site->setInternalId( $data['internalid'] );
122 $site->setForward( $data['forward'] );
123 $site->setGroup( $data['group'] );
124 $site->setLanguageCode( $data['language'] );
125 $site->setSource( $data['source'] );
126 $site->setExtraData( $data['data'] );
127 $site->setExtraConfig( $data['config'] );
129 foreach ( $data['identifiers'] as $identifier ) {
130 $site->addLocalId( $identifier['type'], $identifier['key'] );