[MCR] Factor PageUpdater out of WikiPage
[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;
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 $res = $dbw->select(
2501 array_intersect(
2502 $revQuery['tables'],
2503 [ 'revision', 'revision_comment_temp', 'revision_actor_temp' ]
2504 ),
2505 '1',
2506 [ 'rev_page' => $id ],
2507 __METHOD__,
2508 'FOR UPDATE',
2509 $revQuery['joins']
2510 );
2511 foreach ( $res as $row ) {
2512 // Fetch all rows in case the DB needs that to properly lock them.
2513 }
2514
2515 // Get all of the page revisions
2516 $res = $dbw->select(
2517 $revQuery['tables'],
2518 $revQuery['fields'],
2519 [ 'rev_page' => $id ],
2520 __METHOD__,
2521 [],
2522 $revQuery['joins']
2523 );
2524
2525 // Build their equivalent archive rows
2526 $rowsInsert = [];
2527 $revids = [];
2528
2529 /** @var int[] Revision IDs of edits that were made by IPs */
2530 $ipRevIds = [];
2531
2532 foreach ( $res as $row ) {
2533 $comment = $commentStore->getComment( 'rev_comment', $row );
2534 $user = User::newFromAnyId( $row->rev_user, $row->rev_user_text, $row->rev_actor );
2535 $rowInsert = [
2536 'ar_namespace' => $namespace,
2537 'ar_title' => $dbKey,
2538 'ar_timestamp' => $row->rev_timestamp,
2539 'ar_minor_edit' => $row->rev_minor_edit,
2540 'ar_rev_id' => $row->rev_id,
2541 'ar_parent_id' => $row->rev_parent_id,
2542 'ar_text_id' => $row->rev_text_id,
2543 'ar_len' => $row->rev_len,
2544 'ar_page_id' => $id,
2545 'ar_deleted' => $suppress ? $bitfield : $row->rev_deleted,
2546 'ar_sha1' => $row->rev_sha1,
2547 ] + $commentStore->insert( $dbw, 'ar_comment', $comment )
2548 + $actorMigration->getInsertValues( $dbw, 'ar_user', $user );
2549 if ( $wgContentHandlerUseDB ) {
2550 $rowInsert['ar_content_model'] = $row->rev_content_model;
2551 $rowInsert['ar_content_format'] = $row->rev_content_format;
2552 }
2553 $rowsInsert[] = $rowInsert;
2554 $revids[] = $row->rev_id;
2555
2556 // Keep track of IP edits, so that the corresponding rows can
2557 // be deleted in the ip_changes table.
2558 if ( (int)$row->rev_user === 0 && IP::isValid( $row->rev_user_text ) ) {
2559 $ipRevIds[] = $row->rev_id;
2560 }
2561 }
2562 // Copy them into the archive table
2563 $dbw->insert( 'archive', $rowsInsert, __METHOD__ );
2564 // Save this so we can pass it to the ArticleDeleteComplete hook.
2565 $archivedRevisionCount = $dbw->affectedRows();
2566
2567 // Clone the title and wikiPage, so we have the information we need when
2568 // we log and run the ArticleDeleteComplete hook.
2569 $logTitle = clone $this->mTitle;
2570 $wikiPageBeforeDelete = clone $this;
2571
2572 // Now that it's safely backed up, delete it
2573 $dbw->delete( 'page', [ 'page_id' => $id ], __METHOD__ );
2574 $dbw->delete( 'revision', [ 'rev_page' => $id ], __METHOD__ );
2575 if ( $wgCommentTableSchemaMigrationStage > MIGRATION_OLD ) {
2576 $dbw->delete( 'revision_comment_temp', [ 'revcomment_rev' => $revids ], __METHOD__ );
2577 }
2578 if ( $wgActorTableSchemaMigrationStage > MIGRATION_OLD ) {
2579 $dbw->delete( 'revision_actor_temp', [ 'revactor_rev' => $revids ], __METHOD__ );
2580 }
2581
2582 // Also delete records from ip_changes as applicable.
2583 if ( count( $ipRevIds ) > 0 ) {
2584 $dbw->delete( 'ip_changes', [ 'ipc_rev_id' => $ipRevIds ], __METHOD__ );
2585 }
2586
2587 // Log the deletion, if the page was suppressed, put it in the suppression log instead
2588 $logtype = $suppress ? 'suppress' : 'delete';
2589
2590 $logEntry = new ManualLogEntry( $logtype, $logsubtype );
2591 $logEntry->setPerformer( $deleter );
2592 $logEntry->setTarget( $logTitle );
2593 $logEntry->setComment( $reason );
2594 $logEntry->setTags( $tags );
2595 $logid = $logEntry->insert();
2596
2597 $dbw->onTransactionPreCommitOrIdle(
2598 function () use ( $logEntry, $logid ) {
2599 // T58776: avoid deadlocks (especially from FileDeleteForm)
2600 $logEntry->publish( $logid );
2601 },
2602 __METHOD__
2603 );
2604
2605 $dbw->endAtomic( __METHOD__ );
2606
2607 $this->doDeleteUpdates( $id, $content, $revision, $deleter );
2608
2609 Hooks::run( 'ArticleDeleteComplete', [
2610 &$wikiPageBeforeDelete,
2611 &$deleter,
2612 $reason,
2613 $id,
2614 $content,
2615 $logEntry,
2616 $archivedRevisionCount
2617 ] );
2618 $status->value = $logid;
2619
2620 // Show log excerpt on 404 pages rather than just a link
2621 $cache = MediaWikiServices::getInstance()->getMainObjectStash();
2622 $key = $cache->makeKey( 'page-recent-delete', md5( $logTitle->getPrefixedText() ) );
2623 $cache->set( $key, 1, $cache::TTL_DAY );
2624
2625 return $status;
2626 }
2627
2628 /**
2629 * Lock the page row for this title+id and return page_latest (or 0)
2630 *
2631 * @return int Returns 0 if no row was found with this title+id
2632 * @since 1.27
2633 */
2634 public function lockAndGetLatest() {
2635 return (int)wfGetDB( DB_MASTER )->selectField(
2636 'page',
2637 'page_latest',
2638 [
2639 'page_id' => $this->getId(),
2640 // Typically page_id is enough, but some code might try to do
2641 // updates assuming the title is the same, so verify that
2642 'page_namespace' => $this->getTitle()->getNamespace(),
2643 'page_title' => $this->getTitle()->getDBkey()
2644 ],
2645 __METHOD__,
2646 [ 'FOR UPDATE' ]
2647 );
2648 }
2649
2650 /**
2651 * Do some database updates after deletion
2652 *
2653 * @param int $id The page_id value of the page being deleted
2654 * @param Content|null $content Optional page content to be used when determining
2655 * the required updates. This may be needed because $this->getContent()
2656 * may already return null when the page proper was deleted.
2657 * @param Revision|null $revision The latest page revision
2658 * @param User|null $user The user that caused the deletion
2659 */
2660 public function doDeleteUpdates(
2661 $id, Content $content = null, Revision $revision = null, User $user = null
2662 ) {
2663 try {
2664 $countable = $this->isCountable();
2665 } catch ( Exception $ex ) {
2666 // fallback for deleting broken pages for which we cannot load the content for
2667 // some reason. Note that doDeleteArticleReal() already logged this problem.
2668 $countable = false;
2669 }
2670
2671 // Update site status
2672 DeferredUpdates::addUpdate( SiteStatsUpdate::factory(
2673 [ 'edits' => 1, 'articles' => -$countable, 'pages' => -1 ]
2674 ) );
2675
2676 // Delete pagelinks, update secondary indexes, etc
2677 $updates = $this->getDeletionUpdates( $content );
2678 foreach ( $updates as $update ) {
2679 DeferredUpdates::addUpdate( $update );
2680 }
2681
2682 $causeAgent = $user ? $user->getName() : 'unknown';
2683 // Reparse any pages transcluding this page
2684 LinksUpdate::queueRecursiveJobsForTable(
2685 $this->mTitle, 'templatelinks', 'delete-page', $causeAgent );
2686 // Reparse any pages including this image
2687 if ( $this->mTitle->getNamespace() == NS_FILE ) {
2688 LinksUpdate::queueRecursiveJobsForTable(
2689 $this->mTitle, 'imagelinks', 'delete-page', $causeAgent );
2690 }
2691
2692 // Clear caches
2693 self::onArticleDelete( $this->mTitle );
2694 ResourceLoaderWikiModule::invalidateModuleCache(
2695 $this->mTitle, $revision, null, wfWikiID()
2696 );
2697
2698 // Reset this object and the Title object
2699 $this->loadFromRow( false, self::READ_LATEST );
2700
2701 // Search engine
2702 DeferredUpdates::addUpdate( new SearchUpdate( $id, $this->mTitle ) );
2703 }
2704
2705 /**
2706 * Roll back the most recent consecutive set of edits to a page
2707 * from the same user; fails if there are no eligible edits to
2708 * roll back to, e.g. user is the sole contributor. This function
2709 * performs permissions checks on $user, then calls commitRollback()
2710 * to do the dirty work
2711 *
2712 * @todo Separate the business/permission stuff out from backend code
2713 * @todo Remove $token parameter. Already verified by RollbackAction and ApiRollback.
2714 *
2715 * @param string $fromP Name of the user whose edits to rollback.
2716 * @param string $summary Custom summary. Set to default summary if empty.
2717 * @param string $token Rollback token.
2718 * @param bool $bot If true, mark all reverted edits as bot.
2719 *
2720 * @param array &$resultDetails Array contains result-specific array of additional values
2721 * 'alreadyrolled' : 'current' (rev)
2722 * success : 'summary' (str), 'current' (rev), 'target' (rev)
2723 *
2724 * @param User $user The user performing the rollback
2725 * @param array|null $tags Change tags to apply to the rollback
2726 * Callers are responsible for permission checks
2727 * (with ChangeTags::canAddTagsAccompanyingChange)
2728 *
2729 * @return array Array of errors, each error formatted as
2730 * array(messagekey, param1, param2, ...).
2731 * On success, the array is empty. This array can also be passed to
2732 * OutputPage::showPermissionsErrorPage().
2733 */
2734 public function doRollback(
2735 $fromP, $summary, $token, $bot, &$resultDetails, User $user, $tags = null
2736 ) {
2737 $resultDetails = null;
2738
2739 // Check permissions
2740 $editErrors = $this->mTitle->getUserPermissionsErrors( 'edit', $user );
2741 $rollbackErrors = $this->mTitle->getUserPermissionsErrors( 'rollback', $user );
2742 $errors = array_merge( $editErrors, wfArrayDiff2( $rollbackErrors, $editErrors ) );
2743
2744 if ( !$user->matchEditToken( $token, 'rollback' ) ) {
2745 $errors[] = [ 'sessionfailure' ];
2746 }
2747
2748 if ( $user->pingLimiter( 'rollback' ) || $user->pingLimiter() ) {
2749 $errors[] = [ 'actionthrottledtext' ];
2750 }
2751
2752 // If there were errors, bail out now
2753 if ( !empty( $errors ) ) {
2754 return $errors;
2755 }
2756
2757 return $this->commitRollback( $fromP, $summary, $bot, $resultDetails, $user, $tags );
2758 }
2759
2760 /**
2761 * Backend implementation of doRollback(), please refer there for parameter
2762 * and return value documentation
2763 *
2764 * NOTE: This function does NOT check ANY permissions, it just commits the
2765 * rollback to the DB. Therefore, you should only call this function direct-
2766 * ly if you want to use custom permissions checks. If you don't, use
2767 * doRollback() instead.
2768 * @param string $fromP Name of the user whose edits to rollback.
2769 * @param string $summary Custom summary. Set to default summary if empty.
2770 * @param bool $bot If true, mark all reverted edits as bot.
2771 *
2772 * @param array &$resultDetails Contains result-specific array of additional values
2773 * @param User $guser The user performing the rollback
2774 * @param array|null $tags Change tags to apply to the rollback
2775 * Callers are responsible for permission checks
2776 * (with ChangeTags::canAddTagsAccompanyingChange)
2777 *
2778 * @return array
2779 */
2780 public function commitRollback( $fromP, $summary, $bot,
2781 &$resultDetails, User $guser, $tags = null
2782 ) {
2783 global $wgUseRCPatrol, $wgContLang;
2784
2785 $dbw = wfGetDB( DB_MASTER );
2786
2787 if ( wfReadOnly() ) {
2788 return [ [ 'readonlytext' ] ];
2789 }
2790
2791 // Get the last editor
2792 $current = $this->getRevision();
2793 if ( is_null( $current ) ) {
2794 // Something wrong... no page?
2795 return [ [ 'notanarticle' ] ];
2796 }
2797
2798 $from = str_replace( '_', ' ', $fromP );
2799 // User name given should match up with the top revision.
2800 // If the user was deleted then $from should be empty.
2801 if ( $from != $current->getUserText() ) {
2802 $resultDetails = [ 'current' => $current ];
2803 return [ [ 'alreadyrolled',
2804 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2805 htmlspecialchars( $fromP ),
2806 htmlspecialchars( $current->getUserText() )
2807 ] ];
2808 }
2809
2810 // Get the last edit not by this person...
2811 // Note: these may not be public values
2812 $userId = intval( $current->getUser( Revision::RAW ) );
2813 $userName = $current->getUserText( Revision::RAW );
2814 if ( $userId ) {
2815 $user = User::newFromId( $userId );
2816 $user->setName( $userName );
2817 } else {
2818 $user = User::newFromName( $current->getUserText( Revision::RAW ), false );
2819 }
2820
2821 $actorWhere = ActorMigration::newMigration()->getWhere( $dbw, 'rev_user', $user );
2822
2823 $s = $dbw->selectRow(
2824 [ 'revision' ] + $actorWhere['tables'],
2825 [ 'rev_id', 'rev_timestamp', 'rev_deleted' ],
2826 [
2827 'rev_page' => $current->getPage(),
2828 'NOT(' . $actorWhere['conds'] . ')',
2829 ],
2830 __METHOD__,
2831 [
2832 'USE INDEX' => [ 'revision' => 'page_timestamp' ],
2833 'ORDER BY' => 'rev_timestamp DESC'
2834 ],
2835 $actorWhere['joins']
2836 );
2837 if ( $s === false ) {
2838 // No one else ever edited this page
2839 return [ [ 'cantrollback' ] ];
2840 } elseif ( $s->rev_deleted & Revision::DELETED_TEXT
2841 || $s->rev_deleted & Revision::DELETED_USER
2842 ) {
2843 // Only admins can see this text
2844 return [ [ 'notvisiblerev' ] ];
2845 }
2846
2847 // Generate the edit summary if necessary
2848 $target = Revision::newFromId( $s->rev_id, Revision::READ_LATEST );
2849 if ( empty( $summary ) ) {
2850 if ( $from == '' ) { // no public user name
2851 $summary = wfMessage( 'revertpage-nouser' );
2852 } else {
2853 $summary = wfMessage( 'revertpage' );
2854 }
2855 }
2856
2857 // Allow the custom summary to use the same args as the default message
2858 $args = [
2859 $target->getUserText(), $from, $s->rev_id,
2860 $wgContLang->timeanddate( wfTimestamp( TS_MW, $s->rev_timestamp ) ),
2861 $current->getId(), $wgContLang->timeanddate( $current->getTimestamp() )
2862 ];
2863 if ( $summary instanceof Message ) {
2864 $summary = $summary->params( $args )->inContentLanguage()->text();
2865 } else {
2866 $summary = wfMsgReplaceArgs( $summary, $args );
2867 }
2868
2869 // Trim spaces on user supplied text
2870 $summary = trim( $summary );
2871
2872 // Save
2873 $flags = EDIT_UPDATE | EDIT_INTERNAL;
2874
2875 if ( $guser->isAllowed( 'minoredit' ) ) {
2876 $flags |= EDIT_MINOR;
2877 }
2878
2879 if ( $bot && ( $guser->isAllowedAny( 'markbotedits', 'bot' ) ) ) {
2880 $flags |= EDIT_FORCE_BOT;
2881 }
2882
2883 $targetContent = $target->getContent();
2884 $changingContentModel = $targetContent->getModel() !== $current->getContentModel();
2885
2886 if ( in_array( 'mw-rollback', ChangeTags::getSoftwareTags() ) ) {
2887 $tags[] = 'mw-rollback';
2888 }
2889
2890 // Actually store the edit
2891 $status = $this->doEditContent(
2892 $targetContent,
2893 $summary,
2894 $flags,
2895 $target->getId(),
2896 $guser,
2897 null,
2898 $tags
2899 );
2900
2901 // Set patrolling and bot flag on the edits, which gets rollbacked.
2902 // This is done even on edit failure to have patrolling in that case (T64157).
2903 $set = [];
2904 if ( $bot && $guser->isAllowed( 'markbotedits' ) ) {
2905 // Mark all reverted edits as bot
2906 $set['rc_bot'] = 1;
2907 }
2908
2909 if ( $wgUseRCPatrol ) {
2910 // Mark all reverted edits as patrolled
2911 $set['rc_patrolled'] = RecentChange::PRC_PATROLLED;
2912 }
2913
2914 if ( count( $set ) ) {
2915 $actorWhere = ActorMigration::newMigration()->getWhere( $dbw, 'rc_user', $user, false );
2916 $dbw->update( 'recentchanges', $set,
2917 [ /* WHERE */
2918 'rc_cur_id' => $current->getPage(),
2919 'rc_timestamp > ' . $dbw->addQuotes( $s->rev_timestamp ),
2920 $actorWhere['conds'], // No tables/joins are needed for rc_user
2921 ],
2922 __METHOD__
2923 );
2924 }
2925
2926 if ( !$status->isOK() ) {
2927 return $status->getErrorsArray();
2928 }
2929
2930 // raise error, when the edit is an edit without a new version
2931 $statusRev = $status->value['revision'] ?? null;
2932 if ( !( $statusRev instanceof Revision ) ) {
2933 $resultDetails = [ 'current' => $current ];
2934 return [ [ 'alreadyrolled',
2935 htmlspecialchars( $this->mTitle->getPrefixedText() ),
2936 htmlspecialchars( $fromP ),
2937 htmlspecialchars( $current->getUserText() )
2938 ] ];
2939 }
2940
2941 if ( $changingContentModel ) {
2942 // If the content model changed during the rollback,
2943 // make sure it gets logged to Special:Log/contentmodel
2944 $log = new ManualLogEntry( 'contentmodel', 'change' );
2945 $log->setPerformer( $guser );
2946 $log->setTarget( $this->mTitle );
2947 $log->setComment( $summary );
2948 $log->setParameters( [
2949 '4::oldmodel' => $current->getContentModel(),
2950 '5::newmodel' => $targetContent->getModel(),
2951 ] );
2952
2953 $logId = $log->insert( $dbw );
2954 $log->publish( $logId );
2955 }
2956
2957 $revId = $statusRev->getId();
2958
2959 Hooks::run( 'ArticleRollbackComplete', [ $this, $guser, $target, $current ] );
2960
2961 $resultDetails = [
2962 'summary' => $summary,
2963 'current' => $current,
2964 'target' => $target,
2965 'newid' => $revId,
2966 'tags' => $tags
2967 ];
2968
2969 return [];
2970 }
2971
2972 /**
2973 * The onArticle*() functions are supposed to be a kind of hooks
2974 * which should be called whenever any of the specified actions
2975 * are done.
2976 *
2977 * This is a good place to put code to clear caches, for instance.
2978 *
2979 * This is called on page move and undelete, as well as edit
2980 *
2981 * @param Title $title
2982 */
2983 public static function onArticleCreate( Title $title ) {
2984 // TODO: move this into a PageEventEmitter service
2985
2986 // Update existence markers on article/talk tabs...
2987 $other = $title->getOtherPage();
2988
2989 $other->purgeSquid();
2990
2991 $title->touchLinks();
2992 $title->purgeSquid();
2993 $title->deleteTitleProtection();
2994
2995 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
2996
2997 // Invalidate caches of articles which include this page
2998 DeferredUpdates::addUpdate(
2999 new HTMLCacheUpdate( $title, 'templatelinks', 'page-create' )
3000 );
3001
3002 if ( $title->getNamespace() == NS_CATEGORY ) {
3003 // Load the Category object, which will schedule a job to create
3004 // the category table row if necessary. Checking a replica DB is ok
3005 // here, in the worst case it'll run an unnecessary recount job on
3006 // a category that probably doesn't have many members.
3007 Category::newFromTitle( $title )->getID();
3008 }
3009 }
3010
3011 /**
3012 * Clears caches when article is deleted
3013 *
3014 * @param Title $title
3015 */
3016 public static function onArticleDelete( Title $title ) {
3017 // TODO: move this into a PageEventEmitter service
3018
3019 // Update existence markers on article/talk tabs...
3020 // Clear Backlink cache first so that purge jobs use more up-to-date backlink information
3021 BacklinkCache::get( $title )->clear();
3022 $other = $title->getOtherPage();
3023
3024 $other->purgeSquid();
3025
3026 $title->touchLinks();
3027 $title->purgeSquid();
3028
3029 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3030
3031 // File cache
3032 HTMLFileCache::clearFileCache( $title );
3033 InfoAction::invalidateCache( $title );
3034
3035 // Messages
3036 if ( $title->getNamespace() == NS_MEDIAWIKI ) {
3037 MessageCache::singleton()->updateMessageOverride( $title, null );
3038 }
3039
3040 // Images
3041 if ( $title->getNamespace() == NS_FILE ) {
3042 DeferredUpdates::addUpdate(
3043 new HTMLCacheUpdate( $title, 'imagelinks', 'page-delete' )
3044 );
3045 }
3046
3047 // User talk pages
3048 if ( $title->getNamespace() == NS_USER_TALK ) {
3049 $user = User::newFromName( $title->getText(), false );
3050 if ( $user ) {
3051 $user->setNewtalk( false );
3052 }
3053 }
3054
3055 // Image redirects
3056 RepoGroup::singleton()->getLocalRepo()->invalidateImageRedirect( $title );
3057 }
3058
3059 /**
3060 * Purge caches on page update etc
3061 *
3062 * @param Title $title
3063 * @param Revision|null $revision Revision that was just saved, may be null
3064 * @param string[]|null $slotsChanged The role names of the slots that were changed.
3065 * If not given, all slots are assumed to have changed.
3066 */
3067 public static function onArticleEdit(
3068 Title $title,
3069 Revision $revision = null,
3070 $slotsChanged = null
3071 ) {
3072 // TODO: move this into a PageEventEmitter service
3073
3074 if ( $slotsChanged === null || in_array( 'main', $slotsChanged ) ) {
3075 // Invalidate caches of articles which include this page.
3076 // Only for the main slot, because only the main slot is transcluded.
3077 // TODO: MCR: not true for TemplateStyles! [SlotHandler]
3078 DeferredUpdates::addUpdate(
3079 new HTMLCacheUpdate( $title, 'templatelinks', 'page-edit' )
3080 );
3081 }
3082
3083 // Invalidate the caches of all pages which redirect here
3084 DeferredUpdates::addUpdate(
3085 new HTMLCacheUpdate( $title, 'redirect', 'page-edit' )
3086 );
3087
3088 MediaWikiServices::getInstance()->getLinkCache()->invalidateTitle( $title );
3089
3090 // Purge CDN for this page only
3091 $title->purgeSquid();
3092 // Clear file cache for this page only
3093 HTMLFileCache::clearFileCache( $title );
3094
3095 $revid = $revision ? $revision->getId() : null;
3096 DeferredUpdates::addCallableUpdate( function () use ( $title, $revid ) {
3097 InfoAction::invalidateCache( $title, $revid );
3098 } );
3099 }
3100
3101 /**#@-*/
3102
3103 /**
3104 * Returns a list of categories this page is a member of.
3105 * Results will include hidden categories
3106 *
3107 * @return TitleArray
3108 */
3109 public function getCategories() {
3110 $id = $this->getId();
3111 if ( $id == 0 ) {
3112 return TitleArray::newFromResult( new FakeResultWrapper( [] ) );
3113 }
3114
3115 $dbr = wfGetDB( DB_REPLICA );
3116 $res = $dbr->select( 'categorylinks',
3117 [ 'cl_to AS page_title, ' . NS_CATEGORY . ' AS page_namespace' ],
3118 // Have to do that since Database::fieldNamesWithAlias treats numeric indexes
3119 // as not being aliases, and NS_CATEGORY is numeric
3120 [ 'cl_from' => $id ],
3121 __METHOD__ );
3122
3123 return TitleArray::newFromResult( $res );
3124 }
3125
3126 /**
3127 * Returns a list of hidden categories this page is a member of.
3128 * Uses the page_props and categorylinks tables.
3129 *
3130 * @return array Array of Title objects
3131 */
3132 public function getHiddenCategories() {
3133 $result = [];
3134 $id = $this->getId();
3135
3136 if ( $id == 0 ) {
3137 return [];
3138 }
3139
3140 $dbr = wfGetDB( DB_REPLICA );
3141 $res = $dbr->select( [ 'categorylinks', 'page_props', 'page' ],
3142 [ 'cl_to' ],
3143 [ 'cl_from' => $id, 'pp_page=page_id', 'pp_propname' => 'hiddencat',
3144 'page_namespace' => NS_CATEGORY, 'page_title=cl_to' ],
3145 __METHOD__ );
3146
3147 if ( $res !== false ) {
3148 foreach ( $res as $row ) {
3149 $result[] = Title::makeTitle( NS_CATEGORY, $row->cl_to );
3150 }
3151 }
3152
3153 return $result;
3154 }
3155
3156 /**
3157 * Auto-generates a deletion reason
3158 *
3159 * @param bool &$hasHistory Whether the page has a history
3160 * @return string|bool String containing deletion reason or empty string, or boolean false
3161 * if no revision occurred
3162 */
3163 public function getAutoDeleteReason( &$hasHistory ) {
3164 return $this->getContentHandler()->getAutoDeleteReason( $this->getTitle(), $hasHistory );
3165 }
3166
3167 /**
3168 * Update all the appropriate counts in the category table, given that
3169 * we've added the categories $added and deleted the categories $deleted.
3170 *
3171 * This should only be called from deferred updates or jobs to avoid contention.
3172 *
3173 * @param array $added The names of categories that were added
3174 * @param array $deleted The names of categories that were deleted
3175 * @param int $id Page ID (this should be the original deleted page ID)
3176 */
3177 public function updateCategoryCounts( array $added, array $deleted, $id = 0 ) {
3178 $id = $id ?: $this->getId();
3179 $ns = $this->getTitle()->getNamespace();
3180
3181 $addFields = [ 'cat_pages = cat_pages + 1' ];
3182 $removeFields = [ 'cat_pages = cat_pages - 1' ];
3183 if ( $ns == NS_CATEGORY ) {
3184 $addFields[] = 'cat_subcats = cat_subcats + 1';
3185 $removeFields[] = 'cat_subcats = cat_subcats - 1';
3186 } elseif ( $ns == NS_FILE ) {
3187 $addFields[] = 'cat_files = cat_files + 1';
3188 $removeFields[] = 'cat_files = cat_files - 1';
3189 }
3190
3191 $dbw = wfGetDB( DB_MASTER );
3192
3193 if ( count( $added ) ) {
3194 $existingAdded = $dbw->selectFieldValues(
3195 'category',
3196 'cat_title',
3197 [ 'cat_title' => $added ],
3198 __METHOD__
3199 );
3200
3201 // For category rows that already exist, do a plain
3202 // UPDATE instead of INSERT...ON DUPLICATE KEY UPDATE
3203 // to avoid creating gaps in the cat_id sequence.
3204 if ( count( $existingAdded ) ) {
3205 $dbw->update(
3206 'category',
3207 $addFields,
3208 [ 'cat_title' => $existingAdded ],
3209 __METHOD__
3210 );
3211 }
3212
3213 $missingAdded = array_diff( $added, $existingAdded );
3214 if ( count( $missingAdded ) ) {
3215 $insertRows = [];
3216 foreach ( $missingAdded as $cat ) {
3217 $insertRows[] = [
3218 'cat_title' => $cat,
3219 'cat_pages' => 1,
3220 'cat_subcats' => ( $ns == NS_CATEGORY ) ? 1 : 0,
3221 'cat_files' => ( $ns == NS_FILE ) ? 1 : 0,
3222 ];
3223 }
3224 $dbw->upsert(
3225 'category',
3226 $insertRows,
3227 [ 'cat_title' ],
3228 $addFields,
3229 __METHOD__
3230 );
3231 }
3232 }
3233
3234 if ( count( $deleted ) ) {
3235 $dbw->update(
3236 'category',
3237 $removeFields,
3238 [ 'cat_title' => $deleted ],
3239 __METHOD__
3240 );
3241 }
3242
3243 foreach ( $added as $catName ) {
3244 $cat = Category::newFromName( $catName );
3245 Hooks::run( 'CategoryAfterPageAdded', [ $cat, $this ] );
3246 }
3247
3248 foreach ( $deleted as $catName ) {
3249 $cat = Category::newFromName( $catName );
3250 Hooks::run( 'CategoryAfterPageRemoved', [ $cat, $this, $id ] );
3251 }
3252
3253 // Refresh counts on categories that should be empty now
3254 if ( count( $deleted ) ) {
3255 $rows = $dbw->select(
3256 'category',
3257 [ 'cat_id', 'cat_title', 'cat_pages', 'cat_subcats', 'cat_files' ],
3258 [ 'cat_title' => $deleted, 'cat_pages <= 100' ],
3259 __METHOD__
3260 );
3261 foreach ( $rows as $row ) {
3262 $cat = Category::newFromRow( $row );
3263 // T166757: do the update after this DB commit
3264 DeferredUpdates::addCallableUpdate( function () use ( $cat ) {
3265 $cat->refreshCounts();
3266 } );
3267 }
3268 }
3269 }
3270
3271 /**
3272 * Opportunistically enqueue link update jobs given fresh parser output if useful
3273 *
3274 * @param ParserOutput $parserOutput Current version page output
3275 * @since 1.25
3276 */
3277 public function triggerOpportunisticLinksUpdate( ParserOutput $parserOutput ) {
3278 if ( wfReadOnly() ) {
3279 return;
3280 }
3281
3282 if ( !Hooks::run( 'OpportunisticLinksUpdate',
3283 [ $this, $this->mTitle, $parserOutput ]
3284 ) ) {
3285 return;
3286 }
3287
3288 $config = RequestContext::getMain()->getConfig();
3289
3290 $params = [
3291 'isOpportunistic' => true,
3292 'rootJobTimestamp' => $parserOutput->getCacheTime()
3293 ];
3294
3295 if ( $this->mTitle->areRestrictionsCascading() ) {
3296 // If the page is cascade protecting, the links should really be up-to-date
3297 JobQueueGroup::singleton()->lazyPush(
3298 RefreshLinksJob::newPrioritized( $this->mTitle, $params )
3299 );
3300 } elseif ( !$config->get( 'MiserMode' ) && $parserOutput->hasDynamicContent() ) {
3301 // Assume the output contains "dynamic" time/random based magic words.
3302 // Only update pages that expired due to dynamic content and NOT due to edits
3303 // to referenced templates/files. When the cache expires due to dynamic content,
3304 // page_touched is unchanged. We want to avoid triggering redundant jobs due to
3305 // views of pages that were just purged via HTMLCacheUpdateJob. In that case, the
3306 // template/file edit already triggered recursive RefreshLinksJob jobs.
3307 if ( $this->getLinksTimestamp() > $this->getTouched() ) {
3308 // If a page is uncacheable, do not keep spamming a job for it.
3309 // Although it would be de-duplicated, it would still waste I/O.
3310 $cache = ObjectCache::getLocalClusterInstance();
3311 $key = $cache->makeKey( 'dynamic-linksupdate', 'last', $this->getId() );
3312 $ttl = max( $parserOutput->getCacheExpiry(), 3600 );
3313 if ( $cache->add( $key, time(), $ttl ) ) {
3314 JobQueueGroup::singleton()->lazyPush(
3315 RefreshLinksJob::newDynamic( $this->mTitle, $params )
3316 );
3317 }
3318 }
3319 }
3320 }
3321
3322 /**
3323 * Returns a list of updates to be performed when this page is deleted. The
3324 * updates should remove any information about this page from secondary data
3325 * stores such as links tables.
3326 *
3327 * @param Content|null $content Optional Content object for determining the
3328 * necessary updates.
3329 * @return DeferrableUpdate[]
3330 */
3331 public function getDeletionUpdates( Content $content = null ) {
3332 if ( !$content ) {
3333 // load content object, which may be used to determine the necessary updates.
3334 // XXX: the content may not be needed to determine the updates.
3335 try {
3336 $content = $this->getContent( Revision::RAW );
3337 } catch ( Exception $ex ) {
3338 // If we can't load the content, something is wrong. Perhaps that's why
3339 // the user is trying to delete the page, so let's not fail in that case.
3340 // Note that doDeleteArticleReal() will already have logged an issue with
3341 // loading the content.
3342 }
3343 }
3344
3345 if ( !$content ) {
3346 $updates = [];
3347 } else {
3348 $updates = $content->getDeletionUpdates( $this );
3349 }
3350
3351 Hooks::run( 'WikiPageDeletionUpdates', [ $this, $content, &$updates ] );
3352 return $updates;
3353 }
3354
3355 /**
3356 * Whether this content displayed on this page
3357 * comes from the local database
3358 *
3359 * @since 1.28
3360 * @return bool
3361 */
3362 public function isLocal() {
3363 return true;
3364 }
3365
3366 /**
3367 * The display name for the site this content
3368 * come from. If a subclass overrides isLocal(),
3369 * this could return something other than the
3370 * current site name
3371 *
3372 * @since 1.28
3373 * @return string
3374 */
3375 public function getWikiDisplayName() {
3376 global $wgSitename;
3377 return $wgSitename;
3378 }
3379
3380 /**
3381 * Get the source URL for the content on this page,
3382 * typically the canonical URL, but may be a remote
3383 * link if the content comes from another site
3384 *
3385 * @since 1.28
3386 * @return string
3387 */
3388 public function getSourceURL() {
3389 return $this->getTitle()->getCanonicalURL();
3390 }
3391
3392 /**
3393 * @param WANObjectCache $cache
3394 * @return string[]
3395 * @since 1.28
3396 */
3397 public function getMutableCacheKeys( WANObjectCache $cache ) {
3398 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
3399
3400 return $linkCache->getMutableCacheKeys( $cache, $this->getTitle()->getTitleValue() );
3401 }
3402
3403 }