MediaWiki master
WikiMap.php
Go to the documentation of this file.
1<?php
22
27
31class WikiMap {
32
39 public static function getWiki( $wikiID ) {
40 $wikiReference = self::getWikiReferenceFromWgConf( $wikiID );
41 if ( $wikiReference ) {
42 return $wikiReference;
43 }
44
45 // Try sites, if $wgConf failed
46 return self::getWikiWikiReferenceFromSites( $wikiID );
47 }
48
53 private static function getWikiReferenceFromWgConf( $wikiID ) {
54 global $wgConf;
55 '@phan-var \MediaWiki\Config\SiteConfiguration $wgConf';
56
57 $wgConf->loadFullData();
58
59 [ $major, $minor ] = $wgConf->siteFromDB( $wikiID );
60 if ( $major === null ) {
61 return null;
62 }
63 $server = $wgConf->get( 'wgServer', $wikiID, $major,
64 [ 'lang' => $minor, 'site' => $major ] );
65
66 $canonicalServer = $wgConf->get( 'wgCanonicalServer', $wikiID, $major,
67 [ 'lang' => $minor, 'site' => $major ] );
68 if ( $canonicalServer === false || $canonicalServer === null ) {
69 $canonicalServer = $server;
70 }
71
72 $path = $wgConf->get( 'wgArticlePath', $wikiID, $major,
73 [ 'lang' => $minor, 'site' => $major ] );
74
75 // If we don't have a canonical server or a path containing $1, the
76 // WikiReference isn't going to function properly. Just return null in
77 // that case.
78 if ( !is_string( $canonicalServer ) || !is_string( $path ) || strpos( $path, '$1' ) === false ) {
79 return null;
80 }
81
82 return new WikiReference( $canonicalServer, $path, $server );
83 }
84
89 private static function getWikiWikiReferenceFromSites( $wikiID ) {
90 $siteLookup = MediaWikiServices::getInstance()->getSiteLookup();
91 $site = $siteLookup->getSite( $wikiID );
92
93 if ( !$site instanceof MediaWikiSite ) {
94 // Abort if not a MediaWikiSite, as this is about Wikis
95 return null;
96 }
97
98 $urlParts = wfGetUrlUtils()->parse( $site->getPageUrl() );
99 if ( $urlParts === null || !isset( $urlParts['path'] ) || !isset( $urlParts['host'] ) ) {
100 // We can't create a meaningful WikiReference without URLs
101 return null;
102 }
103
104 // XXX: Check whether path contains a $1?
105 $path = $urlParts['path'];
106 if ( isset( $urlParts['query'] ) ) {
107 $path .= '?' . $urlParts['query'];
108 }
109
110 $canonicalServer = $urlParts['scheme'] ?? 'http';
111 $canonicalServer .= '://' . $urlParts['host'];
112 if ( isset( $urlParts['port'] ) ) {
113 $canonicalServer .= ':' . $urlParts['port'];
114 }
115
116 return new WikiReference( $canonicalServer, $path );
117 }
118
126 public static function getWikiName( $wikiID ) {
127 $wiki = self::getWiki( $wikiID );
128 return $wiki ? $wiki->getDisplayName() : $wikiID;
129 }
130
139 public static function foreignUserLink( $wikiID, $user, $text = null ) {
140 return self::makeForeignLink( $wikiID, "User:$user", $text );
141 }
142
151 public static function makeForeignLink( $wikiID, $page, $text = null ) {
152 // phpcs:ignore MediaWiki.Usage.DeprecatedGlobalVariables.Deprecated$wgTitle
153 global $wgTitle;
154 if ( !$text ) {
155 $text = $page;
156 }
157
158 $url = self::getForeignURL( $wikiID, $page );
159 if ( $url === false ) {
160 return false;
161 }
162
163 $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
164 return $linkRenderer->makeExternalLink(
165 $url,
166 $text,
167 $wgTitle ?? SpecialPage::getTitleFor( 'Badtitle' )
168 );
169 }
170
180 public static function getForeignURL( $wikiID, $page, $fragmentId = null ) {
181 $wiki = self::getWiki( $wikiID );
182
183 if ( $wiki ) {
184 return $wiki->getFullUrl( $page, $fragmentId );
185 }
186
187 return false;
188 }
189
197 public static function getCanonicalServerInfoForAllWikis() {
198 $cache = MediaWikiServices::getInstance()->getLocalServerObjectCache();
199
200 return $cache->getWithSetCallback(
201 $cache->makeGlobalKey( 'wikimap-canonical-urls' ),
202 $cache::TTL_DAY,
203 static function () {
205
206 $infoMap = [];
207 // Make sure at least the current wiki is set, for simple configurations.
208 // This also makes it the first in the map, which is useful for common cases.
209 $wikiId = self::getCurrentWikiId();
210 $infoMap[$wikiId] = [
211 'url' => $wgCanonicalServer,
212 'parts' => wfGetUrlUtils()->parse( $wgCanonicalServer )
213 ];
214
215 foreach ( $wgLocalDatabases as $wikiId ) {
216 $wikiReference = self::getWiki( $wikiId );
217 if ( $wikiReference ) {
218 $url = $wikiReference->getCanonicalServer();
219 $infoMap[$wikiId] = [ 'url' => $url, 'parts' => wfGetUrlUtils()->parse( $url ) ];
220 }
221 }
222
223 return $infoMap;
224 }
225 );
226 }
227
233 public static function getWikiFromUrl( $url ) {
234 global $wgCanonicalServer;
235
236 if ( strpos( $url, "$wgCanonicalServer/" ) === 0 ) {
237 // Optimisation: Handle the common case.
238 // (Duplicates self::getCanonicalServerInfoForAllWikis)
239 return self::getCurrentWikiId();
240 }
241
242 $urlPartsCheck = wfGetUrlUtils()->parse( $url );
243 if ( $urlPartsCheck === null ) {
244 return false;
245 }
246
247 static $relevantKeys = [ 'host' => 1, 'port' => 1 ];
248 $urlPartsCheck = array_intersect_key( $urlPartsCheck, $relevantKeys );
249
250 foreach ( self::getCanonicalServerInfoForAllWikis() as $wikiId => $info ) {
251 $urlParts = $info['parts'];
252 if ( $urlParts === false ) {
253 continue;
254 }
255
256 $urlParts = array_intersect_key( $urlParts, $relevantKeys );
257 if ( $urlParts == $urlPartsCheck ) {
258 return $wikiId;
259 }
260 }
261
262 return false;
263 }
264
278 public static function getWikiIdFromDbDomain( $domain ) {
279 $domain = DatabaseDomain::newFromId( $domain );
280 // Since the schema was not always part of the wiki ID, try to maintain backwards
281 // compatibility with some common cases. Assume that if the DB domain schema is just
282 // the installer default then it is probably the case that the schema is the same for
283 // all wikis in the farm. Historically, any wiki farm had to make the database/prefix
284 // combination unique per wiki. Omit the schema if it does not seem wiki specific.
285 if ( !in_array( $domain->getSchema(), [ null, 'mediawiki' ], true ) ) {
286 // This means a site admin may have specifically tailored the schemas.
287 // Domain IDs might use the form <DB>-<project>- or <DB>-<project>-<language>_,
288 // meaning that the schema portion must be accounted for to disambiguate wikis.
289 return "{$domain->getDatabase()}-{$domain->getSchema()}-{$domain->getTablePrefix()}";
290 }
291 // Note that if this wiki ID is passed as a domain ID to LoadBalancer, then it can
292 // handle the schema by assuming the generic "mediawiki" schema if needed.
293 return strlen( $domain->getTablePrefix() )
294 ? "{$domain->getDatabase()}-{$domain->getTablePrefix()}"
295 : (string)$domain->getDatabase();
296 }
297
302 public static function getCurrentWikiDbDomain() {
304 // Avoid invoking LBFactory to avoid any chance of recursion
305 return new DatabaseDomain( $wgDBname, $wgDBmwschema, (string)$wgDBprefix );
306 }
307
312 public static function getCurrentWikiId() {
313 return self::getWikiIdFromDbDomain( self::getCurrentWikiDbDomain() );
314 }
315
321 public static function isCurrentWikiDbDomain( $domain ) {
322 return self::getCurrentWikiDbDomain()->equals( $domain );
323 }
324
330 public static function isCurrentWikiId( $wikiId ) {
331 return ( self::getCurrentWikiId() === $wikiId );
332 }
333}
334
336class_alias( WikiMap::class, 'WikiMap' );
wfGetUrlUtils()
$wgConf
$wgConf hold the site configuration.
Definition Setup.php:154
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgTitle
Definition Setup.php:572
Service locator for MediaWiki core services.
static getInstance()
Returns the global default instance of the top level service locator.
Class representing a MediaWiki site.
Parent class for all special pages.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Tools for dealing with other locally-hosted wikis.
Definition WikiMap.php:31
static getWikiFromUrl( $url)
Definition WikiMap.php:233
static getCanonicalServerInfoForAllWikis()
Get canonical server info for all local wikis in the map that have one.
Definition WikiMap.php:197
static isCurrentWikiDbDomain( $domain)
Definition WikiMap.php:321
static isCurrentWikiId( $wikiId)
Definition WikiMap.php:330
static foreignUserLink( $wikiID, $user, $text=null)
Convenience method to get a link to a user page on a foreign wiki.
Definition WikiMap.php:139
static getCurrentWikiDbDomain()
Definition WikiMap.php:302
static getForeignURL( $wikiID, $page, $fragmentId=null)
Convenience method to get a url to a page on a foreign wiki.
Definition WikiMap.php:180
static makeForeignLink( $wikiID, $page, $text=null)
Convenience method to get a link to a page on a foreign wiki.
Definition WikiMap.php:151
static getWiki( $wikiID)
Get a WikiReference object for $wikiID.
Definition WikiMap.php:39
static getWikiIdFromDbDomain( $domain)
Get the wiki ID of a database domain.
Definition WikiMap.php:278
static getWikiName( $wikiID)
Convenience to get the wiki's display name.
Definition WikiMap.php:126
Class to handle database/schema/prefix specifications for IDatabase.
$wgDBprefix
Config variable stub for the DBprefix setting, for use by phpdoc and IDEs.
$wgLocalDatabases
Config variable stub for the LocalDatabases setting, for use by phpdoc and IDEs.
$wgDBmwschema
Config variable stub for the DBmwschema setting, for use by phpdoc and IDEs.
$wgDBname
Config variable stub for the DBname setting, for use by phpdoc and IDEs.
$wgCanonicalServer
Config variable stub for the CanonicalServer setting, for use by phpdoc and IDEs.