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