MediaWiki  1.27.2
Interwiki.php
Go to the documentation of this file.
1 <?php
22 use \Cdb\Exception as CdbException;
23 use \Cdb\Reader as CdbReader;
24 
31 class Interwiki {
32  // Cache - removes oldest entry when it hits limit
33  protected static $smCache = [];
34  const CACHE_LIMIT = 100; // 0 means unlimited, any other value is max number of entries.
35 
37  protected $mPrefix;
38 
40  protected $mURL;
41 
43  protected $mAPI;
44 
48  protected $mWikiID;
49 
51  protected $mLocal;
52 
54  protected $mTrans;
55 
56  public function __construct( $prefix = null, $url = '', $api = '', $wikiId = '', $local = 0,
57  $trans = 0
58  ) {
59  $this->mPrefix = $prefix;
60  $this->mURL = $url;
61  $this->mAPI = $api;
62  $this->mWikiID = $wikiId;
63  $this->mLocal = (bool)$local;
64  $this->mTrans = (bool)$trans;
65  }
66 
73  public static function isValidInterwiki( $prefix ) {
74  $result = self::fetch( $prefix );
75 
76  return (bool)$result;
77  }
78 
85  public static function fetch( $prefix ) {
87 
88  if ( $prefix == '' ) {
89  return null;
90  }
91 
92  $prefix = $wgContLang->lc( $prefix );
93  if ( isset( self::$smCache[$prefix] ) ) {
94  return self::$smCache[$prefix];
95  }
96 
98  if ( $wgInterwikiCache ) {
99  $iw = Interwiki::getInterwikiCached( $prefix );
100  } else {
101  $iw = Interwiki::load( $prefix );
102  if ( !$iw ) {
103  $iw = false;
104  }
105  }
106 
107  if ( self::CACHE_LIMIT && count( self::$smCache ) >= self::CACHE_LIMIT ) {
108  reset( self::$smCache );
109  unset( self::$smCache[key( self::$smCache )] );
110  }
111 
112  self::$smCache[$prefix] = $iw;
113 
114  return $iw;
115  }
116 
122  public static function resetLocalCache() {
123  static::$smCache = [];
124  }
125 
131  public static function invalidateCache( $prefix ) {
133  $key = wfMemcKey( 'interwiki', $prefix );
134  $cache->delete( $key );
135  unset( static::$smCache[$prefix] );
136  }
137 
146  protected static function getInterwikiCached( $prefix ) {
147  $value = self::getInterwikiCacheEntry( $prefix );
148 
149  $s = new Interwiki( $prefix );
150  if ( $value ) {
151  // Split values
152  list( $local, $url ) = explode( ' ', $value, 2 );
153  $s->mURL = $url;
154  $s->mLocal = (bool)$local;
155  } else {
156  $s = false;
157  }
158 
159  return $s;
160  }
161 
170  protected static function getInterwikiCacheEntry( $prefix ) {
172  static $site;
173 
174  wfDebug( __METHOD__ . "( $prefix )\n" );
175  $value = false;
176  try {
177  // Resolve site name
178  if ( $wgInterwikiScopes >= 3 && !$site ) {
179  $site = self::getCacheValue( '__sites:' . wfWikiID() );
180  if ( $site == '' ) {
181  $site = $wgInterwikiFallbackSite;
182  }
183  }
184 
185  $value = self::getCacheValue( wfMemcKey( $prefix ) );
186  // Site level
187  if ( $value == '' && $wgInterwikiScopes >= 3 ) {
188  $value = self::getCacheValue( "_{$site}:{$prefix}" );
189  }
190  // Global Level
191  if ( $value == '' && $wgInterwikiScopes >= 2 ) {
192  $value = self::getCacheValue( "__global:{$prefix}" );
193  }
194  if ( $value == 'undef' ) {
195  $value = '';
196  }
197  } catch ( CdbException $e ) {
198  wfDebug( __METHOD__ . ": CdbException caught, error message was "
199  . $e->getMessage() );
200  }
201 
202  return $value;
203  }
204 
205  private static function getCacheValue( $key ) {
207  static $reader;
208  if ( $reader === null ) {
209  $reader = is_array( $wgInterwikiCache ) ? false : CdbReader::open( $wgInterwikiCache );
210  }
211  if ( $reader ) {
212  return $reader->get( $key );
213  } else {
214  return isset( $wgInterwikiCache[$key] ) ? $wgInterwikiCache[$key] : false;
215  }
216  }
217 
224  protected static function load( $prefix ) {
226 
227  $iwData = [];
228  if ( !Hooks::run( 'InterwikiLoadPrefix', [ $prefix, &$iwData ] ) ) {
229  return Interwiki::loadFromArray( $iwData );
230  }
231 
232  if ( is_array( $iwData ) ) {
233  $iw = Interwiki::loadFromArray( $iwData );
234  if ( $iw ) {
235  return $iw; // handled by hook
236  }
237  }
238 
239  $iwData = ObjectCache::getMainWANInstance()->getWithSetCallback(
240  wfMemcKey( 'interwiki', $prefix ),
241  $wgInterwikiExpiry,
242  function ( $oldValue, &$ttl, array &$setOpts ) use ( $prefix ) {
243  $dbr = wfGetDB( DB_SLAVE );
244 
245  $setOpts += Database::getCacheSetOptions( $dbr );
246 
247  $row = $dbr->selectRow(
248  'interwiki',
250  [ 'iw_prefix' => $prefix ],
251  __METHOD__
252  );
253 
254  return $row ? (array)$row : '!NONEXISTENT';
255  }
256  );
257 
258  if ( is_array( $iwData ) ) {
259  return Interwiki::loadFromArray( $iwData ) ?: false;
260  }
261 
262  return false;
263  }
264 
271  protected static function loadFromArray( $mc ) {
272  if ( isset( $mc['iw_url'] ) ) {
273  $iw = new Interwiki();
274  $iw->mURL = $mc['iw_url'];
275  $iw->mLocal = isset( $mc['iw_local'] ) ? (bool)$mc['iw_local'] : false;
276  $iw->mTrans = isset( $mc['iw_trans'] ) ? (bool)$mc['iw_trans'] : false;
277  $iw->mAPI = isset( $mc['iw_api'] ) ? $mc['iw_api'] : '';
278  $iw->mWikiID = isset( $mc['iw_wikiid'] ) ? $mc['iw_wikiid'] : '';
279 
280  return $iw;
281  }
282 
283  return false;
284  }
285 
293  protected static function getAllPrefixesCached( $local ) {
295  static $site;
296 
297  wfDebug( __METHOD__ . "()\n" );
298  $data = [];
299  try {
300  /* Resolve site name */
301  if ( $wgInterwikiScopes >= 3 && !$site ) {
302  $site = self::getCacheValue( '__sites:' . wfWikiID() );
303 
304  if ( $site == '' ) {
305  $site = $wgInterwikiFallbackSite;
306  }
307  }
308 
309  // List of interwiki sources
310  $sources = [];
311  // Global Level
312  if ( $wgInterwikiScopes >= 2 ) {
313  $sources[] = '__global';
314  }
315  // Site level
316  if ( $wgInterwikiScopes >= 3 ) {
317  $sources[] = '_' . $site;
318  }
319  $sources[] = wfWikiID();
320 
321  foreach ( $sources as $source ) {
322  $list = self::getCacheValue( '__list:' . $source );
323  foreach ( explode( ' ', $list ) as $iw_prefix ) {
324  $row = self::getCacheValue( "{$source}:{$iw_prefix}" );
325  if ( !$row ) {
326  continue;
327  }
328 
329  list( $iw_local, $iw_url ) = explode( ' ', $row );
330 
331  if ( $local !== null && $local != $iw_local ) {
332  continue;
333  }
334 
335  $data[$iw_prefix] = [
336  'iw_prefix' => $iw_prefix,
337  'iw_url' => $iw_url,
338  'iw_local' => $iw_local,
339  ];
340  }
341  }
342  } catch ( CdbException $e ) {
343  wfDebug( __METHOD__ . ": CdbException caught, error message was "
344  . $e->getMessage() );
345  }
346 
347  ksort( $data );
348 
349  return array_values( $data );
350  }
351 
359  protected static function getAllPrefixesDB( $local ) {
360  $db = wfGetDB( DB_SLAVE );
361 
362  $where = [];
363 
364  if ( $local !== null ) {
365  if ( $local == 1 ) {
366  $where['iw_local'] = 1;
367  } elseif ( $local == 0 ) {
368  $where['iw_local'] = 0;
369  }
370  }
371 
372  $res = $db->select( 'interwiki',
373  self::selectFields(),
374  $where, __METHOD__, [ 'ORDER BY' => 'iw_prefix' ]
375  );
376 
377  $retval = [];
378  foreach ( $res as $row ) {
379  $retval[] = (array)$row;
380  }
381 
382  return $retval;
383  }
384 
392  public static function getAllPrefixes( $local = null ) {
394 
395  if ( $wgInterwikiCache ) {
396  return self::getAllPrefixesCached( $local );
397  }
398 
399  return self::getAllPrefixesDB( $local );
400  }
401 
411  public function getURL( $title = null ) {
412  $url = $this->mURL;
413  if ( $title !== null ) {
414  $url = str_replace( "$1", wfUrlencode( $title ), $url );
415  }
416 
417  return $url;
418  }
419 
425  public function getAPI() {
426  return $this->mAPI;
427  }
428 
434  public function getWikiID() {
435  return $this->mWikiID;
436  }
437 
444  public function isLocal() {
445  return $this->mLocal;
446  }
447 
454  public function isTranscludable() {
455  return $this->mTrans;
456  }
457 
463  public function getName() {
464  $msg = wfMessage( 'interwiki-name-' . $this->mPrefix )->inContentLanguage();
465 
466  return !$msg->exists() ? '' : $msg->text();
467  }
468 
474  public function getDescription() {
475  $msg = wfMessage( 'interwiki-desc-' . $this->mPrefix )->inContentLanguage();
476 
477  return !$msg->exists() ? '' : $msg->text();
478  }
479 
485  public static function selectFields() {
486  return [
487  'iw_prefix',
488  'iw_url',
489  'iw_api',
490  'iw_wikiid',
491  'iw_local',
492  'iw_trans'
493  ];
494  }
495 }
getName()
Get the name for the interwiki site.
Definition: Interwiki.php:463
isLocal()
Is this a local link from a sister project, or is it something outside, like Google.
Definition: Interwiki.php:444
static getMainWANInstance()
Get the main WAN cache object.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
string $mAPI
The URL of the file api.php.
Definition: Interwiki.php:43
the array() calling protocol came about after MediaWiki 1.4rc1.
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2321
string $mURL
The URL of the wiki, with "$1" as a placeholder for an article name.
Definition: Interwiki.php:40
static getInterwikiCached($prefix)
Fetch interwiki prefix data from local cache in constant database.
Definition: Interwiki.php:146
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
Definition: hooks.txt:1932
static $smCache
Definition: Interwiki.php:33
getWikiID()
Get the DB name for this wiki.
Definition: Interwiki.php:434
static resetLocalCache()
Resets locally cached Interwiki objects.
Definition: Interwiki.php:122
$source
$value
const CACHE_LIMIT
Definition: Interwiki.php:34
isTranscludable()
Can pages from this wiki be transcluded? Still requires $wgEnableScaryTransclusion.
Definition: Interwiki.php:454
getDescription()
Get a description for this interwiki.
Definition: Interwiki.php:474
wfUrlencode($s)
We want some things to be included as literal characters in our title URLs for prettiness, which urlencode encodes by default.
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
static load($prefix)
Load the interwiki, trying first memcached then the DB.
Definition: Interwiki.php:224
getAPI()
Get the API URL for this wiki.
Definition: Interwiki.php:425
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message.Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item.Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page.Return false to stop further processing of the tag $reader:XMLReader object &$pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision.Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag.Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload.Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports.&$fullInterwikiPrefix:Interwiki prefix, may contain colons.&$pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable.Can be used to lazy-load the import sources list.&$importSources:The value of $wgImportSources.Modify as necessary.See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page.$context:IContextSource object &$pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect.&$title:Title object for the current page &$request:WebRequest &$ignoreRedirect:boolean to skip redirect check &$target:Title/string of redirect target &$article:Article object 'InternalParseBeforeLinks':during Parser's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InternalParseBeforeSanitize':during Parser's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings.Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments.&$parser:Parser object &$text:string containing partially parsed text &$stripState:Parser's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not.Return true without providing an interwiki to continue interwiki search.$prefix:interwiki prefix we are looking for.&$iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user's email has been invalidated successfully.$user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification.Callee may modify $url and $query, URL will be constructed as $url.$query &$url:URL to index.php &$query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) &$article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() &$ip:IP being check &$result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from &$allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn't match your organization.$addr:The e-mail address entered by the user &$result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user &$result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we're looking for a messages file for &$file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces.Do not use this hook to add namespaces.Use CanonicalNamespaces for that.&$namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names.&$names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page's language links.This is called in various places to allow extensions to define the effective language links for a page.$title:The page's Title.&$links:Associative array mapping language codes to prefixed links of the form"language:title".&$linkFlags:Associative array mapping prefixed links to arrays of flags.Currently unused, but planned to provide support for marking individual language links in the UI, e.g.for featured articles. 'LanguageSelector':Hook to change the language selector available on a page.$out:The output page.$cssClassName:CSS class name of the language selector. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts.Return false to skip default processing and return $ret.See documentation for Linker::link() for details on the expected meanings of parameters.$skin:the Skin object $target:the Title that the link is pointing to &$html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1796
getURL($title=null)
Get the URL for a particular title (or with $1 if no title given)
Definition: Interwiki.php:411
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition: design.txt:25
static getCacheValue($key)
Definition: Interwiki.php:205
$wgInterwikiScopes
Specify number of domains to check for messages.
$res
Definition: database.txt:21
static selectFields()
Return the list of interwiki fields that should be selected to create a new Interwiki object...
Definition: Interwiki.php:485
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"&lt
$cache
Definition: mcc.php:33
const DB_SLAVE
Definition: Defines.php:46
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
static loadFromArray($mc)
Fill in member variables from an array (e.g.
Definition: Interwiki.php:271
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:131
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
static getCacheSetOptions(IDatabase $db1)
Merge the result of getSessionLagStatus() for several DBs using the most pessimistic values to estima...
Definition: Database.php:2907
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
static fetch($prefix)
Fetch an Interwiki object.
Definition: Interwiki.php:85
string $mPrefix
The interwiki prefix, (e.g.
Definition: Interwiki.php:37
The interwiki class All information is loaded on creation when called by Interwiki::fetch( $prefix )...
Definition: Interwiki.php:31
static getAllPrefixesDB($local)
Fetch all interwiki prefixes from DB.
Definition: Interwiki.php:359
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
static getAllPrefixes($local=null)
Returns all interwiki prefixes.
Definition: Interwiki.php:392
$wgInterwikiExpiry
Expiry time for cache of interwiki table.
bool $mTrans
Whether interwiki transclusions are allowed.
Definition: Interwiki.php:54
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition: design.txt:56
$wgInterwikiFallbackSite
Fallback site, if unable to resolve from cache.
wfMemcKey()
Make a cache key for the local wiki.
static getInterwikiCacheEntry($prefix)
Get entry from interwiki cache.
Definition: Interwiki.php:170
string $mWikiID
The name of the database (for a connection to be established with wfGetLB( 'wikiid' )) ...
Definition: Interwiki.php:48
static invalidateCache($prefix)
Purge the cache (local and persistent) for an interwiki prefix.
Definition: Interwiki.php:131
__construct($prefix=null, $url= '', $api= '', $wikiId= '', $local=0, $trans=0)
Definition: Interwiki.php:56
bool $mLocal
Whether the wiki is in this project.
Definition: Interwiki.php:51
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
Definition: hooks.txt:242
bool array string $wgInterwikiCache
Interwiki cache, either as an associative array or a path to a constant database (.cdb) file.
static isValidInterwiki($prefix)
Check whether an interwiki prefix exists.
Definition: Interwiki.php:73
static getAllPrefixesCached($local)
Fetch all interwiki prefixes from interwiki cache.
Definition: Interwiki.php:293