Merge "[MCR] RevisionStore, enable insertions for new schema"
[lhc/web/wiklou.git] / includes / page / WikiPage.php
1 <?php
2 /**
3 * Base representation for a MediaWiki page.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 use MediaWiki\Edit\PreparedEdit;
24 use MediaWiki\Logger\LoggerFactory;
25 use MediaWiki\MediaWikiServices;
26 use MediaWiki\Storage\DerivedPageDataUpdater;
27 use MediaWiki\Storage\PageUpdater;
28 use MediaWiki\Storage\RevisionRecord;
29 use MediaWiki\Storage\RevisionSlotsUpdate;
30 use MediaWiki\Storage\RevisionStore;
31 use Wikimedia\Assert\Assert;
32 use Wikimedia\Rdbms\FakeResultWrapper;
33 use Wikimedia\Rdbms\IDatabase;
34 use Wikimedia\Rdbms\LoadBalancer;
35
36 /**
37 * Class representing a MediaWiki article and history.
38 *
39 * Some fields are public only for backwards-compatibility. Use accessors.
40 * In the past, this class was part of Article.php and everything was public.
41 */
42 class WikiPage implements Page, IDBAccessObject {
43 // Constants for $mDataLoadedFrom and related
44
45 /**
46 * @var Title
47 */
48 public $mTitle = null;
49
50 /**@{{
51 * @protected
52 */
53 public $mDataLoaded = false; // !< Boolean
54 public $mIsRedirect = false; // !< Boolean
55 public $mLatest = false; // !< Integer (false means "not loaded")
56 /**@}}*/
57
58 /** @var PreparedEdit Map of cache fields (text, parser output, ect) for a proposed/new edit */
59 public $mPreparedEdit = false;
60
61 /**
62 * @var int
63 */
64 protected $mId = null;
65
66 /**
67 * @var int One of the READ_* constants
68 */
69 protected $mDataLoadedFrom = self::READ_NONE;
70
71 /**
72 * @var Title
73 */
74 protected $mRedirectTarget = null;
75
76 /**
77 * @var Revision
78 */
79 protected $mLastRevision = null;
80
81 /**
82 * @var string Timestamp of the current revision or empty string if not loaded
83 */
84 protected $mTimestamp = '';
85
86 /**
87 * @var string
88 */
89 protected $mTouched = '19700101000000';
90
91 /**
92 * @var string
93 */
94 protected $mLinksUpdated = '19700101000000';
95
96 /**
97 * @var DerivedPageDataUpdater|null
98 */
99 private $derivedDataUpdater = null;
100
101 /**
102 * Constructor and clear the article
103 * @param Title $title Reference to a Title object.
104 */
105 public function __construct( Title $title ) {
106 $this->mTitle = $title;
107 }
108
109 /**
110 * Makes sure that the mTitle object is cloned
111 * to the newly cloned WikiPage.
112 */
113 public function __clone() {
114 $this->mTitle = clone $this->mTitle;
115 }
116
117 /**
118 * Create a WikiPage object of the appropriate class for the given title.
119 *
120 * @param Title $title
121 *
122 * @throws MWException
123 * @return WikiPage|WikiCategoryPage|WikiFilePage
124 */
125 public static function factory( Title $title ) {
126 $ns = $title->getNamespace();
127
128 if ( $ns == NS_MEDIA ) {
129 throw new MWException( "NS_MEDIA is a virtual namespace; use NS_FILE." );
130 } elseif ( $ns < 0 ) {
131 throw new MWException( "Invalid or virtual namespace $ns given." );
132 }
133
134 $page = null;
135 if ( !Hooks::run( 'WikiPageFactory', [ $title, &$page ] ) ) {
136 return $page;
137 }
138
139 switch ( $ns ) {
140 case NS_FILE:
141 $page = new WikiFilePage( $title );
142 break;
143 case NS_CATEGORY:
144 $page = new WikiCategoryPage( $title );
145 break;
146 default:
147 $page = new WikiPage( $title );
148 }
149
150 return $page;
151 }
152
153 /**
154 * Constructor from a page id
155 *
156 * @param int $id Article ID to load
157 * @param string|int $from One of the following values:
158 * - "fromdb" or WikiPage::READ_NORMAL to select from a replica DB
159 * - "fromdbmaster" or WikiPage::READ_LATEST to select from the master database
160 *
161 * @return WikiPage|null
162 */
163 public static function newFromID( $id, $from = 'fromdb' ) {
164 // page ids are never 0 or negative, see T63166
165 if ( $id < 1 ) {
166 return null;
167 }
168
169 $from = self::convertSelectType( $from );
170 $db = wfGetDB( $from === self::READ_LATEST ? DB_MASTER : DB_REPLICA );
171 $pageQuery = self::getQueryInfo();
172 $row = $db->selectRow(
173 $pageQuery['tables'], $pageQuery['fields'], [ 'page_id' => $id ], __METHOD__,
174 [], $pageQuery['joins']
175 );
176 if ( !$row ) {
177 return null;
178 }
179 return self::newFromRow( $row, $from );
180 }
181
182 /**
183 * Constructor from a database row
184 *
185 * @since 1.20
186 * @param object $row Database row containing at least fields returned by selectFields().
187 * @param string|int $from Source of $data:
188 * - "fromdb" or WikiPage::READ_NORMAL: from a replica DB
189 * - "fromdbmaster" or WikiPage::READ_LATEST: from the master DB
190 * - "forupdate" or WikiPage::READ_LOCKING: from the master DB using SELECT FOR UPDATE
191 * @return WikiPage
192 */
193 public static function newFromRow( $row, $from = 'fromdb' ) {
194 $page = self::factory( Title::newFromRow( $row ) );
195 $page->loadFromRow( $row, $from );
196 return $page;
197 }
198
199 /**
200 * Convert 'fromdb', 'fromdbmaster' and 'forupdate' to READ_* constants.
201 *
202 * @param object|string|int $type
203 * @return mixed
204 */
205 private static function convertSelectType( $type ) {
206 switch ( $type ) {
207 case 'fromdb':
208 return self::READ_NORMAL;
209 case 'fromdbmaster':
210 return self::READ_LATEST;
211 case 'forupdate':
212 return self::READ_LOCKING;
213 default:
214 // It may already be an integer or whatever else
215 return $type;
216 }
217 }
218
219 /**
220 * @return RevisionStore
221 */
222 private function getRevisionStore() {
223 return MediaWikiServices::getInstance()->getRevisionStore();
224 }
225
226 /**
227 * @return ParserCache
228 */
229 private function getParserCache() {
230 return MediaWikiServices::getInstance()->getParserCache();
231 }
232
233 /**
234 * @return LoadBalancer
235 */
236 private function getDBLoadBalancer() {
237 return MediaWikiServices::getInstance()->getDBLoadBalancer();
238 }
239
240 /**
241 * @todo Move this UI stuff somewhere else
242 *
243 * @see ContentHandler::getActionOverrides
244 * @return array
245 */
246 public function getActionOverrides() {
247 return $this->getContentHandler()->getActionOverrides();
248 }
249
250 /**
251 * Returns the ContentHandler instance to be used to deal with the content of this WikiPage.
252 *
253 * Shorthand for ContentHandler::getForModelID( $this->getContentModel() );
254 *
255 * @return ContentHandler
256 *
257 * @since 1.21
258 */
259 public function getContentHandler() {
260 return ContentHandler::getForModelID( $this->getContentModel() );
261 }
262
263 /**
264 * Get the title object of the article
265 * @return Title Title object of this page
266 */
267 public function getTitle() {
268 return $this->mTitle;
269 }
270
271 /**
272 * Clear the object
273 * @return void
274 */
275 public function clear() {
276 $this->mDataLoaded = false;
277 $this->mDataLoadedFrom = self::READ_NONE;
278
279 $this->clearCacheFields();
280 }
281
282 /**
283 * Clear the object cache fields
284 * @return void
285 */
286 protected function clearCacheFields() {
287 $this->mId = null;
288 $this->mRedirectTarget = null; // Title object if set
289 $this->mLastRevision = null; // Latest revision
290 $this->mTouched = '19700101000000';
291 $this->mLinksUpdated = '19700101000000';
292 $this->mTimestamp = '';
293 $this->mIsRedirect = false;
294 $this->mLatest = false;
295 // T59026: do not clear $this->derivedDataUpdater since getDerivedDataUpdater() already
296 // checks the requested rev ID and content against the cached one. For most
297 // content types, the output should not change during the lifetime of this cache.
298 // Clearing it can cause extra parses on edit for no reason.
299 }
300
301 /**
302 * Clear the mPreparedEdit cache field, as may be needed by mutable content types
303 * @return void
304 * @since 1.23
305 */
306 public function clearPreparedEdit() {
307 $this->mPreparedEdit = false;
308 }
309
310 /**
311 * Return the list of revision fields that should be selected to create
312 * a new page.
313 *
314 * @deprecated since 1.31, use self::getQueryInfo() instead.
315 * @return array
316 */
317 public static function selectFields() {
318 global $wgContentHandlerUseDB, $wgPageLanguageUseDB;
319
320 wfDeprecated( __METHOD__, '1.31' );
321
322 $fields = [
323 'page_id',
324 'page_namespace',
325 'page_title',
326 'page_restrictions',
327 'page_is_redirect',
328 'page_is_new',
329 'page_random',
330 'page_touched',
331 'page_links_updated',
332 'page_latest',
333 'page_len',
334 ];
335
336 if ( $wgContentHandlerUseDB ) {
337 $fields[] = 'page_content_model';
338 }
339
340 if ( $wgPageLanguageUseDB ) {
341 $fields[] = 'page_lang';
342 }
343
344 return $fields;
345 }
346
347 /**
348 * Return the tables, fields, and join conditions to be selected to create
349 * a new page object.
350 * @since 1.31
351 * @return array With three keys:
352 * - tables: (string[]) to include in the `$table` to `IDatabase->select()`
353 * - fields: (string[]) to include in the `$vars` to `IDatabase->select()`
354 * - joins: (array) to include in the `$join_conds` to `IDatabase->select()`
355 */
356 public static function getQueryInfo() {
357 global $wgContentHandlerUseDB, $wgPageLanguageUseDB;
358
359 $ret = [
360 'tables' => [ 'page' ],
361 'fields' => [
362 'page_id',
363 'page_namespace',
364 'page_title',
365 'page_restrictions',
366 'page_is_redirect',
367 'page_is_new',
368 'page_random',
369 'page_touched',
370 'page_links_updated',
371 'page_latest',
372 'page_len',
373 ],
374 'joins' => [],
375 ];
376
377 if ( $wgContentHandlerUseDB ) {
378 $ret['fields'][] = 'page_content_model';
379 }
380
381 if ( $wgPageLanguageUseDB ) {
382 $ret['fields'][] = 'page_lang';
383 }
384
385 return $ret;
386 }
387
388 /**
389 * Fetch a page record with the given conditions
390 * @param IDatabase $dbr
391 * @param array $conditions
392 * @param array $options
393 * @return object|bool Database result resource, or false on failure
394 */
395 protected function pageData( $dbr, $conditions, $options = [] ) {
396 $pageQuery = self::getQueryInfo();
397
398 // Avoid PHP 7.1 warning of passing $this by reference
399 $wikiPage = $this;
400
401 Hooks::run( 'ArticlePageDataBefore', [
402 &$wikiPage, &$pageQuery['fields'], &$pageQuery['tables'], &$pageQuery['joins']
403 ] );
404
405 $row = $dbr->selectRow(
406 $pageQuery['tables'],
407 $pageQuery['fields'],
408 $conditions,
409 __METHOD__,
410 $options,
411 $pageQuery['joins']
412 );
413
414 Hooks::run( 'ArticlePageDataAfter', [ &$wikiPage, &$row ] );
415
416 return $row;
417 }
418
419 /**
420 * Fetch a page record matching the Title object's namespace and title
421 * using a sanitized title string
422 *
423 * @param IDatabase $dbr
424 * @param Title $title
425 * @param array $options
426 * @return object|bool Database result resource, or false on failure
427 */
428 public function pageDataFromTitle( $dbr, $title, $options = [] ) {
429 return $this->pageData( $dbr, [
430 'page_namespace' => $title->getNamespace(),
431 'page_title' => $title->getDBkey() ], $options );
432 }
433
434 /**
435 * Fetch a page record matching the requested ID
436 *
437 * @param IDatabase $dbr
438 * @param int $id
439 * @param array $options
440 * @return object|bool Database result resource, or false on failure
441 */
442 public function pageDataFromId( $dbr, $id, $options = [] ) {
443 return $this->pageData( $dbr, [ 'page_id' => $id ], $options );
444 }
445
446 /**
447 * Load the object from a given source by title
448 *
449 * @param object|string|int $from One of the following:
450 * - A DB query result object.
451 * - "fromdb" or WikiPage::READ_NORMAL to get from a replica DB.
452 * - "fromdbmaster" or WikiPage::READ_LATEST to get from the master DB.
453 * - "forupdate" or WikiPage::READ_LOCKING to get from the master DB
454 * using SELECT FOR UPDATE.
455 *
456 * @return void
457 */
458 public function loadPageData( $from = 'fromdb' ) {
459 $from = self::convertSelectType( $from );
460 if ( is_int( $from ) && $from <= $this->mDataLoadedFrom ) {
461 // We already have the data from the correct location, no need to load it twice.
462 return;
463 }
464
465 if ( is_int( $from ) ) {
466 list( $index, $opts ) = DBAccessObjectUtils::getDBOptions( $from );
467 $loadBalancer = $this->getDBLoadBalancer();
468 $db = $loadBalancer->getConnection( $index );
469 $data = $this->pageDataFromTitle( $db, $this->mTitle, $opts );
470
471 if ( !$data
472 && $index == DB_REPLICA
473 && $loadBalancer->getServerCount() > 1
474 && $loadBalancer->hasOrMadeRecentMasterChanges()
475 ) {
476 $from = self::READ_LATEST;
477 list( $index, $opts ) = DBAccessObjectUtils::getDBOptions( $from );
478 $db = $loadBalancer->getConnection( $index );
479 $data = $this->pageDataFromTitle( $db, $this->mTitle, $opts );
480 }
481 } else {
482 // No idea from where the caller got this data, assume replica DB.
483 $data = $from;
484 $from = self::READ_NORMAL;
485 }
486
487 $this->loadFromRow( $data, $from );
488 }
489
490 /**
491 * Checks whether the page data was loaded using the given database access mode (or better).
492 *
493 * @since 1.32
494 *
495 * @param string|int $from One of the following:
496 * - "fromdb" or WikiPage::READ_NORMAL to get from a replica DB.
497 * - "fromdbmaster" or WikiPage::READ_LATEST to get from the master DB.
498 * - "forupdate" or WikiPage::READ_LOCKING to get from the master DB
499 * using SELECT FOR UPDATE.
500 *
501 * @return bool
502 */
503 public function wasLoadedFrom( $from ) {
504 $from = self::convertSelectType( $from );
505
506 if ( !is_int( $from ) ) {
507 // No idea from where the caller got this data, assume replica DB.
508 $from = self::READ_NORMAL;
509 }
510
511 if ( is_int( $from ) && $from <= $this->mDataLoadedFrom ) {
512 return true;
513 }
514
515 return false;
516 }
517
518 /**
519 * Load the object from a database row
520 *
521 * @since 1.20
522 * @param object|bool $data DB row containing fields returned by selectFields() or false
523 * @param string|int $from One of the following:
524 * - "fromdb" or WikiPage::READ_NORMAL if the data comes from a replica DB
525 * - "fromdbmaster" or WikiPage::READ_LATEST if the data comes from the master DB
526 * - "forupdate" or WikiPage::READ_LOCKING if the data comes from
527 * the master DB using SELECT FOR UPDATE
528 */
529 public function loadFromRow( $data, $from ) {
530 $lc = LinkCache::singleton();
531 $lc->clearLink( $this->mTitle );
532
533 if ( $data ) {
534 $lc->addGoodLinkObjFromRow( $this->mTitle, $data );
535
536 $this->mTitle->loadFromRow( $data );
537
538 // Old-fashioned restrictions
539 $this->mTitle->loadRestrictions( $data->page_restrictions );
540
541 $this->mId = intval( $data->page_id );
542 $this->mTouched = wfTimestamp( TS_MW, $data->page_touched );
543 $this->mLinksUpdated = wfTimestampOrNull( TS_MW, $data->page_links_updated );
544 $this->mIsRedirect = intval( $data->page_is_redirect );
545 $this->mLatest = intval( $data->page_latest );
546 // T39225: $latest may no longer match the cached latest Revision object.
547 // Double-check the ID of any cached latest Revision object for consistency.
548 if ( $this->mLastRevision && $this->mLastRevision->getId() != $this->mLatest ) {
549 $this->mLastRevision = null;
550 $this->mTimestamp = '';
551 }
552 } else {
553 $lc->addBadLinkObj( $this->mTitle );
554
555 $this->mTitle->loadFromRow( false );
556
557 $this->clearCacheFields();
558
559 $this->mId = 0;
560 }
561
562 $this->mDataLoaded = true;
563 $this->mDataLoadedFrom = self::convertSelectType( $from );
564 }
565
566 /**
567 * @return int Page ID
568 */
569 public function getId() {
570 if ( !$this->mDataLoaded ) {
571 $this->loadPageData();
572 }
573 return $this->mId;
574 }
575
576 /**
577 * @return bool Whether or not the page exists in the database
578 */
579 public function exists() {
580 if ( !$this->mDataLoaded ) {
581 $this->loadPageData();
582 }
583 return $this->mId > 0;
584 }
585
586 /**
587 * Check if this page is something we're going to be showing
588 * some sort of sensible content for. If we return false, page
589 * views (plain action=view) will return an HTTP 404 response,
590 * so spiders and robots can know they're following a bad link.
591 *
592 * @return bool
593 */
594 public function hasViewableContent() {
595 return $this->mTitle->isKnown();
596 }
597
598 /**
599 * Tests if the article content represents a redirect
600 *
601 * @return bool
602 */
603 public function isRedirect() {
604 if ( !$this->mDataLoaded ) {
605 $this->loadPageData();
606 }
607
608 return (bool)$this->mIsRedirect;
609 }
610
611 /**
612 * Returns the page's content model id (see the CONTENT_MODEL_XXX constants).
613 *
614 * Will use the revisions actual content model if the page exists,
615 * and the page's default if the page doesn't exist yet.
616 *
617 * @return string
618 *
619 * @since 1.21
620 */
621 public function getContentModel() {
622 if ( $this->exists() ) {
623 $cache = ObjectCache::getMainWANInstance();
624
625 return $cache->getWithSetCallback(
626 $cache->makeKey( 'page-content-model', $this->getLatest() ),
627 $cache::TTL_MONTH,
628 function () {
629 $rev = $this->getRevision();
630 if ( $rev ) {
631 // Look at the revision's actual content model
632 return $rev->getContentModel();
633 } else {
634 $title = $this->mTitle->getPrefixedDBkey();
635 wfWarn( "Page $title exists but has no (visible) revisions!" );
636 return $this->mTitle->getContentModel();
637 }
638 }
639 );
640 }
641
642 // use the default model for this page
643 return $this->mTitle->getContentModel();
644 }
645
646 /**
647 * Loads page_touched and returns a value indicating if it should be used
648 * @return bool True if this page exists and is not a redirect
649 */
650 public function checkTouched() {
651 if ( !$this->mDataLoaded ) {
652 $this->loadPageData();
653 }
654 return ( $this->mId && !$this->mIsRedirect );
655 }
656
657 /**
658 * Get the page_touched field
659 * @return string Containing GMT timestamp
660 */
661 public function getTouched() {
662 if ( !$this->mDataLoaded ) {
663 $this->loadPageData();
664 }
665 return $this->mTouched;
666 }
667
668 /**
669 * Get the page_links_updated field
670 * @return string|null Containing GMT timestamp
671 */
672 public function getLinksTimestamp() {
673 if ( !$this->mDataLoaded ) {
674 $this->loadPageData();
675 }
676 return $this->mLinksUpdated;
677 }
678
679 /**
680 * Get the page_latest field
681 * @return int The rev_id of current revision
682 */
683 public function getLatest() {
684 if ( !$this->mDataLoaded ) {
685 $this->loadPageData();
686 }
687 return (int)$this->mLatest;
688 }
689
690 /**
691 * Get the Revision object of the oldest revision
692 * @return Revision|null
693 */
694 public function getOldestRevision() {
695 // Try using the replica DB first, then try the master
696 $rev = $this->mTitle->getFirstRevision();
697 if ( !$rev ) {
698 $rev = $this->mTitle->getFirstRevision( Title::GAID_FOR_UPDATE );
699 }
700 return $rev;
701 }
702
703 /**
704 * Loads everything except the text
705 * This isn't necessary for all uses, so it's only done if needed.
706 */
707 protected function loadLastEdit() {
708 if ( $this->mLastRevision !== null ) {
709 return; // already loaded
710 }
711
712 $latest = $this->getLatest();
713 if ( !$latest ) {
714 return; // page doesn't exist or is missing page_latest info
715 }
716
717 if ( $this->mDataLoadedFrom == self::READ_LOCKING ) {
718 // T39225: if session S1 loads the page row FOR UPDATE, the result always
719 // includes the latest changes committed. This is true even within REPEATABLE-READ
720 // transactions, where S1 normally only sees changes committed before the first S1
721 // SELECT. Thus we need S1 to also gets the revision row FOR UPDATE; otherwise, it
722 // may not find it since a page row UPDATE and revision row INSERT by S2 may have
723 // happened after the first S1 SELECT.
724 // https://dev.mysql.com/doc/refman/5.0/en/set-transaction.html#isolevel_repeatable-read
725 $flags = Revision::READ_LOCKING;
726 $revision = Revision::newFromPageId( $this->getId(), $latest, $flags );
727 } elseif ( $this->mDataLoadedFrom == self::READ_LATEST ) {
728 // Bug T93976: if page_latest was loaded from the master, fetch the
729 // revision from there as well, as it may not exist yet on a replica DB.
730 // Also, this keeps the queries in the same REPEATABLE-READ snapshot.
731 $flags = Revision::READ_LATEST;
732 $revision = Revision::newFromPageId( $this->getId(), $latest, $flags );
733 } else {
734 $dbr = wfGetDB( DB_REPLICA );
735 $revision = Revision::newKnownCurrent( $dbr, $this->getTitle(), $latest );
736 }
737
738 if ( $revision ) { // sanity
739 $this->setLastEdit( $revision );
740 }
741 }
742
743 /**
744 * Set the latest revision
745 * @param Revision $revision
746 */
747 protected function setLastEdit( Revision $revision ) {
748 $this->mLastRevision = $revision;
749 $this->mTimestamp = $revision->getTimestamp();
750 }
751
752 /**
753 * Get the latest revision
754 * @return Revision|null
755 */
756 public function getRevision() {
757 $this->loadLastEdit();
758 if ( $this->mLastRevision ) {
759 return $this->mLastRevision;
760 }
761 return null;
762 }
763
764 /**
765 * Get the content of the current revision. No side-effects...
766 *
767 * @param int $audience One of:
768 * Revision::FOR_PUBLIC to be displayed to all users
769 * Revision::FOR_THIS_USER to be displayed to $wgUser
770 * Revision::RAW get the text regardless of permissions
771 * @param User $user User object to check for, only if FOR_THIS_USER is passed
772 * to the $audience parameter
773 * @return Content|null The content of the current revision
774 *
775 * @since 1.21
776 */
777 public function getContent( $audience = Revision::FOR_PUBLIC, User $user = null ) {
778 $this->loadLastEdit();
779 if ( $this->mLastRevision ) {
780 return $this->mLastRevision->getContent( $audience, $user );
781 }
782 return null;
783 }
784
785 /**
786 * @return string MW timestamp of last article revision
787 */
788 public function getTimestamp() {
789 // Check if the field has been filled by WikiPage::setTimestamp()
790 if ( !$this->mTimestamp ) {
791 $this->loadLastEdit();
792 }
793
794 return wfTimestamp( TS_MW, $this->mTimestamp );
795 }
796
797 /**
798 * Set the page timestamp (use only to avoid DB queries)
799 * @param string $ts MW timestamp of last article revision
800 * @return void
801 */
802 public function setTimestamp( $ts ) {
803 $this->mTimestamp = wfTimestamp( TS_MW, $ts );
804 }
805
806 /**
807 * @param int $audience One of:
808 * Revision::FOR_PUBLIC to be displayed to all users
809 * Revision::FOR_THIS_USER to be displayed to the given user
810 * Revision::RAW get the text regardless of permissions
811 * @param User $user User object to check for, only if FOR_THIS_USER is passed
812 * to the $audience parameter
813 * @return int User ID for the user that made the last article revision
814 */
815 public function getUser( $audience = Revision::FOR_PUBLIC, User $user = null ) {
816 $this->loadLastEdit();
817 if ( $this->mLastRevision ) {
818 return $this->mLastRevision->getUser( $audience, $user );
819 } else {
820 return -1;
821 }
822 }
823
824 /**
825 * Get the User object of the user who created the page
826 * @param int $audience One of:
827 * Revision::FOR_PUBLIC to be displayed to all users
828 * Revision::FOR_THIS_USER to be displayed to the given user
829 * Revision::RAW get the text regardless of permissions
830 * @param User $user User object to check for, only if FOR_THIS_USER is passed
831 * to the $audience parameter
832 * @return User|null
833 */
834 public function getCreator( $audience = Revision::FOR_PUBLIC, User $user = null ) {
835 $revision = $this->getOldestRevision();
836 if ( $revision ) {
837 $userName = $revision->getUserText( $audience, $user );
838 return User::newFromName( $userName, false );
839 } else {
840 return null;
841 }
842 }
843
844 /**
845 * @param int $audience One of:
846 * Revision::FOR_PUBLIC to be displayed to all users
847 * Revision::FOR_THIS_USER to be displayed to the given user
848 * Revision::RAW get the text regardless of permissions
849 * @param User $user User object to check for, only if FOR_THIS_USER is passed
850 * to the $audience parameter
851 * @return string Username of the user that made the last article revision
852 */
853 public function getUserText( $audience = Revision::FOR_PUBLIC, User $user = null ) {
854 $this->loadLastEdit();
855 if ( $this->mLastRevision ) {
856 return $this->mLastRevision->getUserText( $audience, $user );
857 } else {
858 return '';
859 }
860 }
861
862 /**
863 * @param int $audience One of:
864 * Revision::FOR_PUBLIC to be displayed to all users
865 * Revision::FOR_THIS_USER to be displayed to the given user
866 * Revision::RAW get the text regardless of permissions
867 * @param User $user User object to check for, only if FOR_THIS_USER is passed
868 * to the $audience parameter
869 * @return string Comment stored for the last article revision
870 */
871 public function getComment( $audience = Revision::FOR_PUBLIC, User $user = null ) {
872 $this->loadLastEdit();
873 if ( $this->mLastRevision ) {
874 return $this->mLastRevision->getComment( $audience, $user );
875 } else {
876 return '';
877 }
878 }
879
880 /**
881 * Returns true if last revision was marked as "minor edit"
882 *
883 * @return bool Minor edit indicator for the last article revision.
884 */
885 public function getMinorEdit() {
886 $this->loadLastEdit();
887 if ( $this->mLastRevision ) {
888 return $this->mLastRevision->isMinor();
889 } else {
890 return false;
891 }
892 }
893
894 /**
895 * Determine whether a page would be suitable for being counted as an
896 * article in the site_stats table based on the title & its content
897 *
898 * @param PreparedEdit|bool $editInfo (false): object returned by prepareTextForEdit(),
899 * if false, the current database state will be used
900 * @return bool
901 */
902 public function isCountable( $editInfo = false ) {
903 global $wgArticleCountMethod;
904
905 // NOTE: Keep in sync with DerivedPageDataUpdater::isCountable.
906
907 if ( !$this->mTitle->isContentPage() ) {
908 return false;
909 }
910
911 if ( $editInfo ) {
912 // NOTE: only the main slot can make a page a redirect
913 $content = $editInfo->pstContent;
914 } else {
915 $content = $this->getContent();
916 }
917
918 if ( !$content || $content->isRedirect() ) {
919 return false;
920 }
921
922 $hasLinks = null;
923
924 if ( $wgArticleCountMethod === 'link' ) {
925 // nasty special case to avoid re-parsing to detect links
926
927 if ( $editInfo ) {
928 // ParserOutput::getLinks() is a 2D array of page links, so
929 // to be really correct we would need to recurse in the array
930 // but the main array should only have items in it if there are
931 // links.
932 $hasLinks = (bool)count( $editInfo->output->getLinks() );
933 } else {
934 $hasLinks = (bool)wfGetDB( DB_REPLICA )->selectField( 'pagelinks', 1,
935 [ 'pl_from' => $this->getId() ], __METHOD__ );
936 }
937 }
938
939 return $content->isCountable( $hasLinks );
940 }
941
942 /**
943 * If this page is a redirect, get its target
944 *
945 * The target will be fetched from the redirect table if possible.
946 * If this page doesn't have an entry there, call insertRedirect()
947 * @return Title|null Title object, or null if this page is not a redirect
948 */
949 public function getRedirectTarget() {
950 if ( !$this->mTitle->isRedirect() ) {
951 return null;
952 }
953
954 if ( $this->mRedirectTarget !== null ) {
955 return $this->mRedirectTarget;
956 }
957
958 // Query the redirect table
959 $dbr = wfGetDB( DB_REPLICA );
960 $row = $dbr->selectRow( 'redirect',
961 [ 'rd_namespace', 'rd_title', 'rd_fragment', 'rd_interwiki' ],
962 [ 'rd_from' => $this->getId() ],
963 __METHOD__
964 );
965
966 // rd_fragment and rd_interwiki were added later, populate them if empty
967 if ( $row && !is_null( $row->rd_fragment ) && !is_null( $row->rd_interwiki ) ) {
968 $this->mRedirectTarget = Title::makeTitle(
969 $row->rd_namespace, $row->rd_title,
970 $row->rd_fragment, $row->rd_interwiki
971 );
972 return $this->mRedirectTarget;
973 }
974
975 // This page doesn't have an entry in the redirect table
976 $this->mRedirectTarget = $this->insertRedirect();
977 return $this->mRedirectTarget;
978 }
979
980 /**
981 * Insert an entry for this page into the redirect table if the content is a redirect
982 *
983 * The database update will be deferred via DeferredUpdates
984 *
985 * Don't call this function directly unless you know what you're doing.
986 * @return Title|null Title object or null if not a redirect
987 */
988 public function insertRedirect() {
989 $content = $this->getContent();
990 $retval = $content ? $content->getUltimateRedirectTarget() : null;
991 if ( !$retval ) {
992 return null;
993 }
994
995 // Update the DB post-send if the page has not cached since now
996 $latest = $this->getLatest();
997 DeferredUpdates::addCallableUpdate(
998 function () use ( $retval, $latest ) {
999 $this->insertRedirectEntry( $retval, $latest );
1000 },
1001 DeferredUpdates::POSTSEND,
1002 wfGetDB( DB_MASTER )
1003 );
1004
1005 return $retval;
1006 }
1007
1008 /**
1009 * Insert or update the redirect table entry for this page to indicate it redirects to $rt
1010 * @param Title $rt Redirect target
1011 * @param int|null $oldLatest Prior page_latest for check and set
1012 */
1013 public function insertRedirectEntry( Title $rt, $oldLatest = null ) {
1014 $dbw = wfGetDB( DB_MASTER );
1015 $dbw->startAtomic( __METHOD__ );
1016
1017 if ( !$oldLatest || $oldLatest == $this->lockAndGetLatest() ) {
1018 $dbw->upsert(
1019 'redirect',
1020 [
1021 'rd_from' => $this->getId(),
1022 'rd_namespace' => $rt->getNamespace(),
1023 'rd_title' => $rt->getDBkey(),
1024 'rd_fragment' => $rt->getFragment(),
1025 'rd_interwiki' => $rt->getInterwiki(),
1026 ],
1027 [ 'rd_from' ],
1028 [
1029 'rd_namespace' => $rt->getNamespace(),
1030 'rd_title' => $rt->getDBkey(),
1031 'rd_fragment' => $rt->getFragment(),
1032 'rd_interwiki' => $rt->getInterwiki(),
1033 ],
1034 __METHOD__
1035 );
1036 }
1037
1038 $dbw->endAtomic( __METHOD__ );
1039 }
1040
1041 /**
1042 * Get the Title object or URL this page redirects to
1043 *
1044 * @return bool|Title|string False, Title of in-wiki target, or string with URL
1045 */
1046 public function followRedirect() {
1047 return $this->getRedirectURL( $this->getRedirectTarget() );
1048 }
1049
1050 /**
1051 * Get the Title object or URL to use for a redirect. We use Title
1052 * objects for same-wiki, non-special redirects and URLs for everything
1053 * else.
1054 * @param Title $rt Redirect target
1055 * @return bool|Title|string False, Title object of local target, or string with URL
1056 */
1057 public function getRedirectURL( $rt ) {
1058 if ( !$rt ) {
1059 return false;
1060 }
1061
1062 if ( $rt->isExternal() ) {
1063 if ( $rt->isLocal() ) {
1064 // Offsite wikis need an HTTP redirect.
1065 // This can be hard to reverse and may produce loops,
1066 // so they may be disabled in the site configuration.
1067 $source = $this->mTitle->getFullURL( 'redirect=no' );
1068 return $rt->getFullURL( [ 'rdfrom' => $source ] );
1069 } else {
1070 // External pages without "local" bit set are not valid
1071 // redirect targets
1072 return false;
1073 }
1074 }
1075
1076 if ( $rt->isSpecialPage() ) {
1077 // Gotta handle redirects to special pages differently:
1078 // Fill the HTTP response "Location" header and ignore the rest of the page we're on.
1079 // Some pages are not valid targets.
1080 if ( $rt->isValidRedirectTarget() ) {
1081 return $rt->getFullURL();
1082 } else {
1083 return false;
1084 }
1085 }
1086
1087 return $rt;
1088 }
1089
1090 /**
1091 * Get a list of users who have edited this article, not including the user who made
1092 * the most recent revision, which you can get from $article->getUser() if you want it
1093 * @return UserArrayFromResult
1094 */
1095 public function getContributors() {
1096 // @todo: This is expensive; cache this info somewhere.
1097
1098 $dbr = wfGetDB( DB_REPLICA );
1099
1100 $actorMigration = ActorMigration::newMigration();
1101 $actorQuery = $actorMigration->getJoin( 'rev_user' );
1102
1103 $tables = array_merge( [ 'revision' ], $actorQuery['tables'], [ 'user' ] );
1104
1105 $fields = [
1106 'user_id' => $actorQuery['fields']['rev_user'],
1107 'user_name' => $actorQuery['fields']['rev_user_text'],
1108 'actor_id' => $actorQuery['fields']['rev_actor'],
1109 'user_real_name' => 'MIN(user_real_name)',
1110 'timestamp' => 'MAX(rev_timestamp)',
1111 ];
1112
1113 $conds = [ 'rev_page' => $this->getId() ];
1114
1115 // The user who made the top revision gets credited as "this page was last edited by
1116 // John, based on contributions by Tom, Dick and Harry", so don't include them twice.
1117 $user = $this->getUser()
1118 ? User::newFromId( $this->getUser() )
1119 : User::newFromName( $this->getUserText(), false );
1120 $conds[] = 'NOT(' . $actorMigration->getWhere( $dbr, 'rev_user', $user )['conds'] . ')';
1121
1122 // Username hidden?
1123 $conds[] = "{$dbr->bitAnd( 'rev_deleted', Revision::DELETED_USER )} = 0";
1124
1125 $jconds = [
1126 'user' => [ 'LEFT JOIN', $actorQuery['fields']['rev_user'] . ' = user_id' ],
1127 ] + $actorQuery['joins'];
1128
1129 $options = [
1130 'GROUP BY' => [ $fields['user_id'], $fields['user_name'] ],
1131 'ORDER BY' => 'timestamp DESC',
1132 ];
1133
1134 $res = $dbr->select( $tables, $fields, $conds, __METHOD__, $options, $jconds );
1135 return new UserArrayFromResult( $res );
1136 }
1137
1138 /**
1139 * Should the parser cache be used?
1140 *
1141 * @param ParserOptions $parserOptions ParserOptions to check
1142 * @param int $oldId
1143 * @return bool
1144 */
1145 public function shouldCheckParserCache( ParserOptions $parserOptions, $oldId ) {
1146 return $parserOptions->getStubThreshold() == 0
1147 && $this->exists()
1148 && ( $oldId === null || $oldId === 0 || $oldId === $this->getLatest() )
1149 && $this->getContentHandler()->isParserCacheSupported();
1150 }
1151
1152 /**
1153 * Get a ParserOutput for the given ParserOptions and revision ID.
1154 *
1155 * The parser cache will be used if possible. Cache misses that result
1156 * in parser runs are debounced with PoolCounter.
1157 *
1158 * @since 1.19
1159 * @param ParserOptions $parserOptions ParserOptions to use for the parse operation
1160 * @param null|int $oldid Revision ID to get the text from, passing null or 0 will
1161 * get the current revision (default value)
1162 * @param bool $forceParse Force reindexing, regardless of cache settings
1163 * @return bool|ParserOutput ParserOutput or false if the revision was not found
1164 */
1165 public function getParserOutput(
1166 ParserOptions $parserOptions, $oldid = null, $forceParse = false
1167 ) {
1168 $useParserCache =
1169 ( !$forceParse ) && $this->shouldCheckParserCache( $parserOptions, $oldid );
1170
1171 if ( $useParserCache && !$parserOptions->isSafeToCache() ) {
1172 throw new InvalidArgumentException(
1173 'The supplied ParserOptions are not safe to cache. Fix the options or set $forceParse = true.'
1174 );
1175 }
1176
1177 wfDebug( __METHOD__ .
1178 ': using parser cache: ' . ( $useParserCache ? 'yes' : 'no' ) . "\n" );
1179 if ( $parserOptions->getStubThreshold() ) {
1180 wfIncrStats( 'pcache.miss.stub' );
1181 }
1182
1183 if ( $useParserCache ) {
1184 $parserOutput = $this->getParserCache()
1185 ->get( $this, $parserOptions );
1186 if ( $parserOutput !== false ) {
1187 return $parserOutput;
1188 }
1189 }
1190
1191 if ( $oldid === null || $oldid === 0 ) {
1192 $oldid = $this->getLatest();
1193 }
1194
1195 $pool = new PoolWorkArticleView( $this, $parserOptions, $oldid, $useParserCache );
1196 $pool->execute();
1197
1198 return $pool->getParserOutput();
1199 }
1200
1201 /**
1202 * Do standard deferred updates after page view (existing or missing page)
1203 * @param User $user The relevant user
1204 * @param int $oldid Revision id being viewed; if not given or 0, latest revision is assumed
1205 */
1206 public function doViewUpdates( User $user, $oldid = 0 ) {
1207 if ( wfReadOnly() ) {
1208 return;
1209 }
1210
1211 // Update newtalk / watchlist notification status;
1212 // Avoid outage if the master is not reachable by using a deferred updated
1213 DeferredUpdates::addCallableUpdate(
1214 function () use ( $user, $oldid ) {
1215 Hooks::run( 'PageViewUpdates', [ $this, $user ] );
1216
1217 $user->clearNotification( $this->mTitle, $oldid );
1218 },
1219 DeferredUpdates::PRESEND
1220 );
1221 }
1222
1223 /**
1224 * Perform the actions of a page purging
1225 * @return bool
1226 * @note In 1.28 (and only 1.28), this took a $flags parameter that
1227 * controlled how much purging was done.
1228 */
1229 public function doPurge() {
1230 // Avoid PHP 7.1 warning of passing $this by reference
1231 $wikiPage = $this;
1232
1233 if ( !Hooks::run( 'ArticlePurge', [ &$wikiPage ] ) ) {
1234 return false;
1235 }
1236
1237 $this->mTitle->invalidateCache();
1238
1239 // Clear file cache
1240 HTMLFileCache::clearFileCache( $this->getTitle() );
1241 // Send purge after above page_touched update was committed
1242 DeferredUpdates::addUpdate(
1243 new CdnCacheUpdate( $this->mTitle->getCdnUrls() ),
1244 DeferredUpdates::PRESEND
1245 );
1246
1247 if ( $this->mTitle->getNamespace() == NS_MEDIAWIKI ) {
1248 $messageCache = MessageCache::singleton();
1249 $messageCache->updateMessageOverride( $this->mTitle, $this->getContent() );
1250 }
1251
1252 return true;
1253 }
1254
1255 /**
1256 * Insert a new empty page record for this article.
1257 * This *must* be followed up by creating a revision
1258 * and running $this->updateRevisionOn( ... );
1259 * or else the record will be left in a funky state.
1260 * Best if all done inside a transaction.
1261 *
1262 * @todo Factor out into a PageStore service, to be used by PageUpdater.
1263 *
1264 * @param IDatabase $dbw
1265 * @param int|null $pageId Custom page ID that will be used for the insert statement
1266 *
1267 * @return bool|int The newly created page_id key; false if the row was not
1268 * inserted, e.g. because the title already existed or because the specified
1269 * page ID is already in use.
1270 */
1271 public function insertOn( $dbw, $pageId = null ) {
1272 $pageIdForInsert = $pageId ? [ 'page_id' => $pageId ] : [];
1273 $dbw->insert(
1274 'page',
1275 [
1276 'page_namespace' => $this->mTitle->getNamespace(),
1277 'page_title' => $this->mTitle->getDBkey(),
1278 'page_restrictions' => '',
1279 'page_is_redirect' => 0, // Will set this shortly...
1280 'page_is_new' => 1,
1281 'page_random' => wfRandom(),
1282 'page_touched' => $dbw->timestamp(),
1283 'page_latest' => 0, // Fill this in shortly...
1284 'page_len' => 0, // Fill this in shortly...
1285 ] + $pageIdForInsert,
1286 __METHOD__,
1287 'IGNORE'
1288 );
1289
1290 if ( $dbw->affectedRows() > 0 ) {
1291 $newid = $pageId ? (int)$pageId : $dbw->insertId();
1292 $this->mId = $newid;
1293 $this->mTitle->resetArticleID( $newid );
1294
1295 return $newid;
1296 } else {
1297 return false; // nothing changed
1298 }
1299 }
1300
1301 /**
1302 * Update the page record to point to a newly saved revision.
1303 *
1304 * @todo Factor out into a PageStore service, or move into PageUpdater.
1305 *
1306 * @param IDatabase $dbw
1307 * @param Revision $revision For ID number, and text used to set
1308 * length and redirect status fields
1309 * @param int $lastRevision If given, will not overwrite the page field
1310 * when different from the currently set value.
1311 * Giving 0 indicates the new page flag should be set on.
1312 * @param bool $lastRevIsRedirect If given, will optimize adding and
1313 * removing rows in redirect table.
1314 * @return bool Success; false if the page row was missing or page_latest changed
1315 */
1316 public function updateRevisionOn( $dbw, $revision, $lastRevision = null,
1317 $lastRevIsRedirect = null
1318 ) {
1319 global $wgContentHandlerUseDB;
1320
1321 // TODO: move into PageUpdater or PageStore
1322 // NOTE: when doing that, make sure cached fields get reset in doEditContent,
1323 // and in the compat stub!
1324
1325 // Assertion to try to catch T92046
1326 if ( (int)$revision->getId() === 0 ) {
1327 throw new InvalidArgumentException(
1328 __METHOD__ . ': Revision has ID ' . var_export( $revision->getId(), 1 )
1329 );
1330 }
1331
1332 $content = $revision->getContent();
1333 $len = $content ? $content->getSize() : 0;
1334 $rt = $content ? $content->getUltimateRedirectTarget() : null;
1335
1336 $conditions = [ 'page_id' => $this->getId() ];
1337
1338 if ( !is_null( $lastRevision ) ) {
1339 // An extra check against threads stepping on each other
1340 $conditions['page_latest'] = $lastRevision;
1341 }
1342
1343 $revId = $revision->getId();
1344 Assert::parameter( $revId > 0, '$revision->getId()', 'must be > 0' );
1345
1346 $row = [ /* SET */
1347 'page_latest' => $revId,
1348 'page_touched' => $dbw->timestamp( $revision->getTimestamp() ),
1349 'page_is_new' => ( $lastRevision === 0 ) ? 1 : 0,
1350 'page_is_redirect' => $rt !== null ? 1 : 0,
1351 'page_len' => $len,
1352 ];
1353
1354 if ( $wgContentHandlerUseDB ) {
1355 $row['page_content_model'] = $revision->getContentModel();
1356 }
1357
1358 $dbw->update( 'page',
1359 $row,
1360 $conditions,
1361 __METHOD__ );
1362
1363 $result = $dbw->affectedRows() > 0;
1364 if ( $result ) {
1365 $this->updateRedirectOn( $dbw, $rt, $lastRevIsRedirect );
1366 $this->setLastEdit( $revision );
1367 $this->mLatest = $revision->getId();
1368 $this->mIsRedirect = (bool)$rt;
1369 // Update the LinkCache.
1370 LinkCache::singleton()->addGoodLinkObj(
1371 $this->getId(),
1372 $this->mTitle,
1373 $len,
1374 $this->mIsRedirect,
1375 $this->mLatest,
1376 $revision->getContentModel()
1377 );
1378 }
1379
1380 return $result;
1381 }
1382
1383 /**
1384 * Add row to the redirect table if this is a redirect, remove otherwise.
1385 *
1386 * @param IDatabase $dbw
1387 * @param Title|null $redirectTitle Title object pointing to the redirect target,
1388 * or NULL if this is not a redirect
1389 * @param null|bool $lastRevIsRedirect If given, will optimize adding and
1390 * removing rows in redirect table.
1391 * @return bool True on success, false on failure
1392 * @private
1393 */
1394 public function updateRedirectOn( $dbw, $redirectTitle, $lastRevIsRedirect = null ) {
1395 // Always update redirects (target link might have changed)
1396 // Update/Insert if we don't know if the last revision was a redirect or not
1397 // Delete if changing from redirect to non-redirect
1398 $isRedirect = !is_null( $redirectTitle );
1399
1400 if ( !$isRedirect && $lastRevIsRedirect === false ) {
1401 return true;
1402 }
1403
1404 if ( $isRedirect ) {
1405 $this->insertRedirectEntry( $redirectTitle );
1406 } else {
1407 // This is not a redirect, remove row from redirect table
1408 $where = [ 'rd_from' => $this->getId() ];
1409 $dbw->delete( 'redirect', $where, __METHOD__ );
1410 }
1411
1412 if ( $this->getTitle()->getNamespace() == NS_FILE ) {
1413 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $this->getTitle() );
1414 }
1415
1416 return ( $dbw->affectedRows() != 0 );
1417 }
1418
1419 /**
1420 * If the given revision is newer than the currently set page_latest,
1421 * update the page record. Otherwise, do nothing.
1422 *
1423 * @deprecated since 1.24, use updateRevisionOn instead
1424 *
1425 * @param IDatabase $dbw
1426 * @param Revision $revision
1427 * @return bool
1428 */
1429 public function updateIfNewerOn( $dbw, $revision ) {
1430 $row = $dbw->selectRow(
1431 [ 'revision', 'page' ],
1432 [ 'rev_id', 'rev_timestamp', 'page_is_redirect' ],
1433 [
1434 'page_id' => $this->getId(),
1435 'page_latest=rev_id' ],
1436 __METHOD__ );
1437
1438 if ( $row ) {
1439 if ( wfTimestamp( TS_MW, $row->rev_timestamp ) >= $revision->getTimestamp() ) {
1440 return false;
1441 }
1442 $prev = $row->rev_id;
1443 $lastRevIsRedirect = (bool)$row->page_is_redirect;
1444 } else {
1445 // No or missing previous revision; mark the page as new
1446 $prev = 0;
1447 $lastRevIsRedirect = null;
1448 }
1449
1450 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
1451
1452 return $ret;
1453 }
1454
1455 /**
1456 * Get the content that needs to be saved in order to undo all revisions
1457 * between $undo and $undoafter. Revisions must belong to the same page,
1458 * must exist and must not be deleted
1459 * @param Revision $undo
1460 * @param Revision $undoafter Must be an earlier revision than $undo
1461 * @return Content|bool Content on success, false on failure
1462 * @since 1.21
1463 * Before we had the Content object, this was done in getUndoText
1464 */
1465 public function getUndoContent( Revision $undo, Revision $undoafter = null ) {
1466 $handler = $undo->getContentHandler();
1467 return $handler->getUndoContent( $this->getRevision(), $undo, $undoafter );
1468 }
1469
1470 /**
1471 * Returns true if this page's content model supports sections.
1472 *
1473 * @return bool
1474 *
1475 * @todo The skin should check this and not offer section functionality if
1476 * sections are not supported.
1477 * @todo The EditPage should check this and not offer section functionality
1478 * if sections are not supported.
1479 */
1480 public function supportsSections() {
1481 return $this->getContentHandler()->supportsSections();
1482 }
1483
1484 /**
1485 * @param string|int|null|bool $sectionId Section identifier as a number or string
1486 * (e.g. 0, 1 or 'T-1'), null/false or an empty string for the whole page
1487 * or 'new' for a new section.
1488 * @param Content $sectionContent New content of the section.
1489 * @param string $sectionTitle New section's subject, only if $section is "new".
1490 * @param string $edittime Revision timestamp or null to use the current revision.
1491 *
1492 * @throws MWException
1493 * @return Content|null New complete article content, or null if error.
1494 *
1495 * @since 1.21
1496 * @deprecated since 1.24, use replaceSectionAtRev instead
1497 */
1498 public function replaceSectionContent(
1499 $sectionId, Content $sectionContent, $sectionTitle = '', $edittime = null
1500 ) {
1501 $baseRevId = null;
1502 if ( $edittime && $sectionId !== 'new' ) {
1503 $lb = $this->getDBLoadBalancer();
1504 $dbr = $lb->getConnection( DB_REPLICA );
1505 $rev = Revision::loadFromTimestamp( $dbr, $this->mTitle, $edittime );
1506 // Try the master if this thread may have just added it.
1507 // This could be abstracted into a Revision method, but we don't want
1508 // to encourage loading of revisions by timestamp.
1509 if ( !$rev
1510 && $lb->getServerCount() > 1
1511 && $lb->hasOrMadeRecentMasterChanges()
1512 ) {
1513 $dbw = $lb->getConnection( DB_MASTER );
1514 $rev = Revision::loadFromTimestamp( $dbw, $this->mTitle, $edittime );
1515 }
1516 if ( $rev ) {
1517 $baseRevId = $rev->getId();
1518 }
1519 }
1520
1521 return $this->replaceSectionAtRev( $sectionId, $sectionContent, $sectionTitle, $baseRevId );
1522 }
1523
1524 /**
1525 * @param string|int|null|bool $sectionId Section identifier as a number or string
1526 * (e.g. 0, 1 or 'T-1'), null/false or an empty string for the whole page
1527 * or 'new' for a new section.
1528 * @param Content $sectionContent New content of the section.
1529 * @param string $sectionTitle New section's subject, only if $section is "new".
1530 * @param int|null $baseRevId
1531 *
1532 * @throws MWException
1533 * @return Content|null New complete article content, or null if error.
1534 *
1535 * @since 1.24
1536 */
1537 public function replaceSectionAtRev( $sectionId, Content $sectionContent,
1538 $sectionTitle = '', $baseRevId = null
1539 ) {
1540 if ( strval( $sectionId ) === '' ) {
1541 // Whole-page edit; let the whole text through
1542 $newContent = $sectionContent;
1543 } else {
1544 if ( !$this->supportsSections() ) {
1545 throw new MWException( "sections not supported for content model " .
1546 $this->getContentHandler()->getModelID() );
1547 }
1548
1549 // T32711: always use current version when adding a new section
1550 if ( is_null( $baseRevId ) || $sectionId === 'new' ) {
1551 $oldContent = $this->getContent();
1552 } else {
1553 $rev = Revision::newFromId( $baseRevId );
1554 if ( !$rev ) {
1555 wfDebug( __METHOD__ . " asked for bogus section (page: " .
1556 $this->getId() . "; section: $sectionId)\n" );
1557 return null;
1558 }
1559
1560 $oldContent = $rev->getContent();
1561 }
1562
1563 if ( !$oldContent ) {
1564 wfDebug( __METHOD__ . ": no page text\n" );
1565 return null;
1566 }
1567
1568 $newContent = $oldContent->replaceSection( $sectionId, $sectionContent, $sectionTitle );
1569 }
1570
1571 return $newContent;
1572 }
1573
1574 /**
1575 * Check flags and add EDIT_NEW or EDIT_UPDATE to them as needed.
1576 *
1577 * @deprecated since 1.32, use exists() instead, or simply omit the EDIT_UPDATE
1578 * and EDIT_NEW flags. To protect against race conditions, use PageUpdater::grabParentRevision.
1579 *
1580 * @param int $flags
1581 * @return int Updated $flags
1582 */
1583 public function checkFlags( $flags ) {
1584 if ( !( $flags & EDIT_NEW ) && !( $flags & EDIT_UPDATE ) ) {
1585 if ( $this->exists() ) {
1586 $flags |= EDIT_UPDATE;
1587 } else {
1588 $flags |= EDIT_NEW;
1589 }
1590 }
1591
1592 return $flags;
1593 }
1594
1595 /**
1596 * @return DerivedPageDataUpdater
1597 */
1598 private function newDerivedDataUpdater() {
1599 global $wgContLang, $wgRCWatchCategoryMembership, $wgArticleCountMethod;
1600
1601 $derivedDataUpdater = new DerivedPageDataUpdater(
1602 $this, // NOTE: eventually, PageUpdater should not know about WikiPage
1603 $this->getRevisionStore(),
1604 $this->getParserCache(),
1605 JobQueueGroup::singleton(),
1606 MessageCache::singleton(),
1607 $wgContLang,
1608 LoggerFactory::getInstance( 'SaveParse' )
1609 );
1610
1611 $derivedDataUpdater->setRcWatchCategoryMembership( $wgRCWatchCategoryMembership );
1612 $derivedDataUpdater->setArticleCountMethod( $wgArticleCountMethod );
1613
1614 return $derivedDataUpdater;
1615 }
1616
1617 /**
1618 * Returns a DerivedPageDataUpdater for use with the given target revision or new content.
1619 * This method attempts to re-use the same DerivedPageDataUpdater instance for subsequent calls.
1620 * The parameters passed to this method are used to ensure that the DerivedPageDataUpdater
1621 * returned matches that caller's expectations, allowing an existing instance to be re-used
1622 * if the given parameters match that instance's internal state according to
1623 * DerivedPageDataUpdater::isReusableFor(), and creating a new instance of the parameters do not
1624 * match the existign one.
1625 *
1626 * If neither $forRevision nor $forUpdate is given, a new DerivedPageDataUpdater is always
1627 * created, replacing any DerivedPageDataUpdater currently cached.
1628 *
1629 * MCR migration note: this replaces WikiPage::prepareContentForEdit.
1630 *
1631 * @since 1.32
1632 *
1633 * @param User|null $forUser The user that will be used for, or was used for, PST.
1634 * @param RevisionRecord|null $forRevision The revision created by the edit for which
1635 * to perform updates, if the edit was already saved.
1636 * @param RevisionSlotsUpdate|null $forUpdate The new content to be saved by the edit (pre PST),
1637 * if the edit was not yet saved.
1638 *
1639 * @return DerivedPageDataUpdater
1640 */
1641 private function getDerivedDataUpdater(
1642 User $forUser = null,
1643 RevisionRecord $forRevision = null,
1644 RevisionSlotsUpdate $forUpdate = null
1645 ) {
1646 if ( !$forRevision && !$forUpdate ) {
1647 // NOTE: can't re-use an existing derivedDataUpdater if we don't know what the caller is
1648 // going to use it with.
1649 $this->derivedDataUpdater = null;
1650 }
1651
1652 if ( $this->derivedDataUpdater && !$this->derivedDataUpdater->isContentPrepared() ) {
1653 // NOTE: can't re-use an existing derivedDataUpdater if other code that has a reference
1654 // to it did not yet initialize it, because we don't know what data it will be
1655 // initialized with.
1656 $this->derivedDataUpdater = null;
1657 }
1658
1659 // XXX: It would be nice to have an LRU cache instead of trying to re-use a single instance.
1660 // However, there is no good way to construct a cache key. We'd need to check against all
1661 // cached instances.
1662
1663 if ( $this->derivedDataUpdater
1664 && !$this->derivedDataUpdater->isReusableFor(
1665 $forUser,
1666 $forRevision,
1667 $forUpdate
1668 )
1669 ) {
1670 $this->derivedDataUpdater = null;
1671 }
1672
1673 if ( !$this->derivedDataUpdater ) {
1674 $this->derivedDataUpdater = $this->newDerivedDataUpdater();
1675 }
1676
1677 return $this->derivedDataUpdater;
1678 }
1679
1680 /**
1681 * Returns a PageUpdater for creating new revisions on this page (or creating the page).
1682 *
1683 * The PageUpdater can also be used to detect the need for edit conflict resolution,
1684 * and to protected such conflict resolution from concurrent edits using a check-and-set
1685 * mechanism.
1686 *
1687 * @since 1.32
1688 *
1689 * @param User $user
1690 *
1691 * @return PageUpdater
1692 */
1693 public function newPageUpdater( User $user ) {
1694 global $wgAjaxEditStash, $wgUseAutomaticEditSummaries, $wgPageCreationLog;
1695
1696 $pageUpdater = new PageUpdater(
1697 $user,
1698 $this, // NOTE: eventually, PageUpdater should not know about WikiPage
1699 $this->getDerivedDataUpdater( $user ),
1700 $this->getDBLoadBalancer(),
1701 $this->getRevisionStore()
1702 );
1703
1704 $pageUpdater->setUsePageCreationLog( $wgPageCreationLog );
1705 $pageUpdater->setAjaxEditStash( $wgAjaxEditStash );
1706 $pageUpdater->setUseAutomaticEditSummaries( $wgUseAutomaticEditSummaries );
1707
1708 return $pageUpdater;
1709 }
1710
1711 /**
1712 * Change an existing article or create a new article. Updates RC and all necessary caches,
1713 * optionally via the deferred update array.
1714 *
1715 * @deprecated since 1.32, use PageUpdater::saveRevision instead. Note that the new method
1716 * expects callers to take care of checking EDIT_MINOR against the minoredit right, and to
1717 * apply the autopatrol right as appropriate.
1718 *
1719 * @param Content $content New content
1720 * @param string|CommentStoreComment $summary Edit summary
1721 * @param int $flags Bitfield:
1722 * EDIT_NEW
1723 * Article is known or assumed to be non-existent, create a new one
1724 * EDIT_UPDATE
1725 * Article is known or assumed to be pre-existing, update it
1726 * EDIT_MINOR
1727 * Mark this edit minor, if the user is allowed to do so
1728 * EDIT_SUPPRESS_RC
1729 * Do not log the change in recentchanges
1730 * EDIT_FORCE_BOT
1731 * Mark the edit a "bot" edit regardless of user rights
1732 * EDIT_AUTOSUMMARY
1733 * Fill in blank summaries with generated text where possible
1734 * EDIT_INTERNAL
1735 * Signal that the page retrieve/save cycle happened entirely in this request.
1736 *
1737 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the
1738 * article will be detected. If EDIT_UPDATE is specified and the article
1739 * doesn't exist, the function will return an edit-gone-missing error. If
1740 * EDIT_NEW is specified and the article does exist, an edit-already-exists
1741 * error will be returned. These two conditions are also possible with
1742 * auto-detection due to MediaWiki's performance-optimised locking strategy.
1743 *
1744 * @param bool|int $baseRevId The revision ID this edit was based off, if any.
1745 * This is not the parent revision ID, rather the revision ID for older
1746 * content used as the source for a rollback, for example.
1747 * @param User $user The user doing the edit
1748 * @param string $serialFormat IGNORED.
1749 * @param array|null $tags Change tags to apply to this edit
1750 * Callers are responsible for permission checks
1751 * (with ChangeTags::canAddTagsAccompanyingChange)
1752 * @param Int $undidRevId Id of revision that was undone or 0
1753 *
1754 * @throws MWException
1755 * @return Status Possible errors:
1756 * edit-hook-aborted: The ArticleSave hook aborted the edit but didn't
1757 * set the fatal flag of $status.
1758 * edit-gone-missing: In update mode, but the article didn't exist.
1759 * edit-conflict: In update mode, the article changed unexpectedly.
1760 * edit-no-change: Warning that the text was the same as before.
1761 * edit-already-exists: In creation mode, but the article already exists.
1762 *
1763 * Extensions may define additional errors.
1764 *
1765 * $return->value will contain an associative array with members as follows:
1766 * new: Boolean indicating if the function attempted to create a new article.
1767 * revision: The revision object for the inserted revision, or null.
1768 *
1769 * @since 1.21
1770 * @throws MWException
1771 */
1772 public function doEditContent(
1773 Content $content, $summary, $flags = 0, $baseRevId = false,
1774 User $user = null, $serialFormat = null, $tags = [], $undidRevId = 0
1775 ) {
1776 global $wgUser, $wgUseNPPatrol, $wgUseRCPatrol;
1777
1778 if ( !( $summary instanceof CommentStoreComment ) ) {
1779 $summary = CommentStoreComment::newUnsavedComment( trim( $summary ) );
1780 }
1781
1782 if ( !$user ) {
1783 $user = $wgUser;
1784 }
1785
1786 // TODO: this check is here for backwards-compatibility with 1.31 behavior.
1787 // Checking the minoredit right should be done in the same place the 'bot' right is
1788 // checked for the EDIT_FORCE_BOT flag, which is currently in EditPage::attemptSave.
1789 if ( ( $flags & EDIT_MINOR ) && !$user->isAllowed( 'minoredit' ) ) {
1790 $flags = ( $flags & ~EDIT_MINOR );
1791 }
1792
1793 // NOTE: while doEditContent() executes, callbacks to getDerivedDataUpdater and
1794 // prepareContentForEdit will generally use the DerivedPageDataUpdater that is also
1795 // used by this PageUpdater. However, there is no guarantee for this.
1796 $updater = $this->newPageUpdater( $user );
1797 $updater->setContent( 'main', $content );
1798 $updater->setBaseRevisionId( $baseRevId );
1799 $updater->setUndidRevisionId( $undidRevId );
1800
1801 $needsPatrol = $wgUseRCPatrol || ( $wgUseNPPatrol && !$this->exists() );
1802
1803 // TODO: this logic should not be in the storage layer, it's here for compatibility
1804 // with 1.31 behavior. Applying the 'autopatrol' right should be done in the same
1805 // place the 'bot' right is handled, which is currently in EditPage::attemptSave.
1806 if ( $needsPatrol && $this->getTitle()->userCan( 'autopatrol', $user ) ) {
1807 $updater->setRcPatrolStatus( RecentChange::PRC_AUTOPATROLLED );
1808 }
1809
1810 $updater->addTags( $tags );
1811
1812 $revRec = $updater->saveRevision(
1813 $summary,
1814 $flags
1815 );
1816
1817 // $revRec will be null if the edit failed, or if no new revision was created because
1818 // the content did not change.
1819 if ( $revRec ) {
1820 // update cached fields
1821 // TODO: this is currently redundant to what is done in updateRevisionOn.
1822 // But updateRevisionOn() should move into PageStore, and then this will be needed.
1823 $this->setLastEdit( new Revision( $revRec ) ); // TODO: use RevisionRecord
1824 $this->mLatest = $revRec->getId();
1825 }
1826
1827 return $updater->getStatus();
1828 }
1829
1830 /**
1831 * Get parser options suitable for rendering the primary article wikitext
1832 *
1833 * @see ContentHandler::makeParserOptions
1834 *
1835 * @param IContextSource|User|string $context One of the following:
1836 * - IContextSource: Use the User and the Language of the provided
1837 * context
1838 * - User: Use the provided User object and $wgLang for the language,
1839 * so use an IContextSource object if possible.
1840 * - 'canonical': Canonical options (anonymous user with default
1841 * preferences and content language).
1842 * @return ParserOptions
1843 */
1844 public function makeParserOptions( $context ) {
1845 $options = $this->getContentHandler()->makeParserOptions( $context );
1846
1847 if ( $this->getTitle()->isConversionTable() ) {
1848 // @todo ConversionTable should become a separate content model, so
1849 // we don't need special cases like this one.
1850 $options->disableContentConversion();
1851 }
1852
1853 return $options;
1854 }
1855
1856 /**
1857 * Prepare content which is about to be saved.
1858 *
1859 * Prior to 1.30, this returned a stdClass.
1860 *
1861 * @deprecated since 1.32, use getDerivedDataUpdater instead.
1862 *
1863 * @param Content $content
1864 * @param Revision|RevisionRecord|int|null $revision Revision object.
1865 * For backwards compatibility, a revision ID is also accepted,
1866 * but this is deprecated.
1867 * Used with vary-revision or vary-revision-id.
1868 * @param User|null $user
1869 * @param string|null $serialFormat IGNORED
1870 * @param bool $useCache Check shared prepared edit cache
1871 *
1872 * @return PreparedEdit
1873 *
1874 * @since 1.21
1875 */
1876 public function prepareContentForEdit(
1877 Content $content,
1878 $revision = null,
1879 User $user = null,
1880 $serialFormat = null,
1881 $useCache = true
1882 ) {
1883 global $wgUser;
1884
1885 if ( !$user ) {
1886 $user = $wgUser;
1887 }
1888
1889 if ( !is_object( $revision ) ) {
1890 $revid = $revision;
1891 // This code path is deprecated, and nothing is known to
1892 // use it, so performance here shouldn't be a worry.
1893 if ( $revid !== null ) {
1894 wfDeprecated( __METHOD__ . ' with $revision = revision ID', '1.25' );
1895 $store = $this->getRevisionStore();
1896 $revision = $store->getRevisionById( $revid, Revision::READ_LATEST );
1897 } else {
1898 $revision = null;
1899 }
1900 } elseif ( $revision instanceof Revision ) {
1901 $revision = $revision->getRevisionRecord();
1902 }
1903
1904 $slots = RevisionSlotsUpdate::newFromContent( [ 'main' => $content ] );
1905 $updater = $this->getDerivedDataUpdater( $user, $revision, $slots );
1906
1907 if ( !$updater->isUpdatePrepared() ) {
1908 $updater->prepareContent( $user, $slots, [], $useCache );
1909
1910 if ( $revision ) {
1911 $updater->prepareUpdate( $revision );
1912 }
1913 }
1914
1915 return $updater->getPreparedEdit();
1916 }
1917
1918 /**
1919 * Do standard deferred updates after page edit.
1920 * Update links tables, site stats, search index and message cache.
1921 * Purges pages that include this page if the text was changed here.
1922 * Every 100th edit, prune the recent changes table.
1923 *
1924 * @deprecated since 1.32, use PageUpdater::doEditUpdates instead.
1925 *
1926 * @param Revision $revision
1927 * @param User $user User object that did the revision
1928 * @param array $options Array of options, following indexes are used:
1929 * - changed: bool, whether the revision changed the content (default true)
1930 * - created: bool, whether the revision created the page (default false)
1931 * - moved: bool, whether the page was moved (default false)
1932 * - restored: bool, whether the page was undeleted (default false)
1933 * - oldrevision: Revision object for the pre-update revision (default null)
1934 * - oldcountable: bool, null, or string 'no-change' (default null):
1935 * - bool: whether the page was counted as an article before that
1936 * revision, only used in changed is true and created is false
1937 * - null: if created is false, don't update the article count; if created
1938 * is true, do update the article count
1939 * - 'no-change': don't update the article count, ever
1940 */
1941 public function doEditUpdates( Revision $revision, User $user, array $options = [] ) {
1942 $revision = $revision->getRevisionRecord();
1943
1944 $updater = $this->getDerivedDataUpdater( $user, $revision );
1945
1946 $updater->prepareUpdate( $revision, $options );
1947
1948 $updater->doUpdates();
1949 }
1950
1951 /**
1952 * Update the article's restriction field, and leave a log entry.
1953 * This works for protection both existing and non-existing pages.
1954 *
1955 * @param array $limit Set of restriction keys
1956 * @param array $expiry Per restriction type expiration
1957 * @param int &$cascade Set to false if cascading protection isn't allowed.
1958 * @param string $reason
1959 * @param User $user The user updating the restrictions
1960 * @param string|string[] $tags Change tags to add to the pages and protection log entries
1961 * ($user should be able to add the specified tags before this is called)
1962 * @return Status Status object; if action is taken, $status->value is the log_id of the
1963 * protection log entry.
1964 */
1965 public function doUpdateRestrictions( array $limit, array $expiry,
1966 &$cascade, $reason, User $user, $tags = null
1967 ) {
1968 global $wgCascadingRestrictionLevels;
1969
1970 if ( wfReadOnly() ) {
1971 return Status::newFatal( wfMessage( 'readonlytext', wfReadOnlyReason() ) );
1972 }
1973
1974 $this->loadPageData( 'fromdbmaster' );
1975 $restrictionTypes = $this->mTitle->getRestrictionTypes();
1976 $id = $this->getId();
1977
1978 if ( !$cascade ) {
1979 $cascade = false;
1980 }
1981
1982 // Take this opportunity to purge out expired restrictions
1983 Title::purgeExpiredRestrictions();
1984
1985 // @todo: Same limitations as described in ProtectionForm.php (line 37);
1986 // we expect a single selection, but the schema allows otherwise.
1987 $isProtected = false;
1988 $protect = false;
1989 $changed = false;
1990
1991 $dbw = wfGetDB( DB_MASTER );
1992
1993 foreach ( $restrictionTypes as $action ) {
1994 if ( !isset( $expiry[$action] ) || $expiry[$action] === $dbw->getInfinity() ) {
1995 $expiry[$action] = 'infinity';
1996 }
1997 if ( !isset( $limit[$action] ) ) {
1998 $limit[$action] = '';
1999 } elseif ( $limit[$action] != '' ) {
2000 $protect = true;
2001 }
2002
2003 // Get current restrictions on $action
2004 $current = implode( '', $this->mTitle->getRestrictions( $action ) );
2005 if ( $current != '' ) {
2006 $isProtected = true;
2007 }
2008
2009 if ( $limit[$action] != $current ) {
2010 $changed = true;
2011 } elseif ( $limit[$action] != '' ) {
2012 // Only check expiry change if the action is actually being
2013 // protected, since expiry does nothing on an not-protected
2014 // action.
2015 if ( $this->mTitle->getRestrictionExpiry( $action ) != $expiry[$action] ) {
2016 $changed = true;
2017 }
2018 }
2019 }
2020
2021 if ( !$changed && $protect && $this->mTitle->areRestrictionsCascading() != $cascade ) {
2022 $changed = true;
2023 }
2024
2025 // If nothing has changed, do nothing
2026 if ( !$changed ) {
2027 return Status::newGood();
2028 }
2029
2030 if ( !$protect ) { // No protection at all means unprotection
2031 $revCommentMsg = 'unprotectedarticle-comment';
2032 $logAction = 'unprotect';
2033 } elseif ( $isProtected ) {
2034 $revCommentMsg = 'modifiedarticleprotection-comment';
2035 $logAction = 'modify';
2036 } else {
2037 $revCommentMsg = 'protectedarticle-comment';
2038 $logAction = 'protect';
2039 }
2040
2041 $logRelationsValues = [];
2042 $logRelationsField = null;
2043 $logParamsDetails = [];
2044
2045 // Null revision (used for change tag insertion)
2046 $nullRevision = null;
2047
2048 if ( $id ) { // Protection of existing page
2049 // Avoid PHP 7.1 warning of passing $this by reference
2050 $wikiPage = $this;
2051
2052 if ( !Hooks::run( 'ArticleProtect', [ &$wikiPage, &$user, $limit, $reason ] ) ) {
2053 return Status::newGood();
2054 }
2055
2056 // Only certain restrictions can cascade...
2057 $editrestriction = isset( $limit['edit'] )
2058 ? [ $limit['edit'] ]
2059 : $this->mTitle->getRestrictions( 'edit' );
2060 foreach ( array_keys( $editrestriction, 'sysop' ) as $key ) {
2061 $editrestriction[$key] = 'editprotected'; // backwards compatibility
2062 }
2063 foreach ( array_keys( $editrestriction, 'autoconfirmed' ) as $key ) {
2064 $editrestriction[$key] = 'editsemiprotected'; // backwards compatibility
2065 }
2066
2067 $cascadingRestrictionLevels = $wgCascadingRestrictionLevels;
2068 foreach ( array_keys( $cascadingRestrictionLevels, 'sysop' ) as $key ) {
2069 $cascadingRestrictionLevels[$key] = 'editprotected'; // backwards compatibility
2070 }
2071 foreach ( array_keys( $cascadingRestrictionLevels, 'autoconfirmed' ) as $key ) {
2072 $cascadingRestrictionLevels[$key] = 'editsemiprotected'; // backwards compatibility
2073 }
2074
2075 // The schema allows multiple restrictions
2076 if ( !array_intersect( $editrestriction, $cascadingRestrictionLevels ) ) {
2077 $cascade = false;
2078 }
2079
2080 // insert null revision to identify the page protection change as edit summary
2081 $latest = $this->getLatest();
2082 $nullRevision = $this->insertProtectNullRevision(
2083 $revCommentMsg,
2084 $limit,
2085 $expiry,
2086 $cascade,
2087 $reason,
2088 $user
2089 );
2090
2091 if ( $nullRevision === null ) {
2092 return Status::newFatal( 'no-null-revision', $this->mTitle->getPrefixedText() );
2093 }
2094
2095 $logRelationsField = 'pr_id';
2096
2097 // Update restrictions table
2098 foreach ( $limit as $action => $restrictions ) {
2099 $dbw->delete(
2100 'page_restrictions',
2101 [
2102 'pr_page' => $id,
2103 'pr_type' => $action
2104 ],
2105 __METHOD__
2106 );
2107 if ( $restrictions != '' ) {
2108 $cascadeValue = ( $cascade && $action == 'edit' ) ? 1 : 0;
2109 $dbw->insert(
2110 'page_restrictions',
2111 [
2112 'pr_page' => $id,
2113 'pr_type' => $action,
2114 'pr_level' => $restrictions,
2115 'pr_cascade' => $cascadeValue,
2116 'pr_expiry' => $dbw->encodeExpiry( $expiry[$action] )
2117 ],
2118 __METHOD__
2119 );
2120 $logRelationsValues[] = $dbw->insertId();
2121 $logParamsDetails[] = [
2122 'type' => $action,
2123 'level' => $restrictions,
2124 'expiry' => $expiry[$action],
2125 'cascade' => (bool)$cascadeValue,
2126 ];
2127 }
2128 }
2129
2130 // Clear out legacy restriction fields
2131 $dbw->update(
2132 'page',
2133 [ 'page_restrictions' => '' ],
2134 [ 'page_id' => $id ],
2135 __METHOD__
2136 );
2137
2138 // Avoid PHP 7.1 warning of passing $this by reference
2139 $wikiPage = $this;
2140
2141 Hooks::run( 'NewRevisionFromEditComplete',
2142 [ $this, $nullRevision, $latest, $user ] );
2143 Hooks::run( 'ArticleProtectComplete', [ &$wikiPage, &$user, $limit, $reason ] );
2144 } else { // Protection of non-existing page (also known as "title protection")
2145 // Cascade protection is meaningless in this case
2146 $cascade = false;
2147
2148 if ( $limit['create'] != '' ) {
2149 $commentFields = CommentStore::getStore()->insert( $dbw, 'pt_reason', $reason );
2150 $dbw->replace( 'protected_titles',
2151 [ [ 'pt_namespace', 'pt_title' ] ],
2152 [
2153 'pt_namespace' => $this->mTitle->getNamespace(),
2154 'pt_title' => $this->mTitle->getDBkey(),
2155 'pt_create_perm' => $limit['create'],
2156 'pt_timestamp' => $dbw->timestamp(),
2157 'pt_expiry' => $dbw->encodeExpiry( $expiry['create'] ),
2158 'pt_user' => $user->getId(),
2159 ] + $commentFields, __METHOD__
2160 );
2161 $logParamsDetails[] = [
2162 'type' => 'create',
2163 'level' => $limit['create'],
2164 'expiry' => $expiry['create'],
2165 ];
2166 } else {
2167 $dbw->delete( 'protected_titles',
2168 [
2169 'pt_namespace' => $this->mTitle->getNamespace(),
2170 'pt_title' => $this->mTitle->getDBkey()
2171 ], __METHOD__
2172 );
2173 }
2174 }
2175
2176 $this->mTitle->flushRestrictions();
2177 InfoAction::invalidateCache( $this->mTitle );
2178
2179 if ( $logAction == 'unprotect' ) {
2180 $params = [];
2181 } else {
2182 $protectDescriptionLog = $this->protectDescriptionLog( $limit, $expiry );
2183 $params = [
2184 '4::description' => $protectDescriptionLog, // parameter for IRC
2185 '5:bool:cascade' => $cascade,
2186 'details' => $logParamsDetails, // parameter for localize and api
2187 ];
2188 }
2189
2190 // Update the protection log
2191 $logEntry = new ManualLogEntry( 'protect', $logAction );
2192 $logEntry->setTarget( $this->mTitle );
2193 $logEntry->setComment( $reason );
2194 $logEntry->setPerformer( $user );
2195 $logEntry->setParameters( $params );
2196 if ( !is_null( $nullRevision ) ) {
2197 $logEntry->setAssociatedRevId( $nullRevision->getId() );
2198 }
2199 $logEntry->setTags( $tags );
2200 if ( $logRelationsField !== null && count( $logRelationsValues ) ) {
2201 $logEntry->setRelations( [ $logRelationsField => $logRelationsValues ] );
2202 }
2203 $logId = $logEntry->insert();
2204 $logEntry->publish( $logId );
2205
2206 return Status::newGood( $logId );
2207 }
2208
2209 /**
2210 * Insert a new null revision for this page.
2211 *
2212 * @param string $revCommentMsg Comment message key for the revision
2213 * @param array $limit Set of restriction keys
2214 * @param array $expiry Per restriction type expiration
2215 * @param int $cascade Set to false if cascading protection isn't allowed.
2216 * @param string $reason
2217 * @param User|null $user
2218 * @return Revision|null Null on error
2219 */
2220 public function insertProtectNullRevision( $revCommentMsg, array $limit,
2221 array $expiry, $cascade, $reason, $user = null
2222 ) {
2223 $dbw = wfGetDB( DB_MASTER );
2224
2225 // Prepare a null revision to be added to the history
2226 $editComment = wfMessage(
2227 $revCommentMsg,
2228 $this->mTitle->getPrefixedText(),
2229 $user ? $user->getName() : ''
2230 )->inContentLanguage()->text();
2231 if ( $reason ) {
2232 $editComment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
2233 }
2234 $protectDescription = $this->protectDescription( $limit, $expiry );
2235 if ( $protectDescription ) {
2236 $editComment .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2237 $editComment .= wfMessage( 'parentheses' )->params( $protectDescription )
2238 ->inContentLanguage()->text();
2239 }
2240 if ( $cascade ) {
2241 $editComment .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2242 $editComment .= wfMessage( 'brackets' )->params(
2243 wfMessage( 'protect-summary-cascade' )->inContentLanguage()->text()
2244 )->inContentLanguage()->text();
2245 }
2246
2247 $nullRev = Revision::newNullRevision( $dbw, $this->getId(), $editComment, true, $user );
2248 if ( $nullRev ) {
2249 $nullRev->insertOn( $dbw );
2250
2251 // Update page record and touch page
2252 $oldLatest = $nullRev->getParentId();
2253 $this->updateRevisionOn( $dbw, $nullRev, $oldLatest );
2254 }
2255
2256 return $nullRev;
2257 }
2258
2259 /**
2260 * @param string $expiry 14-char timestamp or "infinity", or false if the input was invalid
2261 * @return string
2262 */
2263 protected function formatExpiry( $expiry ) {
2264 global $wgContLang;
2265
2266 if ( $expiry != 'infinity' ) {
2267 return wfMessage(
2268 'protect-expiring',
2269 $wgContLang->timeanddate( $expiry, false, false ),
2270 $wgContLang->date( $expiry, false, false ),
2271 $wgContLang->time( $expiry, false, false )
2272 )->inContentLanguage()->text();
2273 } else {
2274 return wfMessage( 'protect-expiry-indefinite' )
2275 ->inContentLanguage()->text();
2276 }
2277 }
2278
2279 /**
2280 * Builds the description to serve as comment for the edit.
2281 *
2282 * @param array $limit Set of restriction keys
2283 * @param array $expiry Per restriction type expiration
2284 * @return string
2285 */
2286 public function protectDescription( array $limit, array $expiry ) {
2287 $protectDescription = '';
2288
2289 foreach ( array_filter( $limit ) as $action => $restrictions ) {
2290 # $action is one of $wgRestrictionTypes = [ 'create', 'edit', 'move', 'upload' ].
2291 # All possible message keys are listed here for easier grepping:
2292 # * restriction-create
2293 # * restriction-edit
2294 # * restriction-move
2295 # * restriction-upload
2296 $actionText = wfMessage( 'restriction-' . $action )->inContentLanguage()->text();
2297 # $restrictions is one of $wgRestrictionLevels = [ '', 'autoconfirmed', 'sysop' ],
2298 # with '' filtered out. All possible message keys are listed below:
2299 # * protect-level-autoconfirmed
2300 # * protect-level-sysop
2301 $restrictionsText = wfMessage( 'protect-level-' . $restrictions )
2302 ->inContentLanguage()->text();
2303
2304 $expiryText = $this->formatExpiry( $expiry[$action] );
2305
2306 if ( $protectDescription !== '' ) {
2307 $protectDescription .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2308 }
2309 $protectDescription .= wfMessage( 'protect-summary-desc' )
2310 ->params( $actionText, $restrictionsText, $expiryText )
2311 ->inContentLanguage()->text();
2312 }
2313
2314 return $protectDescription;
2315 }
2316
2317 /**
2318 * Builds the description to serve as comment for the log entry.
2319 *
2320 * Some bots may parse IRC lines, which are generated from log entries which contain plain
2321 * protect description text. Keep them in old format to avoid breaking compatibility.
2322 * TODO: Fix protection log to store structured description and format it on-the-fly.
2323 *
2324 * @param array $limit Set of restriction keys
2325 * @param array $expiry Per restriction type expiration
2326 * @return string
2327 */
2328 public function protectDescriptionLog( array $limit, array $expiry ) {
2329 global $wgContLang;
2330
2331 $protectDescriptionLog = '';
2332
2333 foreach ( array_filter( $limit ) as $action => $restrictions ) {
2334 $expiryText = $this->formatExpiry( $expiry[$action] );
2335 $protectDescriptionLog .= $wgContLang->getDirMark() .
2336 "[$action=$restrictions] ($expiryText)";
2337 }
2338
2339 return trim( $protectDescriptionLog );
2340 }
2341
2342 /**
2343 * Take an array of page restrictions and flatten it to a string
2344 * suitable for insertion into the page_restrictions field.
2345 *
2346 * @param string[] $limit
2347 *
2348 * @throws MWException
2349 * @return string
2350 */
2351 protected static function flattenRestrictions( $limit ) {
2352 if ( !is_array( $limit ) ) {
2353 throw new MWException( __METHOD__ . ' given non-array restriction set' );
2354 }
2355
2356 $bits = [];
2357 ksort( $limit );
2358
2359 foreach ( array_filter( $limit ) as $action => $restrictions ) {
2360 $bits[] = "$action=$restrictions";
2361 }
2362
2363 return implode( ':', $bits );
2364 }
2365
2366 /**
2367 * Same as doDeleteArticleReal(), but returns a simple boolean. This is kept around for
2368 * backwards compatibility, if you care about error reporting you should use
2369 * doDeleteArticleReal() instead.
2370 *
2371 * Deletes the article with database consistency, writes logs, purges caches
2372 *
2373 * @param string $reason Delete reason for deletion log
2374 * @param bool $suppress Suppress all revisions and log the deletion in
2375 * the suppression log instead of the deletion log
2376 * @param int $u1 Unused
2377 * @param bool $u2 Unused
2378 * @param array|string &$error Array of errors to append to
2379 * @param User $user The deleting user
2380 * @return bool True if successful
2381 */
2382 public function doDeleteArticle(
2383 $reason, $suppress = false, $u1 = null, $u2 = null, &$error = '', User $user = null
2384 ) {
2385 $status = $this->doDeleteArticleReal( $reason, $suppress, $u1, $u2, $error, $user );
2386 return $status->isGood();
2387 }
2388
2389 /**
2390 * Back-end article deletion
2391 * Deletes the article with database consistency, writes logs, purges caches
2392 *
2393 * @since 1.19
2394 *
2395 * @param string $reason Delete reason for deletion log
2396 * @param bool $suppress Suppress all revisions and log the deletion in
2397 * the suppression log instead of the deletion log
2398 * @param int $u1 Unused
2399 * @param bool $u2 Unused
2400 * @param array|string &$error Array of errors to append to
2401 * @param User $deleter The deleting user
2402 * @param array $tags Tags to apply to the deletion action
2403 * @param string $logsubtype
2404 * @return Status Status object; if successful, $status->value is the log_id of the
2405 * deletion log entry. If the page couldn't be deleted because it wasn't
2406 * found, $status is a non-fatal 'cannotdelete' error
2407 */
2408 public function doDeleteArticleReal(
2409 $reason, $suppress = false, $u1 = null, $u2 = null, &$error = '', User $deleter = null,
2410 $tags = [], $logsubtype = 'delete'
2411 ) {
2412 global $wgUser, $wgContentHandlerUseDB, $wgCommentTableSchemaMigrationStage,
2413 $wgActorTableSchemaMigrationStage, $wgMultiContentRevisionSchemaMigrationStage;
2414
2415 wfDebug( __METHOD__ . "\n" );
2416
2417 $status = Status::newGood();
2418
2419 if ( $this->mTitle->getDBkey() === '' ) {
2420 $status->error( 'cannotdelete',
2421 wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2422 return $status;
2423 }
2424
2425 // Avoid PHP 7.1 warning of passing $this by reference
2426 $wikiPage = $this;
2427
2428 $deleter = is_null( $deleter ) ? $wgUser : $deleter;
2429 if ( !Hooks::run( 'ArticleDelete',
2430 [ &$wikiPage, &$deleter, &$reason, &$error, &$status, $suppress ]
2431 ) ) {
2432 if ( $status->isOK() ) {
2433 // Hook aborted but didn't set a fatal status
2434 $status->fatal( 'delete-hook-aborted' );
2435 }
2436 return $status;
2437 }
2438
2439 $dbw = wfGetDB( DB_MASTER );
2440 $dbw->startAtomic( __METHOD__ );
2441
2442 $this->loadPageData( self::READ_LATEST );
2443 $id = $this->getId();
2444 // T98706: lock the page from various other updates but avoid using
2445 // WikiPage::READ_LOCKING as that will carry over the FOR UPDATE to
2446 // the revisions queries (which also JOIN on user). Only lock the page
2447 // row and CAS check on page_latest to see if the trx snapshot matches.
2448 $lockedLatest = $this->lockAndGetLatest();
2449 if ( $id == 0 || $this->getLatest() != $lockedLatest ) {
2450 $dbw->endAtomic( __METHOD__ );
2451 // Page not there or trx snapshot is stale
2452 $status->error( 'cannotdelete',
2453 wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2454 return $status;
2455 }
2456
2457 // Given the lock above, we can be confident in the title and page ID values
2458 $namespace = $this->getTitle()->getNamespace();
2459 $dbKey = $this->getTitle()->getDBkey();
2460
2461 // At this point we are now comitted to returning an OK
2462 // status unless some DB query error or other exception comes up.
2463 // This way callers don't have to call rollback() if $status is bad
2464 // unless they actually try to catch exceptions (which is rare).
2465
2466 // we need to remember the old content so we can use it to generate all deletion updates.
2467 $revision = $this->getRevision();
2468 try {
2469 $content = $this->getContent( Revision::RAW );
2470 } catch ( Exception $ex ) {
2471 wfLogWarning( __METHOD__ . ': failed to load content during deletion! '
2472 . $ex->getMessage() );
2473
2474 $content = null;
2475 }
2476
2477 $commentStore = CommentStore::getStore();
2478 $actorMigration = ActorMigration::newMigration();
2479
2480 $revQuery = Revision::getQueryInfo();
2481 $bitfield = false;
2482
2483 // Bitfields to further suppress the content
2484 if ( $suppress ) {
2485 $bitfield = Revision::SUPPRESSED_ALL;
2486 $revQuery['fields'] = array_diff( $revQuery['fields'], [ 'rev_deleted' ] );
2487 }
2488
2489 // For now, shunt the revision data into the archive table.
2490 // Text is *not* removed from the text table; bulk storage
2491 // is left intact to avoid breaking block-compression or
2492 // immutable storage schemes.
2493 // In the future, we may keep revisions and mark them with
2494 // the rev_deleted field, which is reserved for this purpose.
2495
2496 // Lock rows in `revision` and its temp tables, but not any others.
2497 // Note array_intersect() preserves keys from the first arg, and we're
2498 // assuming $revQuery has `revision` primary and isn't using subtables
2499 // for anything we care about.
2500 $tablesFlat = [];
2501 array_walk_recursive(
2502 $revQuery['tables'],
2503 function ( $a ) use ( &$tablesFlat ) {
2504 $tablesFlat[] = $a;
2505 }
2506 );
2507
2508 $res = $dbw->select(
2509 array_intersect(
2510 $tablesFlat,
2511 [ 'revision', 'revision_comment_temp', 'revision_actor_temp' ]
2512 ),
2513 '1',
2514 [ 'rev_page' => $id ],
2515 __METHOD__,
2516 'FOR UPDATE',
2517 $revQuery['joins']
2518 );
2519 foreach ( $res as $row ) {
2520 // Fetch all rows in case the DB needs that to properly lock them.
2521 }
2522
2523 // Get all of the page revisions
2524 $res = $dbw->select(
2525 $revQuery['tables'],
2526 $revQuery['fields'],
2527 [ 'rev_page' => $id ],
2528 __METHOD__,
2529 [],
2530 $revQuery['joins']
2531 );
2532
2533 // Build their equivalent archive rows
2534 $rowsInsert = [];
2535 $revids = [];
2536
2537 /** @var int[] Revision IDs of edits that were made by IPs */
2538 $ipRevIds = [];
2539
2540 foreach ( $res as $row ) {
2541 $comment = $commentStore->getComment( 'rev_comment', $row );
2542 $user = User::newFromAnyId( $row->rev_user, $row->rev_user_text, $row->rev_actor );
2543 $rowInsert = [
2544 'ar_namespace' => $namespace,
2545 'ar_title' => $dbKey,
2546 'ar_timestamp' => $row->rev_timestamp,
2547 'ar_minor_edit' => $row->rev_minor_edit,
2548 'ar_rev_id' => $row->rev_id,
2549 'ar_parent_id' => $row->rev_parent_id,
2550 /**
2551 * ar_text_id should probably not be written to when the multi content schema has
2552 * been migrated to (wgMultiContentRevisionSchemaMigrationStage) however there is no
2553 * default for the field in WMF production currently so we must keep writing
2554 * writing until a default of 0 is set.
2555 * Task: https://phabricator.wikimedia.org/T190148
2556 * Copying the value from the revision table should not lead to any issues for now.
2557 */
2558 'ar_text_id' => $row->rev_text_id,
2559 'ar_len' => $row->rev_len,
2560 'ar_page_id' => $id,
2561 'ar_deleted' => $suppress ? $bitfield : $row->rev_deleted,
2562 'ar_sha1' => $row->rev_sha1,
2563 ] + $commentStore->insert( $dbw, 'ar_comment', $comment )
2564 + $actorMigration->getInsertValues( $dbw, 'ar_user', $user );
2565 if (
2566 $wgContentHandlerUseDB &&
2567 $wgMultiContentRevisionSchemaMigrationStage <= MIGRATION_WRITE_BOTH
2568 ) {
2569 $rowInsert['ar_content_model'] = $row->rev_content_model;
2570 $rowInsert['ar_content_format'] = $row->rev_content_format;
2571 }
2572 $rowsInsert[] = $rowInsert;
2573 $revids[] = $row->rev_id;
2574
2575 // Keep track of IP edits, so that the corresponding rows can
2576 // be deleted in the ip_changes table.
2577 if ( (int)$row->rev_user === 0 && IP::isValid( $row->rev_user_text ) ) {
2578 $ipRevIds[] = $row->rev_id;
2579 }
2580 }
2581 // Copy them into the archive table
2582 $dbw->insert( 'archive', $rowsInsert, __METHOD__ );
2583 // Save this so we can pass it to the ArticleDeleteComplete hook.
2584 $archivedRevisionCount = $dbw->affectedRows();
2585
2586 // Clone the title and wikiPage, so we have the information we need when
2587 // we log and run the ArticleDeleteComplete hook.
2588 $logTitle = clone $this->mTitle;
2589 $wikiPageBeforeDelete = clone $this;
2590
2591 // Now that it's safely backed up, delete it
2592 $dbw->delete( 'page', [ 'page_id' => $id ], __METHOD__ );
2593 $dbw->delete( 'revision', [ 'rev_page' => $id ], __METHOD__ );
2594 if ( $wgCommentTableSchemaMigrationStage > MIGRATION_OLD ) {
2595 $dbw->delete( 'revision_comment_temp', [ 'revcomment_rev' => $revids ], __METHOD__ );
2596 }
2597 if ( $wgActorTableSchemaMigrationStage > MIGRATION_OLD ) {
2598 $dbw->delete( 'revision_actor_temp', [ 'revactor_rev' => $revids ], __METHOD__ );
2599 }
2600
2601 // Also delete records from ip_changes as applicable.
2602 if ( count( $ipRevIds ) > 0 ) {
2603 $dbw->delete( 'ip_changes', [ 'ipc_rev_id' => $ipRevIds ], __METHOD__ );
2604 }
2605
2606 // Log the deletion, if the page was suppressed, put it in the suppression log instead
2607 $logtype = $suppress ? 'suppress' : 'delete';
2608
2609 $logEntry = new ManualLogEntry( $logtype, $logsubtype );
2610 $logEntry->setPerformer( $deleter );
2611 $logEntry->setTarget( $logTitle );
2612 $logEntry->setComment( $reason );
2613 $logEntry->setTags( $tags );
2614 $logid = $logEntry->insert();
2615
2616 $dbw->onTransactionPreCommitOrIdle(
2617 function () use ( $logEntry, $logid ) {
2618 // T58776: avoid deadlocks (especially from FileDeleteForm)
2619 $logEntry->publish( $logid );
2620 },
2621 __METHOD__
2622 );
2623
2624 $dbw->endAtomic( __METHOD__ );
2625
2626 $this->doDeleteUpdates( $id, $content, $revision, $deleter );
2627
2628 Hooks::run( 'ArticleDeleteComplete', [
2629 &$wikiPageBeforeDelete,
2630 &$deleter,
2631 $reason,
2632 $id,
2633 $content,
2634 $logEntry,
2635 $archivedRevisionCount
2636 ] );
2637 $status->value = $logid;
2638
2639 // Show log excerpt on 404 pages rather than just a link
2640 $cache = MediaWikiServices::getInstance()->getMainObjectStash();
2641 $key = $cache->makeKey( 'page-recent-delete', md5( $logTitle->getPrefixedText() ) );
2642 $cache->set( $key, 1, $cache::TTL_DAY );
2643
2644 return $status;
2645 }
2646
2647 /**
2648 * Lock the page row for this title+id and return page_latest (or 0)
2649 *
2650 * @return int Returns 0 if no row was found with this title+id
2651 * @since 1.27
2652 */
2653 public function lockAndGetLatest() {
2654 return (int)wfGetDB( DB_MASTER )->selectField(
2655 'page',
2656 'page_latest',
2657 [
2658 'page_id' => $this->getId(),
2659 // Typically page_id is enough, but some code might try to do
2660 // updates assuming the title is the same, so verify that
2661 'page_namespace' => $this->getTitle()->getNamespace(),
2662 'page_title' => $this->getTitle()->getDBkey()
2663 ],
2664 __METHOD__,
2665 [ 'FOR UPDATE' ]
2666 );
2667 }
2668
2669 /**
2670 * Do some database updates after deletion
2671 *
2672 * @param int $id The page_id value of the page being deleted
2673 * @param Content|null $content Optional page content to be used when determining
2674 * the required updates. This may be needed because $this->getContent()
2675 * may already return null when the page proper was deleted.
2676 * @param Revision|null $revision The latest page revision
2677 * @param User|null $user The user that caused the deletion
2678 */
2679 public function doDeleteUpdates(
2680 $id, Content $content = null, Revision $revision = null, User $user = null
2681 ) {
2682 try {
2683 $countable = $this->isCountable();
2684 } catch ( Exception $ex ) {
2685 // fallback for deleting broken pages for which we cannot load the content for
2686 // some reason. Note that doDeleteArticleReal() already logged this problem.
2687 $countable = false;
2688 }
2689
2690 // Update site status
2691 DeferredUpdates::addUpdate( SiteStatsUpdate::factory(
2692 [ 'edits' => 1, 'articles' => -$countable, 'pages' => -1 ]
2693 ) );
2694
2695 // Delete pagelinks, update secondary indexes, etc
2696 $updates = $this->getDeletionUpdates( $content );
2697 foreach ( $updates as $update ) {
2698 DeferredUpdates::addUpdate( $update );
2699 }
2700
2701 $causeAgent = $user ? $user->getName() : 'unknown';
2702 // Reparse any pages transcluding this page
2703 LinksUpdate::queueRecursiveJobsForTable(
2704 $this->mTitle, 'templatelinks', 'delete-page', $causeAgent );
2705 // Reparse any pages including this image
2706 if ( $this->mTitle->getNamespace() == NS_FILE ) {
2707 LinksUpdate::queueRecursiveJobsForTable(
2708 $this->mTitle, 'imagelinks', 'delete-page', $causeAgent );
2709 }
2710
2711 // Clear caches
2712 self::onArticleDelete( $this->mTitle );
2713 ResourceLoaderWikiModule::invalidateModuleCache(
2714 $this->mTitle, $revision, null, wfWikiID()
2715 );
2716
2717 // Reset this object and the Title object
2718 $this->loadFromRow( false, self::READ_LATEST );
2719
2720 // Search engine
2721 DeferredUpdates::addUpdate( new SearchUpdate( $id, $this->mTitle ) );
2722 }
2723
2724 /**
2725 * Roll back the most recent consecutive set of edits to a page
2726 * from the same user; fails if there are no eligible edits to
2727 * roll back to, e.g. user is the sole contributor. This function
2728 * performs permissions checks on $user, then calls commitRollback()
2729 * to do the dirty work
2730 *
2731 * @todo Separate the business/permission stuff out from backend code
2732 * @todo Remove $token parameter. Already verified by RollbackAction and ApiRollback.
2733 *
2734 * @param string $fromP Name of the user whose edits to rollback.
2735 * @param string $summary Custom summary. Set to default summary if empty.
2736 * @param string $token Rollback token.
2737 * @param bool $bot If true, mark all reverted edits as bot.
2738 *
2739 * @param array &$resultDetails Array contains result-specific array of additional values
2740 * 'alreadyrolled' : 'current' (rev)
2741 * success : 'summary' (str), 'current' (rev), 'target' (rev)
2742 *
2743 * @param User $user The user performing the rollback
2744 * @param array|null $tags Change tags to apply to the rollback
2745 * Callers are responsible for permission checks
2746 * (with ChangeTags::canAddTagsAccompanyingChange)
2747 *
2748 * @return array Array of errors, each error formatted as
2749 * array(messagekey, param1, param2, ...).
2750 * On success, the array is empty. This array can also be passed to
2751 * OutputPage::showPermissionsErrorPage().
2752 */
2753 public function doRollback(
2754 $fromP, $summary, $token, $bot, &$resultDetails, User $user, $tags = null
2755 ) {
2756 $resultDetails = null;
2757
2758 // Check permissions
2759 $editErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $user );
2760 $rollbackErrors = $this->mTitle->getUserPermissionsErrors( 'rollback', $user );
2761 $errors = array_merge( $editErrors, wfArrayDiff2( $rollbackErrors, $editErrors ) );
2762
2763 if ( !$user->matchEditToken( $token, 'rollback' ) ) {
2764 $errors[] = [ 'sessionfailure' ];
2765 }
2766
2767 if ( $user->pingLimiter( 'rollback' ) || $user->pingLimiter() ) {
2768 $errors[] = [ 'actionthrottledtext' ];
2769 }
2770
2771 // If there were errors, bail out now
2772 if ( !empty( $errors ) ) {
2773 return $errors;
2774 }
2775
2776 return $this->commitRollback( $fromP, $summary, $bot, $resultDetails, $user, $tags );
2777 }
2778
2779 /**
2780 * Backend implementation of doRollback(), please refer there for parameter
2781 * and return value documentation
2782 *
2783 * NOTE: This function does NOT check ANY permissions, it just commits the
2784 * rollback to the DB. Therefore, you should only call this function direct-
2785 * ly if you want to use custom permissions checks. If you don't, use
2786 * doRollback() instead.
2787 * @param string $fromP Name of the user whose edits to rollback.
2788 * @param string $summary Custom summary. Set to default summary if empty.
2789 * @param bool $bot If true, mark all reverted edits as bot.
2790 *
2791 * @param array &$resultDetails Contains result-specific array of additional values
2792 * @param User $guser The user performing the rollback
2793 * @param array|null $tags Change tags to apply to the rollback
2794 * Callers are responsible for permission checks
2795 * (with ChangeTags::canAddTagsAccompanyingChange)
2796 *
2797 * @return array
2798 */
2799 public function commitRollback( $fromP, $summary, $bot,
2800 &$resultDetails, User $guser, $tags = null
2801 ) {
2802 global $wgUseRCPatrol, $wgContLang;
2803
2804 $dbw = wfGetDB( DB_MASTER );
2805
2806 if ( wfReadOnly() ) {
2807 return [ [ 'readonlytext' ] ];
2808 }
2809
2810 // Get the last editor
2811 $current = $this->getRevision();
2812 if ( is_null( $current ) ) {
2813 // Something wrong... no page?
2814 return [ [ 'notanarticle' ] ];
2815 }
2816
2817 $from = str_replace( '_', ' ', $fromP );
2818 // User name given should match up with the top revision.
2819 // If the user was deleted then $from should be empty.
2820 if ( $from != $current->getUserText() ) {
2821 $resultDetails = [ 'current' => $current ];
2822 return [ [ 'alreadyrolled',
2823 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2824 htmlspecialchars( $fromP ),
2825 htmlspecialchars( $current->getUserText() )
2826 ] ];
2827 }
2828
2829 // Get the last edit not by this person...
2830 // Note: these may not be public values
2831 $userId = intval( $current->getUser( Revision::RAW ) );
2832 $userName = $current->getUserText( Revision::RAW );
2833 if ( $userId ) {
2834 $user = User::newFromId( $userId );
2835 $user->setName( $userName );
2836 } else {
2837 $user = User::newFromName( $current->getUserText( Revision::RAW ), false );
2838 }
2839
2840 $actorWhere = ActorMigration::newMigration()->getWhere( $dbw, 'rev_user', $user );
2841
2842 $s = $dbw->selectRow(
2843 [ 'revision' ] + $actorWhere['tables'],
2844 [ 'rev_id', 'rev_timestamp', 'rev_deleted' ],
2845 [
2846 'rev_page' => $current->getPage(),
2847 'NOT(' . $actorWhere['conds'] . ')',
2848 ],
2849 __METHOD__,
2850 [
2851 'USE INDEX' => [ 'revision' => 'page_timestamp' ],
2852 'ORDER BY' => 'rev_timestamp DESC'
2853 ],
2854 $actorWhere['joins']
2855 );
2856 if ( $s === false ) {
2857 // No one else ever edited this page
2858 return [ [ 'cantrollback' ] ];
2859 } elseif ( $s->rev_deleted & Revision::DELETED_TEXT
2860 || $s->rev_deleted & Revision::DELETED_USER
2861 ) {
2862 // Only admins can see this text
2863 return [ [ 'notvisiblerev' ] ];
2864 }
2865
2866 // Generate the edit summary if necessary
2867 $target = Revision::newFromId( $s->rev_id, Revision::READ_LATEST );
2868 if ( empty( $summary ) ) {
2869 if ( $from == '' ) { // no public user name
2870 $summary = wfMessage( 'revertpage-nouser' );
2871 } else {
2872 $summary = wfMessage( 'revertpage' );
2873 }
2874 }
2875
2876 // Allow the custom summary to use the same args as the default message
2877 $args = [
2878 $target->getUserText(), $from, $s->rev_id,
2879 $wgContLang->timeanddate( wfTimestamp( TS_MW, $s->rev_timestamp ) ),
2880 $current->getId(), $wgContLang->timeanddate( $current->getTimestamp() )
2881 ];
2882 if ( $summary instanceof Message ) {
2883 $summary = $summary->params( $args )->inContentLanguage()->text();
2884 } else {
2885 $summary = wfMsgReplaceArgs( $summary, $args );
2886 }
2887
2888 // Trim spaces on user supplied text
2889 $summary = trim( $summary );
2890
2891 // Save
2892 $flags = EDIT_UPDATE | EDIT_INTERNAL;
2893
2894 if ( $guser->isAllowed( 'minoredit' ) ) {
2895 $flags |= EDIT_MINOR;
2896 }
2897
2898 if ( $bot && ( $guser->isAllowedAny( 'markbotedits', 'bot' ) ) ) {
2899 $flags |= EDIT_FORCE_BOT;
2900 }
2901
2902 $targetContent = $target->getContent();
2903 $changingContentModel = $targetContent->getModel() !== $current->getContentModel();
2904
2905 if ( in_array( 'mw-rollback', ChangeTags::getSoftwareTags() ) ) {
2906 $tags[] = 'mw-rollback';
2907 }
2908
2909 // Actually store the edit
2910 $status = $this->doEditContent(
2911 $targetContent,
2912 $summary,
2913 $flags,
2914 $target->getId(),
2915 $guser,
2916 null,
2917 $tags
2918 );
2919
2920 // Set patrolling and bot flag on the edits, which gets rollbacked.
2921 // This is done even on edit failure to have patrolling in that case (T64157).
2922 $set = [];
2923 if ( $bot && $guser->isAllowed( 'markbotedits' ) ) {
2924 // Mark all reverted edits as bot
2925 $set['rc_bot'] = 1;
2926 }
2927
2928 if ( $wgUseRCPatrol ) {
2929 // Mark all reverted edits as patrolled
2930 $set['rc_patrolled'] = RecentChange::PRC_PATROLLED;
2931 }
2932
2933 if ( count( $set ) ) {
2934 $actorWhere = ActorMigration::newMigration()->getWhere( $dbw, 'rc_user', $user, false );
2935 $dbw->update( 'recentchanges', $set,
2936 [ /* WHERE */
2937 'rc_cur_id' => $current->getPage(),
2938 'rc_timestamp > ' . $dbw->addQuotes( $s->rev_timestamp ),
2939 $actorWhere['conds'], // No tables/joins are needed for rc_user
2940 ],
2941 __METHOD__
2942 );
2943 }
2944
2945 if ( !$status->isOK() ) {
2946 return $status->getErrorsArray();
2947 }
2948
2949 // raise error, when the edit is an edit without a new version
2950 $statusRev = $status->value['revision'] ?? null;
2951 if ( !( $statusRev instanceof Revision ) ) {
2952 $resultDetails = [ 'current' => $current ];
2953 return [ [ 'alreadyrolled',
2954 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2955 htmlspecialchars( $fromP ),
2956 htmlspecialchars( $current->getUserText() )
2957 ] ];
2958 }
2959
2960 if ( $changingContentModel ) {
2961 // If the content model changed during the rollback,
2962 // make sure it gets logged to Special:Log/contentmodel
2963 $log = new ManualLogEntry( 'contentmodel', 'change' );
2964 $log->setPerformer( $guser );
2965 $log->setTarget( $this->mTitle );
2966 $log->setComment( $summary );
2967 $log->setParameters( [
2968 '4::oldmodel' => $current->getContentModel(),
2969 '5::newmodel' => $targetContent->getModel(),
2970 ] );
2971
2972 $logId = $log->insert( $dbw );
2973 $log->publish( $logId );
2974 }
2975
2976 $revId = $statusRev->getId();
2977
2978 Hooks::run( 'ArticleRollbackComplete', [ $this, $guser, $target, $current ] );
2979
2980 $resultDetails = [
2981 'summary' => $summary,
2982 'current' => $current,
2983 'target' => $target,
2984 'newid' => $revId,
2985 'tags' => $tags
2986 ];
2987
2988 return [];
2989 }
2990
2991 /**
2992 * The onArticle*() functions are supposed to be a kind of hooks
2993 * which should be called whenever any of the specified actions
2994 * are done.
2995 *
2996 * This is a good place to put code to clear caches, for instance.
2997 *
2998 * This is called on page move and undelete, as well as edit
2999 *
3000 * @param Title $title
3001 */
3002 public static function onArticleCreate( Title $title ) {
3003 // TODO: move this into a PageEventEmitter service
3004
3005 // Update existence markers on article/talk tabs...
3006 $other = $title->getOtherPage();
3007
3008 $other->purgeSquid();
3009
3010 $title->touchLinks();
3011 $title->purgeSquid();
3012 $title->deleteTitleProtection();
3013
3014 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3015
3016 // Invalidate caches of articles which include this page
3017 DeferredUpdates::addUpdate(
3018 new HTMLCacheUpdate( $title, 'templatelinks', 'page-create' )
3019 );
3020
3021 if ( $title->getNamespace() == NS_CATEGORY ) {
3022 // Load the Category object, which will schedule a job to create
3023 // the category table row if necessary. Checking a replica DB is ok
3024 // here, in the worst case it'll run an unnecessary recount job on
3025 // a category that probably doesn't have many members.
3026 Category::newFromTitle( $title )->getID();
3027 }
3028 }
3029
3030 /**
3031 * Clears caches when article is deleted
3032 *
3033 * @param Title $title
3034 */
3035 public static function onArticleDelete( Title $title ) {
3036 // TODO: move this into a PageEventEmitter service
3037
3038 // Update existence markers on article/talk tabs...
3039 // Clear Backlink cache first so that purge jobs use more up-to-date backlink information
3040 BacklinkCache::get( $title )->clear();
3041 $other = $title->getOtherPage();
3042
3043 $other->purgeSquid();
3044
3045 $title->touchLinks();
3046 $title->purgeSquid();
3047
3048 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3049
3050 // File cache
3051 HTMLFileCache::clearFileCache( $title );
3052 InfoAction::invalidateCache( $title );
3053
3054 // Messages
3055 if ( $title->getNamespace() == NS_MEDIAWIKI ) {
3056 MessageCache::singleton()->updateMessageOverride( $title, null );
3057 }
3058
3059 // Images
3060 if ( $title->getNamespace() == NS_FILE ) {
3061 DeferredUpdates::addUpdate(
3062 new HTMLCacheUpdate( $title, 'imagelinks', 'page-delete' )
3063 );
3064 }
3065
3066 // User talk pages
3067 if ( $title->getNamespace() == NS_USER_TALK ) {
3068 $user = User::newFromName( $title->getText(), false );
3069 if ( $user ) {
3070 $user->setNewtalk( false );
3071 }
3072 }
3073
3074 // Image redirects
3075 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $title );
3076 }
3077
3078 /**
3079 * Purge caches on page update etc
3080 *
3081 * @param Title $title
3082 * @param Revision|null $revision Revision that was just saved, may be null
3083 * @param string[]|null $slotsChanged The role names of the slots that were changed.
3084 * If not given, all slots are assumed to have changed.
3085 */
3086 public static function onArticleEdit(
3087 Title $title,
3088 Revision $revision = null,
3089 $slotsChanged = null
3090 ) {
3091 // TODO: move this into a PageEventEmitter service
3092
3093 if ( $slotsChanged === null || in_array( 'main', $slotsChanged ) ) {
3094 // Invalidate caches of articles which include this page.
3095 // Only for the main slot, because only the main slot is transcluded.
3096 // TODO: MCR: not true for TemplateStyles! [SlotHandler]
3097 DeferredUpdates::addUpdate(
3098 new HTMLCacheUpdate( $title, 'templatelinks', 'page-edit' )
3099 );
3100 }
3101
3102 // Invalidate the caches of all pages which redirect here
3103 DeferredUpdates::addUpdate(
3104 new HTMLCacheUpdate( $title, 'redirect', 'page-edit' )
3105 );
3106
3107 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3108
3109 // Purge CDN for this page only
3110 $title->purgeSquid();
3111 // Clear file cache for this page only
3112 HTMLFileCache::clearFileCache( $title );
3113
3114 $revid = $revision ? $revision->getId() : null;
3115 DeferredUpdates::addCallableUpdate( function () use ( $title, $revid ) {
3116 InfoAction::invalidateCache( $title, $revid );
3117 } );
3118 }
3119
3120 /**#@-*/
3121
3122 /**
3123 * Returns a list of categories this page is a member of.
3124 * Results will include hidden categories
3125 *
3126 * @return TitleArray
3127 */
3128 public function getCategories() {
3129 $id = $this->getId();
3130 if ( $id == 0 ) {
3131 return TitleArray::newFromResult( new FakeResultWrapper( [] ) );
3132 }
3133
3134 $dbr = wfGetDB( DB_REPLICA );
3135 $res = $dbr->select( 'categorylinks',
3136 [ 'cl_to AS page_title, ' . NS_CATEGORY . ' AS page_namespace' ],
3137 // Have to do that since Database::fieldNamesWithAlias treats numeric indexes
3138 // as not being aliases, and NS_CATEGORY is numeric
3139 [ 'cl_from' => $id ],
3140 __METHOD__ );
3141
3142 return TitleArray::newFromResult( $res );
3143 }
3144
3145 /**
3146 * Returns a list of hidden categories this page is a member of.
3147 * Uses the page_props and categorylinks tables.
3148 *
3149 * @return array Array of Title objects
3150 */
3151 public function getHiddenCategories() {
3152 $result = [];
3153 $id = $this->getId();
3154
3155 if ( $id == 0 ) {
3156 return [];
3157 }
3158
3159 $dbr = wfGetDB( DB_REPLICA );
3160 $res = $dbr->select( [ 'categorylinks', 'page_props', 'page' ],
3161 [ 'cl_to' ],
3162 [ 'cl_from' => $id, 'pp_page=page_id', 'pp_propname' => 'hiddencat',
3163 'page_namespace' => NS_CATEGORY, 'page_title=cl_to' ],
3164 __METHOD__ );
3165
3166 if ( $res !== false ) {
3167 foreach ( $res as $row ) {
3168 $result[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
3169 }
3170 }
3171
3172 return $result;
3173 }
3174
3175 /**
3176 * Auto-generates a deletion reason
3177 *
3178 * @param bool &$hasHistory Whether the page has a history
3179 * @return string|bool String containing deletion reason or empty string, or boolean false
3180 * if no revision occurred
3181 */
3182 public function getAutoDeleteReason( &$hasHistory ) {
3183 return $this->getContentHandler()->getAutoDeleteReason( $this->getTitle(), $hasHistory );
3184 }
3185
3186 /**
3187 * Update all the appropriate counts in the category table, given that
3188 * we've added the categories $added and deleted the categories $deleted.
3189 *
3190 * This should only be called from deferred updates or jobs to avoid contention.
3191 *
3192 * @param array $added The names of categories that were added
3193 * @param array $deleted The names of categories that were deleted
3194 * @param int $id Page ID (this should be the original deleted page ID)
3195 */
3196 public function updateCategoryCounts( array $added, array $deleted, $id = 0 ) {
3197 $id = $id ?: $this->getId();
3198 $ns = $this->getTitle()->getNamespace();
3199
3200 $addFields = [ 'cat_pages = cat_pages + 1' ];
3201 $removeFields = [ 'cat_pages = cat_pages - 1' ];
3202 if ( $ns == NS_CATEGORY ) {
3203 $addFields[] = 'cat_subcats = cat_subcats + 1';
3204 $removeFields[] = 'cat_subcats = cat_subcats - 1';
3205 } elseif ( $ns == NS_FILE ) {
3206 $addFields[] = 'cat_files = cat_files + 1';
3207 $removeFields[] = 'cat_files = cat_files - 1';
3208 }
3209
3210 $dbw = wfGetDB( DB_MASTER );
3211
3212 if ( count( $added ) ) {
3213 $existingAdded = $dbw->selectFieldValues(
3214 'category',
3215 'cat_title',
3216 [ 'cat_title' => $added ],
3217 __METHOD__
3218 );
3219
3220 // For category rows that already exist, do a plain
3221 // UPDATE instead of INSERT...ON DUPLICATE KEY UPDATE
3222 // to avoid creating gaps in the cat_id sequence.
3223 if ( count( $existingAdded ) ) {
3224 $dbw->update(
3225 'category',
3226 $addFields,
3227 [ 'cat_title' => $existingAdded ],
3228 __METHOD__
3229 );
3230 }
3231
3232 $missingAdded = array_diff( $added, $existingAdded );
3233 if ( count( $missingAdded ) ) {
3234 $insertRows = [];
3235 foreach ( $missingAdded as $cat ) {
3236 $insertRows[] = [
3237 'cat_title' => $cat,
3238 'cat_pages' => 1,
3239 'cat_subcats' => ( $ns == NS_CATEGORY ) ? 1 : 0,
3240 'cat_files' => ( $ns == NS_FILE ) ? 1 : 0,
3241 ];
3242 }
3243 $dbw->upsert(
3244 'category',
3245 $insertRows,
3246 [ 'cat_title' ],
3247 $addFields,
3248 __METHOD__
3249 );
3250 }
3251 }
3252
3253 if ( count( $deleted ) ) {
3254 $dbw->update(
3255 'category',
3256 $removeFields,
3257 [ 'cat_title' => $deleted ],
3258 __METHOD__
3259 );
3260 }
3261
3262 foreach ( $added as $catName ) {
3263 $cat = Category::newFromName( $catName );
3264 Hooks::run( 'CategoryAfterPageAdded', [ $cat, $this ] );
3265 }
3266
3267 foreach ( $deleted as $catName ) {
3268 $cat = Category::newFromName( $catName );
3269 Hooks::run( 'CategoryAfterPageRemoved', [ $cat, $this, $id ] );
3270 }
3271
3272 // Refresh counts on categories that should be empty now
3273 if ( count( $deleted ) ) {
3274 $rows = $dbw->select(
3275 'category',
3276 [ 'cat_id', 'cat_title', 'cat_pages', 'cat_subcats', 'cat_files' ],
3277 [ 'cat_title' => $deleted, 'cat_pages <= 100' ],
3278 __METHOD__
3279 );
3280 foreach ( $rows as $row ) {
3281 $cat = Category::newFromRow( $row );
3282 // T166757: do the update after this DB commit
3283 DeferredUpdates::addCallableUpdate( function () use ( $cat ) {
3284 $cat->refreshCounts();
3285 } );
3286 }
3287 }
3288 }
3289
3290 /**
3291 * Opportunistically enqueue link update jobs given fresh parser output if useful
3292 *
3293 * @param ParserOutput $parserOutput Current version page output
3294 * @since 1.25
3295 */
3296 public function triggerOpportunisticLinksUpdate( ParserOutput $parserOutput ) {
3297 if ( wfReadOnly() ) {
3298 return;
3299 }
3300
3301 if ( !Hooks::run( 'OpportunisticLinksUpdate',
3302 [ $this, $this->mTitle, $parserOutput ]
3303 ) ) {
3304 return;
3305 }
3306
3307 $config = RequestContext::getMain()->getConfig();
3308
3309 $params = [
3310 'isOpportunistic' => true,
3311 'rootJobTimestamp' => $parserOutput->getCacheTime()
3312 ];
3313
3314 if ( $this->mTitle->areRestrictionsCascading() ) {
3315 // If the page is cascade protecting, the links should really be up-to-date
3316 JobQueueGroup::singleton()->lazyPush(
3317 RefreshLinksJob::newPrioritized( $this->mTitle, $params )
3318 );
3319 } elseif ( !$config->get( 'MiserMode' ) && $parserOutput->hasDynamicContent() ) {
3320 // Assume the output contains "dynamic" time/random based magic words.
3321 // Only update pages that expired due to dynamic content and NOT due to edits
3322 // to referenced templates/files. When the cache expires due to dynamic content,
3323 // page_touched is unchanged. We want to avoid triggering redundant jobs due to
3324 // views of pages that were just purged via HTMLCacheUpdateJob. In that case, the
3325 // template/file edit already triggered recursive RefreshLinksJob jobs.
3326 if ( $this->getLinksTimestamp() > $this->getTouched() ) {
3327 // If a page is uncacheable, do not keep spamming a job for it.
3328 // Although it would be de-duplicated, it would still waste I/O.
3329 $cache = ObjectCache::getLocalClusterInstance();
3330 $key = $cache->makeKey( 'dynamic-linksupdate', 'last', $this->getId() );
3331 $ttl = max( $parserOutput->getCacheExpiry(), 3600 );
3332 if ( $cache->add( $key, time(), $ttl ) ) {
3333 JobQueueGroup::singleton()->lazyPush(
3334 RefreshLinksJob::newDynamic( $this->mTitle, $params )
3335 );
3336 }
3337 }
3338 }
3339 }
3340
3341 /**
3342 * Returns a list of updates to be performed when this page is deleted. The
3343 * updates should remove any information about this page from secondary data
3344 * stores such as links tables.
3345 *
3346 * @param Content|null $content Optional Content object for determining the
3347 * necessary updates.
3348 * @return DeferrableUpdate[]
3349 */
3350 public function getDeletionUpdates( Content $content = null ) {
3351 if ( !$content ) {
3352 // load content object, which may be used to determine the necessary updates.
3353 // XXX: the content may not be needed to determine the updates.
3354 try {
3355 $content = $this->getContent( Revision::RAW );
3356 } catch ( Exception $ex ) {
3357 // If we can't load the content, something is wrong. Perhaps that's why
3358 // the user is trying to delete the page, so let's not fail in that case.
3359 // Note that doDeleteArticleReal() will already have logged an issue with
3360 // loading the content.
3361 }
3362 }
3363
3364 if ( !$content ) {
3365 $updates = [];
3366 } else {
3367 $updates = $content->getDeletionUpdates( $this );
3368 }
3369
3370 Hooks::run( 'WikiPageDeletionUpdates', [ $this, $content, &$updates ] );
3371 return $updates;
3372 }
3373
3374 /**
3375 * Whether this content displayed on this page
3376 * comes from the local database
3377 *
3378 * @since 1.28
3379 * @return bool
3380 */
3381 public function isLocal() {
3382 return true;
3383 }
3384
3385 /**
3386 * The display name for the site this content
3387 * come from. If a subclass overrides isLocal(),
3388 * this could return something other than the
3389 * current site name
3390 *
3391 * @since 1.28
3392 * @return string
3393 */
3394 public function getWikiDisplayName() {
3395 global $wgSitename;
3396 return $wgSitename;
3397 }
3398
3399 /**
3400 * Get the source URL for the content on this page,
3401 * typically the canonical URL, but may be a remote
3402 * link if the content comes from another site
3403 *
3404 * @since 1.28
3405 * @return string
3406 */
3407 public function getSourceURL() {
3408 return $this->getTitle()->getCanonicalURL();
3409 }
3410
3411 /**
3412 * @param WANObjectCache $cache
3413 * @return string[]
3414 * @since 1.28
3415 */
3416 public function getMutableCacheKeys( WANObjectCache $cache ) {
3417 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3418
3419 return $linkCache->getMutableCacheKeys( $cache, $this->getTitle()->getTitleValue() );
3420 }
3421
3422 }