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