3 * Interwiki table entry.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
22 use \Cdb\Exception
as CdbException
;
23 use \Cdb\Reader
as CdbReader
;
27 * All information is loaded on creation when called by Interwiki::fetch( $prefix ).
28 * All work is done on slave, because this should *never* change (except during
29 * schema updates etc, which aren't wiki-related)
32 // Cache - removes oldest entry when it hits limit
33 protected static $smCache = array();
34 const CACHE_LIMIT
= 100; // 0 means unlimited, any other value is max number of entries.
36 /** @var string The interwiki prefix, (e.g. "Meatball", or the language prefix "de") */
39 /** @var string The URL of the wiki, with "$1" as a placeholder for an article name. */
42 /** @var string The URL of the file api.php */
45 /** @var string The name of the database (for a connection to be established
46 * with wfGetLB( 'wikiid' ))
50 /** @var bool Whether the wiki is in this project */
53 /** @var bool Whether interwiki transclusions are allowed */
56 public function __construct( $prefix = null, $url = '', $api = '', $wikiId = '', $local = 0,
59 $this->mPrefix
= $prefix;
62 $this->mWikiID
= $wikiId;
63 $this->mLocal
= $local;
64 $this->mTrans
= $trans;
68 * Check whether an interwiki prefix exists
70 * @param string $prefix Interwiki prefix to use
71 * @return bool Whether it exists
73 public static function isValidInterwiki( $prefix ) {
74 $result = self
::fetch( $prefix );
80 * Fetch an Interwiki object
82 * @param string $prefix Interwiki prefix to use
83 * @return Interwiki|null|bool
85 public static function fetch( $prefix ) {
88 if ( $prefix == '' ) {
92 $prefix = $wgContLang->lc( $prefix );
93 if ( isset( self
::$smCache[$prefix] ) ) {
94 return self
::$smCache[$prefix];
97 global $wgInterwikiCache;
98 if ( $wgInterwikiCache ) {
99 $iw = Interwiki
::getInterwikiCached( $prefix );
101 $iw = Interwiki
::load( $prefix );
107 if ( self
::CACHE_LIMIT
&& count( self
::$smCache ) >= self
::CACHE_LIMIT
) {
108 reset( self
::$smCache );
109 unset( self
::$smCache[key( self
::$smCache )] );
112 self
::$smCache[$prefix] = $iw;
118 * Fetch interwiki prefix data from local cache in constant database.
120 * @note More logic is explained in DefaultSettings.
122 * @param string $prefix Interwiki prefix
125 protected static function getInterwikiCached( $prefix ) {
126 $value = self
::getInterwikiCacheEntry( $prefix );
128 $s = new Interwiki( $prefix );
129 if ( $value != '' ) {
131 list( $local, $url ) = explode( ' ', $value, 2 );
133 $s->mLocal
= (int)$local;
142 * Get entry from interwiki cache
144 * @note More logic is explained in DefaultSettings.
146 * @param string $prefix Database key
147 * @return string The interwiki entry
149 protected static function getInterwikiCacheEntry( $prefix ) {
150 global $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
153 wfDebug( __METHOD__
. "( $prefix )\n" );
157 $db = CdbReader
::open( $wgInterwikiCache );
159 /* Resolve site name */
160 if ( $wgInterwikiScopes >= 3 && !$site ) {
161 $site = $db->get( '__sites:' . wfWikiID() );
163 $site = $wgInterwikiFallbackSite;
167 $value = $db->get( wfMemcKey( $prefix ) );
169 if ( $value == '' && $wgInterwikiScopes >= 3 ) {
170 $value = $db->get( "_{$site}:{$prefix}" );
173 if ( $value == '' && $wgInterwikiScopes >= 2 ) {
174 $value = $db->get( "__global:{$prefix}" );
176 if ( $value == 'undef' ) {
179 } catch ( CdbException
$e ) {
180 wfDebug( __METHOD__
. ": CdbException caught, error message was "
181 . $e->getMessage() );
188 * Load the interwiki, trying first memcached then the DB
190 * @param string $prefix The interwiki prefix
191 * @return Interwiki|bool Interwiki if $prefix is valid, otherwise false
193 protected static function load( $prefix ) {
194 global $wgMemc, $wgInterwikiExpiry;
197 if ( !wfRunHooks( 'InterwikiLoadPrefix', array( $prefix, &$iwData ) ) ) {
198 return Interwiki
::loadFromArray( $iwData );
202 $key = wfMemcKey( 'interwiki', $prefix );
203 $iwData = $wgMemc->get( $key );
204 if ( $iwData === '!NONEXISTENT' ) {
205 // negative cache hit
210 // is_array is hack for old keys
211 if ( $iwData && is_array( $iwData ) ) {
212 $iw = Interwiki
::loadFromArray( $iwData );
218 $db = wfGetDB( DB_SLAVE
);
220 $row = $db->fetchRow( $db->select(
222 self
::selectFields(),
223 array( 'iw_prefix' => $prefix ),
227 $iw = Interwiki
::loadFromArray( $row );
230 'iw_url' => $iw->mURL
,
231 'iw_api' => $iw->mAPI
,
232 'iw_local' => $iw->mLocal
,
233 'iw_trans' => $iw->mTrans
235 $wgMemc->add( $key, $mc, $wgInterwikiExpiry );
240 // negative cache hit
241 $wgMemc->add( $key, '!NONEXISTENT', $wgInterwikiExpiry );
247 * Fill in member variables from an array (e.g. memcached result, Database::fetchRow, etc)
249 * @param array $mc Associative array: row from the interwiki table
250 * @return Interwiki|bool Interwiki object or false if $mc['iw_url'] is not set
252 protected static function loadFromArray( $mc ) {
253 if ( isset( $mc['iw_url'] ) ) {
254 $iw = new Interwiki();
255 $iw->mURL
= $mc['iw_url'];
256 $iw->mLocal
= isset( $mc['iw_local'] ) ?
$mc['iw_local'] : 0;
257 $iw->mTrans
= isset( $mc['iw_trans'] ) ?
$mc['iw_trans'] : 0;
258 $iw->mAPI
= isset( $mc['iw_api'] ) ?
$mc['iw_api'] : '';
259 $iw->mWikiID
= isset( $mc['iw_wikiid'] ) ?
$mc['iw_wikiid'] : '';
268 * Fetch all interwiki prefixes from interwiki cache
270 * @param null|string $local If not null, limits output to local/non-local interwikis
271 * @return array List of prefixes
274 protected static function getAllPrefixesCached( $local ) {
275 global $wgInterwikiCache, $wgInterwikiScopes, $wgInterwikiFallbackSite;
278 wfDebug( __METHOD__
. "()\n" );
282 $db = CdbReader
::open( $wgInterwikiCache );
284 /* Resolve site name */
285 if ( $wgInterwikiScopes >= 3 && !$site ) {
286 $site = $db->get( '__sites:' . wfWikiID() );
288 $site = $wgInterwikiFallbackSite;
292 // List of interwiki sources
295 if ( $wgInterwikiScopes >= 2 ) {
296 $sources[] = '__global';
299 if ( $wgInterwikiScopes >= 3 ) {
300 $sources[] = '_' . $site;
302 $sources[] = wfWikiID();
304 foreach ( $sources as $source ) {
305 $list = $db->get( "__list:{$source}" );
306 foreach ( explode( ' ', $list ) as $iw_prefix ) {
307 $row = $db->get( "{$source}:{$iw_prefix}" );
312 list( $iw_local, $iw_url ) = explode( ' ', $row );
314 if ( $local !== null && $local != $iw_local ) {
318 $data[$iw_prefix] = array(
319 'iw_prefix' => $iw_prefix,
321 'iw_local' => $iw_local,
325 } catch ( CdbException
$e ) {
326 wfDebug( __METHOD__
. ": CdbException caught, error message was "
327 . $e->getMessage() );
332 return array_values( $data );
336 * Fetch all interwiki prefixes from DB
338 * @param string|null $local If not null, limits output to local/non-local interwikis
339 * @return array List of prefixes
342 protected static function getAllPrefixesDB( $local ) {
343 $db = wfGetDB( DB_SLAVE
);
347 if ( $local !== null ) {
349 $where['iw_local'] = 1;
350 } elseif ( $local == 0 ) {
351 $where['iw_local'] = 0;
355 $res = $db->select( 'interwiki',
356 self
::selectFields(),
357 $where, __METHOD__
, array( 'ORDER BY' => 'iw_prefix' )
361 foreach ( $res as $row ) {
362 $retval[] = (array)$row;
369 * Returns all interwiki prefixes
371 * @param string|null $local If set, limits output to local/non-local interwikis
372 * @return array List of prefixes
375 public static function getAllPrefixes( $local = null ) {
376 global $wgInterwikiCache;
378 if ( $wgInterwikiCache ) {
379 return self
::getAllPrefixesCached( $local );
382 return self
::getAllPrefixesDB( $local );
386 * Get the URL for a particular title (or with $1 if no title given)
388 * @param string $title What text to put for the article name
389 * @return string The URL
390 * @note Prior to 1.19 The getURL with an argument was broken.
391 * If you if you use this arg in an extension that supports MW earlier
392 * than 1.19 please wfUrlencode and substitute $1 on your own.
394 public function getURL( $title = null ) {
396 if ( $title !== null ) {
397 $url = str_replace( "$1", wfUrlencode( $title ), $url );
404 * Get the API URL for this wiki
406 * @return string The URL
408 public function getAPI() {
413 * Get the DB name for this wiki
415 * @return string The DB name
417 public function getWikiID() {
418 return $this->mWikiID
;
422 * Is this a local link from a sister project, or is
423 * it something outside, like Google
427 public function isLocal() {
428 return $this->mLocal
;
432 * Can pages from this wiki be transcluded?
433 * Still requires $wgEnableScaryTransclusion
437 public function isTranscludable() {
438 return $this->mTrans
;
442 * Get the name for the interwiki site
446 public function getName() {
447 $msg = wfMessage( 'interwiki-name-' . $this->mPrefix
)->inContentLanguage();
449 return !$msg->exists() ?
'' : $msg;
453 * Get a description for this interwiki
457 public function getDescription() {
458 $msg = wfMessage( 'interwiki-desc-' . $this->mPrefix
)->inContentLanguage();
460 return !$msg->exists() ?
'' : $msg;
464 * Return the list of interwiki fields that should be selected to create
465 * a new Interwiki object.
468 public static function selectFields() {