Title: Title::getSubpage should not lose the interwiki prefix
[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 ) {
1774 return $this->getText();
1775 }
1776
1777 return strtok( $this->getText(), '/' );
1778 }
1779
1780 /**
1781 * Get the root page name title, i.e. the leftmost part before any slashes
1782 *
1783 * @par Example:
1784 * @code
1785 * Title::newFromText('User:Foo/Bar/Baz')->getRootTitle();
1786 * # returns: Title{User:Foo}
1787 * @endcode
1788 *
1789 * @return Title Root title
1790 * @since 1.20
1791 */
1792 public function getRootTitle() {
1793 $title = self::makeTitleSafe( $this->mNamespace, $this->getRootText() );
1794 Assert::postcondition(
1795 $title !== null,
1796 'makeTitleSafe() should always return a Title for the text returned by getRootText().'
1797 );
1798 return $title;
1799 }
1800
1801 /**
1802 * Get the base page name without a namespace, i.e. the part before the subpage name
1803 *
1804 * @note the return value may contain trailing whitespace and is thus
1805 * not safe for use with makeTitle or TitleValue.
1806 *
1807 * @par Example:
1808 * @code
1809 * Title::newFromText('User:Foo/Bar/Baz')->getBaseText();
1810 * # returns: 'Foo/Bar'
1811 * @endcode
1812 *
1813 * @return string Base name
1814 */
1815 public function getBaseText() {
1816 $text = $this->getText();
1817 if (
1818 !MediaWikiServices::getInstance()->getNamespaceInfo()->
1819 hasSubpages( $this->mNamespace )
1820 ) {
1821 return $text;
1822 }
1823
1824 $lastSlashPos = strrpos( $text, '/' );
1825 // Don't discard the real title if there's no subpage involved
1826 if ( $lastSlashPos === false ) {
1827 return $text;
1828 }
1829
1830 return substr( $text, 0, $lastSlashPos );
1831 }
1832
1833 /**
1834 * Get the base page name title, i.e. the part before the subpage name.
1835 *
1836 * @par Example:
1837 * @code
1838 * Title::newFromText('User:Foo/Bar/Baz')->getBaseTitle();
1839 * # returns: Title{User:Foo/Bar}
1840 * @endcode
1841 *
1842 * @return Title Base title
1843 * @since 1.20
1844 */
1845 public function getBaseTitle() {
1846 $title = self::makeTitleSafe( $this->mNamespace, $this->getBaseText() );
1847 Assert::postcondition(
1848 $title !== null,
1849 'makeTitleSafe() should always return a Title for the text returned by getBaseText().'
1850 );
1851 return $title;
1852 }
1853
1854 /**
1855 * Get the lowest-level subpage name, i.e. the rightmost part after any slashes
1856 *
1857 * @par Example:
1858 * @code
1859 * Title::newFromText('User:Foo/Bar/Baz')->getSubpageText();
1860 * # returns: "Baz"
1861 * @endcode
1862 *
1863 * @return string Subpage name
1864 */
1865 public function getSubpageText() {
1866 if (
1867 !MediaWikiServices::getInstance()->getNamespaceInfo()->
1868 hasSubpages( $this->mNamespace )
1869 ) {
1870 return $this->mTextform;
1871 }
1872 $parts = explode( '/', $this->mTextform );
1873 return $parts[count( $parts ) - 1];
1874 }
1875
1876 /**
1877 * Get the title for a subpage of the current page
1878 *
1879 * @par Example:
1880 * @code
1881 * Title::newFromText('User:Foo/Bar/Baz')->getSubpage("Asdf");
1882 * # returns: Title{User:Foo/Bar/Baz/Asdf}
1883 * @endcode
1884 *
1885 * @param string $text The subpage name to add to the title
1886 * @return Title|null Subpage title, or null on an error
1887 * @since 1.20
1888 */
1889 public function getSubpage( $text ) {
1890 return self::makeTitleSafe(
1891 $this->mNamespace,
1892 $this->getText() . '/' . $text,
1893 '',
1894 $this->mInterwiki
1895 );
1896 }
1897
1898 /**
1899 * Get a URL-encoded form of the subpage text
1900 *
1901 * @return string URL-encoded subpage name
1902 */
1903 public function getSubpageUrlForm() {
1904 $text = $this->getSubpageText();
1905 $text = wfUrlencode( strtr( $text, ' ', '_' ) );
1906 return $text;
1907 }
1908
1909 /**
1910 * Get a URL-encoded title (not an actual URL) including interwiki
1911 *
1912 * @return string The URL-encoded form
1913 */
1914 public function getPrefixedURL() {
1915 $s = $this->prefix( $this->mDbkeyform );
1916 $s = wfUrlencode( strtr( $s, ' ', '_' ) );
1917 return $s;
1918 }
1919
1920 /**
1921 * Helper to fix up the get{Canonical,Full,Link,Local,Internal}URL args
1922 * get{Canonical,Full,Link,Local,Internal}URL methods accepted an optional
1923 * second argument named variant. This was deprecated in favor
1924 * of passing an array of option with a "variant" key
1925 * Once $query2 is removed for good, this helper can be dropped
1926 * and the wfArrayToCgi moved to getLocalURL();
1927 *
1928 * @since 1.19 (r105919)
1929 * @param array|string $query
1930 * @param string|string[]|bool $query2
1931 * @return string
1932 */
1933 private static function fixUrlQueryArgs( $query, $query2 = false ) {
1934 if ( $query2 !== false ) {
1935 wfDeprecated( "Title::get{Canonical,Full,Link,Local,Internal}URL " .
1936 "method called with a second parameter is deprecated. Add your " .
1937 "parameter to an array passed as the first parameter.", "1.19" );
1938 }
1939 if ( is_array( $query ) ) {
1940 $query = wfArrayToCgi( $query );
1941 }
1942 if ( $query2 ) {
1943 if ( is_string( $query2 ) ) {
1944 // $query2 is a string, we will consider this to be
1945 // a deprecated $variant argument and add it to the query
1946 $query2 = wfArrayToCgi( [ 'variant' => $query2 ] );
1947 } else {
1948 $query2 = wfArrayToCgi( $query2 );
1949 }
1950 // If we have $query content add a & to it first
1951 if ( $query ) {
1952 $query .= '&';
1953 }
1954 // Now append the queries together
1955 $query .= $query2;
1956 }
1957 return $query;
1958 }
1959
1960 /**
1961 * Get a real URL referring to this title, with interwiki link and
1962 * fragment
1963 *
1964 * @see self::getLocalURL for the arguments.
1965 * @see wfExpandUrl
1966 * @param string|string[] $query
1967 * @param string|string[]|bool $query2
1968 * @param string|int|null $proto Protocol type to use in URL
1969 * @return string The URL
1970 */
1971 public function getFullURL( $query = '', $query2 = false, $proto = PROTO_RELATIVE ) {
1972 $query = self::fixUrlQueryArgs( $query, $query2 );
1973
1974 # Hand off all the decisions on urls to getLocalURL
1975 $url = $this->getLocalURL( $query );
1976
1977 # Expand the url to make it a full url. Note that getLocalURL has the
1978 # potential to output full urls for a variety of reasons, so we use
1979 # wfExpandUrl instead of simply prepending $wgServer
1980 $url = wfExpandUrl( $url, $proto );
1981
1982 # Finally, add the fragment.
1983 $url .= $this->getFragmentForURL();
1984 // Avoid PHP 7.1 warning from passing $this by reference
1985 $titleRef = $this;
1986 Hooks::run( 'GetFullURL', [ &$titleRef, &$url, $query ] );
1987 return $url;
1988 }
1989
1990 /**
1991 * Get a url appropriate for making redirects based on an untrusted url arg
1992 *
1993 * This is basically the same as getFullUrl(), but in the case of external
1994 * interwikis, we send the user to a landing page, to prevent possible
1995 * phishing attacks and the like.
1996 *
1997 * @note Uses current protocol by default, since technically relative urls
1998 * aren't allowed in redirects per HTTP spec, so this is not suitable for
1999 * places where the url gets cached, as might pollute between
2000 * https and non-https users.
2001 * @see self::getLocalURL for the arguments.
2002 * @param array|string $query
2003 * @param string $proto Protocol type to use in URL
2004 * @return string A url suitable to use in an HTTP location header.
2005 */
2006 public function getFullUrlForRedirect( $query = '', $proto = PROTO_CURRENT ) {
2007 $target = $this;
2008 if ( $this->isExternal() ) {
2009 $target = SpecialPage::getTitleFor(
2010 'GoToInterwiki',
2011 $this->getPrefixedDBkey()
2012 );
2013 }
2014 return $target->getFullURL( $query, false, $proto );
2015 }
2016
2017 /**
2018 * Get a URL with no fragment or server name (relative URL) from a Title object.
2019 * If this page is generated with action=render, however,
2020 * $wgServer is prepended to make an absolute URL.
2021 *
2022 * @see self::getFullURL to always get an absolute URL.
2023 * @see self::getLinkURL to always get a URL that's the simplest URL that will be
2024 * valid to link, locally, to the current Title.
2025 * @see self::newFromText to produce a Title object.
2026 *
2027 * @param string|string[] $query An optional query string,
2028 * not used for interwiki links. Can be specified as an associative array as well,
2029 * e.g., [ 'action' => 'edit' ] (keys and values will be URL-escaped).
2030 * Some query patterns will trigger various shorturl path replacements.
2031 * @param string|string[]|bool $query2 An optional secondary query array. This one MUST
2032 * be an array. If a string is passed it will be interpreted as a deprecated
2033 * variant argument and urlencoded into a variant= argument.
2034 * This second query argument will be added to the $query
2035 * The second parameter is deprecated since 1.19. Pass it as a key,value
2036 * pair in the first parameter array instead.
2037 *
2038 * @return string String of the URL.
2039 */
2040 public function getLocalURL( $query = '', $query2 = false ) {
2041 global $wgArticlePath, $wgScript, $wgServer, $wgRequest;
2042
2043 $query = self::fixUrlQueryArgs( $query, $query2 );
2044
2045 $interwiki = self::getInterwikiLookup()->fetch( $this->mInterwiki );
2046 if ( $interwiki ) {
2047 $namespace = $this->getNsText();
2048 if ( $namespace != '' ) {
2049 # Can this actually happen? Interwikis shouldn't be parsed.
2050 # Yes! It can in interwiki transclusion. But... it probably shouldn't.
2051 $namespace .= ':';
2052 }
2053 $url = $interwiki->getURL( $namespace . $this->mDbkeyform );
2054 $url = wfAppendQuery( $url, $query );
2055 } else {
2056 $dbkey = wfUrlencode( $this->getPrefixedDBkey() );
2057 if ( $query == '' ) {
2058 $url = str_replace( '$1', $dbkey, $wgArticlePath );
2059 // Avoid PHP 7.1 warning from passing $this by reference
2060 $titleRef = $this;
2061 Hooks::run( 'GetLocalURL::Article', [ &$titleRef, &$url ] );
2062 } else {
2063 global $wgVariantArticlePath, $wgActionPaths;
2064 $url = false;
2065 $matches = [];
2066
2067 if ( !empty( $wgActionPaths )
2068 && preg_match( '/^(.*&|)action=([^&]*)(&(.*)|)$/', $query, $matches )
2069 ) {
2070 $action = urldecode( $matches[2] );
2071 if ( isset( $wgActionPaths[$action] ) ) {
2072 $query = $matches[1];
2073 if ( isset( $matches[4] ) ) {
2074 $query .= $matches[4];
2075 }
2076 $url = str_replace( '$1', $dbkey, $wgActionPaths[$action] );
2077 if ( $query != '' ) {
2078 $url = wfAppendQuery( $url, $query );
2079 }
2080 }
2081 }
2082
2083 if ( $url === false
2084 && $wgVariantArticlePath
2085 && preg_match( '/^variant=([^&]*)$/', $query, $matches )
2086 && $this->getPageLanguage()->equals(
2087 MediaWikiServices::getInstance()->getContentLanguage() )
2088 && $this->getPageLanguage()->hasVariants()
2089 ) {
2090 $variant = urldecode( $matches[1] );
2091 if ( $this->getPageLanguage()->hasVariant( $variant ) ) {
2092 // Only do the variant replacement if the given variant is a valid
2093 // variant for the page's language.
2094 $url = str_replace( '$2', urlencode( $variant ), $wgVariantArticlePath );
2095 $url = str_replace( '$1', $dbkey, $url );
2096 }
2097 }
2098
2099 if ( $url === false ) {
2100 if ( $query == '-' ) {
2101 $query = '';
2102 }
2103 $url = "{$wgScript}?title={$dbkey}&{$query}";
2104 }
2105 }
2106 // Avoid PHP 7.1 warning from passing $this by reference
2107 $titleRef = $this;
2108 Hooks::run( 'GetLocalURL::Internal', [ &$titleRef, &$url, $query ] );
2109
2110 // @todo FIXME: This causes breakage in various places when we
2111 // actually expected a local URL and end up with dupe prefixes.
2112 if ( $wgRequest->getVal( 'action' ) == 'render' ) {
2113 $url = $wgServer . $url;
2114 }
2115 }
2116 // Avoid PHP 7.1 warning from passing $this by reference
2117 $titleRef = $this;
2118 Hooks::run( 'GetLocalURL', [ &$titleRef, &$url, $query ] );
2119 return $url;
2120 }
2121
2122 /**
2123 * Get a URL that's the simplest URL that will be valid to link, locally,
2124 * to the current Title. It includes the fragment, but does not include
2125 * the server unless action=render is used (or the link is external). If
2126 * there's a fragment but the prefixed text is empty, we just return a link
2127 * to the fragment.
2128 *
2129 * The result obviously should not be URL-escaped, but does need to be
2130 * HTML-escaped if it's being output in HTML.
2131 *
2132 * @param string|string[] $query
2133 * @param bool $query2
2134 * @param string|int|bool $proto A PROTO_* constant on how the URL should be expanded,
2135 * or false (default) for no expansion
2136 * @see self::getLocalURL for the arguments.
2137 * @return string The URL
2138 */
2139 public function getLinkURL( $query = '', $query2 = false, $proto = false ) {
2140 if ( $this->isExternal() || $proto !== false ) {
2141 $ret = $this->getFullURL( $query, $query2, $proto );
2142 } elseif ( $this->getPrefixedText() === '' && $this->hasFragment() ) {
2143 $ret = $this->getFragmentForURL();
2144 } else {
2145 $ret = $this->getLocalURL( $query, $query2 ) . $this->getFragmentForURL();
2146 }
2147 return $ret;
2148 }
2149
2150 /**
2151 * Get the URL form for an internal link.
2152 * - Used in various CDN-related code, in case we have a different
2153 * internal hostname for the server from the exposed one.
2154 *
2155 * This uses $wgInternalServer to qualify the path, or $wgServer
2156 * if $wgInternalServer is not set. If the server variable used is
2157 * protocol-relative, the URL will be expanded to http://
2158 *
2159 * @see self::getLocalURL for the arguments.
2160 * @param string|string[] $query
2161 * @param string|bool $query2 Deprecated
2162 * @return string The URL
2163 */
2164 public function getInternalURL( $query = '', $query2 = false ) {
2165 global $wgInternalServer, $wgServer;
2166 $query = self::fixUrlQueryArgs( $query, $query2 );
2167 $server = $wgInternalServer !== false ? $wgInternalServer : $wgServer;
2168 $url = wfExpandUrl( $server . $this->getLocalURL( $query ), PROTO_HTTP );
2169 // Avoid PHP 7.1 warning from passing $this by reference
2170 $titleRef = $this;
2171 Hooks::run( 'GetInternalURL', [ &$titleRef, &$url, $query ] );
2172 return $url;
2173 }
2174
2175 /**
2176 * Get the URL for a canonical link, for use in things like IRC and
2177 * e-mail notifications. Uses $wgCanonicalServer and the
2178 * GetCanonicalURL hook.
2179 *
2180 * NOTE: Unlike getInternalURL(), the canonical URL includes the fragment
2181 *
2182 * @see self::getLocalURL for the arguments.
2183 * @param string|string[] $query
2184 * @param string|bool $query2 Deprecated
2185 * @return string The URL
2186 * @since 1.18
2187 */
2188 public function getCanonicalURL( $query = '', $query2 = false ) {
2189 $query = self::fixUrlQueryArgs( $query, $query2 );
2190 $url = wfExpandUrl( $this->getLocalURL( $query ) . $this->getFragmentForURL(), PROTO_CANONICAL );
2191 // Avoid PHP 7.1 warning from passing $this by reference
2192 $titleRef = $this;
2193 Hooks::run( 'GetCanonicalURL', [ &$titleRef, &$url, $query ] );
2194 return $url;
2195 }
2196
2197 /**
2198 * Get the edit URL for this Title
2199 *
2200 * @return string The URL, or a null string if this is an interwiki link
2201 */
2202 public function getEditURL() {
2203 if ( $this->isExternal() ) {
2204 return '';
2205 }
2206 $s = $this->getLocalURL( 'action=edit' );
2207
2208 return $s;
2209 }
2210
2211 /**
2212 * Can $user perform $action on this page?
2213 * This skips potentially expensive cascading permission checks
2214 * as well as avoids expensive error formatting
2215 *
2216 * Suitable for use for nonessential UI controls in common cases, but
2217 * _not_ for functional access control.
2218 *
2219 * May provide false positives, but should never provide a false negative.
2220 *
2221 * @param string $action Action that permission needs to be checked for
2222 * @param User|null $user User to check (since 1.19); $wgUser will be used if not provided.
2223 *
2224 * @return bool
2225 * @throws Exception
2226 *
2227 * @deprecated since 1.33,
2228 * use MediaWikiServices::getInstance()->getPermissionManager()->quickUserCan(..) instead
2229 *
2230 */
2231 public function quickUserCan( $action, $user = null ) {
2232 return $this->userCan( $action, $user, false );
2233 }
2234
2235 /**
2236 * Can $user perform $action on this page?
2237 *
2238 * @param string $action Action that permission needs to be checked for
2239 * @param User|null $user User to check (since 1.19); $wgUser will be used if not
2240 * provided.
2241 * @param string $rigor Same format as Title::getUserPermissionsErrors()
2242 *
2243 * @return bool
2244 * @throws Exception
2245 *
2246 * @deprecated since 1.33,
2247 * use MediaWikiServices::getInstance()->getPermissionManager()->userCan(..) instead
2248 *
2249 */
2250 public function userCan( $action, $user = null, $rigor = PermissionManager::RIGOR_SECURE ) {
2251 if ( !$user instanceof User ) {
2252 global $wgUser;
2253 $user = $wgUser;
2254 }
2255
2256 // TODO: this is for b/c, eventually will be removed
2257 if ( $rigor === true ) {
2258 $rigor = PermissionManager::RIGOR_SECURE; // b/c
2259 } elseif ( $rigor === false ) {
2260 $rigor = PermissionManager::RIGOR_QUICK; // b/c
2261 }
2262
2263 return MediaWikiServices::getInstance()->getPermissionManager()
2264 ->userCan( $action, $user, $this, $rigor );
2265 }
2266
2267 /**
2268 * Can $user perform $action on this page?
2269 *
2270 * @todo FIXME: This *does not* check throttles (User::pingLimiter()).
2271 *
2272 * @param string $action Action that permission needs to be checked for
2273 * @param User $user User to check
2274 * @param string $rigor One of (quick,full,secure)
2275 * - quick : does cheap permission checks from replica DBs (usable for GUI creation)
2276 * - full : does cheap and expensive checks possibly from a replica DB
2277 * - secure : does cheap and expensive checks, using the master as needed
2278 * @param array $ignoreErrors Array of Strings Set this to a list of message keys
2279 * whose corresponding errors may be ignored.
2280 *
2281 * @return array Array of arrays of the arguments to wfMessage to explain permissions problems.
2282 * @throws Exception
2283 *
2284 * @deprecated since 1.33,
2285 * use MediaWikiServices::getInstance()->getPermissionManager()->getPermissionErrors()
2286 *
2287 */
2288 public function getUserPermissionsErrors(
2289 $action, $user, $rigor = PermissionManager::RIGOR_SECURE, $ignoreErrors = []
2290 ) {
2291 // TODO: this is for b/c, eventually will be removed
2292 if ( $rigor === true ) {
2293 $rigor = PermissionManager::RIGOR_SECURE; // b/c
2294 } elseif ( $rigor === false ) {
2295 $rigor = PermissionManager::RIGOR_QUICK; // b/c
2296 }
2297
2298 return MediaWikiServices::getInstance()->getPermissionManager()
2299 ->getPermissionErrors( $action, $user, $this, $rigor, $ignoreErrors );
2300 }
2301
2302 /**
2303 * Add the resulting error code to the errors array
2304 *
2305 * @param array $errors List of current errors
2306 * @param array|string|MessageSpecifier|false $result Result of errors
2307 *
2308 * @return array List of errors
2309 */
2310 private function resultToError( $errors, $result ) {
2311 if ( is_array( $result ) && count( $result ) && !is_array( $result[0] ) ) {
2312 // A single array representing an error
2313 $errors[] = $result;
2314 } elseif ( is_array( $result ) && is_array( $result[0] ) ) {
2315 // A nested array representing multiple errors
2316 $errors = array_merge( $errors, $result );
2317 } elseif ( $result !== '' && is_string( $result ) ) {
2318 // A string representing a message-id
2319 $errors[] = [ $result ];
2320 } elseif ( $result instanceof MessageSpecifier ) {
2321 // A message specifier representing an error
2322 $errors[] = [ $result ];
2323 } elseif ( $result === false ) {
2324 // a generic "We don't want them to do that"
2325 $errors[] = [ 'badaccess-group0' ];
2326 }
2327 return $errors;
2328 }
2329
2330 /**
2331 * Get a filtered list of all restriction types supported by this wiki.
2332 * @param bool $exists True to get all restriction types that apply to
2333 * titles that do exist, False for all restriction types that apply to
2334 * titles that do not exist
2335 * @return array
2336 */
2337 public static function getFilteredRestrictionTypes( $exists = true ) {
2338 global $wgRestrictionTypes;
2339 $types = $wgRestrictionTypes;
2340 if ( $exists ) {
2341 # Remove the create restriction for existing titles
2342 $types = array_diff( $types, [ 'create' ] );
2343 } else {
2344 # Only the create and upload restrictions apply to non-existing titles
2345 $types = array_intersect( $types, [ 'create', 'upload' ] );
2346 }
2347 return $types;
2348 }
2349
2350 /**
2351 * Returns restriction types for the current Title
2352 *
2353 * @return array Applicable restriction types
2354 */
2355 public function getRestrictionTypes() {
2356 if ( $this->isSpecialPage() ) {
2357 return [];
2358 }
2359
2360 $types = self::getFilteredRestrictionTypes( $this->exists() );
2361
2362 if ( $this->mNamespace != NS_FILE ) {
2363 # Remove the upload restriction for non-file titles
2364 $types = array_diff( $types, [ 'upload' ] );
2365 }
2366
2367 Hooks::run( 'TitleGetRestrictionTypes', [ $this, &$types ] );
2368
2369 wfDebug( __METHOD__ . ': applicable restrictions to [[' .
2370 $this->getPrefixedText() . ']] are {' . implode( ',', $types ) . "}\n" );
2371
2372 return $types;
2373 }
2374
2375 /**
2376 * Is this title subject to title protection?
2377 * Title protection is the one applied against creation of such title.
2378 *
2379 * @return array|bool An associative array representing any existent title
2380 * protection, or false if there's none.
2381 */
2382 public function getTitleProtection() {
2383 $protection = $this->getTitleProtectionInternal();
2384 if ( $protection ) {
2385 if ( $protection['permission'] == 'sysop' ) {
2386 $protection['permission'] = 'editprotected'; // B/C
2387 }
2388 if ( $protection['permission'] == 'autoconfirmed' ) {
2389 $protection['permission'] = 'editsemiprotected'; // B/C
2390 }
2391 }
2392 return $protection;
2393 }
2394
2395 /**
2396 * Fetch title protection settings
2397 *
2398 * To work correctly, $this->loadRestrictions() needs to have access to the
2399 * actual protections in the database without munging 'sysop' =>
2400 * 'editprotected' and 'autoconfirmed' => 'editsemiprotected'. Other
2401 * callers probably want $this->getTitleProtection() instead.
2402 *
2403 * @return array|bool
2404 */
2405 protected function getTitleProtectionInternal() {
2406 // Can't protect pages in special namespaces
2407 if ( $this->mNamespace < 0 ) {
2408 return false;
2409 }
2410
2411 // Can't protect pages that exist.
2412 if ( $this->exists() ) {
2413 return false;
2414 }
2415
2416 if ( $this->mTitleProtection === null ) {
2417 $dbr = wfGetDB( DB_REPLICA );
2418 $commentStore = CommentStore::getStore();
2419 $commentQuery = $commentStore->getJoin( 'pt_reason' );
2420 $res = $dbr->select(
2421 [ 'protected_titles' ] + $commentQuery['tables'],
2422 [
2423 'user' => 'pt_user',
2424 'expiry' => 'pt_expiry',
2425 'permission' => 'pt_create_perm'
2426 ] + $commentQuery['fields'],
2427 [ 'pt_namespace' => $this->mNamespace, 'pt_title' => $this->mDbkeyform ],
2428 __METHOD__,
2429 [],
2430 $commentQuery['joins']
2431 );
2432
2433 // fetchRow returns false if there are no rows.
2434 $row = $dbr->fetchRow( $res );
2435 if ( $row ) {
2436 $this->mTitleProtection = [
2437 'user' => $row['user'],
2438 'expiry' => $dbr->decodeExpiry( $row['expiry'] ),
2439 'permission' => $row['permission'],
2440 'reason' => $commentStore->getComment( 'pt_reason', $row )->text,
2441 ];
2442 } else {
2443 $this->mTitleProtection = false;
2444 }
2445 }
2446 return $this->mTitleProtection;
2447 }
2448
2449 /**
2450 * Remove any title protection due to page existing
2451 */
2452 public function deleteTitleProtection() {
2453 $dbw = wfGetDB( DB_MASTER );
2454
2455 $dbw->delete(
2456 'protected_titles',
2457 [ 'pt_namespace' => $this->mNamespace, 'pt_title' => $this->mDbkeyform ],
2458 __METHOD__
2459 );
2460 $this->mTitleProtection = false;
2461 }
2462
2463 /**
2464 * Is this page "semi-protected" - the *only* protection levels are listed
2465 * in $wgSemiprotectedRestrictionLevels?
2466 *
2467 * @param string $action Action to check (default: edit)
2468 * @return bool
2469 */
2470 public function isSemiProtected( $action = 'edit' ) {
2471 global $wgSemiprotectedRestrictionLevels;
2472
2473 $restrictions = $this->getRestrictions( $action );
2474 $semi = $wgSemiprotectedRestrictionLevels;
2475 if ( !$restrictions || !$semi ) {
2476 // Not protected, or all protection is full protection
2477 return false;
2478 }
2479
2480 // Remap autoconfirmed to editsemiprotected for BC
2481 foreach ( array_keys( $semi, 'autoconfirmed' ) as $key ) {
2482 $semi[$key] = 'editsemiprotected';
2483 }
2484 foreach ( array_keys( $restrictions, 'autoconfirmed' ) as $key ) {
2485 $restrictions[$key] = 'editsemiprotected';
2486 }
2487
2488 return !array_diff( $restrictions, $semi );
2489 }
2490
2491 /**
2492 * Does the title correspond to a protected article?
2493 *
2494 * @param string $action The action the page is protected from,
2495 * by default checks all actions.
2496 * @return bool
2497 */
2498 public function isProtected( $action = '' ) {
2499 global $wgRestrictionLevels;
2500
2501 $restrictionTypes = $this->getRestrictionTypes();
2502
2503 # Special pages have inherent protection
2504 if ( $this->isSpecialPage() ) {
2505 return true;
2506 }
2507
2508 # Check regular protection levels
2509 foreach ( $restrictionTypes as $type ) {
2510 if ( $action == $type || $action == '' ) {
2511 $r = $this->getRestrictions( $type );
2512 foreach ( $wgRestrictionLevels as $level ) {
2513 if ( in_array( $level, $r ) && $level != '' ) {
2514 return true;
2515 }
2516 }
2517 }
2518 }
2519
2520 return false;
2521 }
2522
2523 /**
2524 * Determines if $user is unable to edit this page because it has been protected
2525 * by $wgNamespaceProtection.
2526 *
2527 * @param User $user User object to check permissions
2528 * @return bool
2529 */
2530 public function isNamespaceProtected( User $user ) {
2531 global $wgNamespaceProtection;
2532
2533 if ( isset( $wgNamespaceProtection[$this->mNamespace] ) ) {
2534 foreach ( (array)$wgNamespaceProtection[$this->mNamespace] as $right ) {
2535 if ( $right != '' && !$user->isAllowed( $right ) ) {
2536 return true;
2537 }
2538 }
2539 }
2540 return false;
2541 }
2542
2543 /**
2544 * Cascading protection: Return true if cascading restrictions apply to this page, false if not.
2545 *
2546 * @return bool If the page is subject to cascading restrictions.
2547 */
2548 public function isCascadeProtected() {
2549 list( $sources, /* $restrictions */ ) = $this->getCascadeProtectionSources( false );
2550 return ( $sources > 0 );
2551 }
2552
2553 /**
2554 * Determines whether cascading protection sources have already been loaded from
2555 * the database.
2556 *
2557 * @param bool $getPages True to check if the pages are loaded, or false to check
2558 * if the status is loaded.
2559 * @return bool Whether or not the specified information has been loaded
2560 * @since 1.23
2561 */
2562 public function areCascadeProtectionSourcesLoaded( $getPages = true ) {
2563 return $getPages ? $this->mCascadeSources !== null : $this->mHasCascadingRestrictions !== null;
2564 }
2565
2566 /**
2567 * Cascading protection: Get the source of any cascading restrictions on this page.
2568 *
2569 * @param bool $getPages Whether or not to retrieve the actual pages
2570 * that the restrictions have come from and the actual restrictions
2571 * themselves.
2572 * @return array Two elements: First is an array of Title objects of the
2573 * pages from which cascading restrictions have come, false for
2574 * none, or true if such restrictions exist but $getPages was not
2575 * set. Second is an array like that returned by
2576 * Title::getAllRestrictions(), or an empty array if $getPages is
2577 * false.
2578 */
2579 public function getCascadeProtectionSources( $getPages = true ) {
2580 $pagerestrictions = [];
2581
2582 if ( $this->mCascadeSources !== null && $getPages ) {
2583 return [ $this->mCascadeSources, $this->mCascadingRestrictions ];
2584 } elseif ( $this->mHasCascadingRestrictions !== null && !$getPages ) {
2585 return [ $this->mHasCascadingRestrictions, $pagerestrictions ];
2586 }
2587
2588 $dbr = wfGetDB( DB_REPLICA );
2589
2590 if ( $this->mNamespace == NS_FILE ) {
2591 $tables = [ 'imagelinks', 'page_restrictions' ];
2592 $where_clauses = [
2593 'il_to' => $this->mDbkeyform,
2594 'il_from=pr_page',
2595 'pr_cascade' => 1
2596 ];
2597 } else {
2598 $tables = [ 'templatelinks', 'page_restrictions' ];
2599 $where_clauses = [
2600 'tl_namespace' => $this->mNamespace,
2601 'tl_title' => $this->mDbkeyform,
2602 'tl_from=pr_page',
2603 'pr_cascade' => 1
2604 ];
2605 }
2606
2607 if ( $getPages ) {
2608 $cols = [ 'pr_page', 'page_namespace', 'page_title',
2609 'pr_expiry', 'pr_type', 'pr_level' ];
2610 $where_clauses[] = 'page_id=pr_page';
2611 $tables[] = 'page';
2612 } else {
2613 $cols = [ 'pr_expiry' ];
2614 }
2615
2616 $res = $dbr->select( $tables, $cols, $where_clauses, __METHOD__ );
2617
2618 $sources = $getPages ? [] : false;
2619 $now = wfTimestampNow();
2620
2621 foreach ( $res as $row ) {
2622 $expiry = $dbr->decodeExpiry( $row->pr_expiry );
2623 if ( $expiry > $now ) {
2624 if ( $getPages ) {
2625 $page_id = $row->pr_page;
2626 $page_ns = $row->page_namespace;
2627 $page_title = $row->page_title;
2628 $sources[$page_id] = self::makeTitle( $page_ns, $page_title );
2629 # Add groups needed for each restriction type if its not already there
2630 # Make sure this restriction type still exists
2631
2632 if ( !isset( $pagerestrictions[$row->pr_type] ) ) {
2633 $pagerestrictions[$row->pr_type] = [];
2634 }
2635
2636 if (
2637 isset( $pagerestrictions[$row->pr_type] )
2638 && !in_array( $row->pr_level, $pagerestrictions[$row->pr_type] )
2639 ) {
2640 $pagerestrictions[$row->pr_type][] = $row->pr_level;
2641 }
2642 } else {
2643 $sources = true;
2644 }
2645 }
2646 }
2647
2648 if ( $getPages ) {
2649 $this->mCascadeSources = $sources;
2650 $this->mCascadingRestrictions = $pagerestrictions;
2651 } else {
2652 $this->mHasCascadingRestrictions = $sources;
2653 }
2654
2655 return [ $sources, $pagerestrictions ];
2656 }
2657
2658 /**
2659 * Accessor for mRestrictionsLoaded
2660 *
2661 * @return bool Whether or not the page's restrictions have already been
2662 * loaded from the database
2663 * @since 1.23
2664 */
2665 public function areRestrictionsLoaded() {
2666 return $this->mRestrictionsLoaded;
2667 }
2668
2669 /**
2670 * Accessor/initialisation for mRestrictions
2671 *
2672 * @param string $action Action that permission needs to be checked for
2673 * @return array Restriction levels needed to take the action. All levels are
2674 * required. Note that restriction levels are normally user rights, but 'sysop'
2675 * and 'autoconfirmed' are also allowed for backwards compatibility. These should
2676 * be mapped to 'editprotected' and 'editsemiprotected' respectively.
2677 */
2678 public function getRestrictions( $action ) {
2679 if ( !$this->mRestrictionsLoaded ) {
2680 $this->loadRestrictions();
2681 }
2682 return $this->mRestrictions[$action] ?? [];
2683 }
2684
2685 /**
2686 * Accessor/initialisation for mRestrictions
2687 *
2688 * @return array Keys are actions, values are arrays as returned by
2689 * Title::getRestrictions()
2690 * @since 1.23
2691 */
2692 public function getAllRestrictions() {
2693 if ( !$this->mRestrictionsLoaded ) {
2694 $this->loadRestrictions();
2695 }
2696 return $this->mRestrictions;
2697 }
2698
2699 /**
2700 * Get the expiry time for the restriction against a given action
2701 *
2702 * @param string $action
2703 * @return string|bool 14-char timestamp, or 'infinity' if the page is protected forever
2704 * or not protected at all, or false if the action is not recognised.
2705 */
2706 public function getRestrictionExpiry( $action ) {
2707 if ( !$this->mRestrictionsLoaded ) {
2708 $this->loadRestrictions();
2709 }
2710 return $this->mRestrictionsExpiry[$action] ?? false;
2711 }
2712
2713 /**
2714 * Returns cascading restrictions for the current article
2715 *
2716 * @return bool
2717 */
2718 function areRestrictionsCascading() {
2719 if ( !$this->mRestrictionsLoaded ) {
2720 $this->loadRestrictions();
2721 }
2722
2723 return $this->mCascadeRestriction;
2724 }
2725
2726 /**
2727 * Compiles list of active page restrictions from both page table (pre 1.10)
2728 * and page_restrictions table for this existing page.
2729 * Public for usage by LiquidThreads.
2730 *
2731 * @param array $rows Array of db result objects
2732 * @param string|null $oldFashionedRestrictions Comma-separated set of permission keys
2733 * indicating who can move or edit the page from the page table, (pre 1.10) rows.
2734 * Edit and move sections are separated by a colon
2735 * Example: "edit=autoconfirmed,sysop:move=sysop"
2736 */
2737 public function loadRestrictionsFromRows( $rows, $oldFashionedRestrictions = null ) {
2738 // This function will only read rows from a table that we migrated away
2739 // from before adding READ_LATEST support to loadRestrictions, so we
2740 // don't need to support reading from DB_MASTER here.
2741 $dbr = wfGetDB( DB_REPLICA );
2742
2743 $restrictionTypes = $this->getRestrictionTypes();
2744
2745 foreach ( $restrictionTypes as $type ) {
2746 $this->mRestrictions[$type] = [];
2747 $this->mRestrictionsExpiry[$type] = 'infinity';
2748 }
2749
2750 $this->mCascadeRestriction = false;
2751
2752 # Backwards-compatibility: also load the restrictions from the page record (old format).
2753 if ( $oldFashionedRestrictions !== null ) {
2754 $this->mOldRestrictions = $oldFashionedRestrictions;
2755 }
2756
2757 if ( $this->mOldRestrictions === false ) {
2758 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
2759 $linkCache->addLinkObj( $this ); # in case we already had an article ID
2760 $this->mOldRestrictions = $linkCache->getGoodLinkFieldObj( $this, 'restrictions' );
2761 }
2762
2763 if ( $this->mOldRestrictions != '' ) {
2764 foreach ( explode( ':', trim( $this->mOldRestrictions ) ) as $restrict ) {
2765 $temp = explode( '=', trim( $restrict ) );
2766 if ( count( $temp ) == 1 ) {
2767 // old old format should be treated as edit/move restriction
2768 $this->mRestrictions['edit'] = explode( ',', trim( $temp[0] ) );
2769 $this->mRestrictions['move'] = explode( ',', trim( $temp[0] ) );
2770 } else {
2771 $restriction = trim( $temp[1] );
2772 if ( $restriction != '' ) { // some old entries are empty
2773 $this->mRestrictions[$temp[0]] = explode( ',', $restriction );
2774 }
2775 }
2776 }
2777 }
2778
2779 if ( count( $rows ) ) {
2780 # Current system - load second to make them override.
2781 $now = wfTimestampNow();
2782
2783 # Cycle through all the restrictions.
2784 foreach ( $rows as $row ) {
2785 // Don't take care of restrictions types that aren't allowed
2786 if ( !in_array( $row->pr_type, $restrictionTypes ) ) {
2787 continue;
2788 }
2789
2790 $expiry = $dbr->decodeExpiry( $row->pr_expiry );
2791
2792 // Only apply the restrictions if they haven't expired!
2793 if ( !$expiry || $expiry > $now ) {
2794 $this->mRestrictionsExpiry[$row->pr_type] = $expiry;
2795 $this->mRestrictions[$row->pr_type] = explode( ',', trim( $row->pr_level ) );
2796
2797 $this->mCascadeRestriction |= $row->pr_cascade;
2798 }
2799 }
2800 }
2801
2802 $this->mRestrictionsLoaded = true;
2803 }
2804
2805 /**
2806 * Load restrictions from the page_restrictions table
2807 *
2808 * @param string|null $oldFashionedRestrictions Comma-separated set of permission keys
2809 * indicating who can move or edit the page from the page table, (pre 1.10) rows.
2810 * Edit and move sections are separated by a colon
2811 * Example: "edit=autoconfirmed,sysop:move=sysop"
2812 * @param int $flags A bit field. If self::READ_LATEST is set, skip replicas and read
2813 * from the master DB.
2814 */
2815 public function loadRestrictions( $oldFashionedRestrictions = null, $flags = 0 ) {
2816 $readLatest = DBAccessObjectUtils::hasFlags( $flags, self::READ_LATEST );
2817 if ( $this->mRestrictionsLoaded && !$readLatest ) {
2818 return;
2819 }
2820
2821 // TODO: should probably pass $flags into getArticleID, but it seems hacky
2822 // to mix READ_LATEST and GAID_FOR_UPDATE, even if they have the same value.
2823 // Maybe deprecate GAID_FOR_UPDATE now that we implement IDBAccessObject?
2824 $id = $this->getArticleID();
2825 if ( $id ) {
2826 $fname = __METHOD__;
2827 $loadRestrictionsFromDb = function ( IDatabase $dbr ) use ( $fname, $id ) {
2828 return iterator_to_array(
2829 $dbr->select(
2830 'page_restrictions',
2831 [ 'pr_type', 'pr_expiry', 'pr_level', 'pr_cascade' ],
2832 [ 'pr_page' => $id ],
2833 $fname
2834 )
2835 );
2836 };
2837
2838 if ( $readLatest ) {
2839 $dbr = wfGetDB( DB_MASTER );
2840 $rows = $loadRestrictionsFromDb( $dbr );
2841 } else {
2842 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
2843 $rows = $cache->getWithSetCallback(
2844 // Page protections always leave a new null revision
2845 $cache->makeKey( 'page-restrictions', 'v1', $id, $this->getLatestRevID() ),
2846 $cache::TTL_DAY,
2847 function ( $curValue, &$ttl, array &$setOpts ) use ( $loadRestrictionsFromDb ) {
2848 $dbr = wfGetDB( DB_REPLICA );
2849
2850 $setOpts += Database::getCacheSetOptions( $dbr );
2851 $lb = MediaWikiServices::getInstance()->getDBLoadBalancer();
2852 if ( $lb->hasOrMadeRecentMasterChanges() ) {
2853 // @TODO: cleanup Title cache and caller assumption mess in general
2854 $ttl = WANObjectCache::TTL_UNCACHEABLE;
2855 }
2856
2857 return $loadRestrictionsFromDb( $dbr );
2858 }
2859 );
2860 }
2861
2862 $this->loadRestrictionsFromRows( $rows, $oldFashionedRestrictions );
2863 } else {
2864 $title_protection = $this->getTitleProtectionInternal();
2865
2866 if ( $title_protection ) {
2867 $now = wfTimestampNow();
2868 $expiry = wfGetDB( DB_REPLICA )->decodeExpiry( $title_protection['expiry'] );
2869
2870 if ( !$expiry || $expiry > $now ) {
2871 // Apply the restrictions
2872 $this->mRestrictionsExpiry['create'] = $expiry;
2873 $this->mRestrictions['create'] =
2874 explode( ',', trim( $title_protection['permission'] ) );
2875 } else { // Get rid of the old restrictions
2876 $this->mTitleProtection = false;
2877 }
2878 } else {
2879 $this->mRestrictionsExpiry['create'] = 'infinity';
2880 }
2881 $this->mRestrictionsLoaded = true;
2882 }
2883 }
2884
2885 /**
2886 * Flush the protection cache in this object and force reload from the database.
2887 * This is used when updating protection from WikiPage::doUpdateRestrictions().
2888 */
2889 public function flushRestrictions() {
2890 $this->mRestrictionsLoaded = false;
2891 $this->mTitleProtection = null;
2892 }
2893
2894 /**
2895 * Purge expired restrictions from the page_restrictions table
2896 *
2897 * This will purge no more than $wgUpdateRowsPerQuery page_restrictions rows
2898 */
2899 static function purgeExpiredRestrictions() {
2900 if ( wfReadOnly() ) {
2901 return;
2902 }
2903
2904 DeferredUpdates::addUpdate( new AtomicSectionUpdate(
2905 wfGetDB( DB_MASTER ),
2906 __METHOD__,
2907 function ( IDatabase $dbw, $fname ) {
2908 $config = MediaWikiServices::getInstance()->getMainConfig();
2909 $ids = $dbw->selectFieldValues(
2910 'page_restrictions',
2911 'pr_id',
2912 [ 'pr_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ],
2913 $fname,
2914 [ 'LIMIT' => $config->get( 'UpdateRowsPerQuery' ) ] // T135470
2915 );
2916 if ( $ids ) {
2917 $dbw->delete( 'page_restrictions', [ 'pr_id' => $ids ], $fname );
2918 }
2919 }
2920 ) );
2921
2922 DeferredUpdates::addUpdate( new AtomicSectionUpdate(
2923 wfGetDB( DB_MASTER ),
2924 __METHOD__,
2925 function ( IDatabase $dbw, $fname ) {
2926 $dbw->delete(
2927 'protected_titles',
2928 [ 'pt_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ],
2929 $fname
2930 );
2931 }
2932 ) );
2933 }
2934
2935 /**
2936 * Does this have subpages? (Warning, usually requires an extra DB query.)
2937 *
2938 * @return bool
2939 */
2940 public function hasSubpages() {
2941 if (
2942 !MediaWikiServices::getInstance()->getNamespaceInfo()->
2943 hasSubpages( $this->mNamespace )
2944 ) {
2945 # Duh
2946 return false;
2947 }
2948
2949 # We dynamically add a member variable for the purpose of this method
2950 # alone to cache the result. There's no point in having it hanging
2951 # around uninitialized in every Title object; therefore we only add it
2952 # if needed and don't declare it statically.
2953 if ( $this->mHasSubpages === null ) {
2954 $this->mHasSubpages = false;
2955 $subpages = $this->getSubpages( 1 );
2956 if ( $subpages instanceof TitleArray ) {
2957 $this->mHasSubpages = (bool)$subpages->count();
2958 }
2959 }
2960
2961 return $this->mHasSubpages;
2962 }
2963
2964 /**
2965 * Get all subpages of this page.
2966 *
2967 * @param int $limit Maximum number of subpages to fetch; -1 for no limit
2968 * @return TitleArray|array TitleArray, or empty array if this page's namespace
2969 * doesn't allow subpages
2970 */
2971 public function getSubpages( $limit = -1 ) {
2972 if (
2973 !MediaWikiServices::getInstance()->getNamespaceInfo()->
2974 hasSubpages( $this->mNamespace )
2975 ) {
2976 return [];
2977 }
2978
2979 $dbr = wfGetDB( DB_REPLICA );
2980 $conds['page_namespace'] = $this->mNamespace;
2981 $conds[] = 'page_title ' . $dbr->buildLike( $this->mDbkeyform . '/', $dbr->anyString() );
2982 $options = [];
2983 if ( $limit > -1 ) {
2984 $options['LIMIT'] = $limit;
2985 }
2986 return TitleArray::newFromResult(
2987 $dbr->select( 'page',
2988 [ 'page_id', 'page_namespace', 'page_title', 'page_is_redirect' ],
2989 $conds,
2990 __METHOD__,
2991 $options
2992 )
2993 );
2994 }
2995
2996 /**
2997 * Is there a version of this page in the deletion archive?
2998 *
2999 * @return int The number of archived revisions
3000 */
3001 public function isDeleted() {
3002 if ( $this->mNamespace < 0 ) {
3003 $n = 0;
3004 } else {
3005 $dbr = wfGetDB( DB_REPLICA );
3006
3007 $n = $dbr->selectField( 'archive', 'COUNT(*)',
3008 [ 'ar_namespace' => $this->mNamespace, 'ar_title' => $this->mDbkeyform ],
3009 __METHOD__
3010 );
3011 if ( $this->mNamespace == NS_FILE ) {
3012 $n += $dbr->selectField( 'filearchive', 'COUNT(*)',
3013 [ 'fa_name' => $this->mDbkeyform ],
3014 __METHOD__
3015 );
3016 }
3017 }
3018 return (int)$n;
3019 }
3020
3021 /**
3022 * Is there a version of this page in the deletion archive?
3023 *
3024 * @return bool
3025 */
3026 public function isDeletedQuick() {
3027 if ( $this->mNamespace < 0 ) {
3028 return false;
3029 }
3030 $dbr = wfGetDB( DB_REPLICA );
3031 $deleted = (bool)$dbr->selectField( 'archive', '1',
3032 [ 'ar_namespace' => $this->mNamespace, 'ar_title' => $this->mDbkeyform ],
3033 __METHOD__
3034 );
3035 if ( !$deleted && $this->mNamespace == NS_FILE ) {
3036 $deleted = (bool)$dbr->selectField( 'filearchive', '1',
3037 [ 'fa_name' => $this->mDbkeyform ],
3038 __METHOD__
3039 );
3040 }
3041 return $deleted;
3042 }
3043
3044 /**
3045 * Get the article ID for this Title from the link cache,
3046 * adding it if necessary
3047 *
3048 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select
3049 * for update
3050 * @return int The ID
3051 */
3052 public function getArticleID( $flags = 0 ) {
3053 if ( $this->mNamespace < 0 ) {
3054 $this->mArticleID = 0;
3055 return $this->mArticleID;
3056 }
3057 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3058 if ( $flags & self::GAID_FOR_UPDATE ) {
3059 $oldUpdate = $linkCache->forUpdate( true );
3060 $linkCache->clearLink( $this );
3061 $this->mArticleID = $linkCache->addLinkObj( $this );
3062 $linkCache->forUpdate( $oldUpdate );
3063 } elseif ( $this->mArticleID == -1 ) {
3064 $this->mArticleID = $linkCache->addLinkObj( $this );
3065 }
3066 return $this->mArticleID;
3067 }
3068
3069 /**
3070 * Is this an article that is a redirect page?
3071 * Uses link cache, adding it if necessary
3072 *
3073 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3074 * @return bool
3075 */
3076 public function isRedirect( $flags = 0 ) {
3077 if ( !is_null( $this->mRedirect ) ) {
3078 return $this->mRedirect;
3079 }
3080 if ( !$this->getArticleID( $flags ) ) {
3081 $this->mRedirect = false;
3082 return $this->mRedirect;
3083 }
3084
3085 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3086 $linkCache->addLinkObj( $this ); # in case we already had an article ID
3087 $cached = $linkCache->getGoodLinkFieldObj( $this, 'redirect' );
3088 if ( $cached === null ) {
3089 # Trust LinkCache's state over our own
3090 # LinkCache is telling us that the page doesn't exist, despite there being cached
3091 # data relating to an existing page in $this->mArticleID. Updaters should clear
3092 # LinkCache as appropriate, or use $flags = Title::GAID_FOR_UPDATE. If that flag is
3093 # set, then LinkCache will definitely be up to date here, since getArticleID() forces
3094 # LinkCache to refresh its data from the master.
3095 $this->mRedirect = false;
3096 return $this->mRedirect;
3097 }
3098
3099 $this->mRedirect = (bool)$cached;
3100
3101 return $this->mRedirect;
3102 }
3103
3104 /**
3105 * What is the length of this page?
3106 * Uses link cache, adding it if necessary
3107 *
3108 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3109 * @return int
3110 */
3111 public function getLength( $flags = 0 ) {
3112 if ( $this->mLength != -1 ) {
3113 return $this->mLength;
3114 }
3115 if ( !$this->getArticleID( $flags ) ) {
3116 $this->mLength = 0;
3117 return $this->mLength;
3118 }
3119 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3120 $linkCache->addLinkObj( $this ); # in case we already had an article ID
3121 $cached = $linkCache->getGoodLinkFieldObj( $this, 'length' );
3122 if ( $cached === null ) {
3123 # Trust LinkCache's state over our own, as for isRedirect()
3124 $this->mLength = 0;
3125 return $this->mLength;
3126 }
3127
3128 $this->mLength = intval( $cached );
3129
3130 return $this->mLength;
3131 }
3132
3133 /**
3134 * What is the page_latest field for this page?
3135 *
3136 * @param int $flags A bit field; may be Title::GAID_FOR_UPDATE to select for update
3137 * @return int Int or 0 if the page doesn't exist
3138 */
3139 public function getLatestRevID( $flags = 0 ) {
3140 if ( !( $flags & self::GAID_FOR_UPDATE ) && $this->mLatestID !== false ) {
3141 return intval( $this->mLatestID );
3142 }
3143 if ( !$this->getArticleID( $flags ) ) {
3144 $this->mLatestID = 0;
3145 return $this->mLatestID;
3146 }
3147 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3148 $linkCache->addLinkObj( $this ); # in case we already had an article ID
3149 $cached = $linkCache->getGoodLinkFieldObj( $this, 'revision' );
3150 if ( $cached === null ) {
3151 # Trust LinkCache's state over our own, as for isRedirect()
3152 $this->mLatestID = 0;
3153 return $this->mLatestID;
3154 }
3155
3156 $this->mLatestID = intval( $cached );
3157
3158 return $this->mLatestID;
3159 }
3160
3161 /**
3162 * This clears some fields in this object, and clears any associated
3163 * keys in the "bad links" section of the link cache.
3164 *
3165 * - This is called from WikiPage::doEditContent() and WikiPage::insertOn() to allow
3166 * loading of the new page_id. It's also called from
3167 * WikiPage::doDeleteArticleReal()
3168 *
3169 * @param int $newid The new Article ID
3170 */
3171 public function resetArticleID( $newid ) {
3172 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3173 $linkCache->clearLink( $this );
3174
3175 if ( $newid === false ) {
3176 $this->mArticleID = -1;
3177 } else {
3178 $this->mArticleID = intval( $newid );
3179 }
3180 $this->mRestrictionsLoaded = false;
3181 $this->mRestrictions = [];
3182 $this->mOldRestrictions = false;
3183 $this->mRedirect = null;
3184 $this->mLength = -1;
3185 $this->mLatestID = false;
3186 $this->mContentModel = false;
3187 $this->mEstimateRevisions = null;
3188 $this->mPageLanguage = false;
3189 $this->mDbPageLanguage = false;
3190 $this->mIsBigDeletion = null;
3191 }
3192
3193 public static function clearCaches() {
3194 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3195 $linkCache->clear();
3196
3197 $titleCache = self::getTitleCache();
3198 $titleCache->clear();
3199 }
3200
3201 /**
3202 * Capitalize a text string for a title if it belongs to a namespace that capitalizes
3203 *
3204 * @param string $text Containing title to capitalize
3205 * @param int $ns Namespace index, defaults to NS_MAIN
3206 * @return string Containing capitalized title
3207 */
3208 public static function capitalize( $text, $ns = NS_MAIN ) {
3209 $services = MediaWikiServices::getInstance();
3210 if ( $services->getNamespaceInfo()->isCapitalized( $ns ) ) {
3211 return MediaWikiServices::getInstance()->getContentLanguage()->ucfirst( $text );
3212 } else {
3213 return $text;
3214 }
3215 }
3216
3217 /**
3218 * Secure and split - main initialisation function for this object
3219 *
3220 * Assumes that mDbkeyform has been set, and is urldecoded
3221 * and uses underscores, but not otherwise munged. This function
3222 * removes illegal characters, splits off the interwiki and
3223 * namespace prefixes, sets the other forms, and canonicalizes
3224 * everything.
3225 *
3226 * @throws MalformedTitleException On invalid titles
3227 * @return bool True on success
3228 */
3229 private function secureAndSplit() {
3230 // @note: splitTitleString() is a temporary hack to allow MediaWikiTitleCodec to share
3231 // the parsing code with Title, while avoiding massive refactoring.
3232 // @todo: get rid of secureAndSplit, refactor parsing code.
3233 // @note: getTitleParser() returns a TitleParser implementation which does not have a
3234 // splitTitleString method, but the only implementation (MediaWikiTitleCodec) does
3235 /** @var MediaWikiTitleCodec $titleCodec */
3236 $titleCodec = MediaWikiServices::getInstance()->getTitleParser();
3237 // MalformedTitleException can be thrown here
3238 $parts = $titleCodec->splitTitleString( $this->mDbkeyform, $this->mDefaultNamespace );
3239
3240 # Fill fields
3241 $this->setFragment( '#' . $parts['fragment'] );
3242 $this->mInterwiki = $parts['interwiki'];
3243 $this->mLocalInterwiki = $parts['local_interwiki'];
3244 $this->mNamespace = $parts['namespace'];
3245 $this->mUserCaseDBKey = $parts['user_case_dbkey'];
3246
3247 $this->mDbkeyform = $parts['dbkey'];
3248 $this->mUrlform = wfUrlencode( $this->mDbkeyform );
3249 $this->mTextform = strtr( $this->mDbkeyform, '_', ' ' );
3250
3251 # We already know that some pages won't be in the database!
3252 if ( $this->isExternal() || $this->isSpecialPage() ) {
3253 $this->mArticleID = 0;
3254 }
3255
3256 return true;
3257 }
3258
3259 /**
3260 * Get an array of Title objects linking to this Title
3261 * Also stores the IDs in the link cache.
3262 *
3263 * WARNING: do not use this function on arbitrary user-supplied titles!
3264 * On heavily-used templates it will max out the memory.
3265 *
3266 * @param array $options May be FOR UPDATE
3267 * @param string $table Table name
3268 * @param string $prefix Fields prefix
3269 * @return Title[] Array of Title objects linking here
3270 */
3271 public function getLinksTo( $options = [], $table = 'pagelinks', $prefix = 'pl' ) {
3272 if ( count( $options ) > 0 ) {
3273 $db = wfGetDB( DB_MASTER );
3274 } else {
3275 $db = wfGetDB( DB_REPLICA );
3276 }
3277
3278 $res = $db->select(
3279 [ 'page', $table ],
3280 self::getSelectFields(),
3281 [
3282 "{$prefix}_from=page_id",
3283 "{$prefix}_namespace" => $this->mNamespace,
3284 "{$prefix}_title" => $this->mDbkeyform ],
3285 __METHOD__,
3286 $options
3287 );
3288
3289 $retVal = [];
3290 if ( $res->numRows() ) {
3291 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3292 foreach ( $res as $row ) {
3293 $titleObj = self::makeTitle( $row->page_namespace, $row->page_title );
3294 if ( $titleObj ) {
3295 $linkCache->addGoodLinkObjFromRow( $titleObj, $row );
3296 $retVal[] = $titleObj;
3297 }
3298 }
3299 }
3300 return $retVal;
3301 }
3302
3303 /**
3304 * Get an array of Title objects using this Title as a template
3305 * Also stores the IDs in the link cache.
3306 *
3307 * WARNING: do not use this function on arbitrary user-supplied titles!
3308 * On heavily-used templates it will max out the memory.
3309 *
3310 * @param array $options Query option to Database::select()
3311 * @return Title[] Array of Title the Title objects linking here
3312 */
3313 public function getTemplateLinksTo( $options = [] ) {
3314 return $this->getLinksTo( $options, 'templatelinks', 'tl' );
3315 }
3316
3317 /**
3318 * Get an array of Title objects linked from this Title
3319 * Also stores the IDs in the link cache.
3320 *
3321 * WARNING: do not use this function on arbitrary user-supplied titles!
3322 * On heavily-used templates it will max out the memory.
3323 *
3324 * @param array $options Query option to Database::select()
3325 * @param string $table Table name
3326 * @param string $prefix Fields prefix
3327 * @return array Array of Title objects linking here
3328 */
3329 public function getLinksFrom( $options = [], $table = 'pagelinks', $prefix = 'pl' ) {
3330 $id = $this->getArticleID();
3331
3332 # If the page doesn't exist; there can't be any link from this page
3333 if ( !$id ) {
3334 return [];
3335 }
3336
3337 $db = wfGetDB( DB_REPLICA );
3338
3339 $blNamespace = "{$prefix}_namespace";
3340 $blTitle = "{$prefix}_title";
3341
3342 $pageQuery = WikiPage::getQueryInfo();
3343 $res = $db->select(
3344 [ $table, 'nestpage' => $pageQuery['tables'] ],
3345 array_merge(
3346 [ $blNamespace, $blTitle ],
3347 $pageQuery['fields']
3348 ),
3349 [ "{$prefix}_from" => $id ],
3350 __METHOD__,
3351 $options,
3352 [ 'nestpage' => [
3353 'LEFT JOIN',
3354 [ "page_namespace=$blNamespace", "page_title=$blTitle" ]
3355 ] ] + $pageQuery['joins']
3356 );
3357
3358 $retVal = [];
3359 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3360 foreach ( $res as $row ) {
3361 if ( $row->page_id ) {
3362 $titleObj = self::newFromRow( $row );
3363 } else {
3364 $titleObj = self::makeTitle( $row->$blNamespace, $row->$blTitle );
3365 $linkCache->addBadLinkObj( $titleObj );
3366 }
3367 $retVal[] = $titleObj;
3368 }
3369
3370 return $retVal;
3371 }
3372
3373 /**
3374 * Get an array of Title objects used on this Title as a template
3375 * Also stores the IDs in the link cache.
3376 *
3377 * WARNING: do not use this function on arbitrary user-supplied titles!
3378 * On heavily-used templates it will max out the memory.
3379 *
3380 * @param array $options May be FOR UPDATE
3381 * @return Title[] Array of Title the Title objects used here
3382 */
3383 public function getTemplateLinksFrom( $options = [] ) {
3384 return $this->getLinksFrom( $options, 'templatelinks', 'tl' );
3385 }
3386
3387 /**
3388 * Get an array of Title objects referring to non-existent articles linked
3389 * from this page.
3390 *
3391 * @todo check if needed (used only in SpecialBrokenRedirects.php, and
3392 * should use redirect table in this case).
3393 * @return Title[] Array of Title the Title objects
3394 */
3395 public function getBrokenLinksFrom() {
3396 if ( $this->getArticleID() == 0 ) {
3397 # All links from article ID 0 are false positives
3398 return [];
3399 }
3400
3401 $dbr = wfGetDB( DB_REPLICA );
3402 $res = $dbr->select(
3403 [ 'page', 'pagelinks' ],
3404 [ 'pl_namespace', 'pl_title' ],
3405 [
3406 'pl_from' => $this->getArticleID(),
3407 'page_namespace IS NULL'
3408 ],
3409 __METHOD__, [],
3410 [
3411 'page' => [
3412 'LEFT JOIN',
3413 [ 'pl_namespace=page_namespace', 'pl_title=page_title' ]
3414 ]
3415 ]
3416 );
3417
3418 $retVal = [];
3419 foreach ( $res as $row ) {
3420 $retVal[] = self::makeTitle( $row->pl_namespace, $row->pl_title );
3421 }
3422 return $retVal;
3423 }
3424
3425 /**
3426 * Get a list of URLs to purge from the CDN cache when this
3427 * page changes
3428 *
3429 * @return string[] Array of String the URLs
3430 */
3431 public function getCdnUrls() {
3432 $urls = [
3433 $this->getInternalURL(),
3434 $this->getInternalURL( 'action=history' )
3435 ];
3436
3437 $pageLang = $this->getPageLanguage();
3438 if ( $pageLang->hasVariants() ) {
3439 $variants = $pageLang->getVariants();
3440 foreach ( $variants as $vCode ) {
3441 $urls[] = $this->getInternalURL( $vCode );
3442 }
3443 }
3444
3445 // If we are looking at a css/js user subpage, purge the action=raw.
3446 if ( $this->isUserJsConfigPage() ) {
3447 $urls[] = $this->getInternalURL( 'action=raw&ctype=text/javascript' );
3448 } elseif ( $this->isUserJsonConfigPage() ) {
3449 $urls[] = $this->getInternalURL( 'action=raw&ctype=application/json' );
3450 } elseif ( $this->isUserCssConfigPage() ) {
3451 $urls[] = $this->getInternalURL( 'action=raw&ctype=text/css' );
3452 }
3453
3454 Hooks::run( 'TitleSquidURLs', [ $this, &$urls ] );
3455 return $urls;
3456 }
3457
3458 /**
3459 * Purge all applicable CDN URLs
3460 */
3461 public function purgeSquid() {
3462 DeferredUpdates::addUpdate(
3463 new CdnCacheUpdate( $this->getCdnUrls() ),
3464 DeferredUpdates::PRESEND
3465 );
3466 }
3467
3468 /**
3469 * Check whether a given move operation would be valid.
3470 * Returns true if ok, or a getUserPermissionsErrors()-like array otherwise
3471 *
3472 * @deprecated since 1.25, use MovePage's methods instead
3473 * @param Title &$nt The new title
3474 * @param bool $auth Whether to check user permissions (uses $wgUser)
3475 * @param string $reason Is the log summary of the move, used for spam checking
3476 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3477 */
3478 public function isValidMoveOperation( &$nt, $auth = true, $reason = '' ) {
3479 wfDeprecated( __METHOD__, '1.25' );
3480
3481 global $wgUser;
3482
3483 if ( !( $nt instanceof Title ) ) {
3484 // Normally we'd add this to $errors, but we'll get
3485 // lots of syntax errors if $nt is not an object
3486 return [ [ 'badtitletext' ] ];
3487 }
3488
3489 $mp = new MovePage( $this, $nt );
3490 $errors = $mp->isValidMove()->getErrorsArray();
3491 if ( $auth ) {
3492 $errors = wfMergeErrorArrays(
3493 $errors,
3494 $mp->checkPermissions( $wgUser, $reason )->getErrorsArray()
3495 );
3496 }
3497
3498 return $errors ?: true;
3499 }
3500
3501 /**
3502 * Move a title to a new location
3503 *
3504 * @deprecated since 1.25, use the MovePage class instead
3505 * @param Title &$nt The new title
3506 * @param bool $auth Indicates whether $wgUser's permissions
3507 * should be checked
3508 * @param string $reason The reason for the move
3509 * @param bool $createRedirect Whether to create a redirect from the old title to the new title.
3510 * Ignored if the user doesn't have the suppressredirect right.
3511 * @param array $changeTags Applied to the entry in the move log and redirect page revision
3512 * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
3513 */
3514 public function moveTo( &$nt, $auth = true, $reason = '', $createRedirect = true,
3515 array $changeTags = []
3516 ) {
3517 wfDeprecated( __METHOD__, '1.25' );
3518
3519 global $wgUser;
3520
3521 $mp = new MovePage( $this, $nt );
3522 $method = $auth ? 'moveIfAllowed' : 'move';
3523 $status = $mp->$method( $wgUser, $reason, $createRedirect, $changeTags );
3524 if ( $status->isOK() ) {
3525 return true;
3526 } else {
3527 return $status->getErrorsArray();
3528 }
3529 }
3530
3531 /**
3532 * Move this page's subpages to be subpages of $nt
3533 *
3534 * @deprecated since 1.34, use MovePage instead
3535 * @param Title $nt Move target
3536 * @param bool $auth Whether $wgUser's permissions should be checked
3537 * @param string $reason The reason for the move
3538 * @param bool $createRedirect Whether to create redirects from the old subpages to
3539 * the new ones Ignored if the user doesn't have the 'suppressredirect' right
3540 * @param array $changeTags Applied to the entry in the move log and redirect page revision
3541 * @return array Array with old page titles as keys, and strings (new page titles) or
3542 * getUserPermissionsErrors()-like arrays (errors) as values, or a
3543 * getUserPermissionsErrors()-like error array with numeric indices if
3544 * no pages were moved
3545 */
3546 public function moveSubpages( $nt, $auth = true, $reason = '', $createRedirect = true,
3547 array $changeTags = []
3548 ) {
3549 wfDeprecated( __METHOD__, '1.34' );
3550
3551 global $wgUser;
3552
3553 $mp = new MovePage( $this, $nt );
3554 $method = $auth ? 'moveSubpagesIfAllowed' : 'moveSubpages';
3555 $result = $mp->$method( $wgUser, $reason, $createRedirect, $changeTags );
3556
3557 if ( !$result->isOk() ) {
3558 return $result->getErrorsArray();
3559 }
3560
3561 $retval = [];
3562 foreach ( $result->getValue() as $key => $status ) {
3563 if ( $status->isOK() ) {
3564 $retval[$key] = $status->getValue();
3565 } else {
3566 $retval[$key] = $status->getErrorsArray();
3567 }
3568 }
3569 return $retval;
3570 }
3571
3572 /**
3573 * Checks if this page is just a one-rev redirect.
3574 * Adds lock, so don't use just for light purposes.
3575 *
3576 * @return bool
3577 */
3578 public function isSingleRevRedirect() {
3579 global $wgContentHandlerUseDB;
3580
3581 $dbw = wfGetDB( DB_MASTER );
3582
3583 # Is it a redirect?
3584 $fields = [ 'page_is_redirect', 'page_latest', 'page_id' ];
3585 if ( $wgContentHandlerUseDB ) {
3586 $fields[] = 'page_content_model';
3587 }
3588
3589 $row = $dbw->selectRow( 'page',
3590 $fields,
3591 $this->pageCond(),
3592 __METHOD__,
3593 [ 'FOR UPDATE' ]
3594 );
3595 # Cache some fields we may want
3596 $this->mArticleID = $row ? intval( $row->page_id ) : 0;
3597 $this->mRedirect = $row ? (bool)$row->page_is_redirect : false;
3598 $this->mLatestID = $row ? intval( $row->page_latest ) : false;
3599 $this->mContentModel = $row && isset( $row->page_content_model )
3600 ? strval( $row->page_content_model )
3601 : false;
3602
3603 if ( !$this->mRedirect ) {
3604 return false;
3605 }
3606 # Does the article have a history?
3607 $row = $dbw->selectField( [ 'page', 'revision' ],
3608 'rev_id',
3609 [ 'page_namespace' => $this->mNamespace,
3610 'page_title' => $this->mDbkeyform,
3611 'page_id=rev_page',
3612 'page_latest != rev_id'
3613 ],
3614 __METHOD__,
3615 [ 'FOR UPDATE' ]
3616 );
3617 # Return true if there was no history
3618 return ( $row === false );
3619 }
3620
3621 /**
3622 * Checks if $this can be moved to a given Title
3623 * - Selects for update, so don't call it unless you mean business
3624 *
3625 * @deprecated since 1.25, use MovePage's methods instead
3626 * @param Title $nt The new title to check
3627 * @return bool
3628 */
3629 public function isValidMoveTarget( $nt ) {
3630 wfDeprecated( __METHOD__, '1.25' );
3631
3632 # Is it an existing file?
3633 if ( $nt->getNamespace() == NS_FILE ) {
3634 $file = MediaWikiServices::getInstance()->getRepoGroup()->getLocalRepo()
3635 ->newFile( $nt );
3636 $file->load( File::READ_LATEST );
3637 if ( $file->exists() ) {
3638 wfDebug( __METHOD__ . ": file exists\n" );
3639 return false;
3640 }
3641 }
3642 # Is it a redirect with no history?
3643 if ( !$nt->isSingleRevRedirect() ) {
3644 wfDebug( __METHOD__ . ": not a one-rev redirect\n" );
3645 return false;
3646 }
3647 # Get the article text
3648 $rev = Revision::newFromTitle( $nt, false, Revision::READ_LATEST );
3649 if ( !is_object( $rev ) ) {
3650 return false;
3651 }
3652 $content = $rev->getContent();
3653 # Does the redirect point to the source?
3654 # Or is it a broken self-redirect, usually caused by namespace collisions?
3655 $redirTitle = $content ? $content->getRedirectTarget() : null;
3656
3657 if ( $redirTitle ) {
3658 if ( $redirTitle->getPrefixedDBkey() != $this->getPrefixedDBkey() &&
3659 $redirTitle->getPrefixedDBkey() != $nt->getPrefixedDBkey() ) {
3660 wfDebug( __METHOD__ . ": redirect points to other page\n" );
3661 return false;
3662 } else {
3663 return true;
3664 }
3665 } else {
3666 # Fail safe (not a redirect after all. strange.)
3667 wfDebug( __METHOD__ . ": failsafe: database sais " . $nt->getPrefixedDBkey() .
3668 " is a redirect, but it doesn't contain a valid redirect.\n" );
3669 return false;
3670 }
3671 }
3672
3673 /**
3674 * Get categories to which this Title belongs and return an array of
3675 * categories' names.
3676 *
3677 * @return array Array of parents in the form:
3678 * $parent => $currentarticle
3679 */
3680 public function getParentCategories() {
3681 $data = [];
3682
3683 $titleKey = $this->getArticleID();
3684
3685 if ( $titleKey === 0 ) {
3686 return $data;
3687 }
3688
3689 $dbr = wfGetDB( DB_REPLICA );
3690
3691 $res = $dbr->select(
3692 'categorylinks',
3693 'cl_to',
3694 [ 'cl_from' => $titleKey ],
3695 __METHOD__
3696 );
3697
3698 if ( $res->numRows() > 0 ) {
3699 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
3700 foreach ( $res as $row ) {
3701 // $data[] = Title::newFromText( $contLang->getNsText ( NS_CATEGORY ).':'.$row->cl_to);
3702 $data[$contLang->getNsText( NS_CATEGORY ) . ':' . $row->cl_to] =
3703 $this->getFullText();
3704 }
3705 }
3706 return $data;
3707 }
3708
3709 /**
3710 * Get a tree of parent categories
3711 *
3712 * @param array $children Array with the children in the keys, to check for circular refs
3713 * @return array Tree of parent categories
3714 */
3715 public function getParentCategoryTree( $children = [] ) {
3716 $stack = [];
3717 $parents = $this->getParentCategories();
3718
3719 if ( $parents ) {
3720 foreach ( $parents as $parent => $current ) {
3721 if ( array_key_exists( $parent, $children ) ) {
3722 # Circular reference
3723 $stack[$parent] = [];
3724 } else {
3725 $nt = self::newFromText( $parent );
3726 if ( $nt ) {
3727 $stack[$parent] = $nt->getParentCategoryTree( $children + [ $parent => 1 ] );
3728 }
3729 }
3730 }
3731 }
3732
3733 return $stack;
3734 }
3735
3736 /**
3737 * Get an associative array for selecting this title from
3738 * the "page" table
3739 *
3740 * @return array Array suitable for the $where parameter of DB::select()
3741 */
3742 public function pageCond() {
3743 if ( $this->mArticleID > 0 ) {
3744 // PK avoids secondary lookups in InnoDB, shouldn't hurt other DBs
3745 return [ 'page_id' => $this->mArticleID ];
3746 } else {
3747 return [ 'page_namespace' => $this->mNamespace, 'page_title' => $this->mDbkeyform ];
3748 }
3749 }
3750
3751 /**
3752 * Get next/previous revision ID relative to another revision ID
3753 * @param int $revId Revision ID. Get the revision that was before this one.
3754 * @param int $flags Title::GAID_FOR_UPDATE
3755 * @param string $dir 'next' or 'prev'
3756 * @return int|bool New revision ID, or false if none exists
3757 */
3758 private function getRelativeRevisionID( $revId, $flags, $dir ) {
3759 $rl = MediaWikiServices::getInstance()->getRevisionLookup();
3760 $rlFlags = $flags === self::GAID_FOR_UPDATE ? IDBAccessObject::READ_LATEST : 0;
3761 $rev = $rl->getRevisionById( $revId, $rlFlags );
3762 if ( !$rev ) {
3763 return false;
3764 }
3765 $oldRev = $dir === 'next'
3766 ? $rl->getNextRevision( $rev, $rlFlags )
3767 : $rl->getPreviousRevision( $rev, $rlFlags );
3768 if ( !$oldRev ) {
3769 return false;
3770 }
3771 return $oldRev->getId();
3772 }
3773
3774 /**
3775 * Get the revision ID of the previous revision
3776 *
3777 * @deprecated since 1.34, use RevisionLookup::getPreviousRevision
3778 * @param int $revId Revision ID. Get the revision that was before this one.
3779 * @param int $flags Title::GAID_FOR_UPDATE
3780 * @return int|bool Old revision ID, or false if none exists
3781 */
3782 public function getPreviousRevisionID( $revId, $flags = 0 ) {
3783 return $this->getRelativeRevisionID( $revId, $flags, 'prev' );
3784 }
3785
3786 /**
3787 * Get the revision ID of the next revision
3788 *
3789 * @deprecated since 1.34, use RevisionLookup::getNextRevision
3790 * @param int $revId Revision ID. Get the revision that was after this one.
3791 * @param int $flags Title::GAID_FOR_UPDATE
3792 * @return int|bool Next revision ID, or false if none exists
3793 */
3794 public function getNextRevisionID( $revId, $flags = 0 ) {
3795 return $this->getRelativeRevisionID( $revId, $flags, 'next' );
3796 }
3797
3798 /**
3799 * Get the first revision of the page
3800 *
3801 * @param int $flags Title::GAID_FOR_UPDATE
3802 * @return Revision|null If page doesn't exist
3803 */
3804 public function getFirstRevision( $flags = 0 ) {
3805 $pageId = $this->getArticleID( $flags );
3806 if ( $pageId ) {
3807 $db = ( $flags & self::GAID_FOR_UPDATE ) ? wfGetDB( DB_MASTER ) : wfGetDB( DB_REPLICA );
3808 $revQuery = Revision::getQueryInfo();
3809 $row = $db->selectRow( $revQuery['tables'], $revQuery['fields'],
3810 [ 'rev_page' => $pageId ],
3811 __METHOD__,
3812 [
3813 'ORDER BY' => 'rev_timestamp ASC, rev_id ASC',
3814 'IGNORE INDEX' => [ 'revision' => 'rev_timestamp' ], // See T159319
3815 ],
3816 $revQuery['joins']
3817 );
3818 if ( $row ) {
3819 return new Revision( $row, 0, $this );
3820 }
3821 }
3822 return null;
3823 }
3824
3825 /**
3826 * Get the oldest revision timestamp of this page
3827 *
3828 * @param int $flags Title::GAID_FOR_UPDATE
3829 * @return string|null MW timestamp
3830 */
3831 public function getEarliestRevTime( $flags = 0 ) {
3832 $rev = $this->getFirstRevision( $flags );
3833 return $rev ? $rev->getTimestamp() : null;
3834 }
3835
3836 /**
3837 * Check if this is a new page
3838 *
3839 * @return bool
3840 */
3841 public function isNewPage() {
3842 $dbr = wfGetDB( DB_REPLICA );
3843 return (bool)$dbr->selectField( 'page', 'page_is_new', $this->pageCond(), __METHOD__ );
3844 }
3845
3846 /**
3847 * Check whether the number of revisions of this page surpasses $wgDeleteRevisionsLimit
3848 *
3849 * @return bool
3850 */
3851 public function isBigDeletion() {
3852 global $wgDeleteRevisionsLimit;
3853
3854 if ( !$wgDeleteRevisionsLimit ) {
3855 return false;
3856 }
3857
3858 if ( $this->mIsBigDeletion === null ) {
3859 $dbr = wfGetDB( DB_REPLICA );
3860
3861 $revCount = $dbr->selectRowCount(
3862 'revision',
3863 '1',
3864 [ 'rev_page' => $this->getArticleID() ],
3865 __METHOD__,
3866 [ 'LIMIT' => $wgDeleteRevisionsLimit + 1 ]
3867 );
3868
3869 $this->mIsBigDeletion = $revCount > $wgDeleteRevisionsLimit;
3870 }
3871
3872 return $this->mIsBigDeletion;
3873 }
3874
3875 /**
3876 * Get the approximate revision count of this page.
3877 *
3878 * @return int
3879 */
3880 public function estimateRevisionCount() {
3881 if ( !$this->exists() ) {
3882 return 0;
3883 }
3884
3885 if ( $this->mEstimateRevisions === null ) {
3886 $dbr = wfGetDB( DB_REPLICA );
3887 $this->mEstimateRevisions = $dbr->estimateRowCount( 'revision', '*',
3888 [ 'rev_page' => $this->getArticleID() ], __METHOD__ );
3889 }
3890
3891 return $this->mEstimateRevisions;
3892 }
3893
3894 /**
3895 * Get the number of revisions between the given revision.
3896 * Used for diffs and other things that really need it.
3897 *
3898 * @param int|Revision $old Old revision or rev ID (first before range)
3899 * @param int|Revision $new New revision or rev ID (first after range)
3900 * @param int|null $max Limit of Revisions to count, will be incremented to detect truncations
3901 * @return int Number of revisions between these revisions.
3902 */
3903 public function countRevisionsBetween( $old, $new, $max = null ) {
3904 if ( !( $old instanceof Revision ) ) {
3905 $old = Revision::newFromTitle( $this, (int)$old );
3906 }
3907 if ( !( $new instanceof Revision ) ) {
3908 $new = Revision::newFromTitle( $this, (int)$new );
3909 }
3910 if ( !$old || !$new ) {
3911 return 0; // nothing to compare
3912 }
3913 $dbr = wfGetDB( DB_REPLICA );
3914 $conds = [
3915 'rev_page' => $this->getArticleID(),
3916 'rev_timestamp > ' . $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) ),
3917 'rev_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) )
3918 ];
3919 if ( $max !== null ) {
3920 return $dbr->selectRowCount( 'revision', '1',
3921 $conds,
3922 __METHOD__,
3923 [ 'LIMIT' => $max + 1 ] // extra to detect truncation
3924 );
3925 } else {
3926 return (int)$dbr->selectField( 'revision', 'count(*)', $conds, __METHOD__ );
3927 }
3928 }
3929
3930 /**
3931 * Get the authors between the given revisions or revision IDs.
3932 * Used for diffs and other things that really need it.
3933 *
3934 * @since 1.23
3935 *
3936 * @param int|Revision $old Old revision or rev ID (first before range by default)
3937 * @param int|Revision $new New revision or rev ID (first after range by default)
3938 * @param int $limit Maximum number of authors
3939 * @param string|array $options (Optional): Single option, or an array of options:
3940 * 'include_old' Include $old in the range; $new is excluded.
3941 * 'include_new' Include $new in the range; $old is excluded.
3942 * 'include_both' Include both $old and $new in the range.
3943 * Unknown option values are ignored.
3944 * @return array|null Names of revision authors in the range; null if not both revisions exist
3945 */
3946 public function getAuthorsBetween( $old, $new, $limit, $options = [] ) {
3947 if ( !( $old instanceof Revision ) ) {
3948 $old = Revision::newFromTitle( $this, (int)$old );
3949 }
3950 if ( !( $new instanceof Revision ) ) {
3951 $new = Revision::newFromTitle( $this, (int)$new );
3952 }
3953 // XXX: what if Revision objects are passed in, but they don't refer to this title?
3954 // Add $old->getPage() != $new->getPage() || $old->getPage() != $this->getArticleID()
3955 // in the sanity check below?
3956 if ( !$old || !$new ) {
3957 return null; // nothing to compare
3958 }
3959 $authors = [];
3960 $old_cmp = '>';
3961 $new_cmp = '<';
3962 $options = (array)$options;
3963 if ( in_array( 'include_old', $options ) ) {
3964 $old_cmp = '>=';
3965 }
3966 if ( in_array( 'include_new', $options ) ) {
3967 $new_cmp = '<=';
3968 }
3969 if ( in_array( 'include_both', $options ) ) {
3970 $old_cmp = '>=';
3971 $new_cmp = '<=';
3972 }
3973 // No DB query needed if $old and $new are the same or successive revisions:
3974 if ( $old->getId() === $new->getId() ) {
3975 return ( $old_cmp === '>' && $new_cmp === '<' ) ?
3976 [] :
3977 [ $old->getUserText( Revision::RAW ) ];
3978 } elseif ( $old->getId() === $new->getParentId() ) {
3979 if ( $old_cmp === '>=' && $new_cmp === '<=' ) {
3980 $authors[] = $old->getUserText( Revision::RAW );
3981 if ( $old->getUserText( Revision::RAW ) != $new->getUserText( Revision::RAW ) ) {
3982 $authors[] = $new->getUserText( Revision::RAW );
3983 }
3984 } elseif ( $old_cmp === '>=' ) {
3985 $authors[] = $old->getUserText( Revision::RAW );
3986 } elseif ( $new_cmp === '<=' ) {
3987 $authors[] = $new->getUserText( Revision::RAW );
3988 }
3989 return $authors;
3990 }
3991 $dbr = wfGetDB( DB_REPLICA );
3992 $revQuery = Revision::getQueryInfo();
3993 $authors = $dbr->selectFieldValues(
3994 $revQuery['tables'],
3995 $revQuery['fields']['rev_user_text'],
3996 [
3997 'rev_page' => $this->getArticleID(),
3998 "rev_timestamp $old_cmp " . $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) ),
3999 "rev_timestamp $new_cmp " . $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) )
4000 ], __METHOD__,
4001 [ 'DISTINCT', 'LIMIT' => $limit + 1 ], // add one so caller knows it was truncated
4002 $revQuery['joins']
4003 );
4004 return $authors;
4005 }
4006
4007 /**
4008 * Get the number of authors between the given revisions or revision IDs.
4009 * Used for diffs and other things that really need it.
4010 *
4011 * @param int|Revision $old Old revision or rev ID (first before range by default)
4012 * @param int|Revision $new New revision or rev ID (first after range by default)
4013 * @param int $limit Maximum number of authors
4014 * @param string|array $options (Optional): Single option, or an array of options:
4015 * 'include_old' Include $old in the range; $new is excluded.
4016 * 'include_new' Include $new in the range; $old is excluded.
4017 * 'include_both' Include both $old and $new in the range.
4018 * Unknown option values are ignored.
4019 * @return int Number of revision authors in the range; zero if not both revisions exist
4020 */
4021 public function countAuthorsBetween( $old, $new, $limit, $options = [] ) {
4022 $authors = $this->getAuthorsBetween( $old, $new, $limit, $options );
4023 return $authors ? count( $authors ) : 0;
4024 }
4025
4026 /**
4027 * Compare with another title.
4028 *
4029 * @param LinkTarget $title
4030 * @return bool
4031 */
4032 public function equals( LinkTarget $title ) {
4033 // Note: === is necessary for proper matching of number-like titles.
4034 return $this->mInterwiki === $title->getInterwiki()
4035 && $this->mNamespace == $title->getNamespace()
4036 && $this->mDbkeyform === $title->getDBkey();
4037 }
4038
4039 /**
4040 * Check if this title is a subpage of another title
4041 *
4042 * @param Title $title
4043 * @return bool
4044 */
4045 public function isSubpageOf( Title $title ) {
4046 return $this->mInterwiki === $title->mInterwiki
4047 && $this->mNamespace == $title->mNamespace
4048 && strpos( $this->mDbkeyform, $title->mDbkeyform . '/' ) === 0;
4049 }
4050
4051 /**
4052 * Check if page exists. For historical reasons, this function simply
4053 * checks for the existence of the title in the page table, and will
4054 * thus return false for interwiki links, special pages and the like.
4055 * If you want to know if a title can be meaningfully viewed, you should
4056 * probably call the isKnown() method instead.
4057 *
4058 * @param int $flags An optional bit field; may be Title::GAID_FOR_UPDATE to check
4059 * from master/for update
4060 * @return bool
4061 */
4062 public function exists( $flags = 0 ) {
4063 $exists = $this->getArticleID( $flags ) != 0;
4064 Hooks::run( 'TitleExists', [ $this, &$exists ] );
4065 return $exists;
4066 }
4067
4068 /**
4069 * Should links to this title be shown as potentially viewable (i.e. as
4070 * "bluelinks"), even if there's no record by this title in the page
4071 * table?
4072 *
4073 * This function is semi-deprecated for public use, as well as somewhat
4074 * misleadingly named. You probably just want to call isKnown(), which
4075 * calls this function internally.
4076 *
4077 * (ISSUE: Most of these checks are cheap, but the file existence check
4078 * can potentially be quite expensive. Including it here fixes a lot of
4079 * existing code, but we might want to add an optional parameter to skip
4080 * it and any other expensive checks.)
4081 *
4082 * @return bool
4083 */
4084 public function isAlwaysKnown() {
4085 $isKnown = null;
4086
4087 /**
4088 * Allows overriding default behavior for determining if a page exists.
4089 * If $isKnown is kept as null, regular checks happen. If it's
4090 * a boolean, this value is returned by the isKnown method.
4091 *
4092 * @since 1.20
4093 *
4094 * @param Title $title
4095 * @param bool|null $isKnown
4096 */
4097 Hooks::run( 'TitleIsAlwaysKnown', [ $this, &$isKnown ] );
4098
4099 if ( !is_null( $isKnown ) ) {
4100 return $isKnown;
4101 }
4102
4103 if ( $this->isExternal() ) {
4104 return true; // any interwiki link might be viewable, for all we know
4105 }
4106
4107 $services = MediaWikiServices::getInstance();
4108 switch ( $this->mNamespace ) {
4109 case NS_MEDIA:
4110 case NS_FILE:
4111 // file exists, possibly in a foreign repo
4112 return (bool)$services->getRepoGroup()->findFile( $this );
4113 case NS_SPECIAL:
4114 // valid special page
4115 return $services->getSpecialPageFactory()->exists( $this->mDbkeyform );
4116 case NS_MAIN:
4117 // selflink, possibly with fragment
4118 return $this->mDbkeyform == '';
4119 case NS_MEDIAWIKI:
4120 // known system message
4121 return $this->hasSourceText() !== false;
4122 default:
4123 return false;
4124 }
4125 }
4126
4127 /**
4128 * Does this title refer to a page that can (or might) be meaningfully
4129 * viewed? In particular, this function may be used to determine if
4130 * links to the title should be rendered as "bluelinks" (as opposed to
4131 * "redlinks" to non-existent pages).
4132 * Adding something else to this function will cause inconsistency
4133 * since LinkHolderArray calls isAlwaysKnown() and does its own
4134 * page existence check.
4135 *
4136 * @return bool
4137 */
4138 public function isKnown() {
4139 return $this->isAlwaysKnown() || $this->exists();
4140 }
4141
4142 /**
4143 * Does this page have source text?
4144 *
4145 * @return bool
4146 */
4147 public function hasSourceText() {
4148 if ( $this->exists() ) {
4149 return true;
4150 }
4151
4152 if ( $this->mNamespace == NS_MEDIAWIKI ) {
4153 // If the page doesn't exist but is a known system message, default
4154 // message content will be displayed, same for language subpages-
4155 // Use always content language to avoid loading hundreds of languages
4156 // to get the link color.
4157 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
4158 list( $name, ) = MessageCache::singleton()->figureMessage(
4159 $contLang->lcfirst( $this->getText() )
4160 );
4161 $message = wfMessage( $name )->inLanguage( $contLang )->useDatabase( false );
4162 return $message->exists();
4163 }
4164
4165 return false;
4166 }
4167
4168 /**
4169 * Get the default (plain) message contents for an page that overrides an
4170 * interface message key.
4171 *
4172 * Primary use cases:
4173 *
4174 * - Article:
4175 * - Show default when viewing the page. The Article::getSubstituteContent
4176 * method displays the default message content, instead of the
4177 * 'noarticletext' placeholder message normally used.
4178 *
4179 * - EditPage:
4180 * - Title of edit page. When creating an interface message override,
4181 * the editor is told they are "Editing the page", instead of
4182 * "Creating the page". (EditPage::setHeaders)
4183 * - Edit notice. The 'translateinterface' edit notice is shown when creating
4184 * or editing a an interface message override. (EditPage::showIntro)
4185 * - Opening the editor. The contents of the localisation message are used
4186 * as contents of the editor when creating a new page in the MediaWiki
4187 * namespace. This simplifies the process for editors when "changing"
4188 * an interface message by creating an override. (EditPage::getContentObject)
4189 * - Showing a diff. The left-hand side of a diff when an editor is
4190 * previewing their changes before saving the creation of a page in the
4191 * MediaWiki namespace. (EditPage::showDiff)
4192 * - Disallowing a save. When attempting to create a a MediaWiki-namespace
4193 * page with the proposed content matching the interface message default,
4194 * the save is rejected, the same way we disallow blank pages from being
4195 * created. (EditPage::internalAttemptSave)
4196 *
4197 * - ApiEditPage:
4198 * - Default content, when using the 'prepend' or 'append' feature.
4199 *
4200 * - SkinTemplate:
4201 * - Label the create action as "Edit", if the page can be an override.
4202 *
4203 * @return string|bool
4204 */
4205 public function getDefaultMessageText() {
4206 if ( $this->mNamespace != NS_MEDIAWIKI ) { // Just in case
4207 return false;
4208 }
4209
4210 list( $name, $lang ) = MessageCache::singleton()->figureMessage(
4211 MediaWikiServices::getInstance()->getContentLanguage()->lcfirst( $this->getText() )
4212 );
4213 $message = wfMessage( $name )->inLanguage( $lang )->useDatabase( false );
4214
4215 if ( $message->exists() ) {
4216 return $message->plain();
4217 } else {
4218 return false;
4219 }
4220 }
4221
4222 /**
4223 * Updates page_touched for this page; called from LinksUpdate.php
4224 *
4225 * @param string|null $purgeTime [optional] TS_MW timestamp
4226 * @return bool True if the update succeeded
4227 */
4228 public function invalidateCache( $purgeTime = null ) {
4229 if ( wfReadOnly() ) {
4230 return false;
4231 } elseif ( $this->mArticleID === 0 ) {
4232 return true; // avoid gap locking if we know it's not there
4233 }
4234
4235 $dbw = wfGetDB( DB_MASTER );
4236 $dbw->onTransactionPreCommitOrIdle(
4237 function () use ( $dbw ) {
4238 ResourceLoaderWikiModule::invalidateModuleCache(
4239 $this, null, null, $dbw->getDomainID() );
4240 },
4241 __METHOD__
4242 );
4243
4244 $conds = $this->pageCond();
4245 DeferredUpdates::addUpdate(
4246 new AutoCommitUpdate(
4247 $dbw,
4248 __METHOD__,
4249 function ( IDatabase $dbw, $fname ) use ( $conds, $purgeTime ) {
4250 $dbTimestamp = $dbw->timestamp( $purgeTime ?: time() );
4251 $dbw->update(
4252 'page',
4253 [ 'page_touched' => $dbTimestamp ],
4254 $conds + [ 'page_touched < ' . $dbw->addQuotes( $dbTimestamp ) ],
4255 $fname
4256 );
4257 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $this );
4258 }
4259 ),
4260 DeferredUpdates::PRESEND
4261 );
4262
4263 return true;
4264 }
4265
4266 /**
4267 * Update page_touched timestamps and send CDN purge messages for
4268 * pages linking to this title. May be sent to the job queue depending
4269 * on the number of links. Typically called on create and delete.
4270 */
4271 public function touchLinks() {
4272 DeferredUpdates::addUpdate( new HTMLCacheUpdate( $this, 'pagelinks', 'page-touch' ) );
4273 if ( $this->mNamespace == NS_CATEGORY ) {
4274 DeferredUpdates::addUpdate(
4275 new HTMLCacheUpdate( $this, 'categorylinks', 'category-touch' )
4276 );
4277 }
4278 }
4279
4280 /**
4281 * Get the last touched timestamp
4282 *
4283 * @param IDatabase|null $db
4284 * @return string|false Last-touched timestamp
4285 */
4286 public function getTouched( $db = null ) {
4287 if ( $db === null ) {
4288 $db = wfGetDB( DB_REPLICA );
4289 }
4290 $touched = $db->selectField( 'page', 'page_touched', $this->pageCond(), __METHOD__ );
4291 return $touched;
4292 }
4293
4294 /**
4295 * Get the timestamp when this page was updated since the user last saw it.
4296 *
4297 * @param User|null $user
4298 * @return string|null
4299 */
4300 public function getNotificationTimestamp( $user = null ) {
4301 global $wgUser;
4302
4303 // Assume current user if none given
4304 if ( !$user ) {
4305 $user = $wgUser;
4306 }
4307 // Check cache first
4308 $uid = $user->getId();
4309 if ( !$uid ) {
4310 return false;
4311 }
4312 // avoid isset here, as it'll return false for null entries
4313 if ( array_key_exists( $uid, $this->mNotificationTimestamp ) ) {
4314 return $this->mNotificationTimestamp[$uid];
4315 }
4316 // Don't cache too much!
4317 if ( count( $this->mNotificationTimestamp ) >= self::CACHE_MAX ) {
4318 $this->mNotificationTimestamp = [];
4319 }
4320
4321 $store = MediaWikiServices::getInstance()->getWatchedItemStore();
4322 $watchedItem = $store->getWatchedItem( $user, $this );
4323 if ( $watchedItem ) {
4324 $this->mNotificationTimestamp[$uid] = $watchedItem->getNotificationTimestamp();
4325 } else {
4326 $this->mNotificationTimestamp[$uid] = false;
4327 }
4328
4329 return $this->mNotificationTimestamp[$uid];
4330 }
4331
4332 /**
4333 * Generate strings used for xml 'id' names in monobook tabs
4334 *
4335 * @param string $prepend Defaults to 'nstab-'
4336 * @return string XML 'id' name
4337 */
4338 public function getNamespaceKey( $prepend = 'nstab-' ) {
4339 // Gets the subject namespace of this title
4340 $nsInfo = MediaWikiServices::getInstance()->getNamespaceInfo();
4341 $subjectNS = $nsInfo->getSubject( $this->mNamespace );
4342 // Prefer canonical namespace name for HTML IDs
4343 $namespaceKey = $nsInfo->getCanonicalName( $subjectNS );
4344 if ( $namespaceKey === false ) {
4345 // Fallback to localised text
4346 $namespaceKey = $this->getSubjectNsText();
4347 }
4348 // Makes namespace key lowercase
4349 $namespaceKey = MediaWikiServices::getInstance()->getContentLanguage()->lc( $namespaceKey );
4350 // Uses main
4351 if ( $namespaceKey == '' ) {
4352 $namespaceKey = 'main';
4353 }
4354 // Changes file to image for backwards compatibility
4355 if ( $namespaceKey == 'file' ) {
4356 $namespaceKey = 'image';
4357 }
4358 return $prepend . $namespaceKey;
4359 }
4360
4361 /**
4362 * Get all extant redirects to this Title
4363 *
4364 * @param int|null $ns Single namespace to consider; null to consider all namespaces
4365 * @return Title[] Array of Title redirects to this title
4366 */
4367 public function getRedirectsHere( $ns = null ) {
4368 $redirs = [];
4369
4370 $dbr = wfGetDB( DB_REPLICA );
4371 $where = [
4372 'rd_namespace' => $this->mNamespace,
4373 'rd_title' => $this->mDbkeyform,
4374 'rd_from = page_id'
4375 ];
4376 if ( $this->isExternal() ) {
4377 $where['rd_interwiki'] = $this->mInterwiki;
4378 } else {
4379 $where[] = 'rd_interwiki = ' . $dbr->addQuotes( '' ) . ' OR rd_interwiki IS NULL';
4380 }
4381 if ( !is_null( $ns ) ) {
4382 $where['page_namespace'] = $ns;
4383 }
4384
4385 $res = $dbr->select(
4386 [ 'redirect', 'page' ],
4387 [ 'page_namespace', 'page_title' ],
4388 $where,
4389 __METHOD__
4390 );
4391
4392 foreach ( $res as $row ) {
4393 $redirs[] = self::newFromRow( $row );
4394 }
4395 return $redirs;
4396 }
4397
4398 /**
4399 * Check if this Title is a valid redirect target
4400 *
4401 * @return bool
4402 */
4403 public function isValidRedirectTarget() {
4404 global $wgInvalidRedirectTargets;
4405
4406 if ( $this->isSpecialPage() ) {
4407 // invalid redirect targets are stored in a global array, but explicitly disallow Userlogout here
4408 if ( $this->isSpecial( 'Userlogout' ) ) {
4409 return false;
4410 }
4411
4412 foreach ( $wgInvalidRedirectTargets as $target ) {
4413 if ( $this->isSpecial( $target ) ) {
4414 return false;
4415 }
4416 }
4417 }
4418
4419 return true;
4420 }
4421
4422 /**
4423 * Get a backlink cache object
4424 *
4425 * @return BacklinkCache
4426 */
4427 public function getBacklinkCache() {
4428 return BacklinkCache::get( $this );
4429 }
4430
4431 /**
4432 * Whether the magic words __INDEX__ and __NOINDEX__ function for this page.
4433 *
4434 * @return bool
4435 */
4436 public function canUseNoindex() {
4437 global $wgExemptFromUserRobotsControl;
4438
4439 $bannedNamespaces = $wgExemptFromUserRobotsControl ??
4440 MediaWikiServices::getInstance()->getNamespaceInfo()->getContentNamespaces();
4441
4442 return !in_array( $this->mNamespace, $bannedNamespaces );
4443 }
4444
4445 /**
4446 * Returns the raw sort key to be used for categories, with the specified
4447 * prefix. This will be fed to Collation::getSortKey() to get a
4448 * binary sortkey that can be used for actual sorting.
4449 *
4450 * @param string $prefix The prefix to be used, specified using
4451 * {{defaultsort:}} or like [[Category:Foo|prefix]]. Empty for no
4452 * prefix.
4453 * @return string
4454 */
4455 public function getCategorySortkey( $prefix = '' ) {
4456 $unprefixed = $this->getText();
4457
4458 // Anything that uses this hook should only depend
4459 // on the Title object passed in, and should probably
4460 // tell the users to run updateCollations.php --force
4461 // in order to re-sort existing category relations.
4462 Hooks::run( 'GetDefaultSortkey', [ $this, &$unprefixed ] );
4463 if ( $prefix !== '' ) {
4464 # Separate with a line feed, so the unprefixed part is only used as
4465 # a tiebreaker when two pages have the exact same prefix.
4466 # In UCA, tab is the only character that can sort above LF
4467 # so we strip both of them from the original prefix.
4468 $prefix = strtr( $prefix, "\n\t", ' ' );
4469 return "$prefix\n$unprefixed";
4470 }
4471 return $unprefixed;
4472 }
4473
4474 /**
4475 * Returns the page language code saved in the database, if $wgPageLanguageUseDB is set
4476 * to true in LocalSettings.php, otherwise returns false. If there is no language saved in
4477 * the db, it will return NULL.
4478 *
4479 * @return string|null|bool
4480 */
4481 private function getDbPageLanguageCode() {
4482 global $wgPageLanguageUseDB;
4483
4484 // check, if the page language could be saved in the database, and if so and
4485 // the value is not requested already, lookup the page language using LinkCache
4486 if ( $wgPageLanguageUseDB && $this->mDbPageLanguage === false ) {
4487 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
4488 $linkCache->addLinkObj( $this );
4489 $this->mDbPageLanguage = $linkCache->getGoodLinkFieldObj( $this, 'lang' );
4490 }
4491
4492 return $this->mDbPageLanguage;
4493 }
4494
4495 /**
4496 * Get the language in which the content of this page is written in
4497 * wikitext. Defaults to content language, but in certain cases it can be
4498 * e.g. $wgLang (such as special pages, which are in the user language).
4499 *
4500 * @since 1.18
4501 * @return Language
4502 */
4503 public function getPageLanguage() {
4504 global $wgLang, $wgLanguageCode;
4505 if ( $this->isSpecialPage() ) {
4506 // special pages are in the user language
4507 return $wgLang;
4508 }
4509
4510 // Checking if DB language is set
4511 $dbPageLanguage = $this->getDbPageLanguageCode();
4512 if ( $dbPageLanguage ) {
4513 return wfGetLangObj( $dbPageLanguage );
4514 }
4515
4516 if ( !$this->mPageLanguage || $this->mPageLanguage[1] !== $wgLanguageCode ) {
4517 // Note that this may depend on user settings, so the cache should
4518 // be only per-request.
4519 // NOTE: ContentHandler::getPageLanguage() may need to load the
4520 // content to determine the page language!
4521 // Checking $wgLanguageCode hasn't changed for the benefit of unit
4522 // tests.
4523 $contentHandler = ContentHandler::getForTitle( $this );
4524 $langObj = $contentHandler->getPageLanguage( $this );
4525 $this->mPageLanguage = [ $langObj->getCode(), $wgLanguageCode ];
4526 } else {
4527 $langObj = Language::factory( $this->mPageLanguage[0] );
4528 }
4529
4530 return $langObj;
4531 }
4532
4533 /**
4534 * Get the language in which the content of this page is written when
4535 * viewed by user. Defaults to content language, but in certain cases it can be
4536 * e.g. $wgLang (such as special pages, which are in the user language).
4537 *
4538 * @since 1.20
4539 * @return Language
4540 */
4541 public function getPageViewLanguage() {
4542 global $wgLang;
4543
4544 if ( $this->isSpecialPage() ) {
4545 // If the user chooses a variant, the content is actually
4546 // in a language whose code is the variant code.
4547 $variant = $wgLang->getPreferredVariant();
4548 if ( $wgLang->getCode() !== $variant ) {
4549 return Language::factory( $variant );
4550 }
4551
4552 return $wgLang;
4553 }
4554
4555 // Checking if DB language is set
4556 $dbPageLanguage = $this->getDbPageLanguageCode();
4557 if ( $dbPageLanguage ) {
4558 $pageLang = wfGetLangObj( $dbPageLanguage );
4559 $variant = $pageLang->getPreferredVariant();
4560 if ( $pageLang->getCode() !== $variant ) {
4561 $pageLang = Language::factory( $variant );
4562 }
4563
4564 return $pageLang;
4565 }
4566
4567 // @note Can't be cached persistently, depends on user settings.
4568 // @note ContentHandler::getPageViewLanguage() may need to load the
4569 // content to determine the page language!
4570 $contentHandler = ContentHandler::getForTitle( $this );
4571 $pageLang = $contentHandler->getPageViewLanguage( $this );
4572 return $pageLang;
4573 }
4574
4575 /**
4576 * Get a list of rendered edit notices for this page.
4577 *
4578 * Array is keyed by the original message key, and values are rendered using parseAsBlock, so
4579 * they will already be wrapped in paragraphs.
4580 *
4581 * @since 1.21
4582 * @param int $oldid Revision ID that's being edited
4583 * @return array
4584 */
4585 public function getEditNotices( $oldid = 0 ) {
4586 $notices = [];
4587
4588 // Optional notice for the entire namespace
4589 $editnotice_ns = 'editnotice-' . $this->mNamespace;
4590 $msg = wfMessage( $editnotice_ns );
4591 if ( $msg->exists() ) {
4592 $html = $msg->parseAsBlock();
4593 // Edit notices may have complex logic, but output nothing (T91715)
4594 if ( trim( $html ) !== '' ) {
4595 $notices[$editnotice_ns] = Html::rawElement(
4596 'div',
4597 [ 'class' => [
4598 'mw-editnotice',
4599 'mw-editnotice-namespace',
4600 Sanitizer::escapeClass( "mw-$editnotice_ns" )
4601 ] ],
4602 $html
4603 );
4604 }
4605 }
4606
4607 if (
4608 MediaWikiServices::getInstance()->getNamespaceInfo()->
4609 hasSubpages( $this->mNamespace )
4610 ) {
4611 // Optional notice for page itself and any parent page
4612 $editnotice_base = $editnotice_ns;
4613 foreach ( explode( '/', $this->mDbkeyform ) as $part ) {
4614 $editnotice_base .= '-' . $part;
4615 $msg = wfMessage( $editnotice_base );
4616 if ( $msg->exists() ) {
4617 $html = $msg->parseAsBlock();
4618 if ( trim( $html ) !== '' ) {
4619 $notices[$editnotice_base] = Html::rawElement(
4620 'div',
4621 [ 'class' => [
4622 'mw-editnotice',
4623 'mw-editnotice-base',
4624 Sanitizer::escapeClass( "mw-$editnotice_base" )
4625 ] ],
4626 $html
4627 );
4628 }
4629 }
4630 }
4631 } else {
4632 // Even if there are no subpages in namespace, we still don't want "/" in MediaWiki message keys
4633 $editnoticeText = $editnotice_ns . '-' . strtr( $this->mDbkeyform, '/', '-' );
4634 $msg = wfMessage( $editnoticeText );
4635 if ( $msg->exists() ) {
4636 $html = $msg->parseAsBlock();
4637 if ( trim( $html ) !== '' ) {
4638 $notices[$editnoticeText] = Html::rawElement(
4639 'div',
4640 [ 'class' => [
4641 'mw-editnotice',
4642 'mw-editnotice-page',
4643 Sanitizer::escapeClass( "mw-$editnoticeText" )
4644 ] ],
4645 $html
4646 );
4647 }
4648 }
4649 }
4650
4651 Hooks::run( 'TitleGetEditNotices', [ $this, $oldid, &$notices ] );
4652 return $notices;
4653 }
4654
4655 /**
4656 * @return array
4657 */
4658 public function __sleep() {
4659 return [
4660 'mNamespace',
4661 'mDbkeyform',
4662 'mFragment',
4663 'mInterwiki',
4664 'mLocalInterwiki',
4665 'mUserCaseDBKey',
4666 'mDefaultNamespace',
4667 ];
4668 }
4669
4670 public function __wakeup() {
4671 $this->mArticleID = ( $this->mNamespace >= 0 ) ? -1 : 0;
4672 $this->mUrlform = wfUrlencode( $this->mDbkeyform );
4673 $this->mTextform = strtr( $this->mDbkeyform, '_', ' ' );
4674 }
4675
4676 }