MediaWiki REL1_31
InterwikiLookupAdapter.php
Go to the documentation of this file.
1<?php
2namespace MediaWiki\Interwiki;
3
30use Interwiki;
31use Site;
32use SiteLookup;
34
36
40 private $siteLookup;
41
46
47 function __construct(
49 array $interwikiMap = null
50 ) {
51 $this->siteLookup = $siteLookup;
52 $this->interwikiMap = $interwikiMap;
53 }
54
62 public function isValidInterwiki( $prefix ) {
63 return array_key_exists( $prefix, $this->getInterwikiMap() );
64 }
65
73 public function fetch( $prefix ) {
74 if ( $prefix == '' ) {
75 return null;
76 }
77
78 if ( !$this->isValidInterwiki( $prefix ) ) {
79 return false;
80 }
81
82 return $this->interwikiMap[$prefix];
83 }
84
91 public function getAllPrefixes( $local = null ) {
92 $res = [];
93 foreach ( $this->getInterwikiMap() as $interwikiId => $interwiki ) {
94 if ( $local === null || $interwiki->isLocal() === $local ) {
95 $res[] = [
96 'iw_prefix' => $interwikiId,
97 'iw_url' => $interwiki->getURL(),
98 'iw_api' => $interwiki->getAPI(),
99 'iw_wikiid' => $interwiki->getWikiID(),
100 'iw_local' => $interwiki->isLocal(),
101 'iw_trans' => $interwiki->isTranscludable(),
102 ];
103 }
104 }
105 return $res;
106 }
107
113 public function invalidateCache( $prefix ) {
114 if ( !isset( $this->interwikiMap[$prefix] ) ) {
115 return;
116 }
117 $globalId = $this->interwikiMap[$prefix]->getWikiID();
118 unset( $this->interwikiMap[$prefix] );
119
120 // Reload the interwiki
121 $site = $this->siteLookup->getSites()->getSite( $globalId );
122 $interwikis = $this->getSiteInterwikis( $site );
123 $this->interwikiMap = array_merge( $this->interwikiMap, [ $interwikis[$prefix] ] );
124 }
125
129 private function loadInterwikiMap() {
130 $interwikiMap = [];
131 $siteList = $this->siteLookup->getSites();
132 foreach ( $siteList as $site ) {
133 $interwikis = $this->getSiteInterwikis( $site );
134 $interwikiMap = array_merge( $interwikiMap, $interwikis );
135 }
136 $this->interwikiMap = $interwikiMap;
137 }
138
144 private function getInterwikiMap() {
145 if ( $this->interwikiMap === null ) {
146 $this->loadInterwikiMap();
147 }
148 return $this->interwikiMap;
149 }
150
157 private function getSiteInterwikis( Site $site ) {
158 $interwikis = [];
159 foreach ( $site->getInterwikiIds() as $interwiki ) {
160 $url = $site->getPageUrl();
161 if ( $site instanceof MediaWikiSite ) {
162 $path = $site->getFileUrl( 'api.php' );
163 } else {
164 $path = '';
165 }
166 $local = $site->getSource() === 'local';
167 // TODO: How to adapt trans?
168 $interwikis[$interwiki] = new Interwiki(
169 $interwiki,
170 $url,
171 $path,
172 $site->getGlobalId(),
173 $local
174 );
175 }
176 return $interwikis;
177 }
178}
Value object for representing interwiki records.
Definition Interwiki.php:27
Class representing a MediaWiki site.
Interwiki[] null $interwikiMap
associative array mapping interwiki prefixes to Interwiki objects
getSiteInterwikis(Site $site)
Load interwikis for the given site.
fetch( $prefix)
See InterwikiLookup::fetch It loads the whole interwiki map.
getAllPrefixes( $local=null)
See InterwikiLookup::getAllPrefixes.
__construct(SiteLookup $siteLookup, array $interwikiMap=null)
loadInterwikiMap()
Load interwiki map to use as cache.
isValidInterwiki( $prefix)
See InterwikiLookup::isValidInterwiki It loads the whole interwiki map.
invalidateCache( $prefix)
See InterwikiLookup::invalidateCache.
getInterwikiMap()
Get interwikiMap attribute, load if needed.
Definition Site.php:29
$res
Definition database.txt:21
Service interface for looking up Interwiki records.
Copyright (C) 2018 Kunal Mehta legoktm@member.fsf.org