3 * Representation of a title within %MediaWiki.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
26 * Represents a title within MediaWiki.
27 * Optionally may contain an interwiki designation or namespace.
28 * @note This class can fetch various kinds of data from the database;
29 * however, it does so inefficiently.
30 * @note Consider using a TitleValue object instead. TitleValue is more lightweight
31 * and does not rely on global state or the database.
33 * @internal documentation reviewed 15 Mar 2010
36 /** @var MapCacheLRU */
37 static private $titleCache = null;
40 * Title::newFromText maintains a cache to avoid expensive re-normalization of
41 * commonly used titles. On a batch operation this can become a memory leak
42 * if not bounded. After hitting this many titles reset the cache.
44 const CACHE_MAX
= 1000;
47 * Used to be GAID_FOR_UPDATE define. Used with getArticleID() and friends
48 * to use the master DB
50 const GAID_FOR_UPDATE
= 1;
53 * @name Private member variables
54 * Please use the accessor functions instead.
59 /** @var string Text form (spaces not underscores) of the main part */
60 public $mTextform = '';
62 /** @var string URL-encoded form of the main part */
63 public $mUrlform = '';
65 /** @var string Main part with underscores */
66 public $mDbkeyform = '';
68 /** @var string Database key with the initial letter in the case specified by the user */
69 protected $mUserCaseDBKey;
71 /** @var int Namespace index, i.e. one of the NS_xxxx constants */
72 public $mNamespace = NS_MAIN
;
74 /** @var string Interwiki prefix */
75 public $mInterwiki = '';
77 /** @var bool Was this Title created from a string with a local interwiki prefix? */
78 private $mLocalInterwiki = false;
80 /** @var string Title fragment (i.e. the bit after the #) */
81 public $mFragment = '';
83 /** @var int Article ID, fetched from the link cache on demand */
84 public $mArticleID = -1;
86 /** @var bool|int ID of most recent revision */
87 protected $mLatestID = false;
90 * @var bool|string ID of the page's content model, i.e. one of the
91 * CONTENT_MODEL_XXX constants
93 public $mContentModel = false;
95 /** @var int Estimated number of revisions; null of not loaded */
96 private $mEstimateRevisions;
98 /** @var array Array of groups allowed to edit this article */
99 public $mRestrictions = array();
102 protected $mOldRestrictions = false;
104 /** @var bool Cascade restrictions on this page to included templates and images? */
105 public $mCascadeRestriction;
107 /** Caching the results of getCascadeProtectionSources */
108 public $mCascadingRestrictions;
110 /** @var array When do the restrictions on this page expire? */
111 protected $mRestrictionsExpiry = array();
113 /** @var bool Are cascading restrictions in effect on this page? */
114 protected $mHasCascadingRestrictions;
116 /** @var array Where are the cascading restrictions coming from on this page? */
117 public $mCascadeSources;
119 /** @var bool Boolean for initialisation on demand */
120 public $mRestrictionsLoaded = false;
122 /** @var string Text form including namespace/interwiki, initialised on demand */
123 protected $mPrefixedText = null;
125 /** @var mixed Cached value for getTitleProtection (create protection) */
126 public $mTitleProtection;
129 * @var int Namespace index when there is no namespace. Don't change the
130 * following default, NS_MAIN is hardcoded in several places. See bug 696.
131 * Zero except in {{transclusion}} tags.
133 public $mDefaultNamespace = NS_MAIN
;
136 * @var bool Is $wgUser watching this page? null if unfilled, accessed
137 * through userIsWatching()
139 protected $mWatched = null;
141 /** @var int The page length, 0 for special pages */
142 protected $mLength = -1;
144 /** @var null Is the article at this title a redirect? */
145 public $mRedirect = null;
147 /** @var array Associative array of user ID -> timestamp/false */
148 private $mNotificationTimestamp = array();
150 /** @var bool Whether a page has any subpages */
151 private $mHasSubpages;
153 /** @var bool The (string) language code of the page's language and content code. */
154 private $mPageLanguage = false;
156 /** @var string The page language code from the database */
157 private $mDbPageLanguage = null;
159 /** @var TitleValue A corresponding TitleValue object */
160 private $mTitleValue = null;
162 /** @var bool Would deleting this page be a big deletion? */
163 private $mIsBigDeletion = null;
167 * B/C kludge: provide a TitleParser for use by Title.
168 * Ideally, Title would have no methods that need this.
169 * Avoid usage of this singleton by using TitleValue
170 * and the associated services when possible.
172 * @return TitleParser
174 private static function getTitleParser() {
175 global $wgContLang, $wgLocalInterwikis;
177 static $titleCodec = null;
178 static $titleCodecFingerprint = null;
180 // $wgContLang and $wgLocalInterwikis may change (especially while testing),
181 // make sure we are using the right one. To detect changes over the course
182 // of a request, we remember a fingerprint of the config used to create the
183 // codec singleton, and re-create it if the fingerprint doesn't match.
184 $fingerprint = spl_object_hash( $wgContLang ) . '|' . join( '+', $wgLocalInterwikis );
186 if ( $fingerprint !== $titleCodecFingerprint ) {
190 if ( !$titleCodec ) {
191 $titleCodec = new MediaWikiTitleCodec(
193 GenderCache
::singleton(),
196 $titleCodecFingerprint = $fingerprint;
203 * B/C kludge: provide a TitleParser for use by Title.
204 * Ideally, Title would have no methods that need this.
205 * Avoid usage of this singleton by using TitleValue
206 * and the associated services when possible.
208 * @return TitleFormatter
210 private static function getTitleFormatter() {
211 //NOTE: we know that getTitleParser() returns a MediaWikiTitleCodec,
212 // which implements TitleFormatter.
213 return self
::getTitleParser();
216 function __construct() {
220 * Create a new Title from a prefixed DB key
222 * @param string $key The database key, which has underscores
223 * instead of spaces, possibly including namespace and
225 * @return Title|null Title, or null on an error
227 public static function newFromDBkey( $key ) {
229 $t->mDbkeyform
= $key;
230 if ( $t->secureAndSplit() ) {
238 * Create a new Title from a TitleValue
240 * @param TitleValue $titleValue Assumed to be safe.
244 public static function newFromTitleValue( TitleValue
$titleValue ) {
245 return self
::makeTitle(
246 $titleValue->getNamespace(),
247 $titleValue->getText(),
248 $titleValue->getFragment() );
252 * Create a new Title from text, such as what one would find in a link. De-
253 * codes any HTML entities in the text.
255 * @param string $text The link text; spaces, prefixes, and an
256 * initial ':' indicating the main namespace are accepted.
257 * @param int $defaultNamespace The namespace to use if none is specified
258 * by a prefix. If you want to force a specific namespace even if
259 * $text might begin with a namespace prefix, use makeTitle() or
261 * @throws MWException
262 * @return Title|null Title or null on an error.
264 public static function newFromText( $text, $defaultNamespace = NS_MAIN
) {
265 if ( is_object( $text ) ) {
266 throw new MWException( 'Title::newFromText given an object' );
269 $cache = self
::getTitleCache();
272 * Wiki pages often contain multiple links to the same page.
273 * Title normalization and parsing can become expensive on
274 * pages with many links, so we can save a little time by
277 * In theory these are value objects and won't get changed...
279 if ( $defaultNamespace == NS_MAIN
&& $cache->has( $text ) ) {
280 return $cache->get( $text );
283 # Convert things like é ā or 〗 into normalized (bug 14952) text
284 $filteredText = Sanitizer
::decodeCharReferencesAndNormalize( $text );
287 $t->mDbkeyform
= str_replace( ' ', '_', $filteredText );
288 $t->mDefaultNamespace
= intval( $defaultNamespace );
290 if ( $t->secureAndSplit() ) {
291 if ( $defaultNamespace == NS_MAIN
) {
292 $cache->set( $text, $t );
301 * THIS IS NOT THE FUNCTION YOU WANT. Use Title::newFromText().
303 * Example of wrong and broken code:
304 * $title = Title::newFromURL( $wgRequest->getVal( 'title' ) );
306 * Example of right code:
307 * $title = Title::newFromText( $wgRequest->getVal( 'title' ) );
309 * Create a new Title from URL-encoded text. Ensures that
310 * the given title's length does not exceed the maximum.
312 * @param string $url The title, as might be taken from a URL
313 * @return Title|null The new object, or null on an error
315 public static function newFromURL( $url ) {
318 # For compatibility with old buggy URLs. "+" is usually not valid in titles,
319 # but some URLs used it as a space replacement and they still come
320 # from some external search tools.
321 if ( strpos( self
::legalChars(), '+' ) === false ) {
322 $url = str_replace( '+', ' ', $url );
325 $t->mDbkeyform
= str_replace( ' ', '_', $url );
326 if ( $t->secureAndSplit() ) {
334 * @return MapCacheLRU
336 private static function getTitleCache() {
337 if ( self
::$titleCache == null ) {
338 self
::$titleCache = new MapCacheLRU( self
::CACHE_MAX
);
340 return self
::$titleCache;
344 * Returns a list of fields that are to be selected for initializing Title
345 * objects or LinkCache entries. Uses $wgContentHandlerUseDB to determine
346 * whether to include page_content_model.
350 protected static function getSelectFields() {
351 global $wgContentHandlerUseDB;
354 'page_namespace', 'page_title', 'page_id',
355 'page_len', 'page_is_redirect', 'page_latest',
358 if ( $wgContentHandlerUseDB ) {
359 $fields[] = 'page_content_model';
366 * Create a new Title from an article ID
368 * @param int $id The page_id corresponding to the Title to create
369 * @param int $flags Use Title::GAID_FOR_UPDATE to use master
370 * @return Title|null The new object, or null on an error
372 public static function newFromID( $id, $flags = 0 ) {
373 $db = ( $flags & self
::GAID_FOR_UPDATE
) ?
wfGetDB( DB_MASTER
) : wfGetDB( DB_SLAVE
);
374 $row = $db->selectRow(
376 self
::getSelectFields(),
377 array( 'page_id' => $id ),
380 if ( $row !== false ) {
381 $title = Title
::newFromRow( $row );
389 * Make an array of titles from an array of IDs
391 * @param int[] $ids Array of IDs
392 * @return Title[] Array of Titles
394 public static function newFromIDs( $ids ) {
395 if ( !count( $ids ) ) {
398 $dbr = wfGetDB( DB_SLAVE
);
402 self
::getSelectFields(),
403 array( 'page_id' => $ids ),
408 foreach ( $res as $row ) {
409 $titles[] = Title
::newFromRow( $row );
415 * Make a Title object from a DB row
417 * @param stdClass $row Object database row (needs at least page_title,page_namespace)
418 * @return Title Corresponding Title
420 public static function newFromRow( $row ) {
421 $t = self
::makeTitle( $row->page_namespace
, $row->page_title
);
422 $t->loadFromRow( $row );
427 * Load Title object fields from a DB row.
428 * If false is given, the title will be treated as non-existing.
430 * @param stdClass|bool $row Database row
432 public function loadFromRow( $row ) {
433 if ( $row ) { // page found
434 if ( isset( $row->page_id
) ) {
435 $this->mArticleID
= (int)$row->page_id
;
437 if ( isset( $row->page_len
) ) {
438 $this->mLength
= (int)$row->page_len
;
440 if ( isset( $row->page_is_redirect
) ) {
441 $this->mRedirect
= (bool)$row->page_is_redirect
;
443 if ( isset( $row->page_latest
) ) {
444 $this->mLatestID
= (int)$row->page_latest
;
446 if ( isset( $row->page_content_model
) ) {
447 $this->mContentModel
= strval( $row->page_content_model
);
449 $this->mContentModel
= false; # initialized lazily in getContentModel()
451 if ( isset( $row->page_lang
) ) {
452 $this->mDbPageLanguage
= (string)$row->page_lang
;
454 } else { // page not found
455 $this->mArticleID
= 0;
457 $this->mRedirect
= false;
458 $this->mLatestID
= 0;
459 $this->mContentModel
= false; # initialized lazily in getContentModel()
464 * Create a new Title from a namespace index and a DB key.
465 * It's assumed that $ns and $title are *valid*, for instance when
466 * they came directly from the database or a special page name.
467 * For convenience, spaces are converted to underscores so that
468 * eg user_text fields can be used directly.
470 * @param int $ns The namespace of the article
471 * @param string $title The unprefixed database key form
472 * @param string $fragment The link fragment (after the "#")
473 * @param string $interwiki The interwiki prefix
474 * @return Title The new object
476 public static function &makeTitle( $ns, $title, $fragment = '', $interwiki = '' ) {
478 $t->mInterwiki
= $interwiki;
479 $t->mFragment
= $fragment;
480 $t->mNamespace
= $ns = intval( $ns );
481 $t->mDbkeyform
= str_replace( ' ', '_', $title );
482 $t->mArticleID
= ( $ns >= 0 ) ?
-1 : 0;
483 $t->mUrlform
= wfUrlencode( $t->mDbkeyform
);
484 $t->mTextform
= str_replace( '_', ' ', $title );
485 $t->mContentModel
= false; # initialized lazily in getContentModel()
490 * Create a new Title from a namespace index and a DB key.
491 * The parameters will be checked for validity, which is a bit slower
492 * than makeTitle() but safer for user-provided data.
494 * @param int $ns The namespace of the article
495 * @param string $title Database key form
496 * @param string $fragment The link fragment (after the "#")
497 * @param string $interwiki Interwiki prefix
498 * @return Title The new object, or null on an error
500 public static function makeTitleSafe( $ns, $title, $fragment = '', $interwiki = '' ) {
501 if ( !MWNamespace
::exists( $ns ) ) {
506 $t->mDbkeyform
= Title
::makeName( $ns, $title, $fragment, $interwiki, true );
507 if ( $t->secureAndSplit() ) {
515 * Create a new Title for the Main Page
517 * @return Title The new object
519 public static function newMainPage() {
520 $title = Title
::newFromText( wfMessage( 'mainpage' )->inContentLanguage()->text() );
521 // Don't give fatal errors if the message is broken
523 $title = Title
::newFromText( 'Main Page' );
529 * Extract a redirect destination from a string and return the
530 * Title, or null if the text doesn't contain a valid redirect
531 * This will only return the very next target, useful for
532 * the redirect table and other checks that don't need full recursion
534 * @param string $text Text with possible redirect
535 * @return Title The corresponding Title
536 * @deprecated since 1.21, use Content::getRedirectTarget instead.
538 public static function newFromRedirect( $text ) {
539 ContentHandler
::deprecated( __METHOD__
, '1.21' );
541 $content = ContentHandler
::makeContent( $text, null, CONTENT_MODEL_WIKITEXT
);
542 return $content->getRedirectTarget();
546 * Extract a redirect destination from a string and return the
547 * Title, or null if the text doesn't contain a valid redirect
548 * This will recurse down $wgMaxRedirects times or until a non-redirect target is hit
549 * in order to provide (hopefully) the Title of the final destination instead of another redirect
551 * @param string $text Text with possible redirect
553 * @deprecated since 1.21, use Content::getUltimateRedirectTarget instead.
555 public static function newFromRedirectRecurse( $text ) {
556 ContentHandler
::deprecated( __METHOD__
, '1.21' );
558 $content = ContentHandler
::makeContent( $text, null, CONTENT_MODEL_WIKITEXT
);
559 return $content->getUltimateRedirectTarget();
563 * Extract a redirect destination from a string and return an
564 * array of Titles, or null if the text doesn't contain a valid redirect
565 * The last element in the array is the final destination after all redirects
566 * have been resolved (up to $wgMaxRedirects times)
568 * @param string $text Text with possible redirect
569 * @return Title[] Array of Titles, with the destination last
570 * @deprecated since 1.21, use Content::getRedirectChain instead.
572 public static function newFromRedirectArray( $text ) {
573 ContentHandler
::deprecated( __METHOD__
, '1.21' );
575 $content = ContentHandler
::makeContent( $text, null, CONTENT_MODEL_WIKITEXT
);
576 return $content->getRedirectChain();
580 * Get the prefixed DB key associated with an ID
582 * @param int $id The page_id of the article
583 * @return Title|null An object representing the article, or null if no such article was found
585 public static function nameOf( $id ) {
586 $dbr = wfGetDB( DB_SLAVE
);
588 $s = $dbr->selectRow(
590 array( 'page_namespace', 'page_title' ),
591 array( 'page_id' => $id ),
594 if ( $s === false ) {
598 $n = self
::makeName( $s->page_namespace
, $s->page_title
);
603 * Get a regex character class describing the legal characters in a link
605 * @return string The list of characters, not delimited
607 public static function legalChars() {
608 global $wgLegalTitleChars;
609 return $wgLegalTitleChars;
613 * Returns a simple regex that will match on characters and sequences invalid in titles.
614 * Note that this doesn't pick up many things that could be wrong with titles, but that
615 * replacing this regex with something valid will make many titles valid.
617 * @deprecated since 1.25, use MediaWikiTitleCodec::getTitleInvalidRegex() instead
619 * @return string Regex string
621 static function getTitleInvalidRegex() {
622 wfDeprecated( __METHOD__
, '1.25' );
623 return MediaWikiTitleCodec
::getTitleInvalidRegex();
627 * Utility method for converting a character sequence from bytes to Unicode.
629 * Primary usecase being converting $wgLegalTitleChars to a sequence usable in
630 * javascript, as PHP uses UTF-8 bytes where javascript uses Unicode code units.
632 * @param string $byteClass
635 public static function convertByteClassToUnicodeClass( $byteClass ) {
636 $length = strlen( $byteClass );
638 $x0 = $x1 = $x2 = '';
640 $d0 = $d1 = $d2 = '';
641 // Decoded integer codepoints
642 $ord0 = $ord1 = $ord2 = 0;
644 $r0 = $r1 = $r2 = '';
648 $allowUnicode = false;
649 for ( $pos = 0; $pos < $length; $pos++
) {
650 // Shift the queues down
659 // Load the current input token and decoded values
660 $inChar = $byteClass[$pos];
661 if ( $inChar == '\\' ) {
662 if ( preg_match( '/x([0-9a-fA-F]{2})/A', $byteClass, $m, 0, $pos +
1 ) ) {
663 $x0 = $inChar . $m[0];
664 $d0 = chr( hexdec( $m[1] ) );
665 $pos +
= strlen( $m[0] );
666 } elseif ( preg_match( '/[0-7]{3}/A', $byteClass, $m, 0, $pos +
1 ) ) {
667 $x0 = $inChar . $m[0];
668 $d0 = chr( octdec( $m[0] ) );
669 $pos +
= strlen( $m[0] );
670 } elseif ( $pos +
1 >= $length ) {
673 $d0 = $byteClass[$pos +
1];
681 // Load the current re-encoded value
682 if ( $ord0 < 32 ||
$ord0 == 0x7f ) {
683 $r0 = sprintf( '\x%02x', $ord0 );
684 } elseif ( $ord0 >= 0x80 ) {
685 // Allow unicode if a single high-bit character appears
686 $r0 = sprintf( '\x%02x', $ord0 );
687 $allowUnicode = true;
688 } elseif ( strpos( '-\\[]^', $d0 ) !== false ) {
694 if ( $x0 !== '' && $x1 === '-' && $x2 !== '' ) {
696 if ( $ord2 > $ord0 ) {
698 } elseif ( $ord0 >= 0x80 ) {
700 $allowUnicode = true;
701 if ( $ord2 < 0x80 ) {
702 // Keep the non-unicode section of the range
709 // Reset state to the initial value
710 $x0 = $x1 = $d0 = $d1 = $r0 = $r1 = '';
711 } elseif ( $ord2 < 0x80 ) {
716 if ( $ord1 < 0x80 ) {
719 if ( $ord0 < 0x80 ) {
722 if ( $allowUnicode ) {
723 $out .= '\u0080-\uFFFF';
729 * Make a prefixed DB key from a DB key and a namespace index
731 * @param int $ns Numerical representation of the namespace
732 * @param string $title The DB key form the title
733 * @param string $fragment The link fragment (after the "#")
734 * @param string $interwiki The interwiki prefix
735 * @param bool $canoncialNamespace If true, use the canonical name for
736 * $ns instead of the localized version.
737 * @return string The prefixed form of the title
739 public static function makeName( $ns, $title, $fragment = '', $interwiki = '',
740 $canoncialNamespace = false
744 if ( $canoncialNamespace ) {
745 $namespace = MWNamespace
::getCanonicalName( $ns );
747 $namespace = $wgContLang->getNsText( $ns );
749 $name = $namespace == '' ?
$title : "$namespace:$title";
750 if ( strval( $interwiki ) != '' ) {
751 $name = "$interwiki:$name";
753 if ( strval( $fragment ) != '' ) {
754 $name .= '#' . $fragment;
760 * Escape a text fragment, say from a link, for a URL
762 * @param string $fragment Containing a URL or link fragment (after the "#")
763 * @return string Escaped string
765 static function escapeFragmentForURL( $fragment ) {
766 # Note that we don't urlencode the fragment. urlencoded Unicode
767 # fragments appear not to work in IE (at least up to 7) or in at least
768 # one version of Opera 9.x. The W3C validator, for one, doesn't seem
769 # to care if they aren't encoded.
770 return Sanitizer
::escapeId( $fragment, 'noninitial' );
774 * Callback for usort() to do title sorts by (namespace, title)
779 * @return int Result of string comparison, or namespace comparison
781 public static function compare( $a, $b ) {
782 if ( $a->getNamespace() == $b->getNamespace() ) {
783 return strcmp( $a->getText(), $b->getText() );
785 return $a->getNamespace() - $b->getNamespace();
790 * Determine whether the object refers to a page within
791 * this project (either this wiki or a wiki with a local
792 * interwiki, see https://www.mediawiki.org/wiki/Manual:Interwiki_table#iw_local )
794 * @return bool True if this is an in-project interwiki link or a wikilink, false otherwise
796 public function isLocal() {
797 if ( $this->isExternal() ) {
798 $iw = Interwiki
::fetch( $this->mInterwiki
);
800 return $iw->isLocal();
807 * Is this Title interwiki?
811 public function isExternal() {
812 return $this->mInterwiki
!== '';
816 * Get the interwiki prefix
818 * Use Title::isExternal to check if a interwiki is set
820 * @return string Interwiki prefix
822 public function getInterwiki() {
823 return $this->mInterwiki
;
827 * Was this a local interwiki link?
831 public function wasLocalInterwiki() {
832 return $this->mLocalInterwiki
;
836 * Determine whether the object refers to a page within
837 * this project and is transcludable.
839 * @return bool True if this is transcludable
841 public function isTrans() {
842 if ( !$this->isExternal() ) {
846 return Interwiki
::fetch( $this->mInterwiki
)->isTranscludable();
850 * Returns the DB name of the distant wiki which owns the object.
852 * @return string The DB name
854 public function getTransWikiID() {
855 if ( !$this->isExternal() ) {
859 return Interwiki
::fetch( $this->mInterwiki
)->getWikiID();
863 * Get a TitleValue object representing this Title.
865 * @note Not all valid Titles have a corresponding valid TitleValue
866 * (e.g. TitleValues cannot represent page-local links that have a
867 * fragment but no title text).
869 * @return TitleValue|null
871 public function getTitleValue() {
872 if ( $this->mTitleValue
=== null ) {
874 $this->mTitleValue
= new TitleValue(
875 $this->getNamespace(),
877 $this->getFragment() );
878 } catch ( InvalidArgumentException
$ex ) {
879 wfDebug( __METHOD__
. ': Can\'t create a TitleValue for [[' .
880 $this->getPrefixedText() . ']]: ' . $ex->getMessage() . "\n" );
884 return $this->mTitleValue
;
888 * Get the text form (spaces not underscores) of the main part
890 * @return string Main part of the title
892 public function getText() {
893 return $this->mTextform
;
897 * Get the URL-encoded form of the main part
899 * @return string Main part of the title, URL-encoded
901 public function getPartialURL() {
902 return $this->mUrlform
;
906 * Get the main part with underscores
908 * @return string Main part of the title, with underscores
910 public function getDBkey() {
911 return $this->mDbkeyform
;
915 * Get the DB key with the initial letter case as specified by the user
917 * @return string DB key
919 function getUserCaseDBKey() {
920 if ( !is_null( $this->mUserCaseDBKey
) ) {
921 return $this->mUserCaseDBKey
;
923 // If created via makeTitle(), $this->mUserCaseDBKey is not set.
924 return $this->mDbkeyform
;
929 * Get the namespace index, i.e. one of the NS_xxxx constants.
931 * @return int Namespace index
933 public function getNamespace() {
934 return $this->mNamespace
;
938 * Get the page's content model id, see the CONTENT_MODEL_XXX constants.
940 * @throws MWException
941 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
942 * @return string Content model id
944 public function getContentModel( $flags = 0 ) {
945 if ( !$this->mContentModel
&& $this->getArticleID( $flags ) ) {
946 $linkCache = LinkCache
::singleton();
947 $linkCache->addLinkObj( $this ); # in case we already had an article ID
948 $this->mContentModel
= $linkCache->getGoodLinkFieldObj( $this, 'model' );
951 if ( !$this->mContentModel
) {
952 $this->mContentModel
= ContentHandler
::getDefaultModelFor( $this );
955 if ( !$this->mContentModel
) {
956 throw new MWException( 'Failed to determine content model!' );
959 return $this->mContentModel
;
963 * Convenience method for checking a title's content model name
965 * @param string $id The content model ID (use the CONTENT_MODEL_XXX constants).
966 * @return bool True if $this->getContentModel() == $id
968 public function hasContentModel( $id ) {
969 return $this->getContentModel() == $id;
973 * Get the namespace text
975 * @return string Namespace text
977 public function getNsText() {
978 if ( $this->isExternal() ) {
979 // This probably shouldn't even happen. ohh man, oh yuck.
980 // But for interwiki transclusion it sometimes does.
981 // Shit. Shit shit shit.
983 // Use the canonical namespaces if possible to try to
984 // resolve a foreign namespace.
985 if ( MWNamespace
::exists( $this->mNamespace
) ) {
986 return MWNamespace
::getCanonicalName( $this->mNamespace
);
991 $formatter = self
::getTitleFormatter();
992 return $formatter->getNamespaceName( $this->mNamespace
, $this->mDbkeyform
);
993 } catch ( InvalidArgumentException
$ex ) {
994 wfDebug( __METHOD__
. ': ' . $ex->getMessage() . "\n" );
1000 * Get the namespace text of the subject (rather than talk) page
1002 * @return string Namespace text
1004 public function getSubjectNsText() {
1006 return $wgContLang->getNsText( MWNamespace
::getSubject( $this->mNamespace
) );
1010 * Get the namespace text of the talk page
1012 * @return string Namespace text
1014 public function getTalkNsText() {
1016 return $wgContLang->getNsText( MWNamespace
::getTalk( $this->mNamespace
) );
1020 * Could this title have a corresponding talk page?
1024 public function canTalk() {
1025 return MWNamespace
::canTalk( $this->mNamespace
);
1029 * Is this in a namespace that allows actual pages?
1033 public function canExist() {
1034 return $this->mNamespace
>= NS_MAIN
;
1038 * Can this title be added to a user's watchlist?
1042 public function isWatchable() {
1043 return !$this->isExternal() && MWNamespace
::isWatchable( $this->getNamespace() );
1047 * Returns true if this is a special page.
1051 public function isSpecialPage() {
1052 return $this->getNamespace() == NS_SPECIAL
;
1056 * Returns true if this title resolves to the named special page
1058 * @param string $name The special page name
1061 public function isSpecial( $name ) {
1062 if ( $this->isSpecialPage() ) {
1063 list( $thisName, /* $subpage */ ) = SpecialPageFactory
::resolveAlias( $this->getDBkey() );
1064 if ( $name == $thisName ) {
1072 * If the Title refers to a special page alias which is not the local default, resolve
1073 * the alias, and localise the name as necessary. Otherwise, return $this
1077 public function fixSpecialName() {
1078 if ( $this->isSpecialPage() ) {
1079 list( $canonicalName, $par ) = SpecialPageFactory
::resolveAlias( $this->mDbkeyform
);
1080 if ( $canonicalName ) {
1081 $localName = SpecialPageFactory
::getLocalNameFor( $canonicalName, $par );
1082 if ( $localName != $this->mDbkeyform
) {
1083 return Title
::makeTitle( NS_SPECIAL
, $localName );
1091 * Returns true if the title is inside the specified namespace.
1093 * Please make use of this instead of comparing to getNamespace()
1094 * This function is much more resistant to changes we may make
1095 * to namespaces than code that makes direct comparisons.
1096 * @param int $ns The namespace
1100 public function inNamespace( $ns ) {
1101 return MWNamespace
::equals( $this->getNamespace(), $ns );
1105 * Returns true if the title is inside one of the specified namespaces.
1107 * @param int $namespaces,... The namespaces to check for
1111 public function inNamespaces( /* ... */ ) {
1112 $namespaces = func_get_args();
1113 if ( count( $namespaces ) > 0 && is_array( $namespaces[0] ) ) {
1114 $namespaces = $namespaces[0];
1117 foreach ( $namespaces as $ns ) {
1118 if ( $this->inNamespace( $ns ) ) {
1127 * Returns true if the title has the same subject namespace as the
1128 * namespace specified.
1129 * For example this method will take NS_USER and return true if namespace
1130 * is either NS_USER or NS_USER_TALK since both of them have NS_USER
1131 * as their subject namespace.
1133 * This is MUCH simpler than individually testing for equivalence
1134 * against both NS_USER and NS_USER_TALK, and is also forward compatible.
1139 public function hasSubjectNamespace( $ns ) {
1140 return MWNamespace
::subjectEquals( $this->getNamespace(), $ns );
1144 * Is this Title in a namespace which contains content?
1145 * In other words, is this a content page, for the purposes of calculating
1150 public function isContentPage() {
1151 return MWNamespace
::isContent( $this->getNamespace() );
1155 * Would anybody with sufficient privileges be able to move this page?
1156 * Some pages just aren't movable.
1160 public function isMovable() {
1161 if ( !MWNamespace
::isMovable( $this->getNamespace() ) ||
$this->isExternal() ) {
1162 // Interwiki title or immovable namespace. Hooks don't get to override here
1167 Hooks
::run( 'TitleIsMovable', array( $this, &$result ) );
1172 * Is this the mainpage?
1173 * @note Title::newFromText seems to be sufficiently optimized by the title
1174 * cache that we don't need to over-optimize by doing direct comparisons and
1175 * accidentally creating new bugs where $title->equals( Title::newFromText() )
1176 * ends up reporting something differently than $title->isMainPage();
1181 public function isMainPage() {
1182 return $this->equals( Title
::newMainPage() );
1186 * Is this a subpage?
1190 public function isSubpage() {
1191 return MWNamespace
::hasSubpages( $this->mNamespace
)
1192 ?
strpos( $this->getText(), '/' ) !== false
1197 * Is this a conversion table for the LanguageConverter?
1201 public function isConversionTable() {
1202 // @todo ConversionTable should become a separate content model.
1204 return $this->getNamespace() == NS_MEDIAWIKI
&&
1205 strpos( $this->getText(), 'Conversiontable/' ) === 0;
1209 * Does that page contain wikitext, or it is JS, CSS or whatever?
1213 public function isWikitextPage() {
1214 return $this->hasContentModel( CONTENT_MODEL_WIKITEXT
);
1218 * Could this page contain custom CSS or JavaScript for the global UI.
1219 * This is generally true for pages in the MediaWiki namespace having CONTENT_MODEL_CSS
1220 * or CONTENT_MODEL_JAVASCRIPT.
1222 * This method does *not* return true for per-user JS/CSS. Use isCssJsSubpage()
1225 * Note that this method should not return true for pages that contain and
1226 * show "inactive" CSS or JS.
1230 public function isCssOrJsPage() {
1231 $isCssOrJsPage = NS_MEDIAWIKI
== $this->mNamespace
1232 && ( $this->hasContentModel( CONTENT_MODEL_CSS
)
1233 ||
$this->hasContentModel( CONTENT_MODEL_JAVASCRIPT
) );
1235 # @note This hook is also called in ContentHandler::getDefaultModel.
1236 # It's called here again to make sure hook functions can force this
1237 # method to return true even outside the MediaWiki namespace.
1239 Hooks
::run( 'TitleIsCssOrJsPage', array( $this, &$isCssOrJsPage ), '1.25' );
1241 return $isCssOrJsPage;
1245 * Is this a .css or .js subpage of a user page?
1248 public function isCssJsSubpage() {
1249 return ( NS_USER
== $this->mNamespace
&& $this->isSubpage()
1250 && ( $this->hasContentModel( CONTENT_MODEL_CSS
)
1251 ||
$this->hasContentModel( CONTENT_MODEL_JAVASCRIPT
) ) );
1255 * Trim down a .css or .js subpage title to get the corresponding skin name
1257 * @return string Containing skin name from .css or .js subpage title
1259 public function getSkinFromCssJsSubpage() {
1260 $subpage = explode( '/', $this->mTextform
);
1261 $subpage = $subpage[count( $subpage ) - 1];
1262 $lastdot = strrpos( $subpage, '.' );
1263 if ( $lastdot === false ) {
1264 return $subpage; # Never happens: only called for names ending in '.css' or '.js'
1266 return substr( $subpage, 0, $lastdot );
1270 * Is this a .css subpage of a user page?
1274 public function isCssSubpage() {
1275 return ( NS_USER
== $this->mNamespace
&& $this->isSubpage()
1276 && $this->hasContentModel( CONTENT_MODEL_CSS
) );
1280 * Is this a .js subpage of a user page?
1284 public function isJsSubpage() {
1285 return ( NS_USER
== $this->mNamespace
&& $this->isSubpage()
1286 && $this->hasContentModel( CONTENT_MODEL_JAVASCRIPT
) );
1290 * Is this a talk page of some sort?
1294 public function isTalkPage() {
1295 return MWNamespace
::isTalk( $this->getNamespace() );
1299 * Get a Title object associated with the talk page of this article
1301 * @return Title The object for the talk page
1303 public function getTalkPage() {
1304 return Title
::makeTitle( MWNamespace
::getTalk( $this->getNamespace() ), $this->getDBkey() );
1308 * Get a title object associated with the subject page of this
1311 * @return Title The object for the subject page
1313 public function getSubjectPage() {
1314 // Is this the same title?
1315 $subjectNS = MWNamespace
::getSubject( $this->getNamespace() );
1316 if ( $this->getNamespace() == $subjectNS ) {
1319 return Title
::makeTitle( $subjectNS, $this->getDBkey() );
1323 * Get the other title for this page, if this is a subject page
1324 * get the talk page, if it is a subject page get the talk page
1327 * @throws MWException
1330 public function getOtherPage() {
1331 if ( $this->isSpecialPage() ) {
1332 throw new MWException( 'Special pages cannot have other pages' );
1334 if ( $this->isTalkPage() ) {
1335 return $this->getSubjectPage();
1337 return $this->getTalkPage();
1342 * Get the default namespace index, for when there is no namespace
1344 * @return int Default namespace index
1346 public function getDefaultNamespace() {
1347 return $this->mDefaultNamespace
;
1351 * Get the Title fragment (i.e.\ the bit after the #) in text form
1353 * Use Title::hasFragment to check for a fragment
1355 * @return string Title fragment
1357 public function getFragment() {
1358 return $this->mFragment
;
1362 * Check if a Title fragment is set
1367 public function hasFragment() {
1368 return $this->mFragment
!== '';
1372 * Get the fragment in URL form, including the "#" character if there is one
1373 * @return string Fragment in URL form
1375 public function getFragmentForURL() {
1376 if ( !$this->hasFragment() ) {
1379 return '#' . Title
::escapeFragmentForURL( $this->getFragment() );
1384 * Set the fragment for this title. Removes the first character from the
1385 * specified fragment before setting, so it assumes you're passing it with
1388 * Deprecated for public use, use Title::makeTitle() with fragment parameter.
1389 * Still in active use privately.
1391 * @param string $fragment Text
1393 public function setFragment( $fragment ) {
1394 $this->mFragment
= str_replace( '_', ' ', substr( $fragment, 1 ) );
1398 * Prefix some arbitrary text with the namespace or interwiki prefix
1401 * @param string $name The text
1402 * @return string The prefixed text
1404 private function prefix( $name ) {
1406 if ( $this->isExternal() ) {
1407 $p = $this->mInterwiki
. ':';
1410 if ( 0 != $this->mNamespace
) {
1411 $p .= $this->getNsText() . ':';
1417 * Get the prefixed database key form
1419 * @return string The prefixed title, with underscores and
1420 * any interwiki and namespace prefixes
1422 public function getPrefixedDBkey() {
1423 $s = $this->prefix( $this->mDbkeyform
);
1424 $s = str_replace( ' ', '_', $s );
1429 * Get the prefixed title with spaces.
1430 * This is the form usually used for display
1432 * @return string The prefixed title, with spaces
1434 public function getPrefixedText() {
1435 if ( $this->mPrefixedText
=== null ) {
1436 $s = $this->prefix( $this->mTextform
);
1437 $s = str_replace( '_', ' ', $s );
1438 $this->mPrefixedText
= $s;
1440 return $this->mPrefixedText
;
1444 * Return a string representation of this title
1446 * @return string Representation of this title
1448 public function __toString() {
1449 return $this->getPrefixedText();
1453 * Get the prefixed title with spaces, plus any fragment
1454 * (part beginning with '#')
1456 * @return string The prefixed title, with spaces and the fragment, including '#'
1458 public function getFullText() {
1459 $text = $this->getPrefixedText();
1460 if ( $this->hasFragment() ) {
1461 $text .= '#' . $this->getFragment();
1467 * Get the root page name text without a namespace, i.e. the leftmost part before any slashes
1471 * Title::newFromText('User:Foo/Bar/Baz')->getRootText();
1475 * @return string Root name
1478 public function getRootText() {
1479 if ( !MWNamespace
::hasSubpages( $this->mNamespace
) ) {
1480 return $this->getText();
1483 return strtok( $this->getText(), '/' );
1487 * Get the root page name title, i.e. the leftmost part before any slashes
1491 * Title::newFromText('User:Foo/Bar/Baz')->getRootTitle();
1492 * # returns: Title{User:Foo}
1495 * @return Title Root title
1498 public function getRootTitle() {
1499 return Title
::makeTitle( $this->getNamespace(), $this->getRootText() );
1503 * Get the base page name without a namespace, i.e. the part before the subpage name
1507 * Title::newFromText('User:Foo/Bar/Baz')->getBaseText();
1508 * # returns: 'Foo/Bar'
1511 * @return string Base name
1513 public function getBaseText() {
1514 if ( !MWNamespace
::hasSubpages( $this->mNamespace
) ) {
1515 return $this->getText();
1518 $parts = explode( '/', $this->getText() );
1519 # Don't discard the real title if there's no subpage involved
1520 if ( count( $parts ) > 1 ) {
1521 unset( $parts[count( $parts ) - 1] );
1523 return implode( '/', $parts );
1527 * Get the base page name title, i.e. the part before the subpage name
1531 * Title::newFromText('User:Foo/Bar/Baz')->getBaseTitle();
1532 * # returns: Title{User:Foo/Bar}
1535 * @return Title Base title
1538 public function getBaseTitle() {
1539 return Title
::makeTitle( $this->getNamespace(), $this->getBaseText() );
1543 * Get the lowest-level subpage name, i.e. the rightmost part after any slashes
1547 * Title::newFromText('User:Foo/Bar/Baz')->getSubpageText();
1551 * @return string Subpage name
1553 public function getSubpageText() {
1554 if ( !MWNamespace
::hasSubpages( $this->mNamespace
) ) {
1555 return $this->mTextform
;
1557 $parts = explode( '/', $this->mTextform
);
1558 return $parts[count( $parts ) - 1];
1562 * Get the title for a subpage of the current page
1566 * Title::newFromText('User:Foo/Bar/Baz')->getSubpage("Asdf");
1567 * # returns: Title{User:Foo/Bar/Baz/Asdf}
1570 * @param string $text The subpage name to add to the title
1571 * @return Title Subpage title
1574 public function getSubpage( $text ) {
1575 return Title
::makeTitleSafe( $this->getNamespace(), $this->getText() . '/' . $text );
1579 * Get a URL-encoded form of the subpage text
1581 * @return string URL-encoded subpage name
1583 public function getSubpageUrlForm() {
1584 $text = $this->getSubpageText();
1585 $text = wfUrlencode( str_replace( ' ', '_', $text ) );
1590 * Get a URL-encoded title (not an actual URL) including interwiki
1592 * @return string The URL-encoded form
1594 public function getPrefixedURL() {
1595 $s = $this->prefix( $this->mDbkeyform
);
1596 $s = wfUrlencode( str_replace( ' ', '_', $s ) );
1601 * Helper to fix up the get{Canonical,Full,Link,Local,Internal}URL args
1602 * get{Canonical,Full,Link,Local,Internal}URL methods accepted an optional
1603 * second argument named variant. This was deprecated in favor
1604 * of passing an array of option with a "variant" key
1605 * Once $query2 is removed for good, this helper can be dropped
1606 * and the wfArrayToCgi moved to getLocalURL();
1608 * @since 1.19 (r105919)
1609 * @param array|string $query
1610 * @param bool $query2
1613 private static function fixUrlQueryArgs( $query, $query2 = false ) {
1614 if ( $query2 !== false ) {
1615 wfDeprecated( "Title::get{Canonical,Full,Link,Local,Internal}URL " .
1616 "method called with a second parameter is deprecated. Add your " .
1617 "parameter to an array passed as the first parameter.", "1.19" );
1619 if ( is_array( $query ) ) {
1620 $query = wfArrayToCgi( $query );
1623 if ( is_string( $query2 ) ) {
1624 // $query2 is a string, we will consider this to be
1625 // a deprecated $variant argument and add it to the query
1626 $query2 = wfArrayToCgi( array( 'variant' => $query2 ) );
1628 $query2 = wfArrayToCgi( $query2 );
1630 // If we have $query content add a & to it first
1634 // Now append the queries together
1641 * Get a real URL referring to this title, with interwiki link and
1644 * @see self::getLocalURL for the arguments.
1646 * @param array|string $query
1647 * @param bool $query2
1648 * @param string $proto Protocol type to use in URL
1649 * @return string The URL
1651 public function getFullURL( $query = '', $query2 = false, $proto = PROTO_RELATIVE
) {
1652 $query = self
::fixUrlQueryArgs( $query, $query2 );
1654 # Hand off all the decisions on urls to getLocalURL
1655 $url = $this->getLocalURL( $query );
1657 # Expand the url to make it a full url. Note that getLocalURL has the
1658 # potential to output full urls for a variety of reasons, so we use
1659 # wfExpandUrl instead of simply prepending $wgServer
1660 $url = wfExpandUrl( $url, $proto );
1662 # Finally, add the fragment.
1663 $url .= $this->getFragmentForURL();
1665 Hooks
::run( 'GetFullURL', array( &$this, &$url, $query ) );
1670 * Get a URL with no fragment or server name (relative URL) from a Title object.
1671 * If this page is generated with action=render, however,
1672 * $wgServer is prepended to make an absolute URL.
1674 * @see self::getFullURL to always get an absolute URL.
1675 * @see self::getLinkURL to always get a URL that's the simplest URL that will be
1676 * valid to link, locally, to the current Title.
1677 * @see self::newFromText to produce a Title object.
1679 * @param string|array $query An optional query string,
1680 * not used for interwiki links. Can be specified as an associative array as well,
1681 * e.g., array( 'action' => 'edit' ) (keys and values will be URL-escaped).
1682 * Some query patterns will trigger various shorturl path replacements.
1683 * @param array $query2 An optional secondary query array. This one MUST
1684 * be an array. If a string is passed it will be interpreted as a deprecated
1685 * variant argument and urlencoded into a variant= argument.
1686 * This second query argument will be added to the $query
1687 * The second parameter is deprecated since 1.19. Pass it as a key,value
1688 * pair in the first parameter array instead.
1690 * @return string String of the URL.
1692 public function getLocalURL( $query = '', $query2 = false ) {
1693 global $wgArticlePath, $wgScript, $wgServer, $wgRequest;
1695 $query = self
::fixUrlQueryArgs( $query, $query2 );
1697 $interwiki = Interwiki
::fetch( $this->mInterwiki
);
1699 $namespace = $this->getNsText();
1700 if ( $namespace != '' ) {
1701 # Can this actually happen? Interwikis shouldn't be parsed.
1702 # Yes! It can in interwiki transclusion. But... it probably shouldn't.
1705 $url = $interwiki->getURL( $namespace . $this->getDBkey() );
1706 $url = wfAppendQuery( $url, $query );
1708 $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
1709 if ( $query == '' ) {
1710 $url = str_replace( '$1', $dbkey, $wgArticlePath );
1711 Hooks
::run( 'GetLocalURL::Article', array( &$this, &$url ) );
1713 global $wgVariantArticlePath, $wgActionPaths, $wgContLang;
1717 if ( !empty( $wgActionPaths )
1718 && preg_match( '/^(.*&|)action=([^&]*)(&(.*)|)$/', $query, $matches )
1720 $action = urldecode( $matches[2] );
1721 if ( isset( $wgActionPaths[$action] ) ) {
1722 $query = $matches[1];
1723 if ( isset( $matches[4] ) ) {
1724 $query .= $matches[4];
1726 $url = str_replace( '$1', $dbkey, $wgActionPaths[$action] );
1727 if ( $query != '' ) {
1728 $url = wfAppendQuery( $url, $query );
1734 && $wgVariantArticlePath
1735 && $wgContLang->getCode() === $this->getPageLanguage()->getCode()
1736 && $this->getPageLanguage()->hasVariants()
1737 && preg_match( '/^variant=([^&]*)$/', $query, $matches )
1739 $variant = urldecode( $matches[1] );
1740 if ( $this->getPageLanguage()->hasVariant( $variant ) ) {
1741 // Only do the variant replacement if the given variant is a valid
1742 // variant for the page's language.
1743 $url = str_replace( '$2', urlencode( $variant ), $wgVariantArticlePath );
1744 $url = str_replace( '$1', $dbkey, $url );
1748 if ( $url === false ) {
1749 if ( $query == '-' ) {
1752 $url = "{$wgScript}?title={$dbkey}&{$query}";
1756 Hooks
::run( 'GetLocalURL::Internal', array( &$this, &$url, $query ) );
1758 // @todo FIXME: This causes breakage in various places when we
1759 // actually expected a local URL and end up with dupe prefixes.
1760 if ( $wgRequest->getVal( 'action' ) == 'render' ) {
1761 $url = $wgServer . $url;
1764 Hooks
::run( 'GetLocalURL', array( &$this, &$url, $query ) );
1769 * Get a URL that's the simplest URL that will be valid to link, locally,
1770 * to the current Title. It includes the fragment, but does not include
1771 * the server unless action=render is used (or the link is external). If
1772 * there's a fragment but the prefixed text is empty, we just return a link
1775 * The result obviously should not be URL-escaped, but does need to be
1776 * HTML-escaped if it's being output in HTML.
1778 * @param array $query
1779 * @param bool $query2
1780 * @param string $proto Protocol to use; setting this will cause a full URL to be used
1781 * @see self::getLocalURL for the arguments.
1782 * @return string The URL
1784 public function getLinkURL( $query = '', $query2 = false, $proto = PROTO_RELATIVE
) {
1785 if ( $this->isExternal() ||
$proto !== PROTO_RELATIVE
) {
1786 $ret = $this->getFullURL( $query, $query2, $proto );
1787 } elseif ( $this->getPrefixedText() === '' && $this->hasFragment() ) {
1788 $ret = $this->getFragmentForURL();
1790 $ret = $this->getLocalURL( $query, $query2 ) . $this->getFragmentForURL();
1796 * Get the URL form for an internal link.
1797 * - Used in various Squid-related code, in case we have a different
1798 * internal hostname for the server from the exposed one.
1800 * This uses $wgInternalServer to qualify the path, or $wgServer
1801 * if $wgInternalServer is not set. If the server variable used is
1802 * protocol-relative, the URL will be expanded to http://
1804 * @see self::getLocalURL for the arguments.
1805 * @return string The URL
1807 public function getInternalURL( $query = '', $query2 = false ) {
1808 global $wgInternalServer, $wgServer;
1809 $query = self
::fixUrlQueryArgs( $query, $query2 );
1810 $server = $wgInternalServer !== false ?
$wgInternalServer : $wgServer;
1811 $url = wfExpandUrl( $server . $this->getLocalURL( $query ), PROTO_HTTP
);
1812 Hooks
::run( 'GetInternalURL', array( &$this, &$url, $query ) );
1817 * Get the URL for a canonical link, for use in things like IRC and
1818 * e-mail notifications. Uses $wgCanonicalServer and the
1819 * GetCanonicalURL hook.
1821 * NOTE: Unlike getInternalURL(), the canonical URL includes the fragment
1823 * @see self::getLocalURL for the arguments.
1824 * @return string The URL
1827 public function getCanonicalURL( $query = '', $query2 = false ) {
1828 $query = self
::fixUrlQueryArgs( $query, $query2 );
1829 $url = wfExpandUrl( $this->getLocalURL( $query ) . $this->getFragmentForURL(), PROTO_CANONICAL
);
1830 Hooks
::run( 'GetCanonicalURL', array( &$this, &$url, $query ) );
1835 * Get the edit URL for this Title
1837 * @return string The URL, or a null string if this is an interwiki link
1839 public function getEditURL() {
1840 if ( $this->isExternal() ) {
1843 $s = $this->getLocalURL( 'action=edit' );
1849 * Is $wgUser watching this page?
1851 * @deprecated since 1.20; use User::isWatched() instead.
1854 public function userIsWatching() {
1857 if ( is_null( $this->mWatched
) ) {
1858 if ( NS_SPECIAL
== $this->mNamespace ||
!$wgUser->isLoggedIn() ) {
1859 $this->mWatched
= false;
1861 $this->mWatched
= $wgUser->isWatched( $this );
1864 return $this->mWatched
;
1868 * Can $user perform $action on this page?
1869 * This skips potentially expensive cascading permission checks
1870 * as well as avoids expensive error formatting
1872 * Suitable for use for nonessential UI controls in common cases, but
1873 * _not_ for functional access control.
1875 * May provide false positives, but should never provide a false negative.
1877 * @param string $action Action that permission needs to be checked for
1878 * @param User $user User to check (since 1.19); $wgUser will be used if not provided.
1881 public function quickUserCan( $action, $user = null ) {
1882 return $this->userCan( $action, $user, false );
1886 * Can $user perform $action on this page?
1888 * @param string $action Action that permission needs to be checked for
1889 * @param User $user User to check (since 1.19); $wgUser will be used if not
1891 * @param string $rigor Same format as Title::getUserPermissionsErrors()
1894 public function userCan( $action, $user = null, $rigor = 'secure' ) {
1895 if ( !$user instanceof User
) {
1900 return !count( $this->getUserPermissionsErrorsInternal( $action, $user, $rigor, true ) );
1904 * Can $user perform $action on this page?
1906 * @todo FIXME: This *does not* check throttles (User::pingLimiter()).
1908 * @param string $action Action that permission needs to be checked for
1909 * @param User $user User to check
1910 * @param string $rigor One of (quick,full,secure)
1911 * - quick : does cheap permission checks from slaves (usable for GUI creation)
1912 * - full : does cheap and expensive checks possibly from a slave
1913 * - secure : does cheap and expensive checks, using the master as needed
1914 * @param bool $short Set this to true to stop after the first permission error.
1915 * @param array $ignoreErrors Array of Strings Set this to a list of message keys
1916 * whose corresponding errors may be ignored.
1917 * @return array Array of arguments to wfMessage to explain permissions problems.
1919 public function getUserPermissionsErrors(
1920 $action, $user, $rigor = 'secure', $ignoreErrors = array()
1922 $errors = $this->getUserPermissionsErrorsInternal( $action, $user, $rigor );
1924 // Remove the errors being ignored.
1925 foreach ( $errors as $index => $error ) {
1926 $error_key = is_array( $error ) ?
$error[0] : $error;
1928 if ( in_array( $error_key, $ignoreErrors ) ) {
1929 unset( $errors[$index] );
1937 * Permissions checks that fail most often, and which are easiest to test.
1939 * @param string $action The action to check
1940 * @param User $user User to check
1941 * @param array $errors List of current errors
1942 * @param string $rigor Same format as Title::getUserPermissionsErrors()
1943 * @param bool $short Short circuit on first error
1945 * @return array List of errors
1947 private function checkQuickPermissions( $action, $user, $errors, $rigor, $short ) {
1948 if ( !Hooks
::run( 'TitleQuickPermissions',
1949 array( $this, $user, $action, &$errors, ( $rigor !== 'quick' ), $short ) )
1954 if ( $action == 'create' ) {
1956 ( $this->isTalkPage() && !$user->isAllowed( 'createtalk' ) ) ||
1957 ( !$this->isTalkPage() && !$user->isAllowed( 'createpage' ) )
1959 $errors[] = $user->isAnon() ?
array( 'nocreatetext' ) : array( 'nocreate-loggedin' );
1961 } elseif ( $action == 'move' ) {
1962 if ( !$user->isAllowed( 'move-rootuserpages' )
1963 && $this->mNamespace
== NS_USER
&& !$this->isSubpage() ) {
1964 // Show user page-specific message only if the user can move other pages
1965 $errors[] = array( 'cant-move-user-page' );
1968 // Check if user is allowed to move files if it's a file
1969 if ( $this->mNamespace
== NS_FILE
&& !$user->isAllowed( 'movefile' ) ) {
1970 $errors[] = array( 'movenotallowedfile' );
1973 // Check if user is allowed to move category pages if it's a category page
1974 if ( $this->mNamespace
== NS_CATEGORY
&& !$user->isAllowed( 'move-categorypages' ) ) {
1975 $errors[] = array( 'cant-move-category-page' );
1978 if ( !$user->isAllowed( 'move' ) ) {
1979 // User can't move anything
1980 $userCanMove = User
::groupHasPermission( 'user', 'move' );
1981 $autoconfirmedCanMove = User
::groupHasPermission( 'autoconfirmed', 'move' );
1982 if ( $user->isAnon() && ( $userCanMove ||
$autoconfirmedCanMove ) ) {
1983 // custom message if logged-in users without any special rights can move
1984 $errors[] = array( 'movenologintext' );
1986 $errors[] = array( 'movenotallowed' );
1989 } elseif ( $action == 'move-target' ) {
1990 if ( !$user->isAllowed( 'move' ) ) {
1991 // User can't move anything
1992 $errors[] = array( 'movenotallowed' );
1993 } elseif ( !$user->isAllowed( 'move-rootuserpages' )
1994 && $this->mNamespace
== NS_USER
&& !$this->isSubpage() ) {
1995 // Show user page-specific message only if the user can move other pages
1996 $errors[] = array( 'cant-move-to-user-page' );
1997 } elseif ( !$user->isAllowed( 'move-categorypages' )
1998 && $this->mNamespace
== NS_CATEGORY
) {
1999 // Show category page-specific message only if the user can move other pages
2000 $errors[] = array( 'cant-move-to-category-page' );
2002 } elseif ( !$user->isAllowed( $action ) ) {
2003 $errors[] = $this->missingPermissionError( $action, $short );
2010 * Add the resulting error code to the errors array
2012 * @param array $errors List of current errors
2013 * @param array $result Result of errors
2015 * @return array List of errors
2017 private function resultToError( $errors, $result ) {
2018 if ( is_array( $result ) && count( $result ) && !is_array( $result[0] ) ) {
2019 // A single array representing an error
2020 $errors[] = $result;
2021 } elseif ( is_array( $result ) && is_array( $result[0] ) ) {
2022 // A nested array representing multiple errors
2023 $errors = array_merge( $errors, $result );
2024 } elseif ( $result !== '' && is_string( $result ) ) {
2025 // A string representing a message-id
2026 $errors[] = array( $result );
2027 } elseif ( $result === false ) {
2028 // a generic "We don't want them to do that"
2029 $errors[] = array( 'badaccess-group0' );
2035 * Check various permission hooks
2037 * @param string $action The action to check
2038 * @param User $user User to check
2039 * @param array $errors List of current errors
2040 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2041 * @param bool $short Short circuit on first error
2043 * @return array List of errors
2045 private function checkPermissionHooks( $action, $user, $errors, $rigor, $short ) {
2046 // Use getUserPermissionsErrors instead
2048 if ( !Hooks
::run( 'userCan', array( &$this, &$user, $action, &$result ) ) ) {
2049 return $result ?
array() : array( array( 'badaccess-group0' ) );
2051 // Check getUserPermissionsErrors hook
2052 if ( !Hooks
::run( 'getUserPermissionsErrors', array( &$this, &$user, $action, &$result ) ) ) {
2053 $errors = $this->resultToError( $errors, $result );
2055 // Check getUserPermissionsErrorsExpensive hook
2058 && !( $short && count( $errors ) > 0 )
2059 && !Hooks
::run( 'getUserPermissionsErrorsExpensive', array( &$this, &$user, $action, &$result ) )
2061 $errors = $this->resultToError( $errors, $result );
2068 * Check permissions on special pages & namespaces
2070 * @param string $action The action to check
2071 * @param User $user User to check
2072 * @param array $errors List of current errors
2073 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2074 * @param bool $short Short circuit on first error
2076 * @return array List of errors
2078 private function checkSpecialsAndNSPermissions( $action, $user, $errors, $rigor, $short ) {
2079 # Only 'createaccount' can be performed on special pages,
2080 # which don't actually exist in the DB.
2081 if ( NS_SPECIAL
== $this->mNamespace
&& $action !== 'createaccount' ) {
2082 $errors[] = array( 'ns-specialprotected' );
2085 # Check $wgNamespaceProtection for restricted namespaces
2086 if ( $this->isNamespaceProtected( $user ) ) {
2087 $ns = $this->mNamespace
== NS_MAIN ?
2088 wfMessage( 'nstab-main' )->text() : $this->getNsText();
2089 $errors[] = $this->mNamespace
== NS_MEDIAWIKI ?
2090 array( 'protectedinterface', $action ) : array( 'namespaceprotected', $ns, $action );
2097 * Check CSS/JS sub-page permissions
2099 * @param string $action The action to check
2100 * @param User $user User to check
2101 * @param array $errors List of current errors
2102 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2103 * @param bool $short Short circuit on first error
2105 * @return array List of errors
2107 private function checkCSSandJSPermissions( $action, $user, $errors, $rigor, $short ) {
2108 # Protect css/js subpages of user pages
2109 # XXX: this might be better using restrictions
2110 # XXX: right 'editusercssjs' is deprecated, for backward compatibility only
2111 if ( $action != 'patrol' && !$user->isAllowed( 'editusercssjs' ) ) {
2112 if ( preg_match( '/^' . preg_quote( $user->getName(), '/' ) . '\//', $this->mTextform
) ) {
2113 if ( $this->isCssSubpage() && !$user->isAllowedAny( 'editmyusercss', 'editusercss' ) ) {
2114 $errors[] = array( 'mycustomcssprotected', $action );
2115 } elseif ( $this->isJsSubpage() && !$user->isAllowedAny( 'editmyuserjs', 'edituserjs' ) ) {
2116 $errors[] = array( 'mycustomjsprotected', $action );
2119 if ( $this->isCssSubpage() && !$user->isAllowed( 'editusercss' ) ) {
2120 $errors[] = array( 'customcssprotected', $action );
2121 } elseif ( $this->isJsSubpage() && !$user->isAllowed( 'edituserjs' ) ) {
2122 $errors[] = array( 'customjsprotected', $action );
2131 * Check against page_restrictions table requirements on this
2132 * page. The user must possess all required rights for this
2135 * @param string $action The action to check
2136 * @param User $user User to check
2137 * @param array $errors List of current errors
2138 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2139 * @param bool $short Short circuit on first error
2141 * @return array List of errors
2143 private function checkPageRestrictions( $action, $user, $errors, $rigor, $short ) {
2144 foreach ( $this->getRestrictions( $action ) as $right ) {
2145 // Backwards compatibility, rewrite sysop -> editprotected
2146 if ( $right == 'sysop' ) {
2147 $right = 'editprotected';
2149 // Backwards compatibility, rewrite autoconfirmed -> editsemiprotected
2150 if ( $right == 'autoconfirmed' ) {
2151 $right = 'editsemiprotected';
2153 if ( $right == '' ) {
2156 if ( !$user->isAllowed( $right ) ) {
2157 $errors[] = array( 'protectedpagetext', $right, $action );
2158 } elseif ( $this->mCascadeRestriction
&& !$user->isAllowed( 'protect' ) ) {
2159 $errors[] = array( 'protectedpagetext', 'protect', $action );
2167 * Check restrictions on cascading pages.
2169 * @param string $action The action to check
2170 * @param User $user User to check
2171 * @param array $errors List of current errors
2172 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2173 * @param bool $short Short circuit on first error
2175 * @return array List of errors
2177 private function checkCascadingSourcesRestrictions( $action, $user, $errors, $rigor, $short ) {
2178 if ( $rigor !== 'quick' && !$this->isCssJsSubpage() ) {
2179 # We /could/ use the protection level on the source page, but it's
2180 # fairly ugly as we have to establish a precedence hierarchy for pages
2181 # included by multiple cascade-protected pages. So just restrict
2182 # it to people with 'protect' permission, as they could remove the
2183 # protection anyway.
2184 list( $cascadingSources, $restrictions ) = $this->getCascadeProtectionSources();
2185 # Cascading protection depends on more than this page...
2186 # Several cascading protected pages may include this page...
2187 # Check each cascading level
2188 # This is only for protection restrictions, not for all actions
2189 if ( isset( $restrictions[$action] ) ) {
2190 foreach ( $restrictions[$action] as $right ) {
2191 // Backwards compatibility, rewrite sysop -> editprotected
2192 if ( $right == 'sysop' ) {
2193 $right = 'editprotected';
2195 // Backwards compatibility, rewrite autoconfirmed -> editsemiprotected
2196 if ( $right == 'autoconfirmed' ) {
2197 $right = 'editsemiprotected';
2199 if ( $right != '' && !$user->isAllowedAll( 'protect', $right ) ) {
2201 foreach ( $cascadingSources as $page ) {
2202 $pages .= '* [[:' . $page->getPrefixedText() . "]]\n";
2204 $errors[] = array( 'cascadeprotected', count( $cascadingSources ), $pages, $action );
2214 * Check action permissions not already checked in checkQuickPermissions
2216 * @param string $action The action to check
2217 * @param User $user User to check
2218 * @param array $errors List of current errors
2219 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2220 * @param bool $short Short circuit on first error
2222 * @return array List of errors
2224 private function checkActionPermissions( $action, $user, $errors, $rigor, $short ) {
2225 global $wgDeleteRevisionsLimit, $wgLang;
2227 if ( $action == 'protect' ) {
2228 if ( count( $this->getUserPermissionsErrorsInternal( 'edit', $user, $rigor, true ) ) ) {
2229 // If they can't edit, they shouldn't protect.
2230 $errors[] = array( 'protect-cantedit' );
2232 } elseif ( $action == 'create' ) {
2233 $title_protection = $this->getTitleProtection();
2234 if ( $title_protection ) {
2235 if ( $title_protection['permission'] == ''
2236 ||
!$user->isAllowed( $title_protection['permission'] )
2240 User
::whoIs( $title_protection['user'] ),
2241 $title_protection['reason']
2245 } elseif ( $action == 'move' ) {
2246 // Check for immobile pages
2247 if ( !MWNamespace
::isMovable( $this->mNamespace
) ) {
2248 // Specific message for this case
2249 $errors[] = array( 'immobile-source-namespace', $this->getNsText() );
2250 } elseif ( !$this->isMovable() ) {
2251 // Less specific message for rarer cases
2252 $errors[] = array( 'immobile-source-page' );
2254 } elseif ( $action == 'move-target' ) {
2255 if ( !MWNamespace
::isMovable( $this->mNamespace
) ) {
2256 $errors[] = array( 'immobile-target-namespace', $this->getNsText() );
2257 } elseif ( !$this->isMovable() ) {
2258 $errors[] = array( 'immobile-target-page' );
2260 } elseif ( $action == 'delete' ) {
2261 $tempErrors = $this->checkPageRestrictions( 'edit', $user, array(), $rigor, true );
2262 if ( !$tempErrors ) {
2263 $tempErrors = $this->checkCascadingSourcesRestrictions( 'edit',
2264 $user, $tempErrors, $rigor, true );
2266 if ( $tempErrors ) {
2267 // If protection keeps them from editing, they shouldn't be able to delete.
2268 $errors[] = array( 'deleteprotected' );
2270 if ( $rigor !== 'quick' && $wgDeleteRevisionsLimit
2271 && !$this->userCan( 'bigdelete', $user ) && $this->isBigDeletion()
2273 $errors[] = array( 'delete-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) );
2280 * Check that the user isn't blocked from editing.
2282 * @param string $action The action to check
2283 * @param User $user User to check
2284 * @param array $errors List of current errors
2285 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2286 * @param bool $short Short circuit on first error
2288 * @return array List of errors
2290 private function checkUserBlock( $action, $user, $errors, $rigor, $short ) {
2291 // Account creation blocks handled at userlogin.
2292 // Unblocking handled in SpecialUnblock
2293 if ( $rigor === 'quick' ||
in_array( $action, array( 'createaccount', 'unblock' ) ) ) {
2297 global $wgEmailConfirmToEdit;
2299 if ( $wgEmailConfirmToEdit && !$user->isEmailConfirmed() ) {
2300 $errors[] = array( 'confirmedittext' );
2303 $useSlave = ( $rigor !== 'secure' );
2304 if ( ( $action == 'edit' ||
$action == 'create' )
2305 && !$user->isBlockedFrom( $this, $useSlave )
2307 // Don't block the user from editing their own talk page unless they've been
2308 // explicitly blocked from that too.
2309 } elseif ( $user->isBlocked() && $user->getBlock()->prevents( $action ) !== false ) {
2310 // @todo FIXME: Pass the relevant context into this function.
2311 $errors[] = $user->getBlock()->getPermissionsError( RequestContext
::getMain() );
2318 * Check that the user is allowed to read this page.
2320 * @param string $action The action to check
2321 * @param User $user User to check
2322 * @param array $errors List of current errors
2323 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2324 * @param bool $short Short circuit on first error
2326 * @return array List of errors
2328 private function checkReadPermissions( $action, $user, $errors, $rigor, $short ) {
2329 global $wgWhitelistRead, $wgWhitelistReadRegexp;
2331 $whitelisted = false;
2332 if ( User
::isEveryoneAllowed( 'read' ) ) {
2333 # Shortcut for public wikis, allows skipping quite a bit of code
2334 $whitelisted = true;
2335 } elseif ( $user->isAllowed( 'read' ) ) {
2336 # If the user is allowed to read pages, he is allowed to read all pages
2337 $whitelisted = true;
2338 } elseif ( $this->isSpecial( 'Userlogin' )
2339 ||
$this->isSpecial( 'ChangePassword' )
2340 ||
$this->isSpecial( 'PasswordReset' )
2342 # Always grant access to the login page.
2343 # Even anons need to be able to log in.
2344 $whitelisted = true;
2345 } elseif ( is_array( $wgWhitelistRead ) && count( $wgWhitelistRead ) ) {
2346 # Time to check the whitelist
2347 # Only do these checks is there's something to check against
2348 $name = $this->getPrefixedText();
2349 $dbName = $this->getPrefixedDBkey();
2351 // Check for explicit whitelisting with and without underscores
2352 if ( in_array( $name, $wgWhitelistRead, true ) ||
in_array( $dbName, $wgWhitelistRead, true ) ) {
2353 $whitelisted = true;
2354 } elseif ( $this->getNamespace() == NS_MAIN
) {
2355 # Old settings might have the title prefixed with
2356 # a colon for main-namespace pages
2357 if ( in_array( ':' . $name, $wgWhitelistRead ) ) {
2358 $whitelisted = true;
2360 } elseif ( $this->isSpecialPage() ) {
2361 # If it's a special page, ditch the subpage bit and check again
2362 $name = $this->getDBkey();
2363 list( $name, /* $subpage */ ) = SpecialPageFactory
::resolveAlias( $name );
2365 $pure = SpecialPage
::getTitleFor( $name )->getPrefixedText();
2366 if ( in_array( $pure, $wgWhitelistRead, true ) ) {
2367 $whitelisted = true;
2373 if ( !$whitelisted && is_array( $wgWhitelistReadRegexp ) && !empty( $wgWhitelistReadRegexp ) ) {
2374 $name = $this->getPrefixedText();
2375 // Check for regex whitelisting
2376 foreach ( $wgWhitelistReadRegexp as $listItem ) {
2377 if ( preg_match( $listItem, $name ) ) {
2378 $whitelisted = true;
2384 if ( !$whitelisted ) {
2385 # If the title is not whitelisted, give extensions a chance to do so...
2386 Hooks
::run( 'TitleReadWhitelist', array( $this, $user, &$whitelisted ) );
2387 if ( !$whitelisted ) {
2388 $errors[] = $this->missingPermissionError( $action, $short );
2396 * Get a description array when the user doesn't have the right to perform
2397 * $action (i.e. when User::isAllowed() returns false)
2399 * @param string $action The action to check
2400 * @param bool $short Short circuit on first error
2401 * @return array List of errors
2403 private function missingPermissionError( $action, $short ) {
2404 // We avoid expensive display logic for quickUserCan's and such
2406 return array( 'badaccess-group0' );
2409 $groups = array_map( array( 'User', 'makeGroupLinkWiki' ),
2410 User
::getGroupsWithPermission( $action ) );
2412 if ( count( $groups ) ) {
2416 $wgLang->commaList( $groups ),
2420 return array( 'badaccess-group0' );
2425 * Can $user perform $action on this page? This is an internal function,
2426 * which checks ONLY that previously checked by userCan (i.e. it leaves out
2427 * checks on wfReadOnly() and blocks)
2429 * @param string $action Action that permission needs to be checked for
2430 * @param User $user User to check
2431 * @param string $rigor One of (quick,full,secure)
2432 * - quick : does cheap permission checks from slaves (usable for GUI creation)
2433 * - full : does cheap and expensive checks possibly from a slave
2434 * - secure : does cheap and expensive checks, using the master as needed
2435 * @param bool $short Set this to true to stop after the first permission error.
2436 * @return array Array of arrays of the arguments to wfMessage to explain permissions problems.
2438 protected function getUserPermissionsErrorsInternal(
2439 $action, $user, $rigor = 'secure', $short = false
2441 if ( $rigor === true ) {
2442 $rigor = 'secure'; // b/c
2443 } elseif ( $rigor === false ) {
2444 $rigor = 'quick'; // b/c
2445 } elseif ( !in_array( $rigor, array( 'quick', 'full', 'secure' ) ) ) {
2446 throw new Exception( "Invalid rigor parameter '$rigor'." );
2449 # Read has special handling
2450 if ( $action == 'read' ) {
2452 'checkPermissionHooks',
2453 'checkReadPermissions',
2455 # Don't call checkSpecialsAndNSPermissions or checkCSSandJSPermissions
2456 # here as it will lead to duplicate error messages. This is okay to do
2457 # since anywhere that checks for create will also check for edit, and
2458 # those checks are called for edit.
2459 } elseif ( $action == 'create' ) {
2461 'checkQuickPermissions',
2462 'checkPermissionHooks',
2463 'checkPageRestrictions',
2464 'checkCascadingSourcesRestrictions',
2465 'checkActionPermissions',
2470 'checkQuickPermissions',
2471 'checkPermissionHooks',
2472 'checkSpecialsAndNSPermissions',
2473 'checkCSSandJSPermissions',
2474 'checkPageRestrictions',
2475 'checkCascadingSourcesRestrictions',
2476 'checkActionPermissions',
2482 while ( count( $checks ) > 0 &&
2483 !( $short && count( $errors ) > 0 ) ) {
2484 $method = array_shift( $checks );
2485 $errors = $this->$method( $action, $user, $errors, $rigor, $short );
2492 * Get a filtered list of all restriction types supported by this wiki.
2493 * @param bool $exists True to get all restriction types that apply to
2494 * titles that do exist, False for all restriction types that apply to
2495 * titles that do not exist
2498 public static function getFilteredRestrictionTypes( $exists = true ) {
2499 global $wgRestrictionTypes;
2500 $types = $wgRestrictionTypes;
2502 # Remove the create restriction for existing titles
2503 $types = array_diff( $types, array( 'create' ) );
2505 # Only the create and upload restrictions apply to non-existing titles
2506 $types = array_intersect( $types, array( 'create', 'upload' ) );
2512 * Returns restriction types for the current Title
2514 * @return array Applicable restriction types
2516 public function getRestrictionTypes() {
2517 if ( $this->isSpecialPage() ) {
2521 $types = self
::getFilteredRestrictionTypes( $this->exists() );
2523 if ( $this->getNamespace() != NS_FILE
) {
2524 # Remove the upload restriction for non-file titles
2525 $types = array_diff( $types, array( 'upload' ) );
2528 Hooks
::run( 'TitleGetRestrictionTypes', array( $this, &$types ) );
2530 wfDebug( __METHOD__
. ': applicable restrictions to [[' .
2531 $this->getPrefixedText() . ']] are {' . implode( ',', $types ) . "}\n" );
2537 * Is this title subject to title protection?
2538 * Title protection is the one applied against creation of such title.
2540 * @return array|bool An associative array representing any existent title
2541 * protection, or false if there's none.
2543 public function getTitleProtection() {
2544 // Can't protect pages in special namespaces
2545 if ( $this->getNamespace() < 0 ) {
2549 // Can't protect pages that exist.
2550 if ( $this->exists() ) {
2554 if ( $this->mTitleProtection
=== null ) {
2555 $dbr = wfGetDB( DB_SLAVE
);
2556 $res = $dbr->select(
2559 'user' => 'pt_user',
2560 'reason' => 'pt_reason',
2561 'expiry' => 'pt_expiry',
2562 'permission' => 'pt_create_perm'
2564 array( 'pt_namespace' => $this->getNamespace(), 'pt_title' => $this->getDBkey() ),
2568 // fetchRow returns false if there are no rows.
2569 $row = $dbr->fetchRow( $res );
2571 if ( $row['permission'] == 'sysop' ) {
2572 $row['permission'] = 'editprotected'; // B/C
2574 if ( $row['permission'] == 'autoconfirmed' ) {
2575 $row['permission'] = 'editsemiprotected'; // B/C
2578 $this->mTitleProtection
= $row;
2580 return $this->mTitleProtection
;
2584 * Remove any title protection due to page existing
2586 public function deleteTitleProtection() {
2587 $dbw = wfGetDB( DB_MASTER
);
2591 array( 'pt_namespace' => $this->getNamespace(), 'pt_title' => $this->getDBkey() ),
2594 $this->mTitleProtection
= false;
2598 * Is this page "semi-protected" - the *only* protection levels are listed
2599 * in $wgSemiprotectedRestrictionLevels?
2601 * @param string $action Action to check (default: edit)
2604 public function isSemiProtected( $action = 'edit' ) {
2605 global $wgSemiprotectedRestrictionLevels;
2607 $restrictions = $this->getRestrictions( $action );
2608 $semi = $wgSemiprotectedRestrictionLevels;
2609 if ( !$restrictions ||
!$semi ) {
2610 // Not protected, or all protection is full protection
2614 // Remap autoconfirmed to editsemiprotected for BC
2615 foreach ( array_keys( $semi, 'autoconfirmed' ) as $key ) {
2616 $semi[$key] = 'editsemiprotected';
2618 foreach ( array_keys( $restrictions, 'autoconfirmed' ) as $key ) {
2619 $restrictions[$key] = 'editsemiprotected';
2622 return !array_diff( $restrictions, $semi );
2626 * Does the title correspond to a protected article?
2628 * @param string $action The action the page is protected from,
2629 * by default checks all actions.
2632 public function isProtected( $action = '' ) {
2633 global $wgRestrictionLevels;
2635 $restrictionTypes = $this->getRestrictionTypes();
2637 # Special pages have inherent protection
2638 if ( $this->isSpecialPage() ) {
2642 # Check regular protection levels
2643 foreach ( $restrictionTypes as $type ) {
2644 if ( $action == $type ||
$action == '' ) {
2645 $r = $this->getRestrictions( $type );
2646 foreach ( $wgRestrictionLevels as $level ) {
2647 if ( in_array( $level, $r ) && $level != '' ) {
2658 * Determines if $user is unable to edit this page because it has been protected
2659 * by $wgNamespaceProtection.
2661 * @param User $user User object to check permissions
2664 public function isNamespaceProtected( User
$user ) {
2665 global $wgNamespaceProtection;
2667 if ( isset( $wgNamespaceProtection[$this->mNamespace
] ) ) {
2668 foreach ( (array)$wgNamespaceProtection[$this->mNamespace
] as $right ) {
2669 if ( $right != '' && !$user->isAllowed( $right ) ) {
2678 * Cascading protection: Return true if cascading restrictions apply to this page, false if not.
2680 * @return bool If the page is subject to cascading restrictions.
2682 public function isCascadeProtected() {
2683 list( $sources, /* $restrictions */ ) = $this->getCascadeProtectionSources( false );
2684 return ( $sources > 0 );
2688 * Determines whether cascading protection sources have already been loaded from
2691 * @param bool $getPages True to check if the pages are loaded, or false to check
2692 * if the status is loaded.
2693 * @return bool Whether or not the specified information has been loaded
2696 public function areCascadeProtectionSourcesLoaded( $getPages = true ) {
2697 return $getPages ?
$this->mCascadeSources
!== null : $this->mHasCascadingRestrictions
!== null;
2701 * Cascading protection: Get the source of any cascading restrictions on this page.
2703 * @param bool $getPages Whether or not to retrieve the actual pages
2704 * that the restrictions have come from and the actual restrictions
2706 * @return array Two elements: First is an array of Title objects of the
2707 * pages from which cascading restrictions have come, false for
2708 * none, or true if such restrictions exist but $getPages was not
2709 * set. Second is an array like that returned by
2710 * Title::getAllRestrictions(), or an empty array if $getPages is
2713 public function getCascadeProtectionSources( $getPages = true ) {
2715 $pagerestrictions = array();
2717 if ( $this->mCascadeSources
!== null && $getPages ) {
2718 return array( $this->mCascadeSources
, $this->mCascadingRestrictions
);
2719 } elseif ( $this->mHasCascadingRestrictions
!== null && !$getPages ) {
2720 return array( $this->mHasCascadingRestrictions
, $pagerestrictions );
2723 $dbr = wfGetDB( DB_SLAVE
);
2725 if ( $this->getNamespace() == NS_FILE
) {
2726 $tables = array( 'imagelinks', 'page_restrictions' );
2727 $where_clauses = array(
2728 'il_to' => $this->getDBkey(),
2733 $tables = array( 'templatelinks', 'page_restrictions' );
2734 $where_clauses = array(
2735 'tl_namespace' => $this->getNamespace(),
2736 'tl_title' => $this->getDBkey(),
2743 $cols = array( 'pr_page', 'page_namespace', 'page_title',
2744 'pr_expiry', 'pr_type', 'pr_level' );
2745 $where_clauses[] = 'page_id=pr_page';
2748 $cols = array( 'pr_expiry' );
2751 $res = $dbr->select( $tables, $cols, $where_clauses, __METHOD__
);
2753 $sources = $getPages ?
array() : false;
2754 $now = wfTimestampNow();
2756 foreach ( $res as $row ) {
2757 $expiry = $wgContLang->formatExpiry( $row->pr_expiry
, TS_MW
);
2758 if ( $expiry > $now ) {
2760 $page_id = $row->pr_page
;
2761 $page_ns = $row->page_namespace
;
2762 $page_title = $row->page_title
;
2763 $sources[$page_id] = Title
::makeTitle( $page_ns, $page_title );
2764 # Add groups needed for each restriction type if its not already there
2765 # Make sure this restriction type still exists
2767 if ( !isset( $pagerestrictions[$row->pr_type
] ) ) {
2768 $pagerestrictions[$row->pr_type
] = array();
2772 isset( $pagerestrictions[$row->pr_type
] )
2773 && !in_array( $row->pr_level
, $pagerestrictions[$row->pr_type
] )
2775 $pagerestrictions[$row->pr_type
][] = $row->pr_level
;
2784 $this->mCascadeSources
= $sources;
2785 $this->mCascadingRestrictions
= $pagerestrictions;
2787 $this->mHasCascadingRestrictions
= $sources;
2790 return array( $sources, $pagerestrictions );
2794 * Accessor for mRestrictionsLoaded
2796 * @return bool Whether or not the page's restrictions have already been
2797 * loaded from the database
2800 public function areRestrictionsLoaded() {
2801 return $this->mRestrictionsLoaded
;
2805 * Accessor/initialisation for mRestrictions
2807 * @param string $action Action that permission needs to be checked for
2808 * @return array Restriction levels needed to take the action. All levels are
2809 * required. Note that restriction levels are normally user rights, but 'sysop'
2810 * and 'autoconfirmed' are also allowed for backwards compatibility. These should
2811 * be mapped to 'editprotected' and 'editsemiprotected' respectively.
2813 public function getRestrictions( $action ) {
2814 if ( !$this->mRestrictionsLoaded
) {
2815 $this->loadRestrictions();
2817 return isset( $this->mRestrictions
[$action] )
2818 ?
$this->mRestrictions
[$action]
2823 * Accessor/initialisation for mRestrictions
2825 * @return array Keys are actions, values are arrays as returned by
2826 * Title::getRestrictions()
2829 public function getAllRestrictions() {
2830 if ( !$this->mRestrictionsLoaded
) {
2831 $this->loadRestrictions();
2833 return $this->mRestrictions
;
2837 * Get the expiry time for the restriction against a given action
2839 * @param string $action
2840 * @return string|bool 14-char timestamp, or 'infinity' if the page is protected forever
2841 * or not protected at all, or false if the action is not recognised.
2843 public function getRestrictionExpiry( $action ) {
2844 if ( !$this->mRestrictionsLoaded
) {
2845 $this->loadRestrictions();
2847 return isset( $this->mRestrictionsExpiry
[$action] ) ?
$this->mRestrictionsExpiry
[$action] : false;
2851 * Returns cascading restrictions for the current article
2855 function areRestrictionsCascading() {
2856 if ( !$this->mRestrictionsLoaded
) {
2857 $this->loadRestrictions();
2860 return $this->mCascadeRestriction
;
2864 * Loads a string into mRestrictions array
2866 * @param ResultWrapper $res Resource restrictions as an SQL result.
2867 * @param string $oldFashionedRestrictions Comma-separated list of page
2868 * restrictions from page table (pre 1.10)
2870 private function loadRestrictionsFromResultWrapper( $res, $oldFashionedRestrictions = null ) {
2873 foreach ( $res as $row ) {
2877 $this->loadRestrictionsFromRows( $rows, $oldFashionedRestrictions );
2881 * Compiles list of active page restrictions from both page table (pre 1.10)
2882 * and page_restrictions table for this existing page.
2883 * Public for usage by LiquidThreads.
2885 * @param array $rows Array of db result objects
2886 * @param string $oldFashionedRestrictions Comma-separated list of page
2887 * restrictions from page table (pre 1.10)
2889 public function loadRestrictionsFromRows( $rows, $oldFashionedRestrictions = null ) {
2891 $dbr = wfGetDB( DB_SLAVE
);
2893 $restrictionTypes = $this->getRestrictionTypes();
2895 foreach ( $restrictionTypes as $type ) {
2896 $this->mRestrictions
[$type] = array();
2897 $this->mRestrictionsExpiry
[$type] = $wgContLang->formatExpiry( '', TS_MW
);
2900 $this->mCascadeRestriction
= false;
2902 # Backwards-compatibility: also load the restrictions from the page record (old format).
2904 if ( $oldFashionedRestrictions === null ) {
2905 $oldFashionedRestrictions = $dbr->selectField( 'page', 'page_restrictions',
2906 array( 'page_id' => $this->getArticleID() ), __METHOD__
);
2909 if ( $oldFashionedRestrictions != '' ) {
2911 foreach ( explode( ':', trim( $oldFashionedRestrictions ) ) as $restrict ) {
2912 $temp = explode( '=', trim( $restrict ) );
2913 if ( count( $temp ) == 1 ) {
2914 // old old format should be treated as edit/move restriction
2915 $this->mRestrictions
['edit'] = explode( ',', trim( $temp[0] ) );
2916 $this->mRestrictions
['move'] = explode( ',', trim( $temp[0] ) );
2918 $restriction = trim( $temp[1] );
2919 if ( $restriction != '' ) { //some old entries are empty
2920 $this->mRestrictions
[$temp[0]] = explode( ',', $restriction );
2925 $this->mOldRestrictions
= true;
2929 if ( count( $rows ) ) {
2930 # Current system - load second to make them override.
2931 $now = wfTimestampNow();
2933 # Cycle through all the restrictions.
2934 foreach ( $rows as $row ) {
2936 // Don't take care of restrictions types that aren't allowed
2937 if ( !in_array( $row->pr_type
, $restrictionTypes ) ) {
2941 // This code should be refactored, now that it's being used more generally,
2942 // But I don't really see any harm in leaving it in Block for now -werdna
2943 $expiry = $wgContLang->formatExpiry( $row->pr_expiry
, TS_MW
);
2945 // Only apply the restrictions if they haven't expired!
2946 if ( !$expiry ||
$expiry > $now ) {
2947 $this->mRestrictionsExpiry
[$row->pr_type
] = $expiry;
2948 $this->mRestrictions
[$row->pr_type
] = explode( ',', trim( $row->pr_level
) );
2950 $this->mCascadeRestriction |
= $row->pr_cascade
;
2955 $this->mRestrictionsLoaded
= true;
2959 * Load restrictions from the page_restrictions table
2961 * @param string $oldFashionedRestrictions Comma-separated list of page
2962 * restrictions from page table (pre 1.10)
2964 public function loadRestrictions( $oldFashionedRestrictions = null ) {
2966 if ( !$this->mRestrictionsLoaded
) {
2967 if ( $this->exists() ) {
2968 $dbr = wfGetDB( DB_SLAVE
);
2970 $res = $dbr->select(
2971 'page_restrictions',
2972 array( 'pr_type', 'pr_expiry', 'pr_level', 'pr_cascade' ),
2973 array( 'pr_page' => $this->getArticleID() ),
2977 $this->loadRestrictionsFromResultWrapper( $res, $oldFashionedRestrictions );
2979 $title_protection = $this->getTitleProtection();
2981 if ( $title_protection ) {
2982 $now = wfTimestampNow();
2983 $expiry = $wgContLang->formatExpiry( $title_protection['expiry'], TS_MW
);
2985 if ( !$expiry ||
$expiry > $now ) {
2986 // Apply the restrictions
2987 $this->mRestrictionsExpiry
['create'] = $expiry;
2988 $this->mRestrictions
['create'] = explode( ',', trim( $title_protection['permission'] ) );
2989 } else { // Get rid of the old restrictions
2990 $this->mTitleProtection
= false;
2993 $this->mRestrictionsExpiry
['create'] = $wgContLang->formatExpiry( '', TS_MW
);
2995 $this->mRestrictionsLoaded
= true;
3001 * Flush the protection cache in this object and force reload from the database.
3002 * This is used when updating protection from WikiPage::doUpdateRestrictions().
3004 public function flushRestrictions() {
3005 $this->mRestrictionsLoaded
= false;
3006 $this->mTitleProtection
= null;
3010 * Purge expired restrictions from the page_restrictions table
3012 static function purgeExpiredRestrictions() {
3013 if ( wfReadOnly() ) {
3017 $method = __METHOD__
;
3018 $dbw = wfGetDB( DB_MASTER
);
3019 $dbw->onTransactionIdle( function () use ( $dbw, $method ) {
3021 'page_restrictions',
3022 array( 'pr_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ),
3027 array( 'pt_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ),
3034 * Does this have subpages? (Warning, usually requires an extra DB query.)
3038 public function hasSubpages() {
3039 if ( !MWNamespace
::hasSubpages( $this->mNamespace
) ) {
3044 # We dynamically add a member variable for the purpose of this method
3045 # alone to cache the result. There's no point in having it hanging
3046 # around uninitialized in every Title object; therefore we only add it
3047 # if needed and don't declare it statically.
3048 if ( $this->mHasSubpages
=== null ) {
3049 $this->mHasSubpages
= false;
3050 $subpages = $this->getSubpages( 1 );
3051 if ( $subpages instanceof TitleArray
) {
3052 $this->mHasSubpages
= (bool)$subpages->count();
3056 return $this->mHasSubpages
;
3060 * Get all subpages of this page.
3062 * @param int $limit Maximum number of subpages to fetch; -1 for no limit
3063 * @return TitleArray|array TitleArray, or empty array if this page's namespace
3064 * doesn't allow subpages
3066 public function getSubpages( $limit = -1 ) {
3067 if ( !MWNamespace
::hasSubpages( $this->getNamespace() ) ) {
3071 $dbr = wfGetDB( DB_SLAVE
);
3072 $conds['page_namespace'] = $this->getNamespace();
3073 $conds[] = 'page_title ' . $dbr->buildLike( $this->getDBkey() . '/', $dbr->anyString() );
3075 if ( $limit > -1 ) {
3076 $options['LIMIT'] = $limit;
3078 $this->mSubpages
= TitleArray
::newFromResult(
3079 $dbr->select( 'page',
3080 array( 'page_id', 'page_namespace', 'page_title', 'page_is_redirect' ),
3086 return $this->mSubpages
;
3090 * Is there a version of this page in the deletion archive?
3092 * @return int The number of archived revisions
3094 public function isDeleted() {
3095 if ( $this->getNamespace() < 0 ) {
3098 $dbr = wfGetDB( DB_SLAVE
);
3100 $n = $dbr->selectField( 'archive', 'COUNT(*)',
3101 array( 'ar_namespace' => $this->getNamespace(), 'ar_title' => $this->getDBkey() ),
3104 if ( $this->getNamespace() == NS_FILE
) {
3105 $n +
= $dbr->selectField( 'filearchive', 'COUNT(*)',
3106 array( 'fa_name' => $this->getDBkey() ),
3115 * Is there a version of this page in the deletion archive?
3119 public function isDeletedQuick() {
3120 if ( $this->getNamespace() < 0 ) {
3123 $dbr = wfGetDB( DB_SLAVE
);
3124 $deleted = (bool)$dbr->selectField( 'archive', '1',
3125 array( 'ar_namespace' => $this->getNamespace(), 'ar_title' => $this->getDBkey() ),
3128 if ( !$deleted && $this->getNamespace() == NS_FILE
) {
3129 $deleted = (bool)$dbr->selectField( 'filearchive', '1',
3130 array( 'fa_name' => $this->getDBkey() ),
3138 * Get the article ID for this Title from the link cache,
3139 * adding it if necessary
3141 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select
3143 * @return int The ID
3145 public function getArticleID( $flags = 0 ) {
3146 if ( $this->getNamespace() < 0 ) {
3147 $this->mArticleID
= 0;
3148 return $this->mArticleID
;
3150 $linkCache = LinkCache
::singleton();
3151 if ( $flags & self
::GAID_FOR_UPDATE
) {
3152 $oldUpdate = $linkCache->forUpdate( true );
3153 $linkCache->clearLink( $this );
3154 $this->mArticleID
= $linkCache->addLinkObj( $this );
3155 $linkCache->forUpdate( $oldUpdate );
3157 if ( -1 == $this->mArticleID
) {
3158 $this->mArticleID
= $linkCache->addLinkObj( $this );
3161 return $this->mArticleID
;
3165 * Is this an article that is a redirect page?
3166 * Uses link cache, adding it if necessary
3168 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3171 public function isRedirect( $flags = 0 ) {
3172 if ( !is_null( $this->mRedirect
) ) {
3173 return $this->mRedirect
;
3175 if ( !$this->getArticleID( $flags ) ) {
3176 $this->mRedirect
= false;
3177 return $this->mRedirect
;
3180 $linkCache = LinkCache
::singleton();
3181 $linkCache->addLinkObj( $this ); # in case we already had an article ID
3182 $cached = $linkCache->getGoodLinkFieldObj( $this, 'redirect' );
3183 if ( $cached === null ) {
3184 # Trust LinkCache's state over our own
3185 # LinkCache is telling us that the page doesn't exist, despite there being cached
3186 # data relating to an existing page in $this->mArticleID. Updaters should clear
3187 # LinkCache as appropriate, or use $flags = Title::GAID_FOR_UPDATE. If that flag is
3188 # set, then LinkCache will definitely be up to date here, since getArticleID() forces
3189 # LinkCache to refresh its data from the master.
3190 $this->mRedirect
= false;
3191 return $this->mRedirect
;
3194 $this->mRedirect
= (bool)$cached;
3196 return $this->mRedirect
;
3200 * What is the length of this page?
3201 * Uses link cache, adding it if necessary
3203 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3206 public function getLength( $flags = 0 ) {
3207 if ( $this->mLength
!= -1 ) {
3208 return $this->mLength
;
3210 if ( !$this->getArticleID( $flags ) ) {
3212 return $this->mLength
;
3214 $linkCache = LinkCache
::singleton();
3215 $linkCache->addLinkObj( $this ); # in case we already had an article ID
3216 $cached = $linkCache->getGoodLinkFieldObj( $this, 'length' );
3217 if ( $cached === null ) {
3218 # Trust LinkCache's state over our own, as for isRedirect()
3220 return $this->mLength
;
3223 $this->mLength
= intval( $cached );
3225 return $this->mLength
;
3229 * What is the page_latest field for this page?
3231 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3232 * @return int Int or 0 if the page doesn't exist
3234 public function getLatestRevID( $flags = 0 ) {
3235 if ( !( $flags & Title
::GAID_FOR_UPDATE
) && $this->mLatestID
!== false ) {
3236 return intval( $this->mLatestID
);
3238 if ( !$this->getArticleID( $flags ) ) {
3239 $this->mLatestID
= 0;
3240 return $this->mLatestID
;
3242 $linkCache = LinkCache
::singleton();
3243 $linkCache->addLinkObj( $this ); # in case we already had an article ID
3244 $cached = $linkCache->getGoodLinkFieldObj( $this, 'revision' );
3245 if ( $cached === null ) {
3246 # Trust LinkCache's state over our own, as for isRedirect()
3247 $this->mLatestID
= 0;
3248 return $this->mLatestID
;
3251 $this->mLatestID
= intval( $cached );
3253 return $this->mLatestID
;
3257 * This clears some fields in this object, and clears any associated
3258 * keys in the "bad links" section of the link cache.
3260 * - This is called from WikiPage::doEdit() and WikiPage::insertOn() to allow
3261 * loading of the new page_id. It's also called from
3262 * WikiPage::doDeleteArticleReal()
3264 * @param int $newid The new Article ID
3266 public function resetArticleID( $newid ) {
3267 $linkCache = LinkCache
::singleton();
3268 $linkCache->clearLink( $this );
3270 if ( $newid === false ) {
3271 $this->mArticleID
= -1;
3273 $this->mArticleID
= intval( $newid );
3275 $this->mRestrictionsLoaded
= false;
3276 $this->mRestrictions
= array();
3277 $this->mRedirect
= null;
3278 $this->mLength
= -1;
3279 $this->mLatestID
= false;
3280 $this->mContentModel
= false;
3281 $this->mEstimateRevisions
= null;
3282 $this->mPageLanguage
= false;
3283 $this->mDbPageLanguage
= null;
3284 $this->mIsBigDeletion
= null;
3288 * Capitalize a text string for a title if it belongs to a namespace that capitalizes
3290 * @param string $text Containing title to capitalize
3291 * @param int $ns Namespace index, defaults to NS_MAIN
3292 * @return string Containing capitalized title
3294 public static function capitalize( $text, $ns = NS_MAIN
) {
3297 if ( MWNamespace
::isCapitalized( $ns ) ) {
3298 return $wgContLang->ucfirst( $text );
3305 * Secure and split - main initialisation function for this object
3307 * Assumes that mDbkeyform has been set, and is urldecoded
3308 * and uses underscores, but not otherwise munged. This function
3309 * removes illegal characters, splits off the interwiki and
3310 * namespace prefixes, sets the other forms, and canonicalizes
3313 * @return bool True on success
3315 private function secureAndSplit() {
3317 $this->mInterwiki
= '';
3318 $this->mFragment
= '';
3319 $this->mNamespace
= $this->mDefaultNamespace
; # Usually NS_MAIN
3321 $dbkey = $this->mDbkeyform
;
3324 // @note: splitTitleString() is a temporary hack to allow MediaWikiTitleCodec to share
3325 // the parsing code with Title, while avoiding massive refactoring.
3326 // @todo: get rid of secureAndSplit, refactor parsing code.
3327 $titleParser = self
::getTitleParser();
3328 $parts = $titleParser->splitTitleString( $dbkey, $this->getDefaultNamespace() );
3329 } catch ( MalformedTitleException
$ex ) {
3334 $this->setFragment( '#' . $parts['fragment'] );
3335 $this->mInterwiki
= $parts['interwiki'];
3336 $this->mLocalInterwiki
= $parts['local_interwiki'];
3337 $this->mNamespace
= $parts['namespace'];
3338 $this->mUserCaseDBKey
= $parts['user_case_dbkey'];
3340 $this->mDbkeyform
= $parts['dbkey'];
3341 $this->mUrlform
= wfUrlencode( $this->mDbkeyform
);
3342 $this->mTextform
= str_replace( '_', ' ', $this->mDbkeyform
);
3344 # We already know that some pages won't be in the database!
3345 if ( $this->isExternal() ||
$this->mNamespace
== NS_SPECIAL
) {
3346 $this->mArticleID
= 0;
3353 * Get an array of Title objects linking to this Title
3354 * Also stores the IDs in the link cache.
3356 * WARNING: do not use this function on arbitrary user-supplied titles!
3357 * On heavily-used templates it will max out the memory.
3359 * @param array $options May be FOR UPDATE
3360 * @param string $table Table name
3361 * @param string $prefix Fields prefix
3362 * @return Title[] Array of Title objects linking here
3364 public function getLinksTo( $options = array(), $table = 'pagelinks', $prefix = 'pl' ) {
3365 if ( count( $options ) > 0 ) {
3366 $db = wfGetDB( DB_MASTER
);
3368 $db = wfGetDB( DB_SLAVE
);
3372 array( 'page', $table ),
3373 self
::getSelectFields(),
3375 "{$prefix}_from=page_id",
3376 "{$prefix}_namespace" => $this->getNamespace(),
3377 "{$prefix}_title" => $this->getDBkey() ),
3383 if ( $res->numRows() ) {
3384 $linkCache = LinkCache
::singleton();
3385 foreach ( $res as $row ) {
3386 $titleObj = Title
::makeTitle( $row->page_namespace
, $row->page_title
);
3388 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3389 $retVal[] = $titleObj;
3397 * Get an array of Title objects using this Title as a template
3398 * Also stores the IDs in the link cache.
3400 * WARNING: do not use this function on arbitrary user-supplied titles!
3401 * On heavily-used templates it will max out the memory.
3403 * @param array $options May be FOR UPDATE
3404 * @return Title[] Array of Title the Title objects linking here
3406 public function getTemplateLinksTo( $options = array() ) {
3407 return $this->getLinksTo( $options, 'templatelinks', 'tl' );
3411 * Get an array of Title objects linked from this Title
3412 * Also stores the IDs in the link cache.
3414 * WARNING: do not use this function on arbitrary user-supplied titles!
3415 * On heavily-used templates it will max out the memory.
3417 * @param array $options May be FOR UPDATE
3418 * @param string $table Table name
3419 * @param string $prefix Fields prefix
3420 * @return array Array of Title objects linking here
3422 public function getLinksFrom( $options = array(), $table = 'pagelinks', $prefix = 'pl' ) {
3423 global $wgContentHandlerUseDB;
3425 $id = $this->getArticleID();
3427 # If the page doesn't exist; there can't be any link from this page
3432 if ( count( $options ) > 0 ) {
3433 $db = wfGetDB( DB_MASTER
);
3435 $db = wfGetDB( DB_SLAVE
);
3438 $namespaceFiled = "{$prefix}_namespace";
3439 $titleField = "{$prefix}_title";
3450 if ( $wgContentHandlerUseDB ) {
3451 $fields[] = 'page_content_model';
3455 array( $table, 'page' ),
3457 array( "{$prefix}_from" => $id ),
3460 array( 'page' => array(
3462 array( "page_namespace=$namespaceFiled", "page_title=$titleField" )
3467 if ( $res->numRows() ) {
3468 $linkCache = LinkCache
::singleton();
3469 foreach ( $res as $row ) {
3470 $titleObj = Title
::makeTitle( $row->$namespaceFiled, $row->$titleField );
3472 if ( $row->page_id
) {
3473 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3475 $linkCache->addBadLinkObj( $titleObj );
3477 $retVal[] = $titleObj;
3485 * Get an array of Title objects used on this Title as a template
3486 * Also stores the IDs in the link cache.
3488 * WARNING: do not use this function on arbitrary user-supplied titles!
3489 * On heavily-used templates it will max out the memory.
3491 * @param array $options May be FOR UPDATE
3492 * @return Title[] Array of Title the Title objects used here
3494 public function getTemplateLinksFrom( $options = array() ) {
3495 return $this->getLinksFrom( $options, 'templatelinks', 'tl' );
3499 * Get an array of Title objects referring to non-existent articles linked
3502 * @todo check if needed (used only in SpecialBrokenRedirects.php, and
3503 * should use redirect table in this case).
3504 * @return Title[] Array of Title the Title objects
3506 public function getBrokenLinksFrom() {
3507 if ( $this->getArticleID() == 0 ) {
3508 # All links from article ID 0 are false positives
3512 $dbr = wfGetDB( DB_SLAVE
);
3513 $res = $dbr->select(
3514 array( 'page', 'pagelinks' ),
3515 array( 'pl_namespace', 'pl_title' ),
3517 'pl_from' => $this->getArticleID(),
3518 'page_namespace IS NULL'
3520 __METHOD__
, array(),
3524 array( 'pl_namespace=page_namespace', 'pl_title=page_title' )
3530 foreach ( $res as $row ) {
3531 $retVal[] = Title
::makeTitle( $row->pl_namespace
, $row->pl_title
);
3537 * Get a list of URLs to purge from the Squid cache when this
3540 * @return string[] Array of String the URLs
3542 public function getSquidURLs() {
3544 $this->getInternalURL(),
3545 $this->getInternalURL( 'action=history' )
3548 $pageLang = $this->getPageLanguage();
3549 if ( $pageLang->hasVariants() ) {
3550 $variants = $pageLang->getVariants();
3551 foreach ( $variants as $vCode ) {
3552 $urls[] = $this->getInternalURL( '', $vCode );
3556 // If we are looking at a css/js user subpage, purge the action=raw.
3557 if ( $this->isJsSubpage() ) {
3558 $urls[] = $this->getInternalUrl( 'action=raw&ctype=text/javascript' );
3559 } elseif ( $this->isCssSubpage() ) {
3560 $urls[] = $this->getInternalUrl( 'action=raw&ctype=text/css' );
3563 Hooks
::run( 'TitleSquidURLs', array( $this, &$urls ) );
3568 * Purge all applicable Squid URLs
3570 public function purgeSquid() {
3572 if ( $wgUseSquid ) {
3573 $urls = $this->getSquidURLs();
3574 $u = new SquidUpdate( $urls );
3580 * Move this page without authentication
3582 * @deprecated since 1.25 use MovePage class instead
3583 * @param Title $nt The new page Title
3584 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3586 public function moveNoAuth( &$nt ) {
3587 wfDeprecated( __METHOD__
, '1.25' );
3588 return $this->moveTo( $nt, false );
3592 * Check whether a given move operation would be valid.
3593 * Returns true if ok, or a getUserPermissionsErrors()-like array otherwise
3595 * @deprecated since 1.25, use MovePage's methods instead
3596 * @param Title $nt The new title
3597 * @param bool $auth Whether to check user permissions (uses $wgUser)
3598 * @param string $reason Is the log summary of the move, used for spam checking
3599 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3601 public function isValidMoveOperation( &$nt, $auth = true, $reason = '' ) {
3604 if ( !( $nt instanceof Title
) ) {
3605 // Normally we'd add this to $errors, but we'll get
3606 // lots of syntax errors if $nt is not an object
3607 return array( array( 'badtitletext' ) );
3610 $mp = new MovePage( $this, $nt );
3611 $errors = $mp->isValidMove()->getErrorsArray();
3613 $errors = wfMergeErrorArrays(
3615 $mp->checkPermissions( $wgUser, $reason )->getErrorsArray()
3619 return $errors ?
: true;
3623 * Check if the requested move target is a valid file move target
3624 * @todo move this to MovePage
3625 * @param Title $nt Target title
3626 * @return array List of errors
3628 protected function validateFileMoveOperation( $nt ) {
3633 $destFile = wfLocalFile( $nt );
3634 if ( !$wgUser->isAllowed( 'reupload-shared' ) && !$destFile->exists() && wfFindFile( $nt ) ) {
3635 $errors[] = array( 'file-exists-sharedrepo' );
3642 * Move a title to a new location
3644 * @deprecated since 1.25, use the MovePage class instead
3645 * @param Title $nt The new title
3646 * @param bool $auth Indicates whether $wgUser's permissions
3648 * @param string $reason The reason for the move
3649 * @param bool $createRedirect Whether to create a redirect from the old title to the new title.
3650 * Ignored if the user doesn't have the suppressredirect right.
3651 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3653 public function moveTo( &$nt, $auth = true, $reason = '', $createRedirect = true ) {
3655 $err = $this->isValidMoveOperation( $nt, $auth, $reason );
3656 if ( is_array( $err ) ) {
3657 // Auto-block user's IP if the account was "hard" blocked
3658 $wgUser->spreadAnyEditBlock();
3661 // Check suppressredirect permission
3662 if ( $auth && !$wgUser->isAllowed( 'suppressredirect' ) ) {
3663 $createRedirect = true;
3666 $mp = new MovePage( $this, $nt );
3667 $status = $mp->move( $wgUser, $reason, $createRedirect );
3668 if ( $status->isOK() ) {
3671 return $status->getErrorsArray();
3676 * Move this page's subpages to be subpages of $nt
3678 * @param Title $nt Move target
3679 * @param bool $auth Whether $wgUser's permissions should be checked
3680 * @param string $reason The reason for the move
3681 * @param bool $createRedirect Whether to create redirects from the old subpages to
3682 * the new ones Ignored if the user doesn't have the 'suppressredirect' right
3683 * @return array Array with old page titles as keys, and strings (new page titles) or
3684 * arrays (errors) as values, or an error array with numeric indices if no pages
3687 public function moveSubpages( $nt, $auth = true, $reason = '', $createRedirect = true ) {
3688 global $wgMaximumMovedPages;
3689 // Check permissions
3690 if ( !$this->userCan( 'move-subpages' ) ) {
3691 return array( 'cant-move-subpages' );
3693 // Do the source and target namespaces support subpages?
3694 if ( !MWNamespace
::hasSubpages( $this->getNamespace() ) ) {
3695 return array( 'namespace-nosubpages',
3696 MWNamespace
::getCanonicalName( $this->getNamespace() ) );
3698 if ( !MWNamespace
::hasSubpages( $nt->getNamespace() ) ) {
3699 return array( 'namespace-nosubpages',
3700 MWNamespace
::getCanonicalName( $nt->getNamespace() ) );
3703 $subpages = $this->getSubpages( $wgMaximumMovedPages +
1 );
3706 foreach ( $subpages as $oldSubpage ) {
3708 if ( $count > $wgMaximumMovedPages ) {
3709 $retval[$oldSubpage->getPrefixedText()] =
3710 array( 'movepage-max-pages',
3711 $wgMaximumMovedPages );
3715 // We don't know whether this function was called before
3716 // or after moving the root page, so check both
3718 if ( $oldSubpage->getArticleID() == $this->getArticleID()
3719 ||
$oldSubpage->getArticleID() == $nt->getArticleID()
3721 // When moving a page to a subpage of itself,
3722 // don't move it twice
3725 $newPageName = preg_replace(
3726 '#^' . preg_quote( $this->getDBkey(), '#' ) . '#',
3727 StringUtils
::escapeRegexReplacement( $nt->getDBkey() ), # bug 21234
3728 $oldSubpage->getDBkey() );
3729 if ( $oldSubpage->isTalkPage() ) {
3730 $newNs = $nt->getTalkPage()->getNamespace();
3732 $newNs = $nt->getSubjectPage()->getNamespace();
3734 # Bug 14385: we need makeTitleSafe because the new page names may
3735 # be longer than 255 characters.
3736 $newSubpage = Title
::makeTitleSafe( $newNs, $newPageName );
3738 $success = $oldSubpage->moveTo( $newSubpage, $auth, $reason, $createRedirect );
3739 if ( $success === true ) {
3740 $retval[$oldSubpage->getPrefixedText()] = $newSubpage->getPrefixedText();
3742 $retval[$oldSubpage->getPrefixedText()] = $success;
3749 * Checks if this page is just a one-rev redirect.
3750 * Adds lock, so don't use just for light purposes.
3754 public function isSingleRevRedirect() {
3755 global $wgContentHandlerUseDB;
3757 $dbw = wfGetDB( DB_MASTER
);
3760 $fields = array( 'page_is_redirect', 'page_latest', 'page_id' );
3761 if ( $wgContentHandlerUseDB ) {
3762 $fields[] = 'page_content_model';
3765 $row = $dbw->selectRow( 'page',
3769 array( 'FOR UPDATE' )
3771 # Cache some fields we may want
3772 $this->mArticleID
= $row ?
intval( $row->page_id
) : 0;
3773 $this->mRedirect
= $row ?
(bool)$row->page_is_redirect
: false;
3774 $this->mLatestID
= $row ?
intval( $row->page_latest
) : false;
3775 $this->mContentModel
= $row && isset( $row->page_content_model
)
3776 ?
strval( $row->page_content_model
)
3779 if ( !$this->mRedirect
) {
3782 # Does the article have a history?
3783 $row = $dbw->selectField( array( 'page', 'revision' ),
3785 array( 'page_namespace' => $this->getNamespace(),
3786 'page_title' => $this->getDBkey(),
3788 'page_latest != rev_id'
3791 array( 'FOR UPDATE' )
3793 # Return true if there was no history
3794 return ( $row === false );
3798 * Checks if $this can be moved to a given Title
3799 * - Selects for update, so don't call it unless you mean business
3801 * @deprecated since 1.25, use MovePage's methods instead
3802 * @param Title $nt The new title to check
3805 public function isValidMoveTarget( $nt ) {
3806 # Is it an existing file?
3807 if ( $nt->getNamespace() == NS_FILE
) {
3808 $file = wfLocalFile( $nt );
3809 if ( $file->exists() ) {
3810 wfDebug( __METHOD__
. ": file exists\n" );
3814 # Is it a redirect with no history?
3815 if ( !$nt->isSingleRevRedirect() ) {
3816 wfDebug( __METHOD__
. ": not a one-rev redirect\n" );
3819 # Get the article text
3820 $rev = Revision
::newFromTitle( $nt, false, Revision
::READ_LATEST
);
3821 if ( !is_object( $rev ) ) {
3824 $content = $rev->getContent();
3825 # Does the redirect point to the source?
3826 # Or is it a broken self-redirect, usually caused by namespace collisions?
3827 $redirTitle = $content ?
$content->getRedirectTarget() : null;
3829 if ( $redirTitle ) {
3830 if ( $redirTitle->getPrefixedDBkey() != $this->getPrefixedDBkey() &&
3831 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) {
3832 wfDebug( __METHOD__
. ": redirect points to other page\n" );
3838 # Fail safe (not a redirect after all. strange.)
3839 wfDebug( __METHOD__
. ": failsafe: database sais " . $nt->getPrefixedDBkey() .
3840 " is a redirect, but it doesn't contain a valid redirect.\n" );
3846 * Get categories to which this Title belongs and return an array of
3847 * categories' names.
3849 * @return array Array of parents in the form:
3850 * $parent => $currentarticle
3852 public function getParentCategories() {
3857 $titleKey = $this->getArticleID();
3859 if ( $titleKey === 0 ) {
3863 $dbr = wfGetDB( DB_SLAVE
);
3865 $res = $dbr->select(
3868 array( 'cl_from' => $titleKey ),
3872 if ( $res->numRows() > 0 ) {
3873 foreach ( $res as $row ) {
3874 // $data[] = Title::newFromText($wgContLang->getNsText ( NS_CATEGORY ).':'.$row->cl_to);
3875 $data[$wgContLang->getNsText( NS_CATEGORY
) . ':' . $row->cl_to
] = $this->getFullText();
3882 * Get a tree of parent categories
3884 * @param array $children Array with the children in the keys, to check for circular refs
3885 * @return array Tree of parent categories
3887 public function getParentCategoryTree( $children = array() ) {
3889 $parents = $this->getParentCategories();
3892 foreach ( $parents as $parent => $current ) {
3893 if ( array_key_exists( $parent, $children ) ) {
3894 # Circular reference
3895 $stack[$parent] = array();
3897 $nt = Title
::newFromText( $parent );
3899 $stack[$parent] = $nt->getParentCategoryTree( $children +
array( $parent => 1 ) );
3909 * Get an associative array for selecting this title from
3912 * @return array Array suitable for the $where parameter of DB::select()
3914 public function pageCond() {
3915 if ( $this->mArticleID
> 0 ) {
3916 // PK avoids secondary lookups in InnoDB, shouldn't hurt other DBs
3917 return array( 'page_id' => $this->mArticleID
);
3919 return array( 'page_namespace' => $this->mNamespace
, 'page_title' => $this->mDbkeyform
);
3924 * Get the revision ID of the previous revision
3926 * @param int $revId Revision ID. Get the revision that was before this one.
3927 * @param int $flags Title::GAID_FOR_UPDATE
3928 * @return int|bool Old revision ID, or false if none exists
3930 public function getPreviousRevisionID( $revId, $flags = 0 ) {
3931 $db = ( $flags & self
::GAID_FOR_UPDATE
) ?
wfGetDB( DB_MASTER
) : wfGetDB( DB_SLAVE
);
3932 $revId = $db->selectField( 'revision', 'rev_id',
3934 'rev_page' => $this->getArticleID( $flags ),
3935 'rev_id < ' . intval( $revId )
3938 array( 'ORDER BY' => 'rev_id DESC' )
3941 if ( $revId === false ) {
3944 return intval( $revId );
3949 * Get the revision ID of the next revision
3951 * @param int $revId Revision ID. Get the revision that was after this one.
3952 * @param int $flags Title::GAID_FOR_UPDATE
3953 * @return int|bool Next revision ID, or false if none exists
3955 public function getNextRevisionID( $revId, $flags = 0 ) {
3956 $db = ( $flags & self
::GAID_FOR_UPDATE
) ?
wfGetDB( DB_MASTER
) : wfGetDB( DB_SLAVE
);
3957 $revId = $db->selectField( 'revision', 'rev_id',
3959 'rev_page' => $this->getArticleID( $flags ),
3960 'rev_id > ' . intval( $revId )
3963 array( 'ORDER BY' => 'rev_id' )
3966 if ( $revId === false ) {
3969 return intval( $revId );
3974 * Get the first revision of the page
3976 * @param int $flags Title::GAID_FOR_UPDATE
3977 * @return Revision|null If page doesn't exist
3979 public function getFirstRevision( $flags = 0 ) {
3980 $pageId = $this->getArticleID( $flags );
3982 $db = ( $flags & self
::GAID_FOR_UPDATE
) ?
wfGetDB( DB_MASTER
) : wfGetDB( DB_SLAVE
);
3983 $row = $db->selectRow( 'revision', Revision
::selectFields(),
3984 array( 'rev_page' => $pageId ),
3986 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 1 )
3989 return new Revision( $row );
3996 * Get the oldest revision timestamp of this page
3998 * @param int $flags Title::GAID_FOR_UPDATE
3999 * @return string MW timestamp
4001 public function getEarliestRevTime( $flags = 0 ) {
4002 $rev = $this->getFirstRevision( $flags );
4003 return $rev ?
$rev->getTimestamp() : null;
4007 * Check if this is a new page
4011 public function isNewPage() {
4012 $dbr = wfGetDB( DB_SLAVE
);
4013 return (bool)$dbr->selectField( 'page', 'page_is_new', $this->pageCond(), __METHOD__
);
4017 * Check whether the number of revisions of this page surpasses $wgDeleteRevisionsLimit
4021 public function isBigDeletion() {
4022 global $wgDeleteRevisionsLimit;
4024 if ( !$wgDeleteRevisionsLimit ) {
4028 if ( $this->mIsBigDeletion
=== null ) {
4029 $dbr = wfGetDB( DB_SLAVE
);
4031 $revCount = $dbr->selectRowCount(
4034 array( 'rev_page' => $this->getArticleID() ),
4036 array( 'LIMIT' => $wgDeleteRevisionsLimit +
1 )
4039 $this->mIsBigDeletion
= $revCount > $wgDeleteRevisionsLimit;
4042 return $this->mIsBigDeletion
;
4046 * Get the approximate revision count of this page.
4050 public function estimateRevisionCount() {
4051 if ( !$this->exists() ) {
4055 if ( $this->mEstimateRevisions
=== null ) {
4056 $dbr = wfGetDB( DB_SLAVE
);
4057 $this->mEstimateRevisions
= $dbr->estimateRowCount( 'revision', '*',
4058 array( 'rev_page' => $this->getArticleID() ), __METHOD__
);
4061 return $this->mEstimateRevisions
;
4065 * Get the number of revisions between the given revision.
4066 * Used for diffs and other things that really need it.
4068 * @param int|Revision $old Old revision or rev ID (first before range)
4069 * @param int|Revision $new New revision or rev ID (first after range)
4070 * @param int|null $max Limit of Revisions to count, will be incremented to detect truncations
4071 * @return int Number of revisions between these revisions.
4073 public function countRevisionsBetween( $old, $new, $max = null ) {
4074 if ( !( $old instanceof Revision
) ) {
4075 $old = Revision
::newFromTitle( $this, (int)$old );
4077 if ( !( $new instanceof Revision
) ) {
4078 $new = Revision
::newFromTitle( $this, (int)$new );
4080 if ( !$old ||
!$new ) {
4081 return 0; // nothing to compare
4083 $dbr = wfGetDB( DB_SLAVE
);
4085 'rev_page' => $this->getArticleID(),
4086 'rev_timestamp > ' . $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) ),
4087 'rev_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) )
4089 if ( $max !== null ) {
4090 return $dbr->selectRowCount( 'revision', '1',
4093 array( 'LIMIT' => $max +
1 ) // extra to detect truncation
4096 return (int)$dbr->selectField( 'revision', 'count(*)', $conds, __METHOD__
);
4101 * Get the authors between the given revisions or revision IDs.
4102 * Used for diffs and other things that really need it.
4106 * @param int|Revision $old Old revision or rev ID (first before range by default)
4107 * @param int|Revision $new New revision or rev ID (first after range by default)
4108 * @param int $limit Maximum number of authors
4109 * @param string|array $options (Optional): Single option, or an array of options:
4110 * 'include_old' Include $old in the range; $new is excluded.
4111 * 'include_new' Include $new in the range; $old is excluded.
4112 * 'include_both' Include both $old and $new in the range.
4113 * Unknown option values are ignored.
4114 * @return array|null Names of revision authors in the range; null if not both revisions exist
4116 public function getAuthorsBetween( $old, $new, $limit, $options = array() ) {
4117 if ( !( $old instanceof Revision
) ) {
4118 $old = Revision
::newFromTitle( $this, (int)$old );
4120 if ( !( $new instanceof Revision
) ) {
4121 $new = Revision
::newFromTitle( $this, (int)$new );
4123 // XXX: what if Revision objects are passed in, but they don't refer to this title?
4124 // Add $old->getPage() != $new->getPage() || $old->getPage() != $this->getArticleID()
4125 // in the sanity check below?
4126 if ( !$old ||
!$new ) {
4127 return null; // nothing to compare
4132 $options = (array)$options;
4133 if ( in_array( 'include_old', $options ) ) {
4136 if ( in_array( 'include_new', $options ) ) {
4139 if ( in_array( 'include_both', $options ) ) {
4143 // No DB query needed if $old and $new are the same or successive revisions:
4144 if ( $old->getId() === $new->getId() ) {
4145 return ( $old_cmp === '>' && $new_cmp === '<' ) ?
4147 array( $old->getUserText( Revision
::RAW
) );
4148 } elseif ( $old->getId() === $new->getParentId() ) {
4149 if ( $old_cmp === '>=' && $new_cmp === '<=' ) {
4150 $authors[] = $old->getUserText( Revision
::RAW
);
4151 if ( $old->getUserText( Revision
::RAW
) != $new->getUserText( Revision
::RAW
) ) {
4152 $authors[] = $new->getUserText( Revision
::RAW
);
4154 } elseif ( $old_cmp === '>=' ) {
4155 $authors[] = $old->getUserText( Revision
::RAW
);
4156 } elseif ( $new_cmp === '<=' ) {
4157 $authors[] = $new->getUserText( Revision
::RAW
);
4161 $dbr = wfGetDB( DB_SLAVE
);
4162 $res = $dbr->select( 'revision', 'DISTINCT rev_user_text',
4164 'rev_page' => $this->getArticleID(),
4165 "rev_timestamp $old_cmp " . $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) ),
4166 "rev_timestamp $new_cmp " . $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) )
4168 array( 'LIMIT' => $limit +
1 ) // add one so caller knows it was truncated
4170 foreach ( $res as $row ) {
4171 $authors[] = $row->rev_user_text
;
4177 * Get the number of authors between the given revisions or revision IDs.
4178 * Used for diffs and other things that really need it.
4180 * @param int|Revision $old Old revision or rev ID (first before range by default)
4181 * @param int|Revision $new New revision or rev ID (first after range by default)
4182 * @param int $limit Maximum number of authors
4183 * @param string|array $options (Optional): Single option, or an array of options:
4184 * 'include_old' Include $old in the range; $new is excluded.
4185 * 'include_new' Include $new in the range; $old is excluded.
4186 * 'include_both' Include both $old and $new in the range.
4187 * Unknown option values are ignored.
4188 * @return int Number of revision authors in the range; zero if not both revisions exist
4190 public function countAuthorsBetween( $old, $new, $limit, $options = array() ) {
4191 $authors = $this->getAuthorsBetween( $old, $new, $limit, $options );
4192 return $authors ?
count( $authors ) : 0;
4196 * Compare with another title.
4198 * @param Title $title
4201 public function equals( Title
$title ) {
4202 // Note: === is necessary for proper matching of number-like titles.
4203 return $this->getInterwiki() === $title->getInterwiki()
4204 && $this->getNamespace() == $title->getNamespace()
4205 && $this->getDBkey() === $title->getDBkey();
4209 * Check if this title is a subpage of another title
4211 * @param Title $title
4214 public function isSubpageOf( Title
$title ) {
4215 return $this->getInterwiki() === $title->getInterwiki()
4216 && $this->getNamespace() == $title->getNamespace()
4217 && strpos( $this->getDBkey(), $title->getDBkey() . '/' ) === 0;
4221 * Check if page exists. For historical reasons, this function simply
4222 * checks for the existence of the title in the page table, and will
4223 * thus return false for interwiki links, special pages and the like.
4224 * If you want to know if a title can be meaningfully viewed, you should
4225 * probably call the isKnown() method instead.
4229 public function exists() {
4230 $exists = $this->getArticleID() != 0;
4231 Hooks
::run( 'TitleExists', array( $this, &$exists ) );
4236 * Should links to this title be shown as potentially viewable (i.e. as
4237 * "bluelinks"), even if there's no record by this title in the page
4240 * This function is semi-deprecated for public use, as well as somewhat
4241 * misleadingly named. You probably just want to call isKnown(), which
4242 * calls this function internally.
4244 * (ISSUE: Most of these checks are cheap, but the file existence check
4245 * can potentially be quite expensive. Including it here fixes a lot of
4246 * existing code, but we might want to add an optional parameter to skip
4247 * it and any other expensive checks.)
4251 public function isAlwaysKnown() {
4255 * Allows overriding default behavior for determining if a page exists.
4256 * If $isKnown is kept as null, regular checks happen. If it's
4257 * a boolean, this value is returned by the isKnown method.
4261 * @param Title $title
4262 * @param bool|null $isKnown
4264 Hooks
::run( 'TitleIsAlwaysKnown', array( $this, &$isKnown ) );
4266 if ( !is_null( $isKnown ) ) {
4270 if ( $this->isExternal() ) {
4271 return true; // any interwiki link might be viewable, for all we know
4274 switch ( $this->mNamespace
) {
4277 // file exists, possibly in a foreign repo
4278 return (bool)wfFindFile( $this );
4280 // valid special page
4281 return SpecialPageFactory
::exists( $this->getDBkey() );
4283 // selflink, possibly with fragment
4284 return $this->mDbkeyform
== '';
4286 // known system message
4287 return $this->hasSourceText() !== false;
4294 * Does this title refer to a page that can (or might) be meaningfully
4295 * viewed? In particular, this function may be used to determine if
4296 * links to the title should be rendered as "bluelinks" (as opposed to
4297 * "redlinks" to non-existent pages).
4298 * Adding something else to this function will cause inconsistency
4299 * since LinkHolderArray calls isAlwaysKnown() and does its own
4300 * page existence check.
4304 public function isKnown() {
4305 return $this->isAlwaysKnown() ||
$this->exists();
4309 * Does this page have source text?
4313 public function hasSourceText() {
4314 if ( $this->exists() ) {
4318 if ( $this->mNamespace
== NS_MEDIAWIKI
) {
4319 // If the page doesn't exist but is a known system message, default
4320 // message content will be displayed, same for language subpages-
4321 // Use always content language to avoid loading hundreds of languages
4322 // to get the link color.
4324 list( $name, ) = MessageCache
::singleton()->figureMessage(
4325 $wgContLang->lcfirst( $this->getText() )
4327 $message = wfMessage( $name )->inLanguage( $wgContLang )->useDatabase( false );
4328 return $message->exists();
4335 * Get the default message text or false if the message doesn't exist
4337 * @return string|bool
4339 public function getDefaultMessageText() {
4342 if ( $this->getNamespace() != NS_MEDIAWIKI
) { // Just in case
4346 list( $name, $lang ) = MessageCache
::singleton()->figureMessage(
4347 $wgContLang->lcfirst( $this->getText() )
4349 $message = wfMessage( $name )->inLanguage( $lang )->useDatabase( false );
4351 if ( $message->exists() ) {
4352 return $message->plain();
4359 * Updates page_touched for this page; called from LinksUpdate.php
4361 * @return bool True if the update succeeded
4363 public function invalidateCache() {
4364 if ( wfReadOnly() ) {
4368 if ( $this->mArticleID
=== 0 ) {
4369 return true; // avoid gap locking if we know it's not there
4372 $method = __METHOD__
;
4373 $dbw = wfGetDB( DB_MASTER
);
4374 $conds = $this->pageCond();
4375 $dbw->onTransactionIdle( function () use ( $dbw, $conds, $method ) {
4378 array( 'page_touched' => $dbw->timestamp() ),
4388 * Update page_touched timestamps and send squid purge messages for
4389 * pages linking to this title. May be sent to the job queue depending
4390 * on the number of links. Typically called on create and delete.
4392 public function touchLinks() {
4393 $u = new HTMLCacheUpdate( $this, 'pagelinks' );
4396 if ( $this->getNamespace() == NS_CATEGORY
) {
4397 $u = new HTMLCacheUpdate( $this, 'categorylinks' );
4403 * Get the last touched timestamp
4405 * @param DatabaseBase $db Optional db
4406 * @return string Last-touched timestamp
4408 public function getTouched( $db = null ) {
4409 if ( $db === null ) {
4410 $db = wfGetDB( DB_SLAVE
);
4412 $touched = $db->selectField( 'page', 'page_touched', $this->pageCond(), __METHOD__
);
4417 * Get the timestamp when this page was updated since the user last saw it.
4420 * @return string|null
4422 public function getNotificationTimestamp( $user = null ) {
4423 global $wgUser, $wgShowUpdatedMarker;
4424 // Assume current user if none given
4428 // Check cache first
4429 $uid = $user->getId();
4430 // avoid isset here, as it'll return false for null entries
4431 if ( array_key_exists( $uid, $this->mNotificationTimestamp
) ) {
4432 return $this->mNotificationTimestamp
[$uid];
4434 if ( !$uid ||
!$wgShowUpdatedMarker ||
!$user->isAllowed( 'viewmywatchlist' ) ) {
4435 $this->mNotificationTimestamp
[$uid] = false;
4436 return $this->mNotificationTimestamp
[$uid];
4438 // Don't cache too much!
4439 if ( count( $this->mNotificationTimestamp
) >= self
::CACHE_MAX
) {
4440 $this->mNotificationTimestamp
= array();
4442 $dbr = wfGetDB( DB_SLAVE
);
4443 $this->mNotificationTimestamp
[$uid] = $dbr->selectField( 'watchlist',
4444 'wl_notificationtimestamp',
4446 'wl_user' => $user->getId(),
4447 'wl_namespace' => $this->getNamespace(),
4448 'wl_title' => $this->getDBkey(),
4452 return $this->mNotificationTimestamp
[$uid];
4456 * Generate strings used for xml 'id' names in monobook tabs
4458 * @param string $prepend Defaults to 'nstab-'
4459 * @return string XML 'id' name
4461 public function getNamespaceKey( $prepend = 'nstab-' ) {
4463 // Gets the subject namespace if this title
4464 $namespace = MWNamespace
::getSubject( $this->getNamespace() );
4465 // Checks if canonical namespace name exists for namespace
4466 if ( MWNamespace
::exists( $this->getNamespace() ) ) {
4467 // Uses canonical namespace name
4468 $namespaceKey = MWNamespace
::getCanonicalName( $namespace );
4470 // Uses text of namespace
4471 $namespaceKey = $this->getSubjectNsText();
4473 // Makes namespace key lowercase
4474 $namespaceKey = $wgContLang->lc( $namespaceKey );
4476 if ( $namespaceKey == '' ) {
4477 $namespaceKey = 'main';
4479 // Changes file to image for backwards compatibility
4480 if ( $namespaceKey == 'file' ) {
4481 $namespaceKey = 'image';
4483 return $prepend . $namespaceKey;
4487 * Get all extant redirects to this Title
4489 * @param int|null $ns Single namespace to consider; null to consider all namespaces
4490 * @return Title[] Array of Title redirects to this title
4492 public function getRedirectsHere( $ns = null ) {
4495 $dbr = wfGetDB( DB_SLAVE
);
4497 'rd_namespace' => $this->getNamespace(),
4498 'rd_title' => $this->getDBkey(),
4501 if ( $this->isExternal() ) {
4502 $where['rd_interwiki'] = $this->getInterwiki();
4504 $where[] = 'rd_interwiki = ' . $dbr->addQuotes( '' ) . ' OR rd_interwiki IS NULL';
4506 if ( !is_null( $ns ) ) {
4507 $where['page_namespace'] = $ns;
4510 $res = $dbr->select(
4511 array( 'redirect', 'page' ),
4512 array( 'page_namespace', 'page_title' ),
4517 foreach ( $res as $row ) {
4518 $redirs[] = self
::newFromRow( $row );
4524 * Check if this Title is a valid redirect target
4528 public function isValidRedirectTarget() {
4529 global $wgInvalidRedirectTargets;
4531 // invalid redirect targets are stored in a global array, but explicitly disallow Userlogout here
4532 if ( $this->isSpecial( 'Userlogout' ) ) {
4536 foreach ( $wgInvalidRedirectTargets as $target ) {
4537 if ( $this->isSpecial( $target ) ) {
4546 * Get a backlink cache object
4548 * @return BacklinkCache
4550 public function getBacklinkCache() {
4551 return BacklinkCache
::get( $this );
4555 * Whether the magic words __INDEX__ and __NOINDEX__ function for this page.
4559 public function canUseNoindex() {
4560 global $wgContentNamespaces, $wgExemptFromUserRobotsControl;
4562 $bannedNamespaces = is_null( $wgExemptFromUserRobotsControl )
4563 ?
$wgContentNamespaces
4564 : $wgExemptFromUserRobotsControl;
4566 return !in_array( $this->mNamespace
, $bannedNamespaces );
4571 * Returns the raw sort key to be used for categories, with the specified
4572 * prefix. This will be fed to Collation::getSortKey() to get a
4573 * binary sortkey that can be used for actual sorting.
4575 * @param string $prefix The prefix to be used, specified using
4576 * {{defaultsort:}} or like [[Category:Foo|prefix]]. Empty for no
4580 public function getCategorySortkey( $prefix = '' ) {
4581 $unprefixed = $this->getText();
4583 // Anything that uses this hook should only depend
4584 // on the Title object passed in, and should probably
4585 // tell the users to run updateCollations.php --force
4586 // in order to re-sort existing category relations.
4587 Hooks
::run( 'GetDefaultSortkey', array( $this, &$unprefixed ) );
4588 if ( $prefix !== '' ) {
4589 # Separate with a line feed, so the unprefixed part is only used as
4590 # a tiebreaker when two pages have the exact same prefix.
4591 # In UCA, tab is the only character that can sort above LF
4592 # so we strip both of them from the original prefix.
4593 $prefix = strtr( $prefix, "\n\t", ' ' );
4594 return "$prefix\n$unprefixed";
4600 * Get the language in which the content of this page is written in
4601 * wikitext. Defaults to $wgContLang, but in certain cases it can be
4602 * e.g. $wgLang (such as special pages, which are in the user language).
4607 public function getPageLanguage() {
4608 global $wgLang, $wgLanguageCode;
4609 if ( $this->isSpecialPage() ) {
4610 // special pages are in the user language
4614 // Checking if DB language is set
4615 if ( $this->mDbPageLanguage
) {
4616 return wfGetLangObj( $this->mDbPageLanguage
);
4619 if ( !$this->mPageLanguage ||
$this->mPageLanguage
[1] !== $wgLanguageCode ) {
4620 // Note that this may depend on user settings, so the cache should
4621 // be only per-request.
4622 // NOTE: ContentHandler::getPageLanguage() may need to load the
4623 // content to determine the page language!
4624 // Checking $wgLanguageCode hasn't changed for the benefit of unit
4626 $contentHandler = ContentHandler
::getForTitle( $this );
4627 $langObj = wfGetLangObj( $contentHandler->getPageLanguage( $this ) );
4628 $this->mPageLanguage
= array( $langObj->getCode(), $wgLanguageCode );
4630 $langObj = wfGetLangObj( $this->mPageLanguage
[0] );
4637 * Get the language in which the content of this page is written when
4638 * viewed by user. Defaults to $wgContLang, but in certain cases it can be
4639 * e.g. $wgLang (such as special pages, which are in the user language).
4644 public function getPageViewLanguage() {
4647 if ( $this->isSpecialPage() ) {
4648 // If the user chooses a variant, the content is actually
4649 // in a language whose code is the variant code.
4650 $variant = $wgLang->getPreferredVariant();
4651 if ( $wgLang->getCode() !== $variant ) {
4652 return Language
::factory( $variant );
4658 // @note Can't be cached persistently, depends on user settings.
4659 // @note ContentHandler::getPageViewLanguage() may need to load the
4660 // content to determine the page language!
4661 $contentHandler = ContentHandler
::getForTitle( $this );
4662 $pageLang = $contentHandler->getPageViewLanguage( $this );
4667 * Get a list of rendered edit notices for this page.
4669 * Array is keyed by the original message key, and values are rendered using parseAsBlock, so
4670 * they will already be wrapped in paragraphs.
4673 * @param int $oldid Revision ID that's being edited
4676 public function getEditNotices( $oldid = 0 ) {
4679 # Optional notices on a per-namespace and per-page basis
4680 $editnotice_ns = 'editnotice-' . $this->getNamespace();
4681 $editnotice_ns_message = wfMessage( $editnotice_ns );
4682 if ( $editnotice_ns_message->exists() ) {
4683 $notices[$editnotice_ns] = '<div class="mw-editnotice mw-editnotice-namespace ' .
4684 Sanitizer
::escapeClass( "mw-$editnotice_ns" ) . '">' .
4685 $editnotice_ns_message->parseAsBlock() . '</div>';
4687 if ( MWNamespace
::hasSubpages( $this->getNamespace() ) ) {
4688 $parts = explode( '/', $this->getDBkey() );
4689 $editnotice_base = $editnotice_ns;
4690 while ( count( $parts ) > 0 ) {
4691 $editnotice_base .= '-' . array_shift( $parts );
4692 $editnotice_base_msg = wfMessage( $editnotice_base );
4693 if ( $editnotice_base_msg->exists() ) {
4694 $notices[$editnotice_base] = '<div class="mw-editnotice mw-editnotice-base ' .
4695 Sanitizer
::escapeClass( "mw-$editnotice_base" ) . '">' .
4696 $editnotice_base_msg->parseAsBlock() . '</div>';
4700 # Even if there are no subpages in namespace, we still don't want / in MW ns.
4701 $editnoticeText = $editnotice_ns . '-' . str_replace( '/', '-', $this->getDBkey() );
4702 $editnoticeMsg = wfMessage( $editnoticeText );
4703 if ( $editnoticeMsg->exists() ) {
4704 $notices[$editnoticeText] = '<div class="mw-editnotice mw-editnotice-page ' .
4705 Sanitizer
::escapeClass( "mw-$editnoticeText" ) . '">' .
4706 $editnoticeMsg->parseAsBlock() . '</div>';
4710 Hooks
::run( 'TitleGetEditNotices', array( $this, $oldid, &$notices ) );