Merge "Test only against protection for deleting"
[lhc/web/wiklou.git] / includes / Title.php
1 <?php
2 /**
3 * Representation of a title within %MediaWiki.
4 *
5 * See title.txt
6 *
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.
11 *
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.
16 *
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
21 *
22 * @file
23 */
24
25 /**
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.
32 *
33 * @internal documentation reviewed 15 Mar 2010
34 */
35 class Title {
36 /** @var MapCacheLRU */
37 static private $titleCache = null;
38
39 /**
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.
43 */
44 const CACHE_MAX = 1000;
45
46 /**
47 * Used to be GAID_FOR_UPDATE define. Used with getArticleID() and friends
48 * to use the master DB
49 */
50 const GAID_FOR_UPDATE = 1;
51
52 /**
53 * @name Private member variables
54 * Please use the accessor functions instead.
55 * @private
56 */
57 // @{
58
59 /** @var string Text form (spaces not underscores) of the main part */
60 public $mTextform = '';
61
62 /** @var string URL-encoded form of the main part */
63 public $mUrlform = '';
64
65 /** @var string Main part with underscores */
66 public $mDbkeyform = '';
67
68 /** @var string Database key with the initial letter in the case specified by the user */
69 protected $mUserCaseDBKey;
70
71 /** @var int Namespace index, i.e. one of the NS_xxxx constants */
72 public $mNamespace = NS_MAIN;
73
74 /** @var string Interwiki prefix */
75 public $mInterwiki = '';
76
77 /** @var bool Was this Title created from a string with a local interwiki prefix? */
78 private $mLocalInterwiki = false;
79
80 /** @var string Title fragment (i.e. the bit after the #) */
81 public $mFragment = '';
82
83 /** @var int Article ID, fetched from the link cache on demand */
84 public $mArticleID = -1;
85
86 /** @var bool|int ID of most recent revision */
87 protected $mLatestID = false;
88
89 /**
90 * @var bool|string ID of the page's content model, i.e. one of the
91 * CONTENT_MODEL_XXX constants
92 */
93 public $mContentModel = false;
94
95 /** @var int Estimated number of revisions; null of not loaded */
96 private $mEstimateRevisions;
97
98 /** @var array Array of groups allowed to edit this article */
99 public $mRestrictions = array();
100
101 /** @var bool */
102 protected $mOldRestrictions = false;
103
104 /** @var bool Cascade restrictions on this page to included templates and images? */
105 public $mCascadeRestriction;
106
107 /** Caching the results of getCascadeProtectionSources */
108 public $mCascadingRestrictions;
109
110 /** @var array When do the restrictions on this page expire? */
111 protected $mRestrictionsExpiry = array();
112
113 /** @var bool Are cascading restrictions in effect on this page? */
114 protected $mHasCascadingRestrictions;
115
116 /** @var array Where are the cascading restrictions coming from on this page? */
117 public $mCascadeSources;
118
119 /** @var bool Boolean for initialisation on demand */
120 public $mRestrictionsLoaded = false;
121
122 /** @var string Text form including namespace/interwiki, initialised on demand */
123 protected $mPrefixedText = null;
124
125 /** @var mixed Cached value for getTitleProtection (create protection) */
126 public $mTitleProtection;
127
128 /**
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.
132 */
133 public $mDefaultNamespace = NS_MAIN;
134
135 /**
136 * @var bool Is $wgUser watching this page? null if unfilled, accessed
137 * through userIsWatching()
138 */
139 protected $mWatched = null;
140
141 /** @var int The page length, 0 for special pages */
142 protected $mLength = -1;
143
144 /** @var null Is the article at this title a redirect? */
145 public $mRedirect = null;
146
147 /** @var array Associative array of user ID -> timestamp/false */
148 private $mNotificationTimestamp = array();
149
150 /** @var bool Whether a page has any subpages */
151 private $mHasSubpages;
152
153 /** @var bool The (string) language code of the page's language and content code. */
154 private $mPageLanguage = false;
155
156 /** @var string The page language code from the database */
157 private $mDbPageLanguage = null;
158
159 /** @var TitleValue A corresponding TitleValue object */
160 private $mTitleValue = null;
161
162 /** @var bool Would deleting this page be a big deletion? */
163 private $mIsBigDeletion = null;
164 // @}
165
166 /**
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.
171 *
172 * @return TitleParser
173 */
174 private static function getTitleParser() {
175 global $wgContLang, $wgLocalInterwikis;
176
177 static $titleCodec = null;
178 static $titleCodecFingerprint = null;
179
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 );
185
186 if ( $fingerprint !== $titleCodecFingerprint ) {
187 $titleCodec = null;
188 }
189
190 if ( !$titleCodec ) {
191 $titleCodec = new MediaWikiTitleCodec(
192 $wgContLang,
193 GenderCache::singleton(),
194 $wgLocalInterwikis
195 );
196 $titleCodecFingerprint = $fingerprint;
197 }
198
199 return $titleCodec;
200 }
201
202 /**
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.
207 *
208 * @return TitleFormatter
209 */
210 private static function getTitleFormatter() {
211 //NOTE: we know that getTitleParser() returns a MediaWikiTitleCodec,
212 // which implements TitleFormatter.
213 return self::getTitleParser();
214 }
215
216 function __construct() {
217 }
218
219 /**
220 * Create a new Title from a prefixed DB key
221 *
222 * @param string $key The database key, which has underscores
223 * instead of spaces, possibly including namespace and
224 * interwiki prefixes
225 * @return Title|null Title, or null on an error
226 */
227 public static function newFromDBkey( $key ) {
228 $t = new Title();
229 $t->mDbkeyform = $key;
230 if ( $t->secureAndSplit() ) {
231 return $t;
232 } else {
233 return null;
234 }
235 }
236
237 /**
238 * Create a new Title from a TitleValue
239 *
240 * @param TitleValue $titleValue Assumed to be safe.
241 *
242 * @return Title
243 */
244 public static function newFromTitleValue( TitleValue $titleValue ) {
245 return self::makeTitle(
246 $titleValue->getNamespace(),
247 $titleValue->getText(),
248 $titleValue->getFragment() );
249 }
250
251 /**
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.
254 *
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
260 * makeTitleSafe().
261 * @throws MWException
262 * @return Title|null Title or null on an error.
263 */
264 public static function newFromText( $text, $defaultNamespace = NS_MAIN ) {
265 if ( is_object( $text ) ) {
266 throw new MWException( 'Title::newFromText given an object' );
267 }
268
269 $cache = self::getTitleCache();
270
271 /**
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
275 * caching them.
276 *
277 * In theory these are value objects and won't get changed...
278 */
279 if ( $defaultNamespace == NS_MAIN && $cache->has( $text ) ) {
280 return $cache->get( $text );
281 }
282
283 # Convert things like &eacute; &#257; or &#x3017; into normalized (bug 14952) text
284 $filteredText = Sanitizer::decodeCharReferencesAndNormalize( $text );
285
286 $t = new Title();
287 $t->mDbkeyform = str_replace( ' ', '_', $filteredText );
288 $t->mDefaultNamespace = intval( $defaultNamespace );
289
290 if ( $t->secureAndSplit() ) {
291 if ( $defaultNamespace == NS_MAIN ) {
292 $cache->set( $text, $t );
293 }
294 return $t;
295 } else {
296 return null;
297 }
298 }
299
300 /**
301 * THIS IS NOT THE FUNCTION YOU WANT. Use Title::newFromText().
302 *
303 * Example of wrong and broken code:
304 * $title = Title::newFromURL( $wgRequest->getVal( 'title' ) );
305 *
306 * Example of right code:
307 * $title = Title::newFromText( $wgRequest->getVal( 'title' ) );
308 *
309 * Create a new Title from URL-encoded text. Ensures that
310 * the given title's length does not exceed the maximum.
311 *
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
314 */
315 public static function newFromURL( $url ) {
316 $t = new Title();
317
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 );
323 }
324
325 $t->mDbkeyform = str_replace( ' ', '_', $url );
326 if ( $t->secureAndSplit() ) {
327 return $t;
328 } else {
329 return null;
330 }
331 }
332
333 /**
334 * @return MapCacheLRU
335 */
336 private static function getTitleCache() {
337 if ( self::$titleCache == null ) {
338 self::$titleCache = new MapCacheLRU( self::CACHE_MAX );
339 }
340 return self::$titleCache;
341 }
342
343 /**
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.
347 *
348 * @return array
349 */
350 protected static function getSelectFields() {
351 global $wgContentHandlerUseDB;
352
353 $fields = array(
354 'page_namespace', 'page_title', 'page_id',
355 'page_len', 'page_is_redirect', 'page_latest',
356 );
357
358 if ( $wgContentHandlerUseDB ) {
359 $fields[] = 'page_content_model';
360 }
361
362 return $fields;
363 }
364
365 /**
366 * Create a new Title from an article ID
367 *
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
371 */
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(
375 'page',
376 self::getSelectFields(),
377 array( 'page_id' => $id ),
378 __METHOD__
379 );
380 if ( $row !== false ) {
381 $title = Title::newFromRow( $row );
382 } else {
383 $title = null;
384 }
385 return $title;
386 }
387
388 /**
389 * Make an array of titles from an array of IDs
390 *
391 * @param int[] $ids Array of IDs
392 * @return Title[] Array of Titles
393 */
394 public static function newFromIDs( $ids ) {
395 if ( !count( $ids ) ) {
396 return array();
397 }
398 $dbr = wfGetDB( DB_SLAVE );
399
400 $res = $dbr->select(
401 'page',
402 self::getSelectFields(),
403 array( 'page_id' => $ids ),
404 __METHOD__
405 );
406
407 $titles = array();
408 foreach ( $res as $row ) {
409 $titles[] = Title::newFromRow( $row );
410 }
411 return $titles;
412 }
413
414 /**
415 * Make a Title object from a DB row
416 *
417 * @param stdClass $row Object database row (needs at least page_title,page_namespace)
418 * @return Title Corresponding Title
419 */
420 public static function newFromRow( $row ) {
421 $t = self::makeTitle( $row->page_namespace, $row->page_title );
422 $t->loadFromRow( $row );
423 return $t;
424 }
425
426 /**
427 * Load Title object fields from a DB row.
428 * If false is given, the title will be treated as non-existing.
429 *
430 * @param stdClass|bool $row Database row
431 */
432 public function loadFromRow( $row ) {
433 if ( $row ) { // page found
434 if ( isset( $row->page_id ) ) {
435 $this->mArticleID = (int)$row->page_id;
436 }
437 if ( isset( $row->page_len ) ) {
438 $this->mLength = (int)$row->page_len;
439 }
440 if ( isset( $row->page_is_redirect ) ) {
441 $this->mRedirect = (bool)$row->page_is_redirect;
442 }
443 if ( isset( $row->page_latest ) ) {
444 $this->mLatestID = (int)$row->page_latest;
445 }
446 if ( isset( $row->page_content_model ) ) {
447 $this->mContentModel = strval( $row->page_content_model );
448 } else {
449 $this->mContentModel = false; # initialized lazily in getContentModel()
450 }
451 if ( isset( $row->page_lang ) ) {
452 $this->mDbPageLanguage = (string)$row->page_lang;
453 }
454 } else { // page not found
455 $this->mArticleID = 0;
456 $this->mLength = 0;
457 $this->mRedirect = false;
458 $this->mLatestID = 0;
459 $this->mContentModel = false; # initialized lazily in getContentModel()
460 }
461 }
462
463 /**
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.
469 *
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
475 */
476 public static function &makeTitle( $ns, $title, $fragment = '', $interwiki = '' ) {
477 $t = new Title();
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()
486 return $t;
487 }
488
489 /**
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.
493 *
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
499 */
500 public static function makeTitleSafe( $ns, $title, $fragment = '', $interwiki = '' ) {
501 if ( !MWNamespace::exists( $ns ) ) {
502 return null;
503 }
504
505 $t = new Title();
506 $t->mDbkeyform = Title::makeName( $ns, $title, $fragment, $interwiki );
507 if ( $t->secureAndSplit() ) {
508 return $t;
509 } else {
510 return null;
511 }
512 }
513
514 /**
515 * Create a new Title for the Main Page
516 *
517 * @return Title The new object
518 */
519 public static function newMainPage() {
520 $title = Title::newFromText( wfMessage( 'mainpage' )->inContentLanguage()->text() );
521 // Don't give fatal errors if the message is broken
522 if ( !$title ) {
523 $title = Title::newFromText( 'Main Page' );
524 }
525 return $title;
526 }
527
528 /**
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
533 *
534 * @param string $text Text with possible redirect
535 * @return Title The corresponding Title
536 * @deprecated since 1.21, use Content::getRedirectTarget instead.
537 */
538 public static function newFromRedirect( $text ) {
539 ContentHandler::deprecated( __METHOD__, '1.21' );
540
541 $content = ContentHandler::makeContent( $text, null, CONTENT_MODEL_WIKITEXT );
542 return $content->getRedirectTarget();
543 }
544
545 /**
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
550 *
551 * @param string $text Text with possible redirect
552 * @return Title
553 * @deprecated since 1.21, use Content::getUltimateRedirectTarget instead.
554 */
555 public static function newFromRedirectRecurse( $text ) {
556 ContentHandler::deprecated( __METHOD__, '1.21' );
557
558 $content = ContentHandler::makeContent( $text, null, CONTENT_MODEL_WIKITEXT );
559 return $content->getUltimateRedirectTarget();
560 }
561
562 /**
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)
567 *
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.
571 */
572 public static function newFromRedirectArray( $text ) {
573 ContentHandler::deprecated( __METHOD__, '1.21' );
574
575 $content = ContentHandler::makeContent( $text, null, CONTENT_MODEL_WIKITEXT );
576 return $content->getRedirectChain();
577 }
578
579 /**
580 * Get the prefixed DB key associated with an ID
581 *
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
584 */
585 public static function nameOf( $id ) {
586 $dbr = wfGetDB( DB_SLAVE );
587
588 $s = $dbr->selectRow(
589 'page',
590 array( 'page_namespace', 'page_title' ),
591 array( 'page_id' => $id ),
592 __METHOD__
593 );
594 if ( $s === false ) {
595 return null;
596 }
597
598 $n = self::makeName( $s->page_namespace, $s->page_title );
599 return $n;
600 }
601
602 /**
603 * Get a regex character class describing the legal characters in a link
604 *
605 * @return string The list of characters, not delimited
606 */
607 public static function legalChars() {
608 global $wgLegalTitleChars;
609 return $wgLegalTitleChars;
610 }
611
612 /**
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.
616 *
617 * @todo move this into MediaWikiTitleCodec
618 *
619 * @return string Regex string
620 */
621 static function getTitleInvalidRegex() {
622 static $rxTc = false;
623 if ( !$rxTc ) {
624 # Matching titles will be held as illegal.
625 $rxTc = '/' .
626 # Any character not allowed is forbidden...
627 '[^' . self::legalChars() . ']' .
628 # URL percent encoding sequences interfere with the ability
629 # to round-trip titles -- you can't link to them consistently.
630 '|%[0-9A-Fa-f]{2}' .
631 # XML/HTML character references produce similar issues.
632 '|&[A-Za-z0-9\x80-\xff]+;' .
633 '|&#[0-9]+;' .
634 '|&#x[0-9A-Fa-f]+;' .
635 '/S';
636 }
637
638 return $rxTc;
639 }
640
641 /**
642 * Utility method for converting a character sequence from bytes to Unicode.
643 *
644 * Primary usecase being converting $wgLegalTitleChars to a sequence usable in
645 * javascript, as PHP uses UTF-8 bytes where javascript uses Unicode code units.
646 *
647 * @param string $byteClass
648 * @return string
649 */
650 public static function convertByteClassToUnicodeClass( $byteClass ) {
651 $length = strlen( $byteClass );
652 // Input token queue
653 $x0 = $x1 = $x2 = '';
654 // Decoded queue
655 $d0 = $d1 = $d2 = '';
656 // Decoded integer codepoints
657 $ord0 = $ord1 = $ord2 = 0;
658 // Re-encoded queue
659 $r0 = $r1 = $r2 = '';
660 // Output
661 $out = '';
662 // Flags
663 $allowUnicode = false;
664 for ( $pos = 0; $pos < $length; $pos++ ) {
665 // Shift the queues down
666 $x2 = $x1;
667 $x1 = $x0;
668 $d2 = $d1;
669 $d1 = $d0;
670 $ord2 = $ord1;
671 $ord1 = $ord0;
672 $r2 = $r1;
673 $r1 = $r0;
674 // Load the current input token and decoded values
675 $inChar = $byteClass[$pos];
676 if ( $inChar == '\\' ) {
677 if ( preg_match( '/x([0-9a-fA-F]{2})/A', $byteClass, $m, 0, $pos + 1 ) ) {
678 $x0 = $inChar . $m[0];
679 $d0 = chr( hexdec( $m[1] ) );
680 $pos += strlen( $m[0] );
681 } elseif ( preg_match( '/[0-7]{3}/A', $byteClass, $m, 0, $pos + 1 ) ) {
682 $x0 = $inChar . $m[0];
683 $d0 = chr( octdec( $m[0] ) );
684 $pos += strlen( $m[0] );
685 } elseif ( $pos + 1 >= $length ) {
686 $x0 = $d0 = '\\';
687 } else {
688 $d0 = $byteClass[$pos + 1];
689 $x0 = $inChar . $d0;
690 $pos += 1;
691 }
692 } else {
693 $x0 = $d0 = $inChar;
694 }
695 $ord0 = ord( $d0 );
696 // Load the current re-encoded value
697 if ( $ord0 < 32 || $ord0 == 0x7f ) {
698 $r0 = sprintf( '\x%02x', $ord0 );
699 } elseif ( $ord0 >= 0x80 ) {
700 // Allow unicode if a single high-bit character appears
701 $r0 = sprintf( '\x%02x', $ord0 );
702 $allowUnicode = true;
703 } elseif ( strpos( '-\\[]^', $d0 ) !== false ) {
704 $r0 = '\\' . $d0;
705 } else {
706 $r0 = $d0;
707 }
708 // Do the output
709 if ( $x0 !== '' && $x1 === '-' && $x2 !== '' ) {
710 // Range
711 if ( $ord2 > $ord0 ) {
712 // Empty range
713 } elseif ( $ord0 >= 0x80 ) {
714 // Unicode range
715 $allowUnicode = true;
716 if ( $ord2 < 0x80 ) {
717 // Keep the non-unicode section of the range
718 $out .= "$r2-\\x7F";
719 }
720 } else {
721 // Normal range
722 $out .= "$r2-$r0";
723 }
724 // Reset state to the initial value
725 $x0 = $x1 = $d0 = $d1 = $r0 = $r1 = '';
726 } elseif ( $ord2 < 0x80 ) {
727 // ASCII character
728 $out .= $r2;
729 }
730 }
731 if ( $ord1 < 0x80 ) {
732 $out .= $r1;
733 }
734 if ( $ord0 < 0x80 ) {
735 $out .= $r0;
736 }
737 if ( $allowUnicode ) {
738 $out .= '\u0080-\uFFFF';
739 }
740 return $out;
741 }
742
743 /**
744 * Make a prefixed DB key from a DB key and a namespace index
745 *
746 * @param int $ns Numerical representation of the namespace
747 * @param string $title The DB key form the title
748 * @param string $fragment The link fragment (after the "#")
749 * @param string $interwiki The interwiki prefix
750 * @return string The prefixed form of the title
751 */
752 public static function makeName( $ns, $title, $fragment = '', $interwiki = '' ) {
753 global $wgContLang;
754
755 $namespace = $wgContLang->getNsText( $ns );
756 $name = $namespace == '' ? $title : "$namespace:$title";
757 if ( strval( $interwiki ) != '' ) {
758 $name = "$interwiki:$name";
759 }
760 if ( strval( $fragment ) != '' ) {
761 $name .= '#' . $fragment;
762 }
763 return $name;
764 }
765
766 /**
767 * Escape a text fragment, say from a link, for a URL
768 *
769 * @param string $fragment Containing a URL or link fragment (after the "#")
770 * @return string Escaped string
771 */
772 static function escapeFragmentForURL( $fragment ) {
773 # Note that we don't urlencode the fragment. urlencoded Unicode
774 # fragments appear not to work in IE (at least up to 7) or in at least
775 # one version of Opera 9.x. The W3C validator, for one, doesn't seem
776 # to care if they aren't encoded.
777 return Sanitizer::escapeId( $fragment, 'noninitial' );
778 }
779
780 /**
781 * Callback for usort() to do title sorts by (namespace, title)
782 *
783 * @param Title $a
784 * @param Title $b
785 *
786 * @return int Result of string comparison, or namespace comparison
787 */
788 public static function compare( $a, $b ) {
789 if ( $a->getNamespace() == $b->getNamespace() ) {
790 return strcmp( $a->getText(), $b->getText() );
791 } else {
792 return $a->getNamespace() - $b->getNamespace();
793 }
794 }
795
796 /**
797 * Determine whether the object refers to a page within
798 * this project.
799 *
800 * @return bool True if this is an in-project interwiki link or a wikilink, false otherwise
801 */
802 public function isLocal() {
803 if ( $this->isExternal() ) {
804 $iw = Interwiki::fetch( $this->mInterwiki );
805 if ( $iw ) {
806 return $iw->isLocal();
807 }
808 }
809 return true;
810 }
811
812 /**
813 * Is this Title interwiki?
814 *
815 * @return bool
816 */
817 public function isExternal() {
818 return $this->mInterwiki !== '';
819 }
820
821 /**
822 * Get the interwiki prefix
823 *
824 * Use Title::isExternal to check if a interwiki is set
825 *
826 * @return string Interwiki prefix
827 */
828 public function getInterwiki() {
829 return $this->mInterwiki;
830 }
831
832 /**
833 * Was this a local interwiki link?
834 *
835 * @return bool
836 */
837 public function wasLocalInterwiki() {
838 return $this->mLocalInterwiki;
839 }
840
841 /**
842 * Determine whether the object refers to a page within
843 * this project and is transcludable.
844 *
845 * @return bool True if this is transcludable
846 */
847 public function isTrans() {
848 if ( !$this->isExternal() ) {
849 return false;
850 }
851
852 return Interwiki::fetch( $this->mInterwiki )->isTranscludable();
853 }
854
855 /**
856 * Returns the DB name of the distant wiki which owns the object.
857 *
858 * @return string The DB name
859 */
860 public function getTransWikiID() {
861 if ( !$this->isExternal() ) {
862 return false;
863 }
864
865 return Interwiki::fetch( $this->mInterwiki )->getWikiID();
866 }
867
868 /**
869 * Get a TitleValue object representing this Title.
870 *
871 * @note Not all valid Titles have a corresponding valid TitleValue
872 * (e.g. TitleValues cannot represent page-local links that have a
873 * fragment but no title text).
874 *
875 * @return TitleValue|null
876 */
877 public function getTitleValue() {
878 if ( $this->mTitleValue === null ) {
879 try {
880 $this->mTitleValue = new TitleValue(
881 $this->getNamespace(),
882 $this->getDBkey(),
883 $this->getFragment() );
884 } catch ( InvalidArgumentException $ex ) {
885 wfDebug( __METHOD__ . ': Can\'t create a TitleValue for [[' .
886 $this->getPrefixedText() . ']]: ' . $ex->getMessage() . "\n" );
887 }
888 }
889
890 return $this->mTitleValue;
891 }
892
893 /**
894 * Get the text form (spaces not underscores) of the main part
895 *
896 * @return string Main part of the title
897 */
898 public function getText() {
899 return $this->mTextform;
900 }
901
902 /**
903 * Get the URL-encoded form of the main part
904 *
905 * @return string Main part of the title, URL-encoded
906 */
907 public function getPartialURL() {
908 return $this->mUrlform;
909 }
910
911 /**
912 * Get the main part with underscores
913 *
914 * @return string Main part of the title, with underscores
915 */
916 public function getDBkey() {
917 return $this->mDbkeyform;
918 }
919
920 /**
921 * Get the DB key with the initial letter case as specified by the user
922 *
923 * @return string DB key
924 */
925 function getUserCaseDBKey() {
926 if ( !is_null( $this->mUserCaseDBKey ) ) {
927 return $this->mUserCaseDBKey;
928 } else {
929 // If created via makeTitle(), $this->mUserCaseDBKey is not set.
930 return $this->mDbkeyform;
931 }
932 }
933
934 /**
935 * Get the namespace index, i.e. one of the NS_xxxx constants.
936 *
937 * @return int Namespace index
938 */
939 public function getNamespace() {
940 return $this->mNamespace;
941 }
942
943 /**
944 * Get the page's content model id, see the CONTENT_MODEL_XXX constants.
945 *
946 * @throws MWException
947 * @return string Content model id
948 */
949 public function getContentModel() {
950 if ( !$this->mContentModel ) {
951 $linkCache = LinkCache::singleton();
952 $this->mContentModel = $linkCache->getGoodLinkFieldObj( $this, 'model' );
953 }
954
955 if ( !$this->mContentModel ) {
956 $this->mContentModel = ContentHandler::getDefaultModelFor( $this );
957 }
958
959 if ( !$this->mContentModel ) {
960 throw new MWException( 'Failed to determine content model!' );
961 }
962
963 return $this->mContentModel;
964 }
965
966 /**
967 * Convenience method for checking a title's content model name
968 *
969 * @param string $id The content model ID (use the CONTENT_MODEL_XXX constants).
970 * @return bool True if $this->getContentModel() == $id
971 */
972 public function hasContentModel( $id ) {
973 return $this->getContentModel() == $id;
974 }
975
976 /**
977 * Get the namespace text
978 *
979 * @return string Namespace text
980 */
981 public function getNsText() {
982 if ( $this->isExternal() ) {
983 // This probably shouldn't even happen. ohh man, oh yuck.
984 // But for interwiki transclusion it sometimes does.
985 // Shit. Shit shit shit.
986 //
987 // Use the canonical namespaces if possible to try to
988 // resolve a foreign namespace.
989 if ( MWNamespace::exists( $this->mNamespace ) ) {
990 return MWNamespace::getCanonicalName( $this->mNamespace );
991 }
992 }
993
994 try {
995 $formatter = self::getTitleFormatter();
996 return $formatter->getNamespaceName( $this->mNamespace, $this->mDbkeyform );
997 } catch ( InvalidArgumentException $ex ) {
998 wfDebug( __METHOD__ . ': ' . $ex->getMessage() . "\n" );
999 return false;
1000 }
1001 }
1002
1003 /**
1004 * Get the namespace text of the subject (rather than talk) page
1005 *
1006 * @return string Namespace text
1007 */
1008 public function getSubjectNsText() {
1009 global $wgContLang;
1010 return $wgContLang->getNsText( MWNamespace::getSubject( $this->mNamespace ) );
1011 }
1012
1013 /**
1014 * Get the namespace text of the talk page
1015 *
1016 * @return string Namespace text
1017 */
1018 public function getTalkNsText() {
1019 global $wgContLang;
1020 return $wgContLang->getNsText( MWNamespace::getTalk( $this->mNamespace ) );
1021 }
1022
1023 /**
1024 * Could this title have a corresponding talk page?
1025 *
1026 * @return bool
1027 */
1028 public function canTalk() {
1029 return MWNamespace::canTalk( $this->mNamespace );
1030 }
1031
1032 /**
1033 * Is this in a namespace that allows actual pages?
1034 *
1035 * @return bool
1036 * @internal note -- uses hardcoded namespace index instead of constants
1037 */
1038 public function canExist() {
1039 return $this->mNamespace >= NS_MAIN;
1040 }
1041
1042 /**
1043 * Can this title be added to a user's watchlist?
1044 *
1045 * @return bool
1046 */
1047 public function isWatchable() {
1048 return !$this->isExternal() && MWNamespace::isWatchable( $this->getNamespace() );
1049 }
1050
1051 /**
1052 * Returns true if this is a special page.
1053 *
1054 * @return bool
1055 */
1056 public function isSpecialPage() {
1057 return $this->getNamespace() == NS_SPECIAL;
1058 }
1059
1060 /**
1061 * Returns true if this title resolves to the named special page
1062 *
1063 * @param string $name The special page name
1064 * @return bool
1065 */
1066 public function isSpecial( $name ) {
1067 if ( $this->isSpecialPage() ) {
1068 list( $thisName, /* $subpage */ ) = SpecialPageFactory::resolveAlias( $this->getDBkey() );
1069 if ( $name == $thisName ) {
1070 return true;
1071 }
1072 }
1073 return false;
1074 }
1075
1076 /**
1077 * If the Title refers to a special page alias which is not the local default, resolve
1078 * the alias, and localise the name as necessary. Otherwise, return $this
1079 *
1080 * @return Title
1081 */
1082 public function fixSpecialName() {
1083 if ( $this->isSpecialPage() ) {
1084 list( $canonicalName, $par ) = SpecialPageFactory::resolveAlias( $this->mDbkeyform );
1085 if ( $canonicalName ) {
1086 $localName = SpecialPageFactory::getLocalNameFor( $canonicalName, $par );
1087 if ( $localName != $this->mDbkeyform ) {
1088 return Title::makeTitle( NS_SPECIAL, $localName );
1089 }
1090 }
1091 }
1092 return $this;
1093 }
1094
1095 /**
1096 * Returns true if the title is inside the specified namespace.
1097 *
1098 * Please make use of this instead of comparing to getNamespace()
1099 * This function is much more resistant to changes we may make
1100 * to namespaces than code that makes direct comparisons.
1101 * @param int $ns The namespace
1102 * @return bool
1103 * @since 1.19
1104 */
1105 public function inNamespace( $ns ) {
1106 return MWNamespace::equals( $this->getNamespace(), $ns );
1107 }
1108
1109 /**
1110 * Returns true if the title is inside one of the specified namespaces.
1111 *
1112 * @param int $namespaces,... The namespaces to check for
1113 * @return bool
1114 * @since 1.19
1115 */
1116 public function inNamespaces( /* ... */ ) {
1117 $namespaces = func_get_args();
1118 if ( count( $namespaces ) > 0 && is_array( $namespaces[0] ) ) {
1119 $namespaces = $namespaces[0];
1120 }
1121
1122 foreach ( $namespaces as $ns ) {
1123 if ( $this->inNamespace( $ns ) ) {
1124 return true;
1125 }
1126 }
1127
1128 return false;
1129 }
1130
1131 /**
1132 * Returns true if the title has the same subject namespace as the
1133 * namespace specified.
1134 * For example this method will take NS_USER and return true if namespace
1135 * is either NS_USER or NS_USER_TALK since both of them have NS_USER
1136 * as their subject namespace.
1137 *
1138 * This is MUCH simpler than individually testing for equivalence
1139 * against both NS_USER and NS_USER_TALK, and is also forward compatible.
1140 * @since 1.19
1141 * @param int $ns
1142 * @return bool
1143 */
1144 public function hasSubjectNamespace( $ns ) {
1145 return MWNamespace::subjectEquals( $this->getNamespace(), $ns );
1146 }
1147
1148 /**
1149 * Is this Title in a namespace which contains content?
1150 * In other words, is this a content page, for the purposes of calculating
1151 * statistics, etc?
1152 *
1153 * @return bool
1154 */
1155 public function isContentPage() {
1156 return MWNamespace::isContent( $this->getNamespace() );
1157 }
1158
1159 /**
1160 * Would anybody with sufficient privileges be able to move this page?
1161 * Some pages just aren't movable.
1162 *
1163 * @return bool
1164 */
1165 public function isMovable() {
1166 if ( !MWNamespace::isMovable( $this->getNamespace() ) || $this->isExternal() ) {
1167 // Interwiki title or immovable namespace. Hooks don't get to override here
1168 return false;
1169 }
1170
1171 $result = true;
1172 wfRunHooks( 'TitleIsMovable', array( $this, &$result ) );
1173 return $result;
1174 }
1175
1176 /**
1177 * Is this the mainpage?
1178 * @note Title::newFromText seems to be sufficiently optimized by the title
1179 * cache that we don't need to over-optimize by doing direct comparisons and
1180 * accidentally creating new bugs where $title->equals( Title::newFromText() )
1181 * ends up reporting something differently than $title->isMainPage();
1182 *
1183 * @since 1.18
1184 * @return bool
1185 */
1186 public function isMainPage() {
1187 return $this->equals( Title::newMainPage() );
1188 }
1189
1190 /**
1191 * Is this a subpage?
1192 *
1193 * @return bool
1194 */
1195 public function isSubpage() {
1196 return MWNamespace::hasSubpages( $this->mNamespace )
1197 ? strpos( $this->getText(), '/' ) !== false
1198 : false;
1199 }
1200
1201 /**
1202 * Is this a conversion table for the LanguageConverter?
1203 *
1204 * @return bool
1205 */
1206 public function isConversionTable() {
1207 // @todo ConversionTable should become a separate content model.
1208
1209 return $this->getNamespace() == NS_MEDIAWIKI &&
1210 strpos( $this->getText(), 'Conversiontable/' ) === 0;
1211 }
1212
1213 /**
1214 * Does that page contain wikitext, or it is JS, CSS or whatever?
1215 *
1216 * @return bool
1217 */
1218 public function isWikitextPage() {
1219 return $this->hasContentModel( CONTENT_MODEL_WIKITEXT );
1220 }
1221
1222 /**
1223 * Could this page contain custom CSS or JavaScript for the global UI.
1224 * This is generally true for pages in the MediaWiki namespace having CONTENT_MODEL_CSS
1225 * or CONTENT_MODEL_JAVASCRIPT.
1226 *
1227 * This method does *not* return true for per-user JS/CSS. Use isCssJsSubpage()
1228 * for that!
1229 *
1230 * Note that this method should not return true for pages that contain and
1231 * show "inactive" CSS or JS.
1232 *
1233 * @return bool
1234 */
1235 public function isCssOrJsPage() {
1236 $isCssOrJsPage = NS_MEDIAWIKI == $this->mNamespace
1237 && ( $this->hasContentModel( CONTENT_MODEL_CSS )
1238 || $this->hasContentModel( CONTENT_MODEL_JAVASCRIPT ) );
1239
1240 # @note This hook is also called in ContentHandler::getDefaultModel.
1241 # It's called here again to make sure hook functions can force this
1242 # method to return true even outside the mediawiki namespace.
1243
1244 wfRunHooks( 'TitleIsCssOrJsPage', array( $this, &$isCssOrJsPage ) );
1245
1246 return $isCssOrJsPage;
1247 }
1248
1249 /**
1250 * Is this a .css or .js subpage of a user page?
1251 * @return bool
1252 */
1253 public function isCssJsSubpage() {
1254 return ( NS_USER == $this->mNamespace && $this->isSubpage()
1255 && ( $this->hasContentModel( CONTENT_MODEL_CSS )
1256 || $this->hasContentModel( CONTENT_MODEL_JAVASCRIPT ) ) );
1257 }
1258
1259 /**
1260 * Trim down a .css or .js subpage title to get the corresponding skin name
1261 *
1262 * @return string Containing skin name from .css or .js subpage title
1263 */
1264 public function getSkinFromCssJsSubpage() {
1265 $subpage = explode( '/', $this->mTextform );
1266 $subpage = $subpage[count( $subpage ) - 1];
1267 $lastdot = strrpos( $subpage, '.' );
1268 if ( $lastdot === false ) {
1269 return $subpage; # Never happens: only called for names ending in '.css' or '.js'
1270 }
1271 return substr( $subpage, 0, $lastdot );
1272 }
1273
1274 /**
1275 * Is this a .css subpage of a user page?
1276 *
1277 * @return bool
1278 */
1279 public function isCssSubpage() {
1280 return ( NS_USER == $this->mNamespace && $this->isSubpage()
1281 && $this->hasContentModel( CONTENT_MODEL_CSS ) );
1282 }
1283
1284 /**
1285 * Is this a .js subpage of a user page?
1286 *
1287 * @return bool
1288 */
1289 public function isJsSubpage() {
1290 return ( NS_USER == $this->mNamespace && $this->isSubpage()
1291 && $this->hasContentModel( CONTENT_MODEL_JAVASCRIPT ) );
1292 }
1293
1294 /**
1295 * Is this a talk page of some sort?
1296 *
1297 * @return bool
1298 */
1299 public function isTalkPage() {
1300 return MWNamespace::isTalk( $this->getNamespace() );
1301 }
1302
1303 /**
1304 * Get a Title object associated with the talk page of this article
1305 *
1306 * @return Title The object for the talk page
1307 */
1308 public function getTalkPage() {
1309 return Title::makeTitle( MWNamespace::getTalk( $this->getNamespace() ), $this->getDBkey() );
1310 }
1311
1312 /**
1313 * Get a title object associated with the subject page of this
1314 * talk page
1315 *
1316 * @return Title The object for the subject page
1317 */
1318 public function getSubjectPage() {
1319 // Is this the same title?
1320 $subjectNS = MWNamespace::getSubject( $this->getNamespace() );
1321 if ( $this->getNamespace() == $subjectNS ) {
1322 return $this;
1323 }
1324 return Title::makeTitle( $subjectNS, $this->getDBkey() );
1325 }
1326
1327 /**
1328 * Get the default namespace index, for when there is no namespace
1329 *
1330 * @return int Default namespace index
1331 */
1332 public function getDefaultNamespace() {
1333 return $this->mDefaultNamespace;
1334 }
1335
1336 /**
1337 * Get the Title fragment (i.e.\ the bit after the #) in text form
1338 *
1339 * Use Title::hasFragment to check for a fragment
1340 *
1341 * @return string Title fragment
1342 */
1343 public function getFragment() {
1344 return $this->mFragment;
1345 }
1346
1347 /**
1348 * Check if a Title fragment is set
1349 *
1350 * @return bool
1351 * @since 1.23
1352 */
1353 public function hasFragment() {
1354 return $this->mFragment !== '';
1355 }
1356
1357 /**
1358 * Get the fragment in URL form, including the "#" character if there is one
1359 * @return string Fragment in URL form
1360 */
1361 public function getFragmentForURL() {
1362 if ( !$this->hasFragment() ) {
1363 return '';
1364 } else {
1365 return '#' . Title::escapeFragmentForURL( $this->getFragment() );
1366 }
1367 }
1368
1369 /**
1370 * Set the fragment for this title. Removes the first character from the
1371 * specified fragment before setting, so it assumes you're passing it with
1372 * an initial "#".
1373 *
1374 * Deprecated for public use, use Title::makeTitle() with fragment parameter.
1375 * Still in active use privately.
1376 *
1377 * @param string $fragment Text
1378 */
1379 public function setFragment( $fragment ) {
1380 $this->mFragment = str_replace( '_', ' ', substr( $fragment, 1 ) );
1381 }
1382
1383 /**
1384 * Prefix some arbitrary text with the namespace or interwiki prefix
1385 * of this object
1386 *
1387 * @param string $name The text
1388 * @return string The prefixed text
1389 */
1390 private function prefix( $name ) {
1391 $p = '';
1392 if ( $this->isExternal() ) {
1393 $p = $this->mInterwiki . ':';
1394 }
1395
1396 if ( 0 != $this->mNamespace ) {
1397 $p .= $this->getNsText() . ':';
1398 }
1399 return $p . $name;
1400 }
1401
1402 /**
1403 * Get the prefixed database key form
1404 *
1405 * @return string The prefixed title, with underscores and
1406 * any interwiki and namespace prefixes
1407 */
1408 public function getPrefixedDBkey() {
1409 $s = $this->prefix( $this->mDbkeyform );
1410 $s = str_replace( ' ', '_', $s );
1411 return $s;
1412 }
1413
1414 /**
1415 * Get the prefixed title with spaces.
1416 * This is the form usually used for display
1417 *
1418 * @return string The prefixed title, with spaces
1419 */
1420 public function getPrefixedText() {
1421 if ( $this->mPrefixedText === null ) {
1422 $s = $this->prefix( $this->mTextform );
1423 $s = str_replace( '_', ' ', $s );
1424 $this->mPrefixedText = $s;
1425 }
1426 return $this->mPrefixedText;
1427 }
1428
1429 /**
1430 * Return a string representation of this title
1431 *
1432 * @return string Representation of this title
1433 */
1434 public function __toString() {
1435 return $this->getPrefixedText();
1436 }
1437
1438 /**
1439 * Get the prefixed title with spaces, plus any fragment
1440 * (part beginning with '#')
1441 *
1442 * @return string The prefixed title, with spaces and the fragment, including '#'
1443 */
1444 public function getFullText() {
1445 $text = $this->getPrefixedText();
1446 if ( $this->hasFragment() ) {
1447 $text .= '#' . $this->getFragment();
1448 }
1449 return $text;
1450 }
1451
1452 /**
1453 * Get the root page name text without a namespace, i.e. the leftmost part before any slashes
1454 *
1455 * @par Example:
1456 * @code
1457 * Title::newFromText('User:Foo/Bar/Baz')->getRootText();
1458 * # returns: 'Foo'
1459 * @endcode
1460 *
1461 * @return string Root name
1462 * @since 1.20
1463 */
1464 public function getRootText() {
1465 if ( !MWNamespace::hasSubpages( $this->mNamespace ) ) {
1466 return $this->getText();
1467 }
1468
1469 return strtok( $this->getText(), '/' );
1470 }
1471
1472 /**
1473 * Get the root page name title, i.e. the leftmost part before any slashes
1474 *
1475 * @par Example:
1476 * @code
1477 * Title::newFromText('User:Foo/Bar/Baz')->getRootTitle();
1478 * # returns: Title{User:Foo}
1479 * @endcode
1480 *
1481 * @return Title Root title
1482 * @since 1.20
1483 */
1484 public function getRootTitle() {
1485 return Title::makeTitle( $this->getNamespace(), $this->getRootText() );
1486 }
1487
1488 /**
1489 * Get the base page name without a namespace, i.e. the part before the subpage name
1490 *
1491 * @par Example:
1492 * @code
1493 * Title::newFromText('User:Foo/Bar/Baz')->getBaseText();
1494 * # returns: 'Foo/Bar'
1495 * @endcode
1496 *
1497 * @return string Base name
1498 */
1499 public function getBaseText() {
1500 if ( !MWNamespace::hasSubpages( $this->mNamespace ) ) {
1501 return $this->getText();
1502 }
1503
1504 $parts = explode( '/', $this->getText() );
1505 # Don't discard the real title if there's no subpage involved
1506 if ( count( $parts ) > 1 ) {
1507 unset( $parts[count( $parts ) - 1] );
1508 }
1509 return implode( '/', $parts );
1510 }
1511
1512 /**
1513 * Get the base page name title, i.e. the part before the subpage name
1514 *
1515 * @par Example:
1516 * @code
1517 * Title::newFromText('User:Foo/Bar/Baz')->getBaseTitle();
1518 * # returns: Title{User:Foo/Bar}
1519 * @endcode
1520 *
1521 * @return Title Base title
1522 * @since 1.20
1523 */
1524 public function getBaseTitle() {
1525 return Title::makeTitle( $this->getNamespace(), $this->getBaseText() );
1526 }
1527
1528 /**
1529 * Get the lowest-level subpage name, i.e. the rightmost part after any slashes
1530 *
1531 * @par Example:
1532 * @code
1533 * Title::newFromText('User:Foo/Bar/Baz')->getSubpageText();
1534 * # returns: "Baz"
1535 * @endcode
1536 *
1537 * @return string Subpage name
1538 */
1539 public function getSubpageText() {
1540 if ( !MWNamespace::hasSubpages( $this->mNamespace ) ) {
1541 return $this->mTextform;
1542 }
1543 $parts = explode( '/', $this->mTextform );
1544 return $parts[count( $parts ) - 1];
1545 }
1546
1547 /**
1548 * Get the title for a subpage of the current page
1549 *
1550 * @par Example:
1551 * @code
1552 * Title::newFromText('User:Foo/Bar/Baz')->getSubpage("Asdf");
1553 * # returns: Title{User:Foo/Bar/Baz/Asdf}
1554 * @endcode
1555 *
1556 * @param string $text The subpage name to add to the title
1557 * @return Title Subpage title
1558 * @since 1.20
1559 */
1560 public function getSubpage( $text ) {
1561 return Title::makeTitleSafe( $this->getNamespace(), $this->getText() . '/' . $text );
1562 }
1563
1564 /**
1565 * Get a URL-encoded form of the subpage text
1566 *
1567 * @return string URL-encoded subpage name
1568 */
1569 public function getSubpageUrlForm() {
1570 $text = $this->getSubpageText();
1571 $text = wfUrlencode( str_replace( ' ', '_', $text ) );
1572 return $text;
1573 }
1574
1575 /**
1576 * Get a URL-encoded title (not an actual URL) including interwiki
1577 *
1578 * @return string The URL-encoded form
1579 */
1580 public function getPrefixedURL() {
1581 $s = $this->prefix( $this->mDbkeyform );
1582 $s = wfUrlencode( str_replace( ' ', '_', $s ) );
1583 return $s;
1584 }
1585
1586 /**
1587 * Helper to fix up the get{Canonical,Full,Link,Local,Internal}URL args
1588 * get{Canonical,Full,Link,Local,Internal}URL methods accepted an optional
1589 * second argument named variant. This was deprecated in favor
1590 * of passing an array of option with a "variant" key
1591 * Once $query2 is removed for good, this helper can be dropped
1592 * and the wfArrayToCgi moved to getLocalURL();
1593 *
1594 * @since 1.19 (r105919)
1595 * @param array|string $query
1596 * @param bool $query2
1597 * @return string
1598 */
1599 private static function fixUrlQueryArgs( $query, $query2 = false ) {
1600 if ( $query2 !== false ) {
1601 wfDeprecated( "Title::get{Canonical,Full,Link,Local,Internal}URL " .
1602 "method called with a second parameter is deprecated. Add your " .
1603 "parameter to an array passed as the first parameter.", "1.19" );
1604 }
1605 if ( is_array( $query ) ) {
1606 $query = wfArrayToCgi( $query );
1607 }
1608 if ( $query2 ) {
1609 if ( is_string( $query2 ) ) {
1610 // $query2 is a string, we will consider this to be
1611 // a deprecated $variant argument and add it to the query
1612 $query2 = wfArrayToCgi( array( 'variant' => $query2 ) );
1613 } else {
1614 $query2 = wfArrayToCgi( $query2 );
1615 }
1616 // If we have $query content add a & to it first
1617 if ( $query ) {
1618 $query .= '&';
1619 }
1620 // Now append the queries together
1621 $query .= $query2;
1622 }
1623 return $query;
1624 }
1625
1626 /**
1627 * Get a real URL referring to this title, with interwiki link and
1628 * fragment
1629 *
1630 * @see self::getLocalURL for the arguments.
1631 * @see wfExpandUrl
1632 * @param array|string $query
1633 * @param bool $query2
1634 * @param string $proto Protocol type to use in URL
1635 * @return string The URL
1636 */
1637 public function getFullURL( $query = '', $query2 = false, $proto = PROTO_RELATIVE ) {
1638 $query = self::fixUrlQueryArgs( $query, $query2 );
1639
1640 # Hand off all the decisions on urls to getLocalURL
1641 $url = $this->getLocalURL( $query );
1642
1643 # Expand the url to make it a full url. Note that getLocalURL has the
1644 # potential to output full urls for a variety of reasons, so we use
1645 # wfExpandUrl instead of simply prepending $wgServer
1646 $url = wfExpandUrl( $url, $proto );
1647
1648 # Finally, add the fragment.
1649 $url .= $this->getFragmentForURL();
1650
1651 wfRunHooks( 'GetFullURL', array( &$this, &$url, $query ) );
1652 return $url;
1653 }
1654
1655 /**
1656 * Get a URL with no fragment or server name (relative URL) from a Title object.
1657 * If this page is generated with action=render, however,
1658 * $wgServer is prepended to make an absolute URL.
1659 *
1660 * @see self::getFullURL to always get an absolute URL.
1661 * @see self::getLinkURL to always get a URL that's the simplest URL that will be
1662 * valid to link, locally, to the current Title.
1663 * @see self::newFromText to produce a Title object.
1664 *
1665 * @param string|array $query An optional query string,
1666 * not used for interwiki links. Can be specified as an associative array as well,
1667 * e.g., array( 'action' => 'edit' ) (keys and values will be URL-escaped).
1668 * Some query patterns will trigger various shorturl path replacements.
1669 * @param array $query2 An optional secondary query array. This one MUST
1670 * be an array. If a string is passed it will be interpreted as a deprecated
1671 * variant argument and urlencoded into a variant= argument.
1672 * This second query argument will be added to the $query
1673 * The second parameter is deprecated since 1.19. Pass it as a key,value
1674 * pair in the first parameter array instead.
1675 *
1676 * @return string String of the URL.
1677 */
1678 public function getLocalURL( $query = '', $query2 = false ) {
1679 global $wgArticlePath, $wgScript, $wgServer, $wgRequest;
1680
1681 $query = self::fixUrlQueryArgs( $query, $query2 );
1682
1683 $interwiki = Interwiki::fetch( $this->mInterwiki );
1684 if ( $interwiki ) {
1685 $namespace = $this->getNsText();
1686 if ( $namespace != '' ) {
1687 # Can this actually happen? Interwikis shouldn't be parsed.
1688 # Yes! It can in interwiki transclusion. But... it probably shouldn't.
1689 $namespace .= ':';
1690 }
1691 $url = $interwiki->getURL( $namespace . $this->getDBkey() );
1692 $url = wfAppendQuery( $url, $query );
1693 } else {
1694 $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
1695 if ( $query == '' ) {
1696 $url = str_replace( '$1', $dbkey, $wgArticlePath );
1697 wfRunHooks( 'GetLocalURL::Article', array( &$this, &$url ) );
1698 } else {
1699 global $wgVariantArticlePath, $wgActionPaths, $wgContLang;
1700 $url = false;
1701 $matches = array();
1702
1703 if ( !empty( $wgActionPaths )
1704 && preg_match( '/^(.*&|)action=([^&]*)(&(.*)|)$/', $query, $matches )
1705 ) {
1706 $action = urldecode( $matches[2] );
1707 if ( isset( $wgActionPaths[$action] ) ) {
1708 $query = $matches[1];
1709 if ( isset( $matches[4] ) ) {
1710 $query .= $matches[4];
1711 }
1712 $url = str_replace( '$1', $dbkey, $wgActionPaths[$action] );
1713 if ( $query != '' ) {
1714 $url = wfAppendQuery( $url, $query );
1715 }
1716 }
1717 }
1718
1719 if ( $url === false
1720 && $wgVariantArticlePath
1721 && $wgContLang->getCode() === $this->getPageLanguage()->getCode()
1722 && $this->getPageLanguage()->hasVariants()
1723 && preg_match( '/^variant=([^&]*)$/', $query, $matches )
1724 ) {
1725 $variant = urldecode( $matches[1] );
1726 if ( $this->getPageLanguage()->hasVariant( $variant ) ) {
1727 // Only do the variant replacement if the given variant is a valid
1728 // variant for the page's language.
1729 $url = str_replace( '$2', urlencode( $variant ), $wgVariantArticlePath );
1730 $url = str_replace( '$1', $dbkey, $url );
1731 }
1732 }
1733
1734 if ( $url === false ) {
1735 if ( $query == '-' ) {
1736 $query = '';
1737 }
1738 $url = "{$wgScript}?title={$dbkey}&{$query}";
1739 }
1740 }
1741
1742 wfRunHooks( 'GetLocalURL::Internal', array( &$this, &$url, $query ) );
1743
1744 // @todo FIXME: This causes breakage in various places when we
1745 // actually expected a local URL and end up with dupe prefixes.
1746 if ( $wgRequest->getVal( 'action' ) == 'render' ) {
1747 $url = $wgServer . $url;
1748 }
1749 }
1750 wfRunHooks( 'GetLocalURL', array( &$this, &$url, $query ) );
1751 return $url;
1752 }
1753
1754 /**
1755 * Get a URL that's the simplest URL that will be valid to link, locally,
1756 * to the current Title. It includes the fragment, but does not include
1757 * the server unless action=render is used (or the link is external). If
1758 * there's a fragment but the prefixed text is empty, we just return a link
1759 * to the fragment.
1760 *
1761 * The result obviously should not be URL-escaped, but does need to be
1762 * HTML-escaped if it's being output in HTML.
1763 *
1764 * @param array $query
1765 * @param bool $query2
1766 * @param string $proto Protocol to use; setting this will cause a full URL to be used
1767 * @see self::getLocalURL for the arguments.
1768 * @return string The URL
1769 */
1770 public function getLinkURL( $query = '', $query2 = false, $proto = PROTO_RELATIVE ) {
1771 wfProfileIn( __METHOD__ );
1772 if ( $this->isExternal() || $proto !== PROTO_RELATIVE ) {
1773 $ret = $this->getFullURL( $query, $query2, $proto );
1774 } elseif ( $this->getPrefixedText() === '' && $this->hasFragment() ) {
1775 $ret = $this->getFragmentForURL();
1776 } else {
1777 $ret = $this->getLocalURL( $query, $query2 ) . $this->getFragmentForURL();
1778 }
1779 wfProfileOut( __METHOD__ );
1780 return $ret;
1781 }
1782
1783 /**
1784 * Get the URL form for an internal link.
1785 * - Used in various Squid-related code, in case we have a different
1786 * internal hostname for the server from the exposed one.
1787 *
1788 * This uses $wgInternalServer to qualify the path, or $wgServer
1789 * if $wgInternalServer is not set. If the server variable used is
1790 * protocol-relative, the URL will be expanded to http://
1791 *
1792 * @see self::getLocalURL for the arguments.
1793 * @return string The URL
1794 */
1795 public function getInternalURL( $query = '', $query2 = false ) {
1796 global $wgInternalServer, $wgServer;
1797 $query = self::fixUrlQueryArgs( $query, $query2 );
1798 $server = $wgInternalServer !== false ? $wgInternalServer : $wgServer;
1799 $url = wfExpandUrl( $server . $this->getLocalURL( $query ), PROTO_HTTP );
1800 wfRunHooks( 'GetInternalURL', array( &$this, &$url, $query ) );
1801 return $url;
1802 }
1803
1804 /**
1805 * Get the URL for a canonical link, for use in things like IRC and
1806 * e-mail notifications. Uses $wgCanonicalServer and the
1807 * GetCanonicalURL hook.
1808 *
1809 * NOTE: Unlike getInternalURL(), the canonical URL includes the fragment
1810 *
1811 * @see self::getLocalURL for the arguments.
1812 * @return string The URL
1813 * @since 1.18
1814 */
1815 public function getCanonicalURL( $query = '', $query2 = false ) {
1816 $query = self::fixUrlQueryArgs( $query, $query2 );
1817 $url = wfExpandUrl( $this->getLocalURL( $query ) . $this->getFragmentForURL(), PROTO_CANONICAL );
1818 wfRunHooks( 'GetCanonicalURL', array( &$this, &$url, $query ) );
1819 return $url;
1820 }
1821
1822 /**
1823 * Get the edit URL for this Title
1824 *
1825 * @return string The URL, or a null string if this is an interwiki link
1826 */
1827 public function getEditURL() {
1828 if ( $this->isExternal() ) {
1829 return '';
1830 }
1831 $s = $this->getLocalURL( 'action=edit' );
1832
1833 return $s;
1834 }
1835
1836 /**
1837 * Is $wgUser watching this page?
1838 *
1839 * @deprecated since 1.20; use User::isWatched() instead.
1840 * @return bool
1841 */
1842 public function userIsWatching() {
1843 global $wgUser;
1844
1845 if ( is_null( $this->mWatched ) ) {
1846 if ( NS_SPECIAL == $this->mNamespace || !$wgUser->isLoggedIn() ) {
1847 $this->mWatched = false;
1848 } else {
1849 $this->mWatched = $wgUser->isWatched( $this );
1850 }
1851 }
1852 return $this->mWatched;
1853 }
1854
1855 /**
1856 * Can $user perform $action on this page?
1857 * This skips potentially expensive cascading permission checks
1858 * as well as avoids expensive error formatting
1859 *
1860 * Suitable for use for nonessential UI controls in common cases, but
1861 * _not_ for functional access control.
1862 *
1863 * May provide false positives, but should never provide a false negative.
1864 *
1865 * @param string $action Action that permission needs to be checked for
1866 * @param User $user User to check (since 1.19); $wgUser will be used if not provided.
1867 * @return bool
1868 */
1869 public function quickUserCan( $action, $user = null ) {
1870 return $this->userCan( $action, $user, false );
1871 }
1872
1873 /**
1874 * Can $user perform $action on this page?
1875 *
1876 * @param string $action Action that permission needs to be checked for
1877 * @param User $user User to check (since 1.19); $wgUser will be used if not
1878 * provided.
1879 * @param bool $doExpensiveQueries Set this to false to avoid doing
1880 * unnecessary queries.
1881 * @return bool
1882 */
1883 public function userCan( $action, $user = null, $doExpensiveQueries = true ) {
1884 if ( !$user instanceof User ) {
1885 global $wgUser;
1886 $user = $wgUser;
1887 }
1888
1889 return !count( $this->getUserPermissionsErrorsInternal(
1890 $action, $user, $doExpensiveQueries, true ) );
1891 }
1892
1893 /**
1894 * Can $user perform $action on this page?
1895 *
1896 * @todo FIXME: This *does not* check throttles (User::pingLimiter()).
1897 *
1898 * @param string $action Action that permission needs to be checked for
1899 * @param User $user User to check
1900 * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary
1901 * queries by skipping checks for cascading protections and user blocks.
1902 * @param array $ignoreErrors Array of Strings Set this to a list of message keys
1903 * whose corresponding errors may be ignored.
1904 * @return array Array of arguments to wfMessage to explain permissions problems.
1905 */
1906 public function getUserPermissionsErrors( $action, $user, $doExpensiveQueries = true,
1907 $ignoreErrors = array()
1908 ) {
1909 $errors = $this->getUserPermissionsErrorsInternal( $action, $user, $doExpensiveQueries );
1910
1911 // Remove the errors being ignored.
1912 foreach ( $errors as $index => $error ) {
1913 $error_key = is_array( $error ) ? $error[0] : $error;
1914
1915 if ( in_array( $error_key, $ignoreErrors ) ) {
1916 unset( $errors[$index] );
1917 }
1918 }
1919
1920 return $errors;
1921 }
1922
1923 /**
1924 * Permissions checks that fail most often, and which are easiest to test.
1925 *
1926 * @param string $action The action to check
1927 * @param User $user User to check
1928 * @param array $errors List of current errors
1929 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
1930 * @param bool $short Short circuit on first error
1931 *
1932 * @return array List of errors
1933 */
1934 private function checkQuickPermissions( $action, $user, $errors,
1935 $doExpensiveQueries, $short
1936 ) {
1937 if ( !wfRunHooks( 'TitleQuickPermissions',
1938 array( $this, $user, $action, &$errors, $doExpensiveQueries, $short ) )
1939 ) {
1940 return $errors;
1941 }
1942
1943 if ( $action == 'create' ) {
1944 if (
1945 ( $this->isTalkPage() && !$user->isAllowed( 'createtalk' ) ) ||
1946 ( !$this->isTalkPage() && !$user->isAllowed( 'createpage' ) )
1947 ) {
1948 $errors[] = $user->isAnon() ? array( 'nocreatetext' ) : array( 'nocreate-loggedin' );
1949 }
1950 } elseif ( $action == 'move' ) {
1951 if ( !$user->isAllowed( 'move-rootuserpages' )
1952 && $this->mNamespace == NS_USER && !$this->isSubpage() ) {
1953 // Show user page-specific message only if the user can move other pages
1954 $errors[] = array( 'cant-move-user-page' );
1955 }
1956
1957 // Check if user is allowed to move files if it's a file
1958 if ( $this->mNamespace == NS_FILE && !$user->isAllowed( 'movefile' ) ) {
1959 $errors[] = array( 'movenotallowedfile' );
1960 }
1961
1962 // Check if user is allowed to move category pages if it's a category page
1963 if ( $this->mNamespace == NS_CATEGORY && !$user->isAllowed( 'move-categorypages' ) ) {
1964 $errors[] = array( 'cant-move-category-page' );
1965 }
1966
1967 if ( !$user->isAllowed( 'move' ) ) {
1968 // User can't move anything
1969 $userCanMove = User::groupHasPermission( 'user', 'move' );
1970 $autoconfirmedCanMove = User::groupHasPermission( 'autoconfirmed', 'move' );
1971 if ( $user->isAnon() && ( $userCanMove || $autoconfirmedCanMove ) ) {
1972 // custom message if logged-in users without any special rights can move
1973 $errors[] = array( 'movenologintext' );
1974 } else {
1975 $errors[] = array( 'movenotallowed' );
1976 }
1977 }
1978 } elseif ( $action == 'move-target' ) {
1979 if ( !$user->isAllowed( 'move' ) ) {
1980 // User can't move anything
1981 $errors[] = array( 'movenotallowed' );
1982 } elseif ( !$user->isAllowed( 'move-rootuserpages' )
1983 && $this->mNamespace == NS_USER && !$this->isSubpage() ) {
1984 // Show user page-specific message only if the user can move other pages
1985 $errors[] = array( 'cant-move-to-user-page' );
1986 } elseif ( !$user->isAllowed( 'move-categorypages' )
1987 && $this->mNamespace == NS_CATEGORY ) {
1988 // Show category page-specific message only if the user can move other pages
1989 $errors[] = array( 'cant-move-to-category-page' );
1990 }
1991 } elseif ( !$user->isAllowed( $action ) ) {
1992 $errors[] = $this->missingPermissionError( $action, $short );
1993 }
1994
1995 return $errors;
1996 }
1997
1998 /**
1999 * Add the resulting error code to the errors array
2000 *
2001 * @param array $errors List of current errors
2002 * @param array $result Result of errors
2003 *
2004 * @return array List of errors
2005 */
2006 private function resultToError( $errors, $result ) {
2007 if ( is_array( $result ) && count( $result ) && !is_array( $result[0] ) ) {
2008 // A single array representing an error
2009 $errors[] = $result;
2010 } elseif ( is_array( $result ) && is_array( $result[0] ) ) {
2011 // A nested array representing multiple errors
2012 $errors = array_merge( $errors, $result );
2013 } elseif ( $result !== '' && is_string( $result ) ) {
2014 // A string representing a message-id
2015 $errors[] = array( $result );
2016 } elseif ( $result === false ) {
2017 // a generic "We don't want them to do that"
2018 $errors[] = array( 'badaccess-group0' );
2019 }
2020 return $errors;
2021 }
2022
2023 /**
2024 * Check various permission hooks
2025 *
2026 * @param string $action The action to check
2027 * @param User $user User to check
2028 * @param array $errors List of current errors
2029 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2030 * @param bool $short Short circuit on first error
2031 *
2032 * @return array List of errors
2033 */
2034 private function checkPermissionHooks( $action, $user, $errors, $doExpensiveQueries, $short ) {
2035 // Use getUserPermissionsErrors instead
2036 $result = '';
2037 if ( !wfRunHooks( 'userCan', array( &$this, &$user, $action, &$result ) ) ) {
2038 return $result ? array() : array( array( 'badaccess-group0' ) );
2039 }
2040 // Check getUserPermissionsErrors hook
2041 if ( !wfRunHooks( 'getUserPermissionsErrors', array( &$this, &$user, $action, &$result ) ) ) {
2042 $errors = $this->resultToError( $errors, $result );
2043 }
2044 // Check getUserPermissionsErrorsExpensive hook
2045 if (
2046 $doExpensiveQueries
2047 && !( $short && count( $errors ) > 0 )
2048 && !wfRunHooks( 'getUserPermissionsErrorsExpensive', array( &$this, &$user, $action, &$result ) )
2049 ) {
2050 $errors = $this->resultToError( $errors, $result );
2051 }
2052
2053 return $errors;
2054 }
2055
2056 /**
2057 * Check permissions on special pages & namespaces
2058 *
2059 * @param string $action The action to check
2060 * @param User $user User to check
2061 * @param array $errors List of current errors
2062 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2063 * @param bool $short Short circuit on first error
2064 *
2065 * @return array List of errors
2066 */
2067 private function checkSpecialsAndNSPermissions( $action, $user, $errors,
2068 $doExpensiveQueries, $short
2069 ) {
2070 # Only 'createaccount' can be performed on special pages,
2071 # which don't actually exist in the DB.
2072 if ( NS_SPECIAL == $this->mNamespace && $action !== 'createaccount' ) {
2073 $errors[] = array( 'ns-specialprotected' );
2074 }
2075
2076 # Check $wgNamespaceProtection for restricted namespaces
2077 if ( $this->isNamespaceProtected( $user ) ) {
2078 $ns = $this->mNamespace == NS_MAIN ?
2079 wfMessage( 'nstab-main' )->text() : $this->getNsText();
2080 $errors[] = $this->mNamespace == NS_MEDIAWIKI ?
2081 array( 'protectedinterface', $action ) : array( 'namespaceprotected', $ns, $action );
2082 }
2083
2084 return $errors;
2085 }
2086
2087 /**
2088 * Check CSS/JS sub-page permissions
2089 *
2090 * @param string $action The action to check
2091 * @param User $user User to check
2092 * @param array $errors List of current errors
2093 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2094 * @param bool $short Short circuit on first error
2095 *
2096 * @return array List of errors
2097 */
2098 private function checkCSSandJSPermissions( $action, $user, $errors, $doExpensiveQueries, $short ) {
2099 # Protect css/js subpages of user pages
2100 # XXX: this might be better using restrictions
2101 # XXX: right 'editusercssjs' is deprecated, for backward compatibility only
2102 if ( $action != 'patrol' && !$user->isAllowed( 'editusercssjs' ) ) {
2103 if ( preg_match( '/^' . preg_quote( $user->getName(), '/' ) . '\//', $this->mTextform ) ) {
2104 if ( $this->isCssSubpage() && !$user->isAllowedAny( 'editmyusercss', 'editusercss' ) ) {
2105 $errors[] = array( 'mycustomcssprotected', $action );
2106 } elseif ( $this->isJsSubpage() && !$user->isAllowedAny( 'editmyuserjs', 'edituserjs' ) ) {
2107 $errors[] = array( 'mycustomjsprotected', $action );
2108 }
2109 } else {
2110 if ( $this->isCssSubpage() && !$user->isAllowed( 'editusercss' ) ) {
2111 $errors[] = array( 'customcssprotected', $action );
2112 } elseif ( $this->isJsSubpage() && !$user->isAllowed( 'edituserjs' ) ) {
2113 $errors[] = array( 'customjsprotected', $action );
2114 }
2115 }
2116 }
2117
2118 return $errors;
2119 }
2120
2121 /**
2122 * Check against page_restrictions table requirements on this
2123 * page. The user must possess all required rights for this
2124 * action.
2125 *
2126 * @param string $action The action to check
2127 * @param User $user User to check
2128 * @param array $errors List of current errors
2129 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2130 * @param bool $short Short circuit on first error
2131 *
2132 * @return array List of errors
2133 */
2134 private function checkPageRestrictions( $action, $user, $errors, $doExpensiveQueries, $short ) {
2135 foreach ( $this->getRestrictions( $action ) as $right ) {
2136 // Backwards compatibility, rewrite sysop -> editprotected
2137 if ( $right == 'sysop' ) {
2138 $right = 'editprotected';
2139 }
2140 // Backwards compatibility, rewrite autoconfirmed -> editsemiprotected
2141 if ( $right == 'autoconfirmed' ) {
2142 $right = 'editsemiprotected';
2143 }
2144 if ( $right == '' ) {
2145 continue;
2146 }
2147 if ( !$user->isAllowed( $right ) ) {
2148 $errors[] = array( 'protectedpagetext', $right, $action );
2149 } elseif ( $this->mCascadeRestriction && !$user->isAllowed( 'protect' ) ) {
2150 $errors[] = array( 'protectedpagetext', 'protect', $action );
2151 }
2152 }
2153
2154 return $errors;
2155 }
2156
2157 /**
2158 * Check restrictions on cascading pages.
2159 *
2160 * @param string $action The action to check
2161 * @param User $user User to check
2162 * @param array $errors List of current errors
2163 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2164 * @param bool $short Short circuit on first error
2165 *
2166 * @return array List of errors
2167 */
2168 private function checkCascadingSourcesRestrictions( $action, $user, $errors,
2169 $doExpensiveQueries, $short
2170 ) {
2171 if ( $doExpensiveQueries && !$this->isCssJsSubpage() ) {
2172 # We /could/ use the protection level on the source page, but it's
2173 # fairly ugly as we have to establish a precedence hierarchy for pages
2174 # included by multiple cascade-protected pages. So just restrict
2175 # it to people with 'protect' permission, as they could remove the
2176 # protection anyway.
2177 list( $cascadingSources, $restrictions ) = $this->getCascadeProtectionSources();
2178 # Cascading protection depends on more than this page...
2179 # Several cascading protected pages may include this page...
2180 # Check each cascading level
2181 # This is only for protection restrictions, not for all actions
2182 if ( isset( $restrictions[$action] ) ) {
2183 foreach ( $restrictions[$action] as $right ) {
2184 // Backwards compatibility, rewrite sysop -> editprotected
2185 if ( $right == 'sysop' ) {
2186 $right = 'editprotected';
2187 }
2188 // Backwards compatibility, rewrite autoconfirmed -> editsemiprotected
2189 if ( $right == 'autoconfirmed' ) {
2190 $right = 'editsemiprotected';
2191 }
2192 if ( $right != '' && !$user->isAllowedAll( 'protect', $right ) ) {
2193 $pages = '';
2194 foreach ( $cascadingSources as $page ) {
2195 $pages .= '* [[:' . $page->getPrefixedText() . "]]\n";
2196 }
2197 $errors[] = array( 'cascadeprotected', count( $cascadingSources ), $pages, $action );
2198 }
2199 }
2200 }
2201 }
2202
2203 return $errors;
2204 }
2205
2206 /**
2207 * Check action permissions not already checked in checkQuickPermissions
2208 *
2209 * @param string $action The action to check
2210 * @param User $user User to check
2211 * @param array $errors List of current errors
2212 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2213 * @param bool $short Short circuit on first error
2214 *
2215 * @return array List of errors
2216 */
2217 private function checkActionPermissions( $action, $user, $errors,
2218 $doExpensiveQueries, $short
2219 ) {
2220 global $wgDeleteRevisionsLimit, $wgLang;
2221
2222 if ( $action == 'protect' ) {
2223 if ( count( $this->getUserPermissionsErrorsInternal( 'edit',
2224 $user, $doExpensiveQueries, true ) )
2225 ) {
2226 // If they can't edit, they shouldn't protect.
2227 $errors[] = array( 'protect-cantedit' );
2228 }
2229 } elseif ( $action == 'create' ) {
2230 $title_protection = $this->getTitleProtection();
2231 if ( $title_protection ) {
2232 if ( $title_protection['pt_create_perm'] == 'sysop' ) {
2233 $title_protection['pt_create_perm'] = 'editprotected'; // B/C
2234 }
2235 if ( $title_protection['pt_create_perm'] == 'autoconfirmed' ) {
2236 $title_protection['pt_create_perm'] = 'editsemiprotected'; // B/C
2237 }
2238 if ( $title_protection['pt_create_perm'] == ''
2239 || !$user->isAllowed( $title_protection['pt_create_perm'] )
2240 ) {
2241 $errors[] = array(
2242 'titleprotected',
2243 User::whoIs( $title_protection['pt_user'] ),
2244 $title_protection['pt_reason']
2245 );
2246 }
2247 }
2248 } elseif ( $action == 'move' ) {
2249 // Check for immobile pages
2250 if ( !MWNamespace::isMovable( $this->mNamespace ) ) {
2251 // Specific message for this case
2252 $errors[] = array( 'immobile-source-namespace', $this->getNsText() );
2253 } elseif ( !$this->isMovable() ) {
2254 // Less specific message for rarer cases
2255 $errors[] = array( 'immobile-source-page' );
2256 }
2257 } elseif ( $action == 'move-target' ) {
2258 if ( !MWNamespace::isMovable( $this->mNamespace ) ) {
2259 $errors[] = array( 'immobile-target-namespace', $this->getNsText() );
2260 } elseif ( !$this->isMovable() ) {
2261 $errors[] = array( 'immobile-target-page' );
2262 }
2263 } elseif ( $action == 'delete' ) {
2264 $tempErrors = $this->checkPageRestrictions( 'edit',
2265 $user, array(), $doExpensiveQueries, true );
2266 if( !$tempErrors ) {
2267 $tempErrors = $this->checkCascadingSourcesRestrictions( 'edit',
2268 $user, $tempErrors, $doExpensiveQueries, true );
2269 }
2270 if ( $tempErrors ) {
2271 // If protection keeps them from editing, they shouldn't be able to delete.
2272 $errors[] = array( 'deleteprotected' );
2273 }
2274 if ( $doExpensiveQueries && $wgDeleteRevisionsLimit
2275 && !$this->userCan( 'bigdelete', $user ) && $this->isBigDeletion()
2276 ) {
2277 $errors[] = array( 'delete-toobig', $wgLang->formatNum( $wgDeleteRevisionsLimit ) );
2278 }
2279 }
2280 return $errors;
2281 }
2282
2283 /**
2284 * Check that the user isn't blocked from editing.
2285 *
2286 * @param string $action The action to check
2287 * @param User $user User to check
2288 * @param array $errors List of current errors
2289 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2290 * @param bool $short Short circuit on first error
2291 *
2292 * @return array List of errors
2293 */
2294 private function checkUserBlock( $action, $user, $errors, $doExpensiveQueries, $short ) {
2295 // Account creation blocks handled at userlogin.
2296 // Unblocking handled in SpecialUnblock
2297 if ( !$doExpensiveQueries || in_array( $action, array( 'createaccount', 'unblock' ) ) ) {
2298 return $errors;
2299 }
2300
2301 global $wgEmailConfirmToEdit;
2302
2303 if ( $wgEmailConfirmToEdit && !$user->isEmailConfirmed() ) {
2304 $errors[] = array( 'confirmedittext' );
2305 }
2306
2307 if ( ( $action == 'edit' || $action == 'create' ) && !$user->isBlockedFrom( $this ) ) {
2308 // Don't block the user from editing their own talk page unless they've been
2309 // explicitly blocked from that too.
2310 } elseif ( $user->isBlocked() && $user->mBlock->prevents( $action ) !== false ) {
2311 // @todo FIXME: Pass the relevant context into this function.
2312 $errors[] = $user->getBlock()->getPermissionsError( RequestContext::getMain() );
2313 }
2314
2315 return $errors;
2316 }
2317
2318 /**
2319 * Check that the user is allowed to read this page.
2320 *
2321 * @param string $action The action to check
2322 * @param User $user User to check
2323 * @param array $errors List of current errors
2324 * @param bool $doExpensiveQueries Whether or not to perform expensive queries
2325 * @param bool $short Short circuit on first error
2326 *
2327 * @return array List of errors
2328 */
2329 private function checkReadPermissions( $action, $user, $errors, $doExpensiveQueries, $short ) {
2330 global $wgWhitelistRead, $wgWhitelistReadRegexp;
2331
2332 $whitelisted = false;
2333 if ( User::isEveryoneAllowed( 'read' ) ) {
2334 # Shortcut for public wikis, allows skipping quite a bit of code
2335 $whitelisted = true;
2336 } elseif ( $user->isAllowed( 'read' ) ) {
2337 # If the user is allowed to read pages, he is allowed to read all pages
2338 $whitelisted = true;
2339 } elseif ( $this->isSpecial( 'Userlogin' )
2340 || $this->isSpecial( 'ChangePassword' )
2341 || $this->isSpecial( 'PasswordReset' )
2342 ) {
2343 # Always grant access to the login page.
2344 # Even anons need to be able to log in.
2345 $whitelisted = true;
2346 } elseif ( is_array( $wgWhitelistRead ) && count( $wgWhitelistRead ) ) {
2347 # Time to check the whitelist
2348 # Only do these checks is there's something to check against
2349 $name = $this->getPrefixedText();
2350 $dbName = $this->getPrefixedDBkey();
2351
2352 // Check for explicit whitelisting with and without underscores
2353 if ( in_array( $name, $wgWhitelistRead, true ) || in_array( $dbName, $wgWhitelistRead, true ) ) {
2354 $whitelisted = true;
2355 } elseif ( $this->getNamespace() == NS_MAIN ) {
2356 # Old settings might have the title prefixed with
2357 # a colon for main-namespace pages
2358 if ( in_array( ':' . $name, $wgWhitelistRead ) ) {
2359 $whitelisted = true;
2360 }
2361 } elseif ( $this->isSpecialPage() ) {
2362 # If it's a special page, ditch the subpage bit and check again
2363 $name = $this->getDBkey();
2364 list( $name, /* $subpage */ ) = SpecialPageFactory::resolveAlias( $name );
2365 if ( $name ) {
2366 $pure = SpecialPage::getTitleFor( $name )->getPrefixedText();
2367 if ( in_array( $pure, $wgWhitelistRead, true ) ) {
2368 $whitelisted = true;
2369 }
2370 }
2371 }
2372 }
2373
2374 if ( !$whitelisted && is_array( $wgWhitelistReadRegexp ) && !empty( $wgWhitelistReadRegexp ) ) {
2375 $name = $this->getPrefixedText();
2376 // Check for regex whitelisting
2377 foreach ( $wgWhitelistReadRegexp as $listItem ) {
2378 if ( preg_match( $listItem, $name ) ) {
2379 $whitelisted = true;
2380 break;
2381 }
2382 }
2383 }
2384
2385 if ( !$whitelisted ) {
2386 # If the title is not whitelisted, give extensions a chance to do so...
2387 wfRunHooks( 'TitleReadWhitelist', array( $this, $user, &$whitelisted ) );
2388 if ( !$whitelisted ) {
2389 $errors[] = $this->missingPermissionError( $action, $short );
2390 }
2391 }
2392
2393 return $errors;
2394 }
2395
2396 /**
2397 * Get a description array when the user doesn't have the right to perform
2398 * $action (i.e. when User::isAllowed() returns false)
2399 *
2400 * @param string $action The action to check
2401 * @param bool $short Short circuit on first error
2402 * @return array List of errors
2403 */
2404 private function missingPermissionError( $action, $short ) {
2405 // We avoid expensive display logic for quickUserCan's and such
2406 if ( $short ) {
2407 return array( 'badaccess-group0' );
2408 }
2409
2410 $groups = array_map( array( 'User', 'makeGroupLinkWiki' ),
2411 User::getGroupsWithPermission( $action ) );
2412
2413 if ( count( $groups ) ) {
2414 global $wgLang;
2415 return array(
2416 'badaccess-groups',
2417 $wgLang->commaList( $groups ),
2418 count( $groups )
2419 );
2420 } else {
2421 return array( 'badaccess-group0' );
2422 }
2423 }
2424
2425 /**
2426 * Can $user perform $action on this page? This is an internal function,
2427 * which checks ONLY that previously checked by userCan (i.e. it leaves out
2428 * checks on wfReadOnly() and blocks)
2429 *
2430 * @param string $action Action that permission needs to be checked for
2431 * @param User $user User to check
2432 * @param bool $doExpensiveQueries Set this to false to avoid doing unnecessary queries.
2433 * @param bool $short Set this to true to stop after the first permission error.
2434 * @return array Array of arrays of the arguments to wfMessage to explain permissions problems.
2435 */
2436 protected function getUserPermissionsErrorsInternal( $action, $user,
2437 $doExpensiveQueries = true, $short = false
2438 ) {
2439 wfProfileIn( __METHOD__ );
2440
2441 # Read has special handling
2442 if ( $action == 'read' ) {
2443 $checks = array(
2444 'checkPermissionHooks',
2445 'checkReadPermissions',
2446 );
2447 # Don't call checkSpecialsAndNSPermissions or checkCSSandJSPermissions
2448 # here as it will lead to duplicate error messages. This is okay to do
2449 # since anywhere that checks for create will also check for edit, and
2450 # those checks are called for edit.
2451 } elseif ( $action == 'create' ) {
2452 $checks = array(
2453 'checkQuickPermissions',
2454 'checkPermissionHooks',
2455 'checkPageRestrictions',
2456 'checkCascadingSourcesRestrictions',
2457 'checkActionPermissions',
2458 'checkUserBlock'
2459 );
2460 } else {
2461 $checks = array(
2462 'checkQuickPermissions',
2463 'checkPermissionHooks',
2464 'checkSpecialsAndNSPermissions',
2465 'checkCSSandJSPermissions',
2466 'checkPageRestrictions',
2467 'checkCascadingSourcesRestrictions',
2468 'checkActionPermissions',
2469 'checkUserBlock'
2470 );
2471 }
2472
2473 $errors = array();
2474 while ( count( $checks ) > 0 &&
2475 !( $short && count( $errors ) > 0 ) ) {
2476 $method = array_shift( $checks );
2477 $errors = $this->$method( $action, $user, $errors, $doExpensiveQueries, $short );
2478 }
2479
2480 wfProfileOut( __METHOD__ );
2481 return $errors;
2482 }
2483
2484 /**
2485 * Get a filtered list of all restriction types supported by this wiki.
2486 * @param bool $exists True to get all restriction types that apply to
2487 * titles that do exist, False for all restriction types that apply to
2488 * titles that do not exist
2489 * @return array
2490 */
2491 public static function getFilteredRestrictionTypes( $exists = true ) {
2492 global $wgRestrictionTypes;
2493 $types = $wgRestrictionTypes;
2494 if ( $exists ) {
2495 # Remove the create restriction for existing titles
2496 $types = array_diff( $types, array( 'create' ) );
2497 } else {
2498 # Only the create and upload restrictions apply to non-existing titles
2499 $types = array_intersect( $types, array( 'create', 'upload' ) );
2500 }
2501 return $types;
2502 }
2503
2504 /**
2505 * Returns restriction types for the current Title
2506 *
2507 * @return array Applicable restriction types
2508 */
2509 public function getRestrictionTypes() {
2510 if ( $this->isSpecialPage() ) {
2511 return array();
2512 }
2513
2514 $types = self::getFilteredRestrictionTypes( $this->exists() );
2515
2516 if ( $this->getNamespace() != NS_FILE ) {
2517 # Remove the upload restriction for non-file titles
2518 $types = array_diff( $types, array( 'upload' ) );
2519 }
2520
2521 wfRunHooks( 'TitleGetRestrictionTypes', array( $this, &$types ) );
2522
2523 wfDebug( __METHOD__ . ': applicable restrictions to [[' .
2524 $this->getPrefixedText() . ']] are {' . implode( ',', $types ) . "}\n" );
2525
2526 return $types;
2527 }
2528
2529 /**
2530 * Is this title subject to title protection?
2531 * Title protection is the one applied against creation of such title.
2532 *
2533 * @return array|bool An associative array representing any existent title
2534 * protection, or false if there's none.
2535 */
2536 private function getTitleProtection() {
2537 // Can't protect pages in special namespaces
2538 if ( $this->getNamespace() < 0 ) {
2539 return false;
2540 }
2541
2542 // Can't protect pages that exist.
2543 if ( $this->exists() ) {
2544 return false;
2545 }
2546
2547 if ( $this->mTitleProtection === null ) {
2548 $dbr = wfGetDB( DB_SLAVE );
2549 $res = $dbr->select(
2550 'protected_titles',
2551 array( 'pt_user', 'pt_reason', 'pt_expiry', 'pt_create_perm' ),
2552 array( 'pt_namespace' => $this->getNamespace(), 'pt_title' => $this->getDBkey() ),
2553 __METHOD__
2554 );
2555
2556 // fetchRow returns false if there are no rows.
2557 $this->mTitleProtection = $dbr->fetchRow( $res );
2558 }
2559 return $this->mTitleProtection;
2560 }
2561
2562 /**
2563 * Remove any title protection due to page existing
2564 */
2565 public function deleteTitleProtection() {
2566 $dbw = wfGetDB( DB_MASTER );
2567
2568 $dbw->delete(
2569 'protected_titles',
2570 array( 'pt_namespace' => $this->getNamespace(), 'pt_title' => $this->getDBkey() ),
2571 __METHOD__
2572 );
2573 $this->mTitleProtection = false;
2574 }
2575
2576 /**
2577 * Is this page "semi-protected" - the *only* protection levels are listed
2578 * in $wgSemiprotectedRestrictionLevels?
2579 *
2580 * @param string $action Action to check (default: edit)
2581 * @return bool
2582 */
2583 public function isSemiProtected( $action = 'edit' ) {
2584 global $wgSemiprotectedRestrictionLevels;
2585
2586 $restrictions = $this->getRestrictions( $action );
2587 $semi = $wgSemiprotectedRestrictionLevels;
2588 if ( !$restrictions || !$semi ) {
2589 // Not protected, or all protection is full protection
2590 return false;
2591 }
2592
2593 // Remap autoconfirmed to editsemiprotected for BC
2594 foreach ( array_keys( $semi, 'autoconfirmed' ) as $key ) {
2595 $semi[$key] = 'editsemiprotected';
2596 }
2597 foreach ( array_keys( $restrictions, 'autoconfirmed' ) as $key ) {
2598 $restrictions[$key] = 'editsemiprotected';
2599 }
2600
2601 return !array_diff( $restrictions, $semi );
2602 }
2603
2604 /**
2605 * Does the title correspond to a protected article?
2606 *
2607 * @param string $action The action the page is protected from,
2608 * by default checks all actions.
2609 * @return bool
2610 */
2611 public function isProtected( $action = '' ) {
2612 global $wgRestrictionLevels;
2613
2614 $restrictionTypes = $this->getRestrictionTypes();
2615
2616 # Special pages have inherent protection
2617 if ( $this->isSpecialPage() ) {
2618 return true;
2619 }
2620
2621 # Check regular protection levels
2622 foreach ( $restrictionTypes as $type ) {
2623 if ( $action == $type || $action == '' ) {
2624 $r = $this->getRestrictions( $type );
2625 foreach ( $wgRestrictionLevels as $level ) {
2626 if ( in_array( $level, $r ) && $level != '' ) {
2627 return true;
2628 }
2629 }
2630 }
2631 }
2632
2633 return false;
2634 }
2635
2636 /**
2637 * Determines if $user is unable to edit this page because it has been protected
2638 * by $wgNamespaceProtection.
2639 *
2640 * @param User $user User object to check permissions
2641 * @return bool
2642 */
2643 public function isNamespaceProtected( User $user ) {
2644 global $wgNamespaceProtection;
2645
2646 if ( isset( $wgNamespaceProtection[$this->mNamespace] ) ) {
2647 foreach ( (array)$wgNamespaceProtection[$this->mNamespace] as $right ) {
2648 if ( $right != '' && !$user->isAllowed( $right ) ) {
2649 return true;
2650 }
2651 }
2652 }
2653 return false;
2654 }
2655
2656 /**
2657 * Cascading protection: Return true if cascading restrictions apply to this page, false if not.
2658 *
2659 * @return bool If the page is subject to cascading restrictions.
2660 */
2661 public function isCascadeProtected() {
2662 list( $sources, /* $restrictions */ ) = $this->getCascadeProtectionSources( false );
2663 return ( $sources > 0 );
2664 }
2665
2666 /**
2667 * Determines whether cascading protection sources have already been loaded from
2668 * the database.
2669 *
2670 * @param bool $getPages True to check if the pages are loaded, or false to check
2671 * if the status is loaded.
2672 * @return bool Whether or not the specified information has been loaded
2673 * @since 1.23
2674 */
2675 public function areCascadeProtectionSourcesLoaded( $getPages = true ) {
2676 return $getPages ? $this->mCascadeSources !== null : $this->mHasCascadingRestrictions !== null;
2677 }
2678
2679 /**
2680 * Cascading protection: Get the source of any cascading restrictions on this page.
2681 *
2682 * @param bool $getPages Whether or not to retrieve the actual pages
2683 * that the restrictions have come from and the actual restrictions
2684 * themselves.
2685 * @return array Two elements: First is an array of Title objects of the
2686 * pages from which cascading restrictions have come, false for
2687 * none, or true if such restrictions exist but $getPages was not
2688 * set. Second is an array like that returned by
2689 * Title::getAllRestrictions(), or an empty array if $getPages is
2690 * false.
2691 */
2692 public function getCascadeProtectionSources( $getPages = true ) {
2693 global $wgContLang;
2694 $pagerestrictions = array();
2695
2696 if ( $this->mCascadeSources !== null && $getPages ) {
2697 return array( $this->mCascadeSources, $this->mCascadingRestrictions );
2698 } elseif ( $this->mHasCascadingRestrictions !== null && !$getPages ) {
2699 return array( $this->mHasCascadingRestrictions, $pagerestrictions );
2700 }
2701
2702 wfProfileIn( __METHOD__ );
2703
2704 $dbr = wfGetDB( DB_SLAVE );
2705
2706 if ( $this->getNamespace() == NS_FILE ) {
2707 $tables = array( 'imagelinks', 'page_restrictions' );
2708 $where_clauses = array(
2709 'il_to' => $this->getDBkey(),
2710 'il_from=pr_page',
2711 'pr_cascade' => 1
2712 );
2713 } else {
2714 $tables = array( 'templatelinks', 'page_restrictions' );
2715 $where_clauses = array(
2716 'tl_namespace' => $this->getNamespace(),
2717 'tl_title' => $this->getDBkey(),
2718 'tl_from=pr_page',
2719 'pr_cascade' => 1
2720 );
2721 }
2722
2723 if ( $getPages ) {
2724 $cols = array( 'pr_page', 'page_namespace', 'page_title',
2725 'pr_expiry', 'pr_type', 'pr_level' );
2726 $where_clauses[] = 'page_id=pr_page';
2727 $tables[] = 'page';
2728 } else {
2729 $cols = array( 'pr_expiry' );
2730 }
2731
2732 $res = $dbr->select( $tables, $cols, $where_clauses, __METHOD__ );
2733
2734 $sources = $getPages ? array() : false;
2735 $now = wfTimestampNow();
2736 $purgeExpired = false;
2737
2738 foreach ( $res as $row ) {
2739 $expiry = $wgContLang->formatExpiry( $row->pr_expiry, TS_MW );
2740 if ( $expiry > $now ) {
2741 if ( $getPages ) {
2742 $page_id = $row->pr_page;
2743 $page_ns = $row->page_namespace;
2744 $page_title = $row->page_title;
2745 $sources[$page_id] = Title::makeTitle( $page_ns, $page_title );
2746 # Add groups needed for each restriction type if its not already there
2747 # Make sure this restriction type still exists
2748
2749 if ( !isset( $pagerestrictions[$row->pr_type] ) ) {
2750 $pagerestrictions[$row->pr_type] = array();
2751 }
2752
2753 if (
2754 isset( $pagerestrictions[$row->pr_type] )
2755 && !in_array( $row->pr_level, $pagerestrictions[$row->pr_type] )
2756 ) {
2757 $pagerestrictions[$row->pr_type][] = $row->pr_level;
2758 }
2759 } else {
2760 $sources = true;
2761 }
2762 } else {
2763 // Trigger lazy purge of expired restrictions from the db
2764 $purgeExpired = true;
2765 }
2766 }
2767 if ( $purgeExpired ) {
2768 Title::purgeExpiredRestrictions();
2769 }
2770
2771 if ( $getPages ) {
2772 $this->mCascadeSources = $sources;
2773 $this->mCascadingRestrictions = $pagerestrictions;
2774 } else {
2775 $this->mHasCascadingRestrictions = $sources;
2776 }
2777
2778 wfProfileOut( __METHOD__ );
2779 return array( $sources, $pagerestrictions );
2780 }
2781
2782 /**
2783 * Accessor for mRestrictionsLoaded
2784 *
2785 * @return bool Whether or not the page's restrictions have already been
2786 * loaded from the database
2787 * @since 1.23
2788 */
2789 public function areRestrictionsLoaded() {
2790 return $this->mRestrictionsLoaded;
2791 }
2792
2793 /**
2794 * Accessor/initialisation for mRestrictions
2795 *
2796 * @param string $action Action that permission needs to be checked for
2797 * @return array Restriction levels needed to take the action. All levels
2798 * are required.
2799 */
2800 public function getRestrictions( $action ) {
2801 if ( !$this->mRestrictionsLoaded ) {
2802 $this->loadRestrictions();
2803 }
2804 return isset( $this->mRestrictions[$action] )
2805 ? $this->mRestrictions[$action]
2806 : array();
2807 }
2808
2809 /**
2810 * Accessor/initialisation for mRestrictions
2811 *
2812 * @return array Keys are actions, values are arrays as returned by
2813 * Title::getRestrictions()
2814 * @since 1.23
2815 */
2816 public function getAllRestrictions() {
2817 if ( !$this->mRestrictionsLoaded ) {
2818 $this->loadRestrictions();
2819 }
2820 return $this->mRestrictions;
2821 }
2822
2823 /**
2824 * Get the expiry time for the restriction against a given action
2825 *
2826 * @param string $action
2827 * @return string|bool 14-char timestamp, or 'infinity' if the page is protected forever
2828 * or not protected at all, or false if the action is not recognised.
2829 */
2830 public function getRestrictionExpiry( $action ) {
2831 if ( !$this->mRestrictionsLoaded ) {
2832 $this->loadRestrictions();
2833 }
2834 return isset( $this->mRestrictionsExpiry[$action] ) ? $this->mRestrictionsExpiry[$action] : false;
2835 }
2836
2837 /**
2838 * Returns cascading restrictions for the current article
2839 *
2840 * @return bool
2841 */
2842 function areRestrictionsCascading() {
2843 if ( !$this->mRestrictionsLoaded ) {
2844 $this->loadRestrictions();
2845 }
2846
2847 return $this->mCascadeRestriction;
2848 }
2849
2850 /**
2851 * Loads a string into mRestrictions array
2852 *
2853 * @param ResultWrapper $res Resource restrictions as an SQL result.
2854 * @param string $oldFashionedRestrictions Comma-separated list of page
2855 * restrictions from page table (pre 1.10)
2856 */
2857 private function loadRestrictionsFromResultWrapper( $res, $oldFashionedRestrictions = null ) {
2858 $rows = array();
2859
2860 foreach ( $res as $row ) {
2861 $rows[] = $row;
2862 }
2863
2864 $this->loadRestrictionsFromRows( $rows, $oldFashionedRestrictions );
2865 }
2866
2867 /**
2868 * Compiles list of active page restrictions from both page table (pre 1.10)
2869 * and page_restrictions table for this existing page.
2870 * Public for usage by LiquidThreads.
2871 *
2872 * @param array $rows Array of db result objects
2873 * @param string $oldFashionedRestrictions Comma-separated list of page
2874 * restrictions from page table (pre 1.10)
2875 */
2876 public function loadRestrictionsFromRows( $rows, $oldFashionedRestrictions = null ) {
2877 global $wgContLang;
2878 $dbr = wfGetDB( DB_SLAVE );
2879
2880 $restrictionTypes = $this->getRestrictionTypes();
2881
2882 foreach ( $restrictionTypes as $type ) {
2883 $this->mRestrictions[$type] = array();
2884 $this->mRestrictionsExpiry[$type] = $wgContLang->formatExpiry( '', TS_MW );
2885 }
2886
2887 $this->mCascadeRestriction = false;
2888
2889 # Backwards-compatibility: also load the restrictions from the page record (old format).
2890
2891 if ( $oldFashionedRestrictions === null ) {
2892 $oldFashionedRestrictions = $dbr->selectField( 'page', 'page_restrictions',
2893 array( 'page_id' => $this->getArticleID() ), __METHOD__ );
2894 }
2895
2896 if ( $oldFashionedRestrictions != '' ) {
2897
2898 foreach ( explode( ':', trim( $oldFashionedRestrictions ) ) as $restrict ) {
2899 $temp = explode( '=', trim( $restrict ) );
2900 if ( count( $temp ) == 1 ) {
2901 // old old format should be treated as edit/move restriction
2902 $this->mRestrictions['edit'] = explode( ',', trim( $temp[0] ) );
2903 $this->mRestrictions['move'] = explode( ',', trim( $temp[0] ) );
2904 } else {
2905 $restriction = trim( $temp[1] );
2906 if ( $restriction != '' ) { //some old entries are empty
2907 $this->mRestrictions[$temp[0]] = explode( ',', $restriction );
2908 }
2909 }
2910 }
2911
2912 $this->mOldRestrictions = true;
2913
2914 }
2915
2916 if ( count( $rows ) ) {
2917 # Current system - load second to make them override.
2918 $now = wfTimestampNow();
2919 $purgeExpired = false;
2920
2921 # Cycle through all the restrictions.
2922 foreach ( $rows as $row ) {
2923
2924 // Don't take care of restrictions types that aren't allowed
2925 if ( !in_array( $row->pr_type, $restrictionTypes ) ) {
2926 continue;
2927 }
2928
2929 // This code should be refactored, now that it's being used more generally,
2930 // But I don't really see any harm in leaving it in Block for now -werdna
2931 $expiry = $wgContLang->formatExpiry( $row->pr_expiry, TS_MW );
2932
2933 // Only apply the restrictions if they haven't expired!
2934 if ( !$expiry || $expiry > $now ) {
2935 $this->mRestrictionsExpiry[$row->pr_type] = $expiry;
2936 $this->mRestrictions[$row->pr_type] = explode( ',', trim( $row->pr_level ) );
2937
2938 $this->mCascadeRestriction |= $row->pr_cascade;
2939 } else {
2940 // Trigger a lazy purge of expired restrictions
2941 $purgeExpired = true;
2942 }
2943 }
2944
2945 if ( $purgeExpired ) {
2946 Title::purgeExpiredRestrictions();
2947 }
2948 }
2949
2950 $this->mRestrictionsLoaded = true;
2951 }
2952
2953 /**
2954 * Load restrictions from the page_restrictions table
2955 *
2956 * @param string $oldFashionedRestrictions Comma-separated list of page
2957 * restrictions from page table (pre 1.10)
2958 */
2959 public function loadRestrictions( $oldFashionedRestrictions = null ) {
2960 global $wgContLang;
2961 if ( !$this->mRestrictionsLoaded ) {
2962 if ( $this->exists() ) {
2963 $dbr = wfGetDB( DB_SLAVE );
2964
2965 $res = $dbr->select(
2966 'page_restrictions',
2967 array( 'pr_type', 'pr_expiry', 'pr_level', 'pr_cascade' ),
2968 array( 'pr_page' => $this->getArticleID() ),
2969 __METHOD__
2970 );
2971
2972 $this->loadRestrictionsFromResultWrapper( $res, $oldFashionedRestrictions );
2973 } else {
2974 $title_protection = $this->getTitleProtection();
2975
2976 if ( $title_protection ) {
2977 $now = wfTimestampNow();
2978 $expiry = $wgContLang->formatExpiry( $title_protection['pt_expiry'], TS_MW );
2979
2980 if ( !$expiry || $expiry > $now ) {
2981 // Apply the restrictions
2982 $this->mRestrictionsExpiry['create'] = $expiry;
2983 $this->mRestrictions['create'] = explode( ',', trim( $title_protection['pt_create_perm'] ) );
2984 } else { // Get rid of the old restrictions
2985 Title::purgeExpiredRestrictions();
2986 $this->mTitleProtection = false;
2987 }
2988 } else {
2989 $this->mRestrictionsExpiry['create'] = $wgContLang->formatExpiry( '', TS_MW );
2990 }
2991 $this->mRestrictionsLoaded = true;
2992 }
2993 }
2994 }
2995
2996 /**
2997 * Flush the protection cache in this object and force reload from the database.
2998 * This is used when updating protection from WikiPage::doUpdateRestrictions().
2999 */
3000 public function flushRestrictions() {
3001 $this->mRestrictionsLoaded = false;
3002 $this->mTitleProtection = null;
3003 }
3004
3005 /**
3006 * Purge expired restrictions from the page_restrictions table
3007 */
3008 static function purgeExpiredRestrictions() {
3009 if ( wfReadOnly() ) {
3010 return;
3011 }
3012
3013 $method = __METHOD__;
3014 $dbw = wfGetDB( DB_MASTER );
3015 $dbw->onTransactionIdle( function () use ( $dbw, $method ) {
3016 $dbw->delete(
3017 'page_restrictions',
3018 array( 'pr_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ),
3019 $method
3020 );
3021 $dbw->delete(
3022 'protected_titles',
3023 array( 'pt_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ),
3024 $method
3025 );
3026 } );
3027 }
3028
3029 /**
3030 * Does this have subpages? (Warning, usually requires an extra DB query.)
3031 *
3032 * @return bool
3033 */
3034 public function hasSubpages() {
3035 if ( !MWNamespace::hasSubpages( $this->mNamespace ) ) {
3036 # Duh
3037 return false;
3038 }
3039
3040 # We dynamically add a member variable for the purpose of this method
3041 # alone to cache the result. There's no point in having it hanging
3042 # around uninitialized in every Title object; therefore we only add it
3043 # if needed and don't declare it statically.
3044 if ( $this->mHasSubpages === null ) {
3045 $this->mHasSubpages = false;
3046 $subpages = $this->getSubpages( 1 );
3047 if ( $subpages instanceof TitleArray ) {
3048 $this->mHasSubpages = (bool)$subpages->count();
3049 }
3050 }
3051
3052 return $this->mHasSubpages;
3053 }
3054
3055 /**
3056 * Get all subpages of this page.
3057 *
3058 * @param int $limit Maximum number of subpages to fetch; -1 for no limit
3059 * @return TitleArray|array TitleArray, or empty array if this page's namespace
3060 * doesn't allow subpages
3061 */
3062 public function getSubpages( $limit = -1 ) {
3063 if ( !MWNamespace::hasSubpages( $this->getNamespace() ) ) {
3064 return array();
3065 }
3066
3067 $dbr = wfGetDB( DB_SLAVE );
3068 $conds['page_namespace'] = $this->getNamespace();
3069 $conds[] = 'page_title ' . $dbr->buildLike( $this->getDBkey() . '/', $dbr->anyString() );
3070 $options = array();
3071 if ( $limit > -1 ) {
3072 $options['LIMIT'] = $limit;
3073 }
3074 $this->mSubpages = TitleArray::newFromResult(
3075 $dbr->select( 'page',
3076 array( 'page_id', 'page_namespace', 'page_title', 'page_is_redirect' ),
3077 $conds,
3078 __METHOD__,
3079 $options
3080 )
3081 );
3082 return $this->mSubpages;
3083 }
3084
3085 /**
3086 * Is there a version of this page in the deletion archive?
3087 *
3088 * @return int The number of archived revisions
3089 */
3090 public function isDeleted() {
3091 if ( $this->getNamespace() < 0 ) {
3092 $n = 0;
3093 } else {
3094 $dbr = wfGetDB( DB_SLAVE );
3095
3096 $n = $dbr->selectField( 'archive', 'COUNT(*)',
3097 array( 'ar_namespace' => $this->getNamespace(), 'ar_title' => $this->getDBkey() ),
3098 __METHOD__
3099 );
3100 if ( $this->getNamespace() == NS_FILE ) {
3101 $n += $dbr->selectField( 'filearchive', 'COUNT(*)',
3102 array( 'fa_name' => $this->getDBkey() ),
3103 __METHOD__
3104 );
3105 }
3106 }
3107 return (int)$n;
3108 }
3109
3110 /**
3111 * Is there a version of this page in the deletion archive?
3112 *
3113 * @return bool
3114 */
3115 public function isDeletedQuick() {
3116 if ( $this->getNamespace() < 0 ) {
3117 return false;
3118 }
3119 $dbr = wfGetDB( DB_SLAVE );
3120 $deleted = (bool)$dbr->selectField( 'archive', '1',
3121 array( 'ar_namespace' => $this->getNamespace(), 'ar_title' => $this->getDBkey() ),
3122 __METHOD__
3123 );
3124 if ( !$deleted && $this->getNamespace() == NS_FILE ) {
3125 $deleted = (bool)$dbr->selectField( 'filearchive', '1',
3126 array( 'fa_name' => $this->getDBkey() ),
3127 __METHOD__
3128 );
3129 }
3130 return $deleted;
3131 }
3132
3133 /**
3134 * Get the article ID for this Title from the link cache,
3135 * adding it if necessary
3136 *
3137 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select
3138 * for update
3139 * @return int The ID
3140 */
3141 public function getArticleID( $flags = 0 ) {
3142 if ( $this->getNamespace() < 0 ) {
3143 $this->mArticleID = 0;
3144 return $this->mArticleID;
3145 }
3146 $linkCache = LinkCache::singleton();
3147 if ( $flags & self::GAID_FOR_UPDATE ) {
3148 $oldUpdate = $linkCache->forUpdate( true );
3149 $linkCache->clearLink( $this );
3150 $this->mArticleID = $linkCache->addLinkObj( $this );
3151 $linkCache->forUpdate( $oldUpdate );
3152 } else {
3153 if ( -1 == $this->mArticleID ) {
3154 $this->mArticleID = $linkCache->addLinkObj( $this );
3155 }
3156 }
3157 return $this->mArticleID;
3158 }
3159
3160 /**
3161 * Is this an article that is a redirect page?
3162 * Uses link cache, adding it if necessary
3163 *
3164 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3165 * @return bool
3166 */
3167 public function isRedirect( $flags = 0 ) {
3168 if ( !is_null( $this->mRedirect ) ) {
3169 return $this->mRedirect;
3170 }
3171 # Calling getArticleID() loads the field from cache as needed
3172 if ( !$this->getArticleID( $flags ) ) {
3173 $this->mRedirect = false;
3174 return $this->mRedirect;
3175 }
3176
3177 $linkCache = LinkCache::singleton();
3178 $cached = $linkCache->getGoodLinkFieldObj( $this, 'redirect' );
3179 if ( $cached === null ) {
3180 # Trust LinkCache's state over our own
3181 # LinkCache is telling us that the page doesn't exist, despite there being cached
3182 # data relating to an existing page in $this->mArticleID. Updaters should clear
3183 # LinkCache as appropriate, or use $flags = Title::GAID_FOR_UPDATE. If that flag is
3184 # set, then LinkCache will definitely be up to date here, since getArticleID() forces
3185 # LinkCache to refresh its data from the master.
3186 $this->mRedirect = false;
3187 return $this->mRedirect;
3188 }
3189
3190 $this->mRedirect = (bool)$cached;
3191
3192 return $this->mRedirect;
3193 }
3194
3195 /**
3196 * What is the length of this page?
3197 * Uses link cache, adding it if necessary
3198 *
3199 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3200 * @return int
3201 */
3202 public function getLength( $flags = 0 ) {
3203 if ( $this->mLength != -1 ) {
3204 return $this->mLength;
3205 }
3206 # Calling getArticleID() loads the field from cache as needed
3207 if ( !$this->getArticleID( $flags ) ) {
3208 $this->mLength = 0;
3209 return $this->mLength;
3210 }
3211 $linkCache = LinkCache::singleton();
3212 $cached = $linkCache->getGoodLinkFieldObj( $this, 'length' );
3213 if ( $cached === null ) {
3214 # Trust LinkCache's state over our own, as for isRedirect()
3215 $this->mLength = 0;
3216 return $this->mLength;
3217 }
3218
3219 $this->mLength = intval( $cached );
3220
3221 return $this->mLength;
3222 }
3223
3224 /**
3225 * What is the page_latest field for this page?
3226 *
3227 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3228 * @return int Int or 0 if the page doesn't exist
3229 */
3230 public function getLatestRevID( $flags = 0 ) {
3231 if ( !( $flags & Title::GAID_FOR_UPDATE ) && $this->mLatestID !== false ) {
3232 return intval( $this->mLatestID );
3233 }
3234 # Calling getArticleID() loads the field from cache as needed
3235 if ( !$this->getArticleID( $flags ) ) {
3236 $this->mLatestID = 0;
3237 return $this->mLatestID;
3238 }
3239 $linkCache = LinkCache::singleton();
3240 $linkCache->addLinkObj( $this );
3241 $cached = $linkCache->getGoodLinkFieldObj( $this, 'revision' );
3242 if ( $cached === null ) {
3243 # Trust LinkCache's state over our own, as for isRedirect()
3244 $this->mLatestID = 0;
3245 return $this->mLatestID;
3246 }
3247
3248 $this->mLatestID = intval( $cached );
3249
3250 return $this->mLatestID;
3251 }
3252
3253 /**
3254 * This clears some fields in this object, and clears any associated
3255 * keys in the "bad links" section of the link cache.
3256 *
3257 * - This is called from WikiPage::doEdit() and WikiPage::insertOn() to allow
3258 * loading of the new page_id. It's also called from
3259 * WikiPage::doDeleteArticleReal()
3260 *
3261 * @param int $newid The new Article ID
3262 */
3263 public function resetArticleID( $newid ) {
3264 $linkCache = LinkCache::singleton();
3265 $linkCache->clearLink( $this );
3266
3267 if ( $newid === false ) {
3268 $this->mArticleID = -1;
3269 } else {
3270 $this->mArticleID = intval( $newid );
3271 }
3272 $this->mRestrictionsLoaded = false;
3273 $this->mRestrictions = array();
3274 $this->mRedirect = null;
3275 $this->mLength = -1;
3276 $this->mLatestID = false;
3277 $this->mContentModel = false;
3278 $this->mEstimateRevisions = null;
3279 $this->mPageLanguage = false;
3280 $this->mDbPageLanguage = null;
3281 $this->mIsBigDeletion = null;
3282 }
3283
3284 /**
3285 * Capitalize a text string for a title if it belongs to a namespace that capitalizes
3286 *
3287 * @param string $text Containing title to capitalize
3288 * @param int $ns Namespace index, defaults to NS_MAIN
3289 * @return string Containing capitalized title
3290 */
3291 public static function capitalize( $text, $ns = NS_MAIN ) {
3292 global $wgContLang;
3293
3294 if ( MWNamespace::isCapitalized( $ns ) ) {
3295 return $wgContLang->ucfirst( $text );
3296 } else {
3297 return $text;
3298 }
3299 }
3300
3301 /**
3302 * Secure and split - main initialisation function for this object
3303 *
3304 * Assumes that mDbkeyform has been set, and is urldecoded
3305 * and uses underscores, but not otherwise munged. This function
3306 * removes illegal characters, splits off the interwiki and
3307 * namespace prefixes, sets the other forms, and canonicalizes
3308 * everything.
3309 *
3310 * @return bool True on success
3311 */
3312 private function secureAndSplit() {
3313 # Initialisation
3314 $this->mInterwiki = '';
3315 $this->mFragment = '';
3316 $this->mNamespace = $this->mDefaultNamespace; # Usually NS_MAIN
3317
3318 $dbkey = $this->mDbkeyform;
3319
3320 try {
3321 // @note: splitTitleString() is a temporary hack to allow MediaWikiTitleCodec to share
3322 // the parsing code with Title, while avoiding massive refactoring.
3323 // @todo: get rid of secureAndSplit, refactor parsing code.
3324 $parser = self::getTitleParser();
3325 $parts = $parser->splitTitleString( $dbkey, $this->getDefaultNamespace() );
3326 } catch ( MalformedTitleException $ex ) {
3327 return false;
3328 }
3329
3330 # Fill fields
3331 $this->setFragment( '#' . $parts['fragment'] );
3332 $this->mInterwiki = $parts['interwiki'];
3333 $this->mLocalInterwiki = $parts['local_interwiki'];
3334 $this->mNamespace = $parts['namespace'];
3335 $this->mUserCaseDBKey = $parts['user_case_dbkey'];
3336
3337 $this->mDbkeyform = $parts['dbkey'];
3338 $this->mUrlform = wfUrlencode( $this->mDbkeyform );
3339 $this->mTextform = str_replace( '_', ' ', $this->mDbkeyform );
3340
3341 # We already know that some pages won't be in the database!
3342 if ( $this->isExternal() || $this->mNamespace == NS_SPECIAL ) {
3343 $this->mArticleID = 0;
3344 }
3345
3346 return true;
3347 }
3348
3349 /**
3350 * Get an array of Title objects linking to this Title
3351 * Also stores the IDs in the link cache.
3352 *
3353 * WARNING: do not use this function on arbitrary user-supplied titles!
3354 * On heavily-used templates it will max out the memory.
3355 *
3356 * @param array $options May be FOR UPDATE
3357 * @param string $table Table name
3358 * @param string $prefix Fields prefix
3359 * @return Title[] Array of Title objects linking here
3360 */
3361 public function getLinksTo( $options = array(), $table = 'pagelinks', $prefix = 'pl' ) {
3362 if ( count( $options ) > 0 ) {
3363 $db = wfGetDB( DB_MASTER );
3364 } else {
3365 $db = wfGetDB( DB_SLAVE );
3366 }
3367
3368 $res = $db->select(
3369 array( 'page', $table ),
3370 self::getSelectFields(),
3371 array(
3372 "{$prefix}_from=page_id",
3373 "{$prefix}_namespace" => $this->getNamespace(),
3374 "{$prefix}_title" => $this->getDBkey() ),
3375 __METHOD__,
3376 $options
3377 );
3378
3379 $retVal = array();
3380 if ( $res->numRows() ) {
3381 $linkCache = LinkCache::singleton();
3382 foreach ( $res as $row ) {
3383 $titleObj = Title::makeTitle( $row->page_namespace, $row->page_title );
3384 if ( $titleObj ) {
3385 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3386 $retVal[] = $titleObj;
3387 }
3388 }
3389 }
3390 return $retVal;
3391 }
3392
3393 /**
3394 * Get an array of Title objects using this Title as a template
3395 * Also stores the IDs in the link cache.
3396 *
3397 * WARNING: do not use this function on arbitrary user-supplied titles!
3398 * On heavily-used templates it will max out the memory.
3399 *
3400 * @param array $options May be FOR UPDATE
3401 * @return Title[] Array of Title the Title objects linking here
3402 */
3403 public function getTemplateLinksTo( $options = array() ) {
3404 return $this->getLinksTo( $options, 'templatelinks', 'tl' );
3405 }
3406
3407 /**
3408 * Get an array of Title objects linked from this Title
3409 * Also stores the IDs in the link cache.
3410 *
3411 * WARNING: do not use this function on arbitrary user-supplied titles!
3412 * On heavily-used templates it will max out the memory.
3413 *
3414 * @param array $options May be FOR UPDATE
3415 * @param string $table Table name
3416 * @param string $prefix Fields prefix
3417 * @return array Array of Title objects linking here
3418 */
3419 public function getLinksFrom( $options = array(), $table = 'pagelinks', $prefix = 'pl' ) {
3420 global $wgContentHandlerUseDB;
3421
3422 $id = $this->getArticleID();
3423
3424 # If the page doesn't exist; there can't be any link from this page
3425 if ( !$id ) {
3426 return array();
3427 }
3428
3429 if ( count( $options ) > 0 ) {
3430 $db = wfGetDB( DB_MASTER );
3431 } else {
3432 $db = wfGetDB( DB_SLAVE );
3433 }
3434
3435 $namespaceFiled = "{$prefix}_namespace";
3436 $titleField = "{$prefix}_title";
3437
3438 $fields = array(
3439 $namespaceFiled,
3440 $titleField,
3441 'page_id',
3442 'page_len',
3443 'page_is_redirect',
3444 'page_latest'
3445 );
3446
3447 if ( $wgContentHandlerUseDB ) {
3448 $fields[] = 'page_content_model';
3449 }
3450
3451 $res = $db->select(
3452 array( $table, 'page' ),
3453 $fields,
3454 array( "{$prefix}_from" => $id ),
3455 __METHOD__,
3456 $options,
3457 array( 'page' => array(
3458 'LEFT JOIN',
3459 array( "page_namespace=$namespaceFiled", "page_title=$titleField" )
3460 ) )
3461 );
3462
3463 $retVal = array();
3464 if ( $res->numRows() ) {
3465 $linkCache = LinkCache::singleton();
3466 foreach ( $res as $row ) {
3467 $titleObj = Title::makeTitle( $row->$namespaceFiled, $row->$titleField );
3468 if ( $titleObj ) {
3469 if ( $row->page_id ) {
3470 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3471 } else {
3472 $linkCache->addBadLinkObj( $titleObj );
3473 }
3474 $retVal[] = $titleObj;
3475 }
3476 }
3477 }
3478 return $retVal;
3479 }
3480
3481 /**
3482 * Get an array of Title objects used on this Title as a template
3483 * Also stores the IDs in the link cache.
3484 *
3485 * WARNING: do not use this function on arbitrary user-supplied titles!
3486 * On heavily-used templates it will max out the memory.
3487 *
3488 * @param array $options May be FOR UPDATE
3489 * @return Title[] Array of Title the Title objects used here
3490 */
3491 public function getTemplateLinksFrom( $options = array() ) {
3492 return $this->getLinksFrom( $options, 'templatelinks', 'tl' );
3493 }
3494
3495 /**
3496 * Get an array of Title objects referring to non-existent articles linked
3497 * from this page.
3498 *
3499 * @todo check if needed (used only in SpecialBrokenRedirects.php, and
3500 * should use redirect table in this case).
3501 * @return Title[] Array of Title the Title objects
3502 */
3503 public function getBrokenLinksFrom() {
3504 if ( $this->getArticleID() == 0 ) {
3505 # All links from article ID 0 are false positives
3506 return array();
3507 }
3508
3509 $dbr = wfGetDB( DB_SLAVE );
3510 $res = $dbr->select(
3511 array( 'page', 'pagelinks' ),
3512 array( 'pl_namespace', 'pl_title' ),
3513 array(
3514 'pl_from' => $this->getArticleID(),
3515 'page_namespace IS NULL'
3516 ),
3517 __METHOD__, array(),
3518 array(
3519 'page' => array(
3520 'LEFT JOIN',
3521 array( 'pl_namespace=page_namespace', 'pl_title=page_title' )
3522 )
3523 )
3524 );
3525
3526 $retVal = array();
3527 foreach ( $res as $row ) {
3528 $retVal[] = Title::makeTitle( $row->pl_namespace, $row->pl_title );
3529 }
3530 return $retVal;
3531 }
3532
3533 /**
3534 * Get a list of URLs to purge from the Squid cache when this
3535 * page changes
3536 *
3537 * @return string[] Array of String the URLs
3538 */
3539 public function getSquidURLs() {
3540 $urls = array(
3541 $this->getInternalURL(),
3542 $this->getInternalURL( 'action=history' )
3543 );
3544
3545 $pageLang = $this->getPageLanguage();
3546 if ( $pageLang->hasVariants() ) {
3547 $variants = $pageLang->getVariants();
3548 foreach ( $variants as $vCode ) {
3549 $urls[] = $this->getInternalURL( '', $vCode );
3550 }
3551 }
3552
3553 // If we are looking at a css/js user subpage, purge the action=raw.
3554 if ( $this->isJsSubpage() ) {
3555 $urls[] = $this->getInternalUrl( 'action=raw&ctype=text/javascript' );
3556 } elseif ( $this->isCssSubpage() ) {
3557 $urls[] = $this->getInternalUrl( 'action=raw&ctype=text/css' );
3558 }
3559
3560 wfRunHooks( 'TitleSquidURLs', array( $this, &$urls ) );
3561 return $urls;
3562 }
3563
3564 /**
3565 * Purge all applicable Squid URLs
3566 */
3567 public function purgeSquid() {
3568 global $wgUseSquid;
3569 if ( $wgUseSquid ) {
3570 $urls = $this->getSquidURLs();
3571 $u = new SquidUpdate( $urls );
3572 $u->doUpdate();
3573 }
3574 }
3575
3576 /**
3577 * Move this page without authentication
3578 *
3579 * @param Title $nt The new page Title
3580 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3581 */
3582 public function moveNoAuth( &$nt ) {
3583 return $this->moveTo( $nt, false );
3584 }
3585
3586 /**
3587 * Check whether a given move operation would be valid.
3588 * Returns true if ok, or a getUserPermissionsErrors()-like array otherwise
3589 *
3590 * @param Title $nt The new title
3591 * @param bool $auth Indicates whether $wgUser's permissions
3592 * should be checked
3593 * @param string $reason Is the log summary of the move, used for spam checking
3594 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3595 */
3596 public function isValidMoveOperation( &$nt, $auth = true, $reason = '' ) {
3597 global $wgUser, $wgContentHandlerUseDB;
3598
3599 $errors = array();
3600 if ( !$nt ) {
3601 // Normally we'd add this to $errors, but we'll get
3602 // lots of syntax errors if $nt is not an object
3603 return array( array( 'badtitletext' ) );
3604 }
3605 if ( $this->equals( $nt ) ) {
3606 $errors[] = array( 'selfmove' );
3607 }
3608 if ( !$this->isMovable() ) {
3609 $errors[] = array( 'immobile-source-namespace', $this->getNsText() );
3610 }
3611 if ( $nt->isExternal() ) {
3612 $errors[] = array( 'immobile-target-namespace-iw' );
3613 }
3614 if ( !$nt->isMovable() ) {
3615 $errors[] = array( 'immobile-target-namespace', $nt->getNsText() );
3616 }
3617
3618 $oldid = $this->getArticleID();
3619 $newid = $nt->getArticleID();
3620
3621 if ( strlen( $nt->getDBkey() ) < 1 ) {
3622 $errors[] = array( 'articleexists' );
3623 }
3624 if (
3625 ( $this->getDBkey() == '' ) ||
3626 ( !$oldid ) ||
3627 ( $nt->getDBkey() == '' )
3628 ) {
3629 $errors[] = array( 'badarticleerror' );
3630 }
3631
3632 // Content model checks
3633 if ( !$wgContentHandlerUseDB &&
3634 $this->getContentModel() !== $nt->getContentModel() ) {
3635 // can't move a page if that would change the page's content model
3636 $errors[] = array(
3637 'bad-target-model',
3638 ContentHandler::getLocalizedName( $this->getContentModel() ),
3639 ContentHandler::getLocalizedName( $nt->getContentModel() )
3640 );
3641 }
3642
3643 // Image-specific checks
3644 if ( $this->getNamespace() == NS_FILE ) {
3645 $errors = array_merge( $errors, $this->validateFileMoveOperation( $nt ) );
3646 }
3647
3648 if ( $nt->getNamespace() == NS_FILE && $this->getNamespace() != NS_FILE ) {
3649 $errors[] = array( 'nonfile-cannot-move-to-file' );
3650 }
3651
3652 if ( $auth ) {
3653 $errors = wfMergeErrorArrays( $errors,
3654 $this->getUserPermissionsErrors( 'move', $wgUser ),
3655 $this->getUserPermissionsErrors( 'edit', $wgUser ),
3656 $nt->getUserPermissionsErrors( 'move-target', $wgUser ),
3657 $nt->getUserPermissionsErrors( 'edit', $wgUser ) );
3658 }
3659
3660 $match = EditPage::matchSummarySpamRegex( $reason );
3661 if ( $match !== false ) {
3662 // This is kind of lame, won't display nice
3663 $errors[] = array( 'spamprotectiontext' );
3664 }
3665
3666 $err = null;
3667 if ( !wfRunHooks( 'AbortMove', array( $this, $nt, $wgUser, &$err, $reason ) ) ) {
3668 $errors[] = array( 'hookaborted', $err );
3669 }
3670
3671 # The move is allowed only if (1) the target doesn't exist, or
3672 # (2) the target is a redirect to the source, and has no history
3673 # (so we can undo bad moves right after they're done).
3674
3675 if ( 0 != $newid ) { # Target exists; check for validity
3676 if ( !$this->isValidMoveTarget( $nt ) ) {
3677 $errors[] = array( 'articleexists' );
3678 }
3679 } else {
3680 $tp = $nt->getTitleProtection();
3681 $right = $tp['pt_create_perm'];
3682 if ( $right == 'sysop' ) {
3683 $right = 'editprotected'; // B/C
3684 }
3685 if ( $right == 'autoconfirmed' ) {
3686 $right = 'editsemiprotected'; // B/C
3687 }
3688 if ( $tp and !$wgUser->isAllowed( $right ) ) {
3689 $errors[] = array( 'cantmove-titleprotected' );
3690 }
3691 }
3692 if ( empty( $errors ) ) {
3693 return true;
3694 }
3695 return $errors;
3696 }
3697
3698 /**
3699 * Check if the requested move target is a valid file move target
3700 * @param Title $nt Target title
3701 * @return array List of errors
3702 */
3703 protected function validateFileMoveOperation( $nt ) {
3704 global $wgUser;
3705
3706 $errors = array();
3707
3708 // wfFindFile( $nt ) / wfLocalFile( $nt ) is not allowed until below
3709
3710 $file = wfLocalFile( $this );
3711 if ( $file->exists() ) {
3712 if ( $nt->getText() != wfStripIllegalFilenameChars( $nt->getText() ) ) {
3713 $errors[] = array( 'imageinvalidfilename' );
3714 }
3715 if ( !File::checkExtensionCompatibility( $file, $nt->getDBkey() ) ) {
3716 $errors[] = array( 'imagetypemismatch' );
3717 }
3718 }
3719
3720 if ( $nt->getNamespace() != NS_FILE ) {
3721 $errors[] = array( 'imagenocrossnamespace' );
3722 // From here we want to do checks on a file object, so if we can't
3723 // create one, we must return.
3724 return $errors;
3725 }
3726
3727 // wfFindFile( $nt ) / wfLocalFile( $nt ) is allowed below here
3728
3729 $destFile = wfLocalFile( $nt );
3730 if ( !$wgUser->isAllowed( 'reupload-shared' ) && !$destFile->exists() && wfFindFile( $nt ) ) {
3731 $errors[] = array( 'file-exists-sharedrepo' );
3732 }
3733
3734 return $errors;
3735 }
3736
3737 /**
3738 * Move a title to a new location
3739 *
3740 * @param Title $nt The new title
3741 * @param bool $auth Indicates whether $wgUser's permissions
3742 * should be checked
3743 * @param string $reason The reason for the move
3744 * @param bool $createRedirect Whether to create a redirect from the old title to the new title.
3745 * Ignored if the user doesn't have the suppressredirect right.
3746 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3747 */
3748 public function moveTo( &$nt, $auth = true, $reason = '', $createRedirect = true ) {
3749 global $wgUser;
3750 $err = $this->isValidMoveOperation( $nt, $auth, $reason );
3751 if ( is_array( $err ) ) {
3752 // Auto-block user's IP if the account was "hard" blocked
3753 $wgUser->spreadAnyEditBlock();
3754 return $err;
3755 }
3756 // Check suppressredirect permission
3757 if ( $auth && !$wgUser->isAllowed( 'suppressredirect' ) ) {
3758 $createRedirect = true;
3759 }
3760
3761 wfRunHooks( 'TitleMove', array( $this, $nt, $wgUser ) );
3762
3763 // If it is a file, move it first.
3764 // It is done before all other moving stuff is done because it's hard to revert.
3765 $dbw = wfGetDB( DB_MASTER );
3766 if ( $this->getNamespace() == NS_FILE ) {
3767 $file = wfLocalFile( $this );
3768 if ( $file->exists() ) {
3769 $status = $file->move( $nt );
3770 if ( !$status->isOk() ) {
3771 return $status->getErrorsArray();
3772 }
3773 }
3774 // Clear RepoGroup process cache
3775 RepoGroup::singleton()->clearCache( $this );
3776 RepoGroup::singleton()->clearCache( $nt ); # clear false negative cache
3777 }
3778
3779 $dbw->begin( __METHOD__ ); # If $file was a LocalFile, its transaction would have closed our own.
3780 $pageid = $this->getArticleID( self::GAID_FOR_UPDATE );
3781 $protected = $this->isProtected();
3782
3783 // Do the actual move
3784 $this->moveToInternal( $nt, $reason, $createRedirect );
3785
3786 // Refresh the sortkey for this row. Be careful to avoid resetting
3787 // cl_timestamp, which may disturb time-based lists on some sites.
3788 $prefixes = $dbw->select(
3789 'categorylinks',
3790 array( 'cl_sortkey_prefix', 'cl_to' ),
3791 array( 'cl_from' => $pageid ),
3792 __METHOD__
3793 );
3794 foreach ( $prefixes as $prefixRow ) {
3795 $prefix = $prefixRow->cl_sortkey_prefix;
3796 $catTo = $prefixRow->cl_to;
3797 $dbw->update( 'categorylinks',
3798 array(
3799 'cl_sortkey' => Collation::singleton()->getSortKey(
3800 $nt->getCategorySortkey( $prefix ) ),
3801 'cl_timestamp=cl_timestamp' ),
3802 array(
3803 'cl_from' => $pageid,
3804 'cl_to' => $catTo ),
3805 __METHOD__
3806 );
3807 }
3808
3809 $redirid = $this->getArticleID();
3810
3811 if ( $protected ) {
3812 # Protect the redirect title as the title used to be...
3813 $dbw->insertSelect( 'page_restrictions', 'page_restrictions',
3814 array(
3815 'pr_page' => $redirid,
3816 'pr_type' => 'pr_type',
3817 'pr_level' => 'pr_level',
3818 'pr_cascade' => 'pr_cascade',
3819 'pr_user' => 'pr_user',
3820 'pr_expiry' => 'pr_expiry'
3821 ),
3822 array( 'pr_page' => $pageid ),
3823 __METHOD__,
3824 array( 'IGNORE' )
3825 );
3826 # Update the protection log
3827 $log = new LogPage( 'protect' );
3828 $comment = wfMessage(
3829 'prot_1movedto2',
3830 $this->getPrefixedText(),
3831 $nt->getPrefixedText()
3832 )->inContentLanguage()->text();
3833 if ( $reason ) {
3834 $comment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
3835 }
3836 // @todo FIXME: $params?
3837 $logId = $log->addEntry(
3838 'move_prot',
3839 $nt,
3840 $comment,
3841 array( $this->getPrefixedText() ),
3842 $wgUser
3843 );
3844
3845 // reread inserted pr_ids for log relation
3846 $insertedPrIds = $dbw->select(
3847 'page_restrictions',
3848 'pr_id',
3849 array( 'pr_page' => $redirid ),
3850 __METHOD__
3851 );
3852 $logRelationsValues = array();
3853 foreach ( $insertedPrIds as $prid ) {
3854 $logRelationsValues[] = $prid->pr_id;
3855 }
3856 $log->addRelations( 'pr_id', $logRelationsValues, $logId );
3857 }
3858
3859 // Update *_from_namespace fields as needed
3860 if ( $this->getNamespace() != $nt->getNamespace() ) {
3861 $dbw->update( 'pagelinks',
3862 array( 'pl_from_namespace' => $nt->getNamespace() ),
3863 array( 'pl_from' => $pageid ),
3864 __METHOD__
3865 );
3866 $dbw->update( 'templatelinks',
3867 array( 'tl_from_namespace' => $nt->getNamespace() ),
3868 array( 'tl_from' => $pageid ),
3869 __METHOD__
3870 );
3871 $dbw->update( 'imagelinks',
3872 array( 'il_from_namespace' => $nt->getNamespace() ),
3873 array( 'il_from' => $pageid ),
3874 __METHOD__
3875 );
3876 }
3877
3878 # Update watchlists
3879 $oldtitle = $this->getDBkey();
3880 $newtitle = $nt->getDBkey();
3881 $oldsnamespace = MWNamespace::getSubject( $this->getNamespace() );
3882 $newsnamespace = MWNamespace::getSubject( $nt->getNamespace() );
3883 if ( $oldsnamespace != $newsnamespace || $oldtitle != $newtitle ) {
3884 WatchedItem::duplicateEntries( $this, $nt );
3885 }
3886
3887 $dbw->commit( __METHOD__ );
3888
3889 wfRunHooks( 'TitleMoveComplete', array( &$this, &$nt, &$wgUser, $pageid, $redirid, $reason ) );
3890 return true;
3891 }
3892
3893 /**
3894 * Move page to a title which is either a redirect to the
3895 * source page or nonexistent
3896 *
3897 * @param Title $nt The page to move to, which should be a redirect or nonexistent
3898 * @param string $reason The reason for the move
3899 * @param bool $createRedirect Whether to leave a redirect at the old title. Does not check
3900 * if the user has the suppressredirect right
3901 * @throws MWException
3902 */
3903 private function moveToInternal( &$nt, $reason = '', $createRedirect = true ) {
3904 global $wgUser, $wgContLang;
3905
3906 if ( $nt->exists() ) {
3907 $moveOverRedirect = true;
3908 $logType = 'move_redir';
3909 } else {
3910 $moveOverRedirect = false;
3911 $logType = 'move';
3912 }
3913
3914 if ( $createRedirect ) {
3915 if ( $this->getNamespace() == NS_CATEGORY
3916 && !wfMessage( 'category-move-redirect-override' )->inContentLanguage()->isDisabled()
3917 ) {
3918 $redirectContent = new WikitextContent(
3919 wfMessage( 'category-move-redirect-override' )
3920 ->params( $nt->getPrefixedText() )->inContentLanguage()->plain() );
3921 } else {
3922 $contentHandler = ContentHandler::getForTitle( $this );
3923 $redirectContent = $contentHandler->makeRedirectContent( $nt,
3924 wfMessage( 'move-redirect-text' )->inContentLanguage()->plain() );
3925 }
3926
3927 // NOTE: If this page's content model does not support redirects, $redirectContent will be null.
3928 } else {
3929 $redirectContent = null;
3930 }
3931
3932 $logEntry = new ManualLogEntry( 'move', $logType );
3933 $logEntry->setPerformer( $wgUser );
3934 $logEntry->setTarget( $this );
3935 $logEntry->setComment( $reason );
3936 $logEntry->setParameters( array(
3937 '4::target' => $nt->getPrefixedText(),
3938 '5::noredir' => $redirectContent ? '0': '1',
3939 ) );
3940
3941 $formatter = LogFormatter::newFromEntry( $logEntry );
3942 $formatter->setContext( RequestContext::newExtraneousContext( $this ) );
3943 $comment = $formatter->getPlainActionText();
3944 if ( $reason ) {
3945 $comment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
3946 }
3947 # Truncate for whole multibyte characters.
3948 $comment = $wgContLang->truncate( $comment, 255 );
3949
3950 $oldid = $this->getArticleID();
3951
3952 $dbw = wfGetDB( DB_MASTER );
3953
3954 $newpage = WikiPage::factory( $nt );
3955
3956 if ( $moveOverRedirect ) {
3957 $newid = $nt->getArticleID();
3958 $newcontent = $newpage->getContent();
3959
3960 # Delete the old redirect. We don't save it to history since
3961 # by definition if we've got here it's rather uninteresting.
3962 # We have to remove it so that the next step doesn't trigger
3963 # a conflict on the unique namespace+title index...
3964 $dbw->delete( 'page', array( 'page_id' => $newid ), __METHOD__ );
3965
3966 $newpage->doDeleteUpdates( $newid, $newcontent );
3967 }
3968
3969 # Save a null revision in the page's history notifying of the move
3970 $nullRevision = Revision::newNullRevision( $dbw, $oldid, $comment, true, $wgUser );
3971 if ( !is_object( $nullRevision ) ) {
3972 throw new MWException( 'No valid null revision produced in ' . __METHOD__ );
3973 }
3974
3975 $nullRevision->insertOn( $dbw );
3976
3977 # Change the name of the target page:
3978 $dbw->update( 'page',
3979 /* SET */ array(
3980 'page_namespace' => $nt->getNamespace(),
3981 'page_title' => $nt->getDBkey(),
3982 ),
3983 /* WHERE */ array( 'page_id' => $oldid ),
3984 __METHOD__
3985 );
3986
3987 // clean up the old title before reset article id - bug 45348
3988 if ( !$redirectContent ) {
3989 WikiPage::onArticleDelete( $this );
3990 }
3991
3992 $this->resetArticleID( 0 ); // 0 == non existing
3993 $nt->resetArticleID( $oldid );
3994 $newpage->loadPageData( WikiPage::READ_LOCKING ); // bug 46397
3995
3996 $newpage->updateRevisionOn( $dbw, $nullRevision );
3997
3998 wfRunHooks( 'NewRevisionFromEditComplete',
3999 array( $newpage, $nullRevision, $nullRevision->getParentId(), $wgUser ) );
4000
4001 $newpage->doEditUpdates( $nullRevision, $wgUser, array( 'changed' => false ) );
4002
4003 if ( !$moveOverRedirect ) {
4004 WikiPage::onArticleCreate( $nt );
4005 }
4006
4007 # Recreate the redirect, this time in the other direction.
4008 if ( $redirectContent ) {
4009 $redirectArticle = WikiPage::factory( $this );
4010 $redirectArticle->loadFromRow( false, WikiPage::READ_LOCKING ); // bug 46397
4011 $newid = $redirectArticle->insertOn( $dbw );
4012 if ( $newid ) { // sanity
4013 $this->resetArticleID( $newid );
4014 $redirectRevision = new Revision( array(
4015 'title' => $this, // for determining the default content model
4016 'page' => $newid,
4017 'user_text' => $wgUser->getName(),
4018 'user' => $wgUser->getId(),
4019 'comment' => $comment,
4020 'content' => $redirectContent ) );
4021 $redirectRevision->insertOn( $dbw );
4022 $redirectArticle->updateRevisionOn( $dbw, $redirectRevision, 0 );
4023
4024 wfRunHooks( 'NewRevisionFromEditComplete',
4025 array( $redirectArticle, $redirectRevision, false, $wgUser ) );
4026
4027 $redirectArticle->doEditUpdates( $redirectRevision, $wgUser, array( 'created' => true ) );
4028 }
4029 }
4030
4031 # Log the move
4032 $logid = $logEntry->insert();
4033 $logEntry->publish( $logid );
4034 }
4035
4036 /**
4037 * Move this page's subpages to be subpages of $nt
4038 *
4039 * @param Title $nt Move target
4040 * @param bool $auth Whether $wgUser's permissions should be checked
4041 * @param string $reason The reason for the move
4042 * @param bool $createRedirect Whether to create redirects from the old subpages to
4043 * the new ones Ignored if the user doesn't have the 'suppressredirect' right
4044 * @return array Array with old page titles as keys, and strings (new page titles) or
4045 * arrays (errors) as values, or an error array with numeric indices if no pages
4046 * were moved
4047 */
4048 public function moveSubpages( $nt, $auth = true, $reason = '', $createRedirect = true ) {
4049 global $wgMaximumMovedPages;
4050 // Check permissions
4051 if ( !$this->userCan( 'move-subpages' ) ) {
4052 return array( 'cant-move-subpages' );
4053 }
4054 // Do the source and target namespaces support subpages?
4055 if ( !MWNamespace::hasSubpages( $this->getNamespace() ) ) {
4056 return array( 'namespace-nosubpages',
4057 MWNamespace::getCanonicalName( $this->getNamespace() ) );
4058 }
4059 if ( !MWNamespace::hasSubpages( $nt->getNamespace() ) ) {
4060 return array( 'namespace-nosubpages',
4061 MWNamespace::getCanonicalName( $nt->getNamespace() ) );
4062 }
4063
4064 $subpages = $this->getSubpages( $wgMaximumMovedPages + 1 );
4065 $retval = array();
4066 $count = 0;
4067 foreach ( $subpages as $oldSubpage ) {
4068 $count++;
4069 if ( $count > $wgMaximumMovedPages ) {
4070 $retval[$oldSubpage->getPrefixedText()] =
4071 array( 'movepage-max-pages',
4072 $wgMaximumMovedPages );
4073 break;
4074 }
4075
4076 // We don't know whether this function was called before
4077 // or after moving the root page, so check both
4078 // $this and $nt
4079 if ( $oldSubpage->getArticleID() == $this->getArticleID()
4080 || $oldSubpage->getArticleID() == $nt->getArticleID()
4081 ) {
4082 // When moving a page to a subpage of itself,
4083 // don't move it twice
4084 continue;
4085 }
4086 $newPageName = preg_replace(
4087 '#^' . preg_quote( $this->getDBkey(), '#' ) . '#',
4088 StringUtils::escapeRegexReplacement( $nt->getDBkey() ), # bug 21234
4089 $oldSubpage->getDBkey() );
4090 if ( $oldSubpage->isTalkPage() ) {
4091 $newNs = $nt->getTalkPage()->getNamespace();
4092 } else {
4093 $newNs = $nt->getSubjectPage()->getNamespace();
4094 }
4095 # Bug 14385: we need makeTitleSafe because the new page names may
4096 # be longer than 255 characters.
4097 $newSubpage = Title::makeTitleSafe( $newNs, $newPageName );
4098
4099 $success = $oldSubpage->moveTo( $newSubpage, $auth, $reason, $createRedirect );
4100 if ( $success === true ) {
4101 $retval[$oldSubpage->getPrefixedText()] = $newSubpage->getPrefixedText();
4102 } else {
4103 $retval[$oldSubpage->getPrefixedText()] = $success;
4104 }
4105 }
4106 return $retval;
4107 }
4108
4109 /**
4110 * Checks if this page is just a one-rev redirect.
4111 * Adds lock, so don't use just for light purposes.
4112 *
4113 * @return bool
4114 */
4115 public function isSingleRevRedirect() {
4116 global $wgContentHandlerUseDB;
4117
4118 $dbw = wfGetDB( DB_MASTER );
4119
4120 # Is it a redirect?
4121 $fields = array( 'page_is_redirect', 'page_latest', 'page_id' );
4122 if ( $wgContentHandlerUseDB ) {
4123 $fields[] = 'page_content_model';
4124 }
4125
4126 $row = $dbw->selectRow( 'page',
4127 $fields,
4128 $this->pageCond(),
4129 __METHOD__,
4130 array( 'FOR UPDATE' )
4131 );
4132 # Cache some fields we may want
4133 $this->mArticleID = $row ? intval( $row->page_id ) : 0;
4134 $this->mRedirect = $row ? (bool)$row->page_is_redirect : false;
4135 $this->mLatestID = $row ? intval( $row->page_latest ) : false;
4136 $this->mContentModel = $row && isset( $row->page_content_model )
4137 ? strval( $row->page_content_model )
4138 : false;
4139
4140 if ( !$this->mRedirect ) {
4141 return false;
4142 }
4143 # Does the article have a history?
4144 $row = $dbw->selectField( array( 'page', 'revision' ),
4145 'rev_id',
4146 array( 'page_namespace' => $this->getNamespace(),
4147 'page_title' => $this->getDBkey(),
4148 'page_id=rev_page',
4149 'page_latest != rev_id'
4150 ),
4151 __METHOD__,
4152 array( 'FOR UPDATE' )
4153 );
4154 # Return true if there was no history
4155 return ( $row === false );
4156 }
4157
4158 /**
4159 * Checks if $this can be moved to a given Title
4160 * - Selects for update, so don't call it unless you mean business
4161 *
4162 * @param Title $nt The new title to check
4163 * @return bool
4164 */
4165 public function isValidMoveTarget( $nt ) {
4166 # Is it an existing file?
4167 if ( $nt->getNamespace() == NS_FILE ) {
4168 $file = wfLocalFile( $nt );
4169 if ( $file->exists() ) {
4170 wfDebug( __METHOD__ . ": file exists\n" );
4171 return false;
4172 }
4173 }
4174 # Is it a redirect with no history?
4175 if ( !$nt->isSingleRevRedirect() ) {
4176 wfDebug( __METHOD__ . ": not a one-rev redirect\n" );
4177 return false;
4178 }
4179 # Get the article text
4180 $rev = Revision::newFromTitle( $nt, false, Revision::READ_LATEST );
4181 if ( !is_object( $rev ) ) {
4182 return false;
4183 }
4184 $content = $rev->getContent();
4185 # Does the redirect point to the source?
4186 # Or is it a broken self-redirect, usually caused by namespace collisions?
4187 $redirTitle = $content ? $content->getRedirectTarget() : null;
4188
4189 if ( $redirTitle ) {
4190 if ( $redirTitle->getPrefixedDBkey() != $this->getPrefixedDBkey() &&
4191 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) {
4192 wfDebug( __METHOD__ . ": redirect points to other page\n" );
4193 return false;
4194 } else {
4195 return true;
4196 }
4197 } else {
4198 # Fail safe (not a redirect after all. strange.)
4199 wfDebug( __METHOD__ . ": failsafe: database sais " . $nt->getPrefixedDBkey() .
4200 " is a redirect, but it doesn't contain a valid redirect.\n" );
4201 return false;
4202 }
4203 }
4204
4205 /**
4206 * Get categories to which this Title belongs and return an array of
4207 * categories' names.
4208 *
4209 * @return array Array of parents in the form:
4210 * $parent => $currentarticle
4211 */
4212 public function getParentCategories() {
4213 global $wgContLang;
4214
4215 $data = array();
4216
4217 $titleKey = $this->getArticleID();
4218
4219 if ( $titleKey === 0 ) {
4220 return $data;
4221 }
4222
4223 $dbr = wfGetDB( DB_SLAVE );
4224
4225 $res = $dbr->select(
4226 'categorylinks',
4227 'cl_to',
4228 array( 'cl_from' => $titleKey ),
4229 __METHOD__
4230 );
4231
4232 if ( $res->numRows() > 0 ) {
4233 foreach ( $res as $row ) {
4234 // $data[] = Title::newFromText($wgContLang->getNsText ( NS_CATEGORY ).':'.$row->cl_to);
4235 $data[$wgContLang->getNsText( NS_CATEGORY ) . ':' . $row->cl_to] = $this->getFullText();
4236 }
4237 }
4238 return $data;
4239 }
4240
4241 /**
4242 * Get a tree of parent categories
4243 *
4244 * @param array $children Array with the children in the keys, to check for circular refs
4245 * @return array Tree of parent categories
4246 */
4247 public function getParentCategoryTree( $children = array() ) {
4248 $stack = array();
4249 $parents = $this->getParentCategories();
4250
4251 if ( $parents ) {
4252 foreach ( $parents as $parent => $current ) {
4253 if ( array_key_exists( $parent, $children ) ) {
4254 # Circular reference
4255 $stack[$parent] = array();
4256 } else {
4257 $nt = Title::newFromText( $parent );
4258 if ( $nt ) {
4259 $stack[$parent] = $nt->getParentCategoryTree( $children + array( $parent => 1 ) );
4260 }
4261 }
4262 }
4263 }
4264
4265 return $stack;
4266 }
4267
4268 /**
4269 * Get an associative array for selecting this title from
4270 * the "page" table
4271 *
4272 * @return array Array suitable for the $where parameter of DB::select()
4273 */
4274 public function pageCond() {
4275 if ( $this->mArticleID > 0 ) {
4276 // PK avoids secondary lookups in InnoDB, shouldn't hurt other DBs
4277 return array( 'page_id' => $this->mArticleID );
4278 } else {
4279 return array( 'page_namespace' => $this->mNamespace, 'page_title' => $this->mDbkeyform );
4280 }
4281 }
4282
4283 /**
4284 * Get the revision ID of the previous revision
4285 *
4286 * @param int $revId Revision ID. Get the revision that was before this one.
4287 * @param int $flags Title::GAID_FOR_UPDATE
4288 * @return int|bool Old revision ID, or false if none exists
4289 */
4290 public function getPreviousRevisionID( $revId, $flags = 0 ) {
4291 $db = ( $flags & self::GAID_FOR_UPDATE ) ? wfGetDB( DB_MASTER ) : wfGetDB( DB_SLAVE );
4292 $revId = $db->selectField( 'revision', 'rev_id',
4293 array(
4294 'rev_page' => $this->getArticleID( $flags ),
4295 'rev_id < ' . intval( $revId )
4296 ),
4297 __METHOD__,
4298 array( 'ORDER BY' => 'rev_id DESC' )
4299 );
4300
4301 if ( $revId === false ) {
4302 return false;
4303 } else {
4304 return intval( $revId );
4305 }
4306 }
4307
4308 /**
4309 * Get the revision ID of the next revision
4310 *
4311 * @param int $revId Revision ID. Get the revision that was after this one.
4312 * @param int $flags Title::GAID_FOR_UPDATE
4313 * @return int|bool Next revision ID, or false if none exists
4314 */
4315 public function getNextRevisionID( $revId, $flags = 0 ) {
4316 $db = ( $flags & self::GAID_FOR_UPDATE ) ? wfGetDB( DB_MASTER ) : wfGetDB( DB_SLAVE );
4317 $revId = $db->selectField( 'revision', 'rev_id',
4318 array(
4319 'rev_page' => $this->getArticleID( $flags ),
4320 'rev_id > ' . intval( $revId )
4321 ),
4322 __METHOD__,
4323 array( 'ORDER BY' => 'rev_id' )
4324 );
4325
4326 if ( $revId === false ) {
4327 return false;
4328 } else {
4329 return intval( $revId );
4330 }
4331 }
4332
4333 /**
4334 * Get the first revision of the page
4335 *
4336 * @param int $flags Title::GAID_FOR_UPDATE
4337 * @return Revision|null If page doesn't exist
4338 */
4339 public function getFirstRevision( $flags = 0 ) {
4340 $pageId = $this->getArticleID( $flags );
4341 if ( $pageId ) {
4342 $db = ( $flags & self::GAID_FOR_UPDATE ) ? wfGetDB( DB_MASTER ) : wfGetDB( DB_SLAVE );
4343 $row = $db->selectRow( 'revision', Revision::selectFields(),
4344 array( 'rev_page' => $pageId ),
4345 __METHOD__,
4346 array( 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 1 )
4347 );
4348 if ( $row ) {
4349 return new Revision( $row );
4350 }
4351 }
4352 return null;
4353 }
4354
4355 /**
4356 * Get the oldest revision timestamp of this page
4357 *
4358 * @param int $flags Title::GAID_FOR_UPDATE
4359 * @return string MW timestamp
4360 */
4361 public function getEarliestRevTime( $flags = 0 ) {
4362 $rev = $this->getFirstRevision( $flags );
4363 return $rev ? $rev->getTimestamp() : null;
4364 }
4365
4366 /**
4367 * Check if this is a new page
4368 *
4369 * @return bool
4370 */
4371 public function isNewPage() {
4372 $dbr = wfGetDB( DB_SLAVE );
4373 return (bool)$dbr->selectField( 'page', 'page_is_new', $this->pageCond(), __METHOD__ );
4374 }
4375
4376 /**
4377 * Check whether the number of revisions of this page surpasses $wgDeleteRevisionsLimit
4378 *
4379 * @return bool
4380 */
4381 public function isBigDeletion() {
4382 global $wgDeleteRevisionsLimit;
4383
4384 if ( !$wgDeleteRevisionsLimit ) {
4385 return false;
4386 }
4387
4388 if ( $this->mIsBigDeletion === null ) {
4389 $dbr = wfGetDB( DB_SLAVE );
4390
4391 $innerQuery = $dbr->selectSQLText(
4392 'revision',
4393 '1',
4394 array( 'rev_page' => $this->getArticleID() ),
4395 __METHOD__,
4396 array( 'LIMIT' => $wgDeleteRevisionsLimit + 1 )
4397 );
4398
4399 $revCount = $dbr->query(
4400 'SELECT COUNT(*) FROM (' . $innerQuery . ') AS innerQuery',
4401 __METHOD__
4402 );
4403 $revCount = $revCount->fetchRow();
4404 $revCount = $revCount['COUNT(*)'];
4405
4406 $this->mIsBigDeletion = $revCount > $wgDeleteRevisionsLimit;
4407 }
4408
4409 return $this->mIsBigDeletion;
4410 }
4411
4412 /**
4413 * Get the approximate revision count of this page.
4414 *
4415 * @return int
4416 */
4417 public function estimateRevisionCount() {
4418 if ( !$this->exists() ) {
4419 return 0;
4420 }
4421
4422 if ( $this->mEstimateRevisions === null ) {
4423 $dbr = wfGetDB( DB_SLAVE );
4424 $this->mEstimateRevisions = $dbr->estimateRowCount( 'revision', '*',
4425 array( 'rev_page' => $this->getArticleID() ), __METHOD__ );
4426 }
4427
4428 return $this->mEstimateRevisions;
4429 }
4430
4431 /**
4432 * Get the number of revisions between the given revision.
4433 * Used for diffs and other things that really need it.
4434 *
4435 * @param int|Revision $old Old revision or rev ID (first before range)
4436 * @param int|Revision $new New revision or rev ID (first after range)
4437 * @param int|null $max Limit of Revisions to count, will be incremented to detect truncations
4438 * @return int Number of revisions between these revisions.
4439 */
4440 public function countRevisionsBetween( $old, $new, $max = null ) {
4441 if ( !( $old instanceof Revision ) ) {
4442 $old = Revision::newFromTitle( $this, (int)$old );
4443 }
4444 if ( !( $new instanceof Revision ) ) {
4445 $new = Revision::newFromTitle( $this, (int)$new );
4446 }
4447 if ( !$old || !$new ) {
4448 return 0; // nothing to compare
4449 }
4450 $dbr = wfGetDB( DB_SLAVE );
4451 $conds = array(
4452 'rev_page' => $this->getArticleID(),
4453 'rev_timestamp > ' . $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) ),
4454 'rev_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) )
4455 );
4456 if ( $max !== null ) {
4457 $res = $dbr->select( 'revision', '1',
4458 $conds,
4459 __METHOD__,
4460 array( 'LIMIT' => $max + 1 ) // extra to detect truncation
4461 );
4462 return $res->numRows();
4463 } else {
4464 return (int)$dbr->selectField( 'revision', 'count(*)', $conds, __METHOD__ );
4465 }
4466 }
4467
4468 /**
4469 * Get the authors between the given revisions or revision IDs.
4470 * Used for diffs and other things that really need it.
4471 *
4472 * @since 1.23
4473 *
4474 * @param int|Revision $old Old revision or rev ID (first before range by default)
4475 * @param int|Revision $new New revision or rev ID (first after range by default)
4476 * @param int $limit Maximum number of authors
4477 * @param string|array $options (Optional): Single option, or an array of options:
4478 * 'include_old' Include $old in the range; $new is excluded.
4479 * 'include_new' Include $new in the range; $old is excluded.
4480 * 'include_both' Include both $old and $new in the range.
4481 * Unknown option values are ignored.
4482 * @return array|null Names of revision authors in the range; null if not both revisions exist
4483 */
4484 public function getAuthorsBetween( $old, $new, $limit, $options = array() ) {
4485 if ( !( $old instanceof Revision ) ) {
4486 $old = Revision::newFromTitle( $this, (int)$old );
4487 }
4488 if ( !( $new instanceof Revision ) ) {
4489 $new = Revision::newFromTitle( $this, (int)$new );
4490 }
4491 // XXX: what if Revision objects are passed in, but they don't refer to this title?
4492 // Add $old->getPage() != $new->getPage() || $old->getPage() != $this->getArticleID()
4493 // in the sanity check below?
4494 if ( !$old || !$new ) {
4495 return null; // nothing to compare
4496 }
4497 $authors = array();
4498 $old_cmp = '>';
4499 $new_cmp = '<';
4500 $options = (array)$options;
4501 if ( in_array( 'include_old', $options ) ) {
4502 $old_cmp = '>=';
4503 }
4504 if ( in_array( 'include_new', $options ) ) {
4505 $new_cmp = '<=';
4506 }
4507 if ( in_array( 'include_both', $options ) ) {
4508 $old_cmp = '>=';
4509 $new_cmp = '<=';
4510 }
4511 // No DB query needed if $old and $new are the same or successive revisions:
4512 if ( $old->getId() === $new->getId() ) {
4513 return ( $old_cmp === '>' && $new_cmp === '<' ) ? array() : array( $old->getRawUserText() );
4514 } elseif ( $old->getId() === $new->getParentId() ) {
4515 if ( $old_cmp === '>=' && $new_cmp === '<=' ) {
4516 $authors[] = $old->getRawUserText();
4517 if ( $old->getRawUserText() != $new->getRawUserText() ) {
4518 $authors[] = $new->getRawUserText();
4519 }
4520 } elseif ( $old_cmp === '>=' ) {
4521 $authors[] = $old->getRawUserText();
4522 } elseif ( $new_cmp === '<=' ) {
4523 $authors[] = $new->getRawUserText();
4524 }
4525 return $authors;
4526 }
4527 $dbr = wfGetDB( DB_SLAVE );
4528 $res = $dbr->select( 'revision', 'DISTINCT rev_user_text',
4529 array(
4530 'rev_page' => $this->getArticleID(),
4531 "rev_timestamp $old_cmp " . $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) ),
4532 "rev_timestamp $new_cmp " . $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) )
4533 ), __METHOD__,
4534 array( 'LIMIT' => $limit + 1 ) // add one so caller knows it was truncated
4535 );
4536 foreach ( $res as $row ) {
4537 $authors[] = $row->rev_user_text;
4538 }
4539 return $authors;
4540 }
4541
4542 /**
4543 * Get the number of authors between the given revisions or revision IDs.
4544 * Used for diffs and other things that really need it.
4545 *
4546 * @param int|Revision $old Old revision or rev ID (first before range by default)
4547 * @param int|Revision $new New revision or rev ID (first after range by default)
4548 * @param int $limit Maximum number of authors
4549 * @param string|array $options (Optional): Single option, or an array of options:
4550 * 'include_old' Include $old in the range; $new is excluded.
4551 * 'include_new' Include $new in the range; $old is excluded.
4552 * 'include_both' Include both $old and $new in the range.
4553 * Unknown option values are ignored.
4554 * @return int Number of revision authors in the range; zero if not both revisions exist
4555 */
4556 public function countAuthorsBetween( $old, $new, $limit, $options = array() ) {
4557 $authors = $this->getAuthorsBetween( $old, $new, $limit, $options );
4558 return $authors ? count( $authors ) : 0;
4559 }
4560
4561 /**
4562 * Compare with another title.
4563 *
4564 * @param Title $title
4565 * @return bool
4566 */
4567 public function equals( Title $title ) {
4568 // Note: === is necessary for proper matching of number-like titles.
4569 return $this->getInterwiki() === $title->getInterwiki()
4570 && $this->getNamespace() == $title->getNamespace()
4571 && $this->getDBkey() === $title->getDBkey();
4572 }
4573
4574 /**
4575 * Check if this title is a subpage of another title
4576 *
4577 * @param Title $title
4578 * @return bool
4579 */
4580 public function isSubpageOf( Title $title ) {
4581 return $this->getInterwiki() === $title->getInterwiki()
4582 && $this->getNamespace() == $title->getNamespace()
4583 && strpos( $this->getDBkey(), $title->getDBkey() . '/' ) === 0;
4584 }
4585
4586 /**
4587 * Check if page exists. For historical reasons, this function simply
4588 * checks for the existence of the title in the page table, and will
4589 * thus return false for interwiki links, special pages and the like.
4590 * If you want to know if a title can be meaningfully viewed, you should
4591 * probably call the isKnown() method instead.
4592 *
4593 * @return bool
4594 */
4595 public function exists() {
4596 return $this->getArticleID() != 0;
4597 }
4598
4599 /**
4600 * Should links to this title be shown as potentially viewable (i.e. as
4601 * "bluelinks"), even if there's no record by this title in the page
4602 * table?
4603 *
4604 * This function is semi-deprecated for public use, as well as somewhat
4605 * misleadingly named. You probably just want to call isKnown(), which
4606 * calls this function internally.
4607 *
4608 * (ISSUE: Most of these checks are cheap, but the file existence check
4609 * can potentially be quite expensive. Including it here fixes a lot of
4610 * existing code, but we might want to add an optional parameter to skip
4611 * it and any other expensive checks.)
4612 *
4613 * @return bool
4614 */
4615 public function isAlwaysKnown() {
4616 $isKnown = null;
4617
4618 /**
4619 * Allows overriding default behavior for determining if a page exists.
4620 * If $isKnown is kept as null, regular checks happen. If it's
4621 * a boolean, this value is returned by the isKnown method.
4622 *
4623 * @since 1.20
4624 *
4625 * @param Title $title
4626 * @param bool|null $isKnown
4627 */
4628 wfRunHooks( 'TitleIsAlwaysKnown', array( $this, &$isKnown ) );
4629
4630 if ( !is_null( $isKnown ) ) {
4631 return $isKnown;
4632 }
4633
4634 if ( $this->isExternal() ) {
4635 return true; // any interwiki link might be viewable, for all we know
4636 }
4637
4638 switch ( $this->mNamespace ) {
4639 case NS_MEDIA:
4640 case NS_FILE:
4641 // file exists, possibly in a foreign repo
4642 return (bool)wfFindFile( $this );
4643 case NS_SPECIAL:
4644 // valid special page
4645 return SpecialPageFactory::exists( $this->getDBkey() );
4646 case NS_MAIN:
4647 // selflink, possibly with fragment
4648 return $this->mDbkeyform == '';
4649 case NS_MEDIAWIKI:
4650 // known system message
4651 return $this->hasSourceText() !== false;
4652 default:
4653 return false;
4654 }
4655 }
4656
4657 /**
4658 * Does this title refer to a page that can (or might) be meaningfully
4659 * viewed? In particular, this function may be used to determine if
4660 * links to the title should be rendered as "bluelinks" (as opposed to
4661 * "redlinks" to non-existent pages).
4662 * Adding something else to this function will cause inconsistency
4663 * since LinkHolderArray calls isAlwaysKnown() and does its own
4664 * page existence check.
4665 *
4666 * @return bool
4667 */
4668 public function isKnown() {
4669 return $this->isAlwaysKnown() || $this->exists();
4670 }
4671
4672 /**
4673 * Does this page have source text?
4674 *
4675 * @return bool
4676 */
4677 public function hasSourceText() {
4678 if ( $this->exists() ) {
4679 return true;
4680 }
4681
4682 if ( $this->mNamespace == NS_MEDIAWIKI ) {
4683 // If the page doesn't exist but is a known system message, default
4684 // message content will be displayed, same for language subpages-
4685 // Use always content language to avoid loading hundreds of languages
4686 // to get the link color.
4687 global $wgContLang;
4688 list( $name, ) = MessageCache::singleton()->figureMessage(
4689 $wgContLang->lcfirst( $this->getText() )
4690 );
4691 $message = wfMessage( $name )->inLanguage( $wgContLang )->useDatabase( false );
4692 return $message->exists();
4693 }
4694
4695 return false;
4696 }
4697
4698 /**
4699 * Get the default message text or false if the message doesn't exist
4700 *
4701 * @return string|bool
4702 */
4703 public function getDefaultMessageText() {
4704 global $wgContLang;
4705
4706 if ( $this->getNamespace() != NS_MEDIAWIKI ) { // Just in case
4707 return false;
4708 }
4709
4710 list( $name, $lang ) = MessageCache::singleton()->figureMessage(
4711 $wgContLang->lcfirst( $this->getText() )
4712 );
4713 $message = wfMessage( $name )->inLanguage( $lang )->useDatabase( false );
4714
4715 if ( $message->exists() ) {
4716 return $message->plain();
4717 } else {
4718 return false;
4719 }
4720 }
4721
4722 /**
4723 * Updates page_touched for this page; called from LinksUpdate.php
4724 *
4725 * @return bool True if the update succeeded
4726 */
4727 public function invalidateCache() {
4728 if ( wfReadOnly() ) {
4729 return false;
4730 }
4731
4732 if ( $this->mArticleID === 0 ) {
4733 return true; // avoid gap locking if we know it's not there
4734 }
4735
4736 $method = __METHOD__;
4737 $dbw = wfGetDB( DB_MASTER );
4738 $conds = $this->pageCond();
4739 $dbw->onTransactionIdle( function () use ( $dbw, $conds, $method ) {
4740 $dbw->update(
4741 'page',
4742 array( 'page_touched' => $dbw->timestamp() ),
4743 $conds,
4744 $method
4745 );
4746 } );
4747
4748 return true;
4749 }
4750
4751 /**
4752 * Update page_touched timestamps and send squid purge messages for
4753 * pages linking to this title. May be sent to the job queue depending
4754 * on the number of links. Typically called on create and delete.
4755 */
4756 public function touchLinks() {
4757 $u = new HTMLCacheUpdate( $this, 'pagelinks' );
4758 $u->doUpdate();
4759
4760 if ( $this->getNamespace() == NS_CATEGORY ) {
4761 $u = new HTMLCacheUpdate( $this, 'categorylinks' );
4762 $u->doUpdate();
4763 }
4764 }
4765
4766 /**
4767 * Get the last touched timestamp
4768 *
4769 * @param DatabaseBase $db Optional db
4770 * @return string Last-touched timestamp
4771 */
4772 public function getTouched( $db = null ) {
4773 if ( $db === null ) {
4774 $db = wfGetDB( DB_SLAVE );
4775 }
4776 $touched = $db->selectField( 'page', 'page_touched', $this->pageCond(), __METHOD__ );
4777 return $touched;
4778 }
4779
4780 /**
4781 * Get the timestamp when this page was updated since the user last saw it.
4782 *
4783 * @param User $user
4784 * @return string|null
4785 */
4786 public function getNotificationTimestamp( $user = null ) {
4787 global $wgUser, $wgShowUpdatedMarker;
4788 // Assume current user if none given
4789 if ( !$user ) {
4790 $user = $wgUser;
4791 }
4792 // Check cache first
4793 $uid = $user->getId();
4794 // avoid isset here, as it'll return false for null entries
4795 if ( array_key_exists( $uid, $this->mNotificationTimestamp ) ) {
4796 return $this->mNotificationTimestamp[$uid];
4797 }
4798 if ( !$uid || !$wgShowUpdatedMarker || !$user->isAllowed( 'viewmywatchlist' ) ) {
4799 $this->mNotificationTimestamp[$uid] = false;
4800 return $this->mNotificationTimestamp[$uid];
4801 }
4802 // Don't cache too much!
4803 if ( count( $this->mNotificationTimestamp ) >= self::CACHE_MAX ) {
4804 $this->mNotificationTimestamp = array();
4805 }
4806 $dbr = wfGetDB( DB_SLAVE );
4807 $this->mNotificationTimestamp[$uid] = $dbr->selectField( 'watchlist',
4808 'wl_notificationtimestamp',
4809 array(
4810 'wl_user' => $user->getId(),
4811 'wl_namespace' => $this->getNamespace(),
4812 'wl_title' => $this->getDBkey(),
4813 ),
4814 __METHOD__
4815 );
4816 return $this->mNotificationTimestamp[$uid];
4817 }
4818
4819 /**
4820 * Generate strings used for xml 'id' names in monobook tabs
4821 *
4822 * @param string $prepend Defaults to 'nstab-'
4823 * @return string XML 'id' name
4824 */
4825 public function getNamespaceKey( $prepend = 'nstab-' ) {
4826 global $wgContLang;
4827 // Gets the subject namespace if this title
4828 $namespace = MWNamespace::getSubject( $this->getNamespace() );
4829 // Checks if canonical namespace name exists for namespace
4830 if ( MWNamespace::exists( $this->getNamespace() ) ) {
4831 // Uses canonical namespace name
4832 $namespaceKey = MWNamespace::getCanonicalName( $namespace );
4833 } else {
4834 // Uses text of namespace
4835 $namespaceKey = $this->getSubjectNsText();
4836 }
4837 // Makes namespace key lowercase
4838 $namespaceKey = $wgContLang->lc( $namespaceKey );
4839 // Uses main
4840 if ( $namespaceKey == '' ) {
4841 $namespaceKey = 'main';
4842 }
4843 // Changes file to image for backwards compatibility
4844 if ( $namespaceKey == 'file' ) {
4845 $namespaceKey = 'image';
4846 }
4847 return $prepend . $namespaceKey;
4848 }
4849
4850 /**
4851 * Get all extant redirects to this Title
4852 *
4853 * @param int|null $ns Single namespace to consider; null to consider all namespaces
4854 * @return Title[] Array of Title redirects to this title
4855 */
4856 public function getRedirectsHere( $ns = null ) {
4857 $redirs = array();
4858
4859 $dbr = wfGetDB( DB_SLAVE );
4860 $where = array(
4861 'rd_namespace' => $this->getNamespace(),
4862 'rd_title' => $this->getDBkey(),
4863 'rd_from = page_id'
4864 );
4865 if ( $this->isExternal() ) {
4866 $where['rd_interwiki'] = $this->getInterwiki();
4867 } else {
4868 $where[] = 'rd_interwiki = ' . $dbr->addQuotes( '' ) . ' OR rd_interwiki IS NULL';
4869 }
4870 if ( !is_null( $ns ) ) {
4871 $where['page_namespace'] = $ns;
4872 }
4873
4874 $res = $dbr->select(
4875 array( 'redirect', 'page' ),
4876 array( 'page_namespace', 'page_title' ),
4877 $where,
4878 __METHOD__
4879 );
4880
4881 foreach ( $res as $row ) {
4882 $redirs[] = self::newFromRow( $row );
4883 }
4884 return $redirs;
4885 }
4886
4887 /**
4888 * Check if this Title is a valid redirect target
4889 *
4890 * @return bool
4891 */
4892 public function isValidRedirectTarget() {
4893 global $wgInvalidRedirectTargets;
4894
4895 // invalid redirect targets are stored in a global array, but explicitly disallow Userlogout here
4896 if ( $this->isSpecial( 'Userlogout' ) ) {
4897 return false;
4898 }
4899
4900 foreach ( $wgInvalidRedirectTargets as $target ) {
4901 if ( $this->isSpecial( $target ) ) {
4902 return false;
4903 }
4904 }
4905
4906 return true;
4907 }
4908
4909 /**
4910 * Get a backlink cache object
4911 *
4912 * @return BacklinkCache
4913 */
4914 public function getBacklinkCache() {
4915 return BacklinkCache::get( $this );
4916 }
4917
4918 /**
4919 * Whether the magic words __INDEX__ and __NOINDEX__ function for this page.
4920 *
4921 * @return bool
4922 */
4923 public function canUseNoindex() {
4924 global $wgContentNamespaces, $wgExemptFromUserRobotsControl;
4925
4926 $bannedNamespaces = is_null( $wgExemptFromUserRobotsControl )
4927 ? $wgContentNamespaces
4928 : $wgExemptFromUserRobotsControl;
4929
4930 return !in_array( $this->mNamespace, $bannedNamespaces );
4931
4932 }
4933
4934 /**
4935 * Returns the raw sort key to be used for categories, with the specified
4936 * prefix. This will be fed to Collation::getSortKey() to get a
4937 * binary sortkey that can be used for actual sorting.
4938 *
4939 * @param string $prefix The prefix to be used, specified using
4940 * {{defaultsort:}} or like [[Category:Foo|prefix]]. Empty for no
4941 * prefix.
4942 * @return string
4943 */
4944 public function getCategorySortkey( $prefix = '' ) {
4945 $unprefixed = $this->getText();
4946
4947 // Anything that uses this hook should only depend
4948 // on the Title object passed in, and should probably
4949 // tell the users to run updateCollations.php --force
4950 // in order to re-sort existing category relations.
4951 wfRunHooks( 'GetDefaultSortkey', array( $this, &$unprefixed ) );
4952 if ( $prefix !== '' ) {
4953 # Separate with a line feed, so the unprefixed part is only used as
4954 # a tiebreaker when two pages have the exact same prefix.
4955 # In UCA, tab is the only character that can sort above LF
4956 # so we strip both of them from the original prefix.
4957 $prefix = strtr( $prefix, "\n\t", ' ' );
4958 return "$prefix\n$unprefixed";
4959 }
4960 return $unprefixed;
4961 }
4962
4963 /**
4964 * Get the language in which the content of this page is written in
4965 * wikitext. Defaults to $wgContLang, but in certain cases it can be
4966 * e.g. $wgLang (such as special pages, which are in the user language).
4967 *
4968 * @since 1.18
4969 * @return Language
4970 */
4971 public function getPageLanguage() {
4972 global $wgLang, $wgLanguageCode;
4973 wfProfileIn( __METHOD__ );
4974 if ( $this->isSpecialPage() ) {
4975 // special pages are in the user language
4976 wfProfileOut( __METHOD__ );
4977 return $wgLang;
4978 }
4979
4980 // Checking if DB language is set
4981 if ( $this->mDbPageLanguage ) {
4982 wfProfileOut( __METHOD__ );
4983 return wfGetLangObj( $this->mDbPageLanguage );
4984 }
4985
4986 if ( !$this->mPageLanguage || $this->mPageLanguage[1] !== $wgLanguageCode ) {
4987 // Note that this may depend on user settings, so the cache should
4988 // be only per-request.
4989 // NOTE: ContentHandler::getPageLanguage() may need to load the
4990 // content to determine the page language!
4991 // Checking $wgLanguageCode hasn't changed for the benefit of unit
4992 // tests.
4993 $contentHandler = ContentHandler::getForTitle( $this );
4994 $langObj = wfGetLangObj( $contentHandler->getPageLanguage( $this ) );
4995 $this->mPageLanguage = array( $langObj->getCode(), $wgLanguageCode );
4996 } else {
4997 $langObj = wfGetLangObj( $this->mPageLanguage[0] );
4998 }
4999
5000 wfProfileOut( __METHOD__ );
5001 return $langObj;
5002 }
5003
5004 /**
5005 * Get the language in which the content of this page is written when
5006 * viewed by user. Defaults to $wgContLang, but in certain cases it can be
5007 * e.g. $wgLang (such as special pages, which are in the user language).
5008 *
5009 * @since 1.20
5010 * @return Language
5011 */
5012 public function getPageViewLanguage() {
5013 global $wgLang;
5014
5015 if ( $this->isSpecialPage() ) {
5016 // If the user chooses a variant, the content is actually
5017 // in a language whose code is the variant code.
5018 $variant = $wgLang->getPreferredVariant();
5019 if ( $wgLang->getCode() !== $variant ) {
5020 return Language::factory( $variant );
5021 }
5022
5023 return $wgLang;
5024 }
5025
5026 // @note Can't be cached persistently, depends on user settings.
5027 // @note ContentHandler::getPageViewLanguage() may need to load the
5028 // content to determine the page language!
5029 $contentHandler = ContentHandler::getForTitle( $this );
5030 $pageLang = $contentHandler->getPageViewLanguage( $this );
5031 return $pageLang;
5032 }
5033
5034 /**
5035 * Get a list of rendered edit notices for this page.
5036 *
5037 * Array is keyed by the original message key, and values are rendered using parseAsBlock, so
5038 * they will already be wrapped in paragraphs.
5039 *
5040 * @since 1.21
5041 * @param int $oldid Revision ID that's being edited
5042 * @return array
5043 */
5044 public function getEditNotices( $oldid = 0 ) {
5045 $notices = array();
5046
5047 # Optional notices on a per-namespace and per-page basis
5048 $editnotice_ns = 'editnotice-' . $this->getNamespace();
5049 $editnotice_ns_message = wfMessage( $editnotice_ns );
5050 if ( $editnotice_ns_message->exists() ) {
5051 $notices[$editnotice_ns] = $editnotice_ns_message->parseAsBlock();
5052 }
5053 if ( MWNamespace::hasSubpages( $this->getNamespace() ) ) {
5054 $parts = explode( '/', $this->getDBkey() );
5055 $editnotice_base = $editnotice_ns;
5056 while ( count( $parts ) > 0 ) {
5057 $editnotice_base .= '-' . array_shift( $parts );
5058 $editnotice_base_msg = wfMessage( $editnotice_base );
5059 if ( $editnotice_base_msg->exists() ) {
5060 $notices[$editnotice_base] = $editnotice_base_msg->parseAsBlock();
5061 }
5062 }
5063 } else {
5064 # Even if there are no subpages in namespace, we still don't want / in MW ns.
5065 $editnoticeText = $editnotice_ns . '-' . str_replace( '/', '-', $this->getDBkey() );
5066 $editnoticeMsg = wfMessage( $editnoticeText );
5067 if ( $editnoticeMsg->exists() ) {
5068 $notices[$editnoticeText] = $editnoticeMsg->parseAsBlock();
5069 }
5070 }
5071
5072 wfRunHooks( 'TitleGetEditNotices', array( $this, $oldid, &$notices ) );
5073 return $notices;
5074 }
5075 }