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