3 * Base representation for a MediaWiki page.
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.
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.
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
23 use \MediaWiki\Logger\LoggerFactory
;
24 use \MediaWiki\MediaWikiServices
;
25 use Wikimedia\Rdbms\FakeResultWrapper
;
26 use Wikimedia\Rdbms\IDatabase
;
27 use Wikimedia\Rdbms\DBError
;
28 use Wikimedia\Rdbms\DBUnexpectedError
;
31 * Class representing a MediaWiki article and history.
33 * Some fields are public only for backwards-compatibility. Use accessors.
34 * In the past, this class was part of Article.php and everything was public.
36 class WikiPage
implements Page
, IDBAccessObject
{
37 // Constants for $mDataLoadedFrom and related
42 public $mTitle = null;
47 public $mDataLoaded = false; // !< Boolean
48 public $mIsRedirect = false; // !< Boolean
49 public $mLatest = false; // !< Integer (false means "not loaded")
52 /** @var stdClass Map of cache fields (text, parser output, ect) for a proposed/new edit */
53 public $mPreparedEdit = false;
58 protected $mId = null;
61 * @var int One of the READ_* constants
63 protected $mDataLoadedFrom = self
::READ_NONE
;
68 protected $mRedirectTarget = null;
73 protected $mLastRevision = null;
76 * @var string Timestamp of the current revision or empty string if not loaded
78 protected $mTimestamp = '';
83 protected $mTouched = '19700101000000';
88 protected $mLinksUpdated = '19700101000000';
90 /** @deprecated since 1.29. Added in 1.28 for partial purging, no longer used. */
91 const PURGE_CDN_CACHE
= 1;
92 const PURGE_CLUSTER_PCACHE
= 2;
93 const PURGE_GLOBAL_PCACHE
= 4;
97 * Constructor and clear the article
98 * @param Title $title Reference to a Title object.
100 public function __construct( Title
$title ) {
101 $this->mTitle
= $title;
105 * Makes sure that the mTitle object is cloned
106 * to the newly cloned WikiPage.
108 public function __clone() {
109 $this->mTitle
= clone $this->mTitle
;
113 * Create a WikiPage object of the appropriate class for the given title.
115 * @param Title $title
117 * @throws MWException
118 * @return WikiPage|WikiCategoryPage|WikiFilePage
120 public static function factory( Title
$title ) {
121 $ns = $title->getNamespace();
123 if ( $ns == NS_MEDIA
) {
124 throw new MWException( "NS_MEDIA is a virtual namespace; use NS_FILE." );
125 } elseif ( $ns < 0 ) {
126 throw new MWException( "Invalid or virtual namespace $ns given." );
130 if ( !Hooks
::run( 'WikiPageFactory', [ $title, &$page ] ) ) {
136 $page = new WikiFilePage( $title );
139 $page = new WikiCategoryPage( $title );
142 $page = new WikiPage( $title );
149 * Constructor from a page id
151 * @param int $id Article ID to load
152 * @param string|int $from One of the following values:
153 * - "fromdb" or WikiPage::READ_NORMAL to select from a replica DB
154 * - "fromdbmaster" or WikiPage::READ_LATEST to select from the master database
156 * @return WikiPage|null
158 public static function newFromID( $id, $from = 'fromdb' ) {
159 // page ids are never 0 or negative, see T63166
164 $from = self
::convertSelectType( $from );
165 $db = wfGetDB( $from === self
::READ_LATEST ? DB_MASTER
: DB_REPLICA
);
166 $row = $db->selectRow(
167 'page', self
::selectFields(), [ 'page_id' => $id ], __METHOD__
);
171 return self
::newFromRow( $row, $from );
175 * Constructor from a database row
178 * @param object $row Database row containing at least fields returned by selectFields().
179 * @param string|int $from Source of $data:
180 * - "fromdb" or WikiPage::READ_NORMAL: from a replica DB
181 * - "fromdbmaster" or WikiPage::READ_LATEST: from the master DB
182 * - "forupdate" or WikiPage::READ_LOCKING: from the master DB using SELECT FOR UPDATE
185 public static function newFromRow( $row, $from = 'fromdb' ) {
186 $page = self
::factory( Title
::newFromRow( $row ) );
187 $page->loadFromRow( $row, $from );
192 * Convert 'fromdb', 'fromdbmaster' and 'forupdate' to READ_* constants.
194 * @param object|string|int $type
197 private static function convertSelectType( $type ) {
200 return self
::READ_NORMAL
;
202 return self
::READ_LATEST
;
204 return self
::READ_LOCKING
;
206 // It may already be an integer or whatever else
212 * @todo Move this UI stuff somewhere else
214 * @see ContentHandler::getActionOverrides
216 public function getActionOverrides() {
217 return $this->getContentHandler()->getActionOverrides();
221 * Returns the ContentHandler instance to be used to deal with the content of this WikiPage.
223 * Shorthand for ContentHandler::getForModelID( $this->getContentModel() );
225 * @return ContentHandler
229 public function getContentHandler() {
230 return ContentHandler
::getForModelID( $this->getContentModel() );
234 * Get the title object of the article
235 * @return Title Title object of this page
237 public function getTitle() {
238 return $this->mTitle
;
245 public function clear() {
246 $this->mDataLoaded
= false;
247 $this->mDataLoadedFrom
= self
::READ_NONE
;
249 $this->clearCacheFields();
253 * Clear the object cache fields
256 protected function clearCacheFields() {
258 $this->mRedirectTarget
= null; // Title object if set
259 $this->mLastRevision
= null; // Latest revision
260 $this->mTouched
= '19700101000000';
261 $this->mLinksUpdated
= '19700101000000';
262 $this->mTimestamp
= '';
263 $this->mIsRedirect
= false;
264 $this->mLatest
= false;
265 // T59026: do not clear mPreparedEdit since prepareTextForEdit() already checks
266 // the requested rev ID and content against the cached one for equality. For most
267 // content types, the output should not change during the lifetime of this cache.
268 // Clearing it can cause extra parses on edit for no reason.
272 * Clear the mPreparedEdit cache field, as may be needed by mutable content types
276 public function clearPreparedEdit() {
277 $this->mPreparedEdit
= false;
281 * Return the list of revision fields that should be selected to create
286 public static function selectFields() {
287 global $wgContentHandlerUseDB, $wgPageLanguageUseDB;
298 'page_links_updated',
303 if ( $wgContentHandlerUseDB ) {
304 $fields[] = 'page_content_model';
307 if ( $wgPageLanguageUseDB ) {
308 $fields[] = 'page_lang';
315 * Fetch a page record with the given conditions
316 * @param IDatabase $dbr
317 * @param array $conditions
318 * @param array $options
319 * @return object|bool Database result resource, or false on failure
321 protected function pageData( $dbr, $conditions, $options = [] ) {
322 $fields = self
::selectFields();
324 // Avoid PHP 7.1 warning of passing $this by reference
327 Hooks
::run( 'ArticlePageDataBefore', [ &$wikiPage, &$fields ] );
329 $row = $dbr->selectRow( 'page', $fields, $conditions, __METHOD__
, $options );
331 Hooks
::run( 'ArticlePageDataAfter', [ &$wikiPage, &$row ] );
337 * Fetch a page record matching the Title object's namespace and title
338 * using a sanitized title string
340 * @param IDatabase $dbr
341 * @param Title $title
342 * @param array $options
343 * @return object|bool Database result resource, or false on failure
345 public function pageDataFromTitle( $dbr, $title, $options = [] ) {
346 return $this->pageData( $dbr, [
347 'page_namespace' => $title->getNamespace(),
348 'page_title' => $title->getDBkey() ], $options );
352 * Fetch a page record matching the requested ID
354 * @param IDatabase $dbr
356 * @param array $options
357 * @return object|bool Database result resource, or false on failure
359 public function pageDataFromId( $dbr, $id, $options = [] ) {
360 return $this->pageData( $dbr, [ 'page_id' => $id ], $options );
364 * Load the object from a given source by title
366 * @param object|string|int $from One of the following:
367 * - A DB query result object.
368 * - "fromdb" or WikiPage::READ_NORMAL to get from a replica DB.
369 * - "fromdbmaster" or WikiPage::READ_LATEST to get from the master DB.
370 * - "forupdate" or WikiPage::READ_LOCKING to get from the master DB
371 * using SELECT FOR UPDATE.
375 public function loadPageData( $from = 'fromdb' ) {
376 $from = self
::convertSelectType( $from );
377 if ( is_int( $from ) && $from <= $this->mDataLoadedFrom
) {
378 // We already have the data from the correct location, no need to load it twice.
382 if ( is_int( $from ) ) {
383 list( $index, $opts ) = DBAccessObjectUtils
::getDBOptions( $from );
384 $data = $this->pageDataFromTitle( wfGetDB( $index ), $this->mTitle
, $opts );
387 && $index == DB_REPLICA
388 && wfGetLB()->getServerCount() > 1
389 && wfGetLB()->hasOrMadeRecentMasterChanges()
391 $from = self
::READ_LATEST
;
392 list( $index, $opts ) = DBAccessObjectUtils
::getDBOptions( $from );
393 $data = $this->pageDataFromTitle( wfGetDB( $index ), $this->mTitle
, $opts );
396 // No idea from where the caller got this data, assume replica DB.
398 $from = self
::READ_NORMAL
;
401 $this->loadFromRow( $data, $from );
405 * Load the object from a database row
408 * @param object|bool $data DB row containing fields returned by selectFields() or false
409 * @param string|int $from One of the following:
410 * - "fromdb" or WikiPage::READ_NORMAL if the data comes from a replica DB
411 * - "fromdbmaster" or WikiPage::READ_LATEST if the data comes from the master DB
412 * - "forupdate" or WikiPage::READ_LOCKING if the data comes from
413 * the master DB using SELECT FOR UPDATE
415 public function loadFromRow( $data, $from ) {
416 $lc = LinkCache
::singleton();
417 $lc->clearLink( $this->mTitle
);
420 $lc->addGoodLinkObjFromRow( $this->mTitle
, $data );
422 $this->mTitle
->loadFromRow( $data );
424 // Old-fashioned restrictions
425 $this->mTitle
->loadRestrictions( $data->page_restrictions
);
427 $this->mId
= intval( $data->page_id
);
428 $this->mTouched
= wfTimestamp( TS_MW
, $data->page_touched
);
429 $this->mLinksUpdated
= wfTimestampOrNull( TS_MW
, $data->page_links_updated
);
430 $this->mIsRedirect
= intval( $data->page_is_redirect
);
431 $this->mLatest
= intval( $data->page_latest
);
432 // T39225: $latest may no longer match the cached latest Revision object.
433 // Double-check the ID of any cached latest Revision object for consistency.
434 if ( $this->mLastRevision
&& $this->mLastRevision
->getId() != $this->mLatest
) {
435 $this->mLastRevision
= null;
436 $this->mTimestamp
= '';
439 $lc->addBadLinkObj( $this->mTitle
);
441 $this->mTitle
->loadFromRow( false );
443 $this->clearCacheFields();
448 $this->mDataLoaded
= true;
449 $this->mDataLoadedFrom
= self
::convertSelectType( $from );
453 * @return int Page ID
455 public function getId() {
456 if ( !$this->mDataLoaded
) {
457 $this->loadPageData();
463 * @return bool Whether or not the page exists in the database
465 public function exists() {
466 if ( !$this->mDataLoaded
) {
467 $this->loadPageData();
469 return $this->mId
> 0;
473 * Check if this page is something we're going to be showing
474 * some sort of sensible content for. If we return false, page
475 * views (plain action=view) will return an HTTP 404 response,
476 * so spiders and robots can know they're following a bad link.
480 public function hasViewableContent() {
481 return $this->mTitle
->isKnown();
485 * Tests if the article content represents a redirect
489 public function isRedirect() {
490 if ( !$this->mDataLoaded
) {
491 $this->loadPageData();
494 return (bool)$this->mIsRedirect
;
498 * Returns the page's content model id (see the CONTENT_MODEL_XXX constants).
500 * Will use the revisions actual content model if the page exists,
501 * and the page's default if the page doesn't exist yet.
507 public function getContentModel() {
508 if ( $this->exists() ) {
509 $cache = ObjectCache
::getMainWANInstance();
511 return $cache->getWithSetCallback(
512 $cache->makeKey( 'page', 'content-model', $this->getLatest() ),
515 $rev = $this->getRevision();
517 // Look at the revision's actual content model
518 return $rev->getContentModel();
520 $title = $this->mTitle
->getPrefixedDBkey();
521 wfWarn( "Page $title exists but has no (visible) revisions!" );
522 return $this->mTitle
->getContentModel();
528 // use the default model for this page
529 return $this->mTitle
->getContentModel();
533 * Loads page_touched and returns a value indicating if it should be used
534 * @return bool True if this page exists and is not a redirect
536 public function checkTouched() {
537 if ( !$this->mDataLoaded
) {
538 $this->loadPageData();
540 return ( $this->mId
&& !$this->mIsRedirect
);
544 * Get the page_touched field
545 * @return string Containing GMT timestamp
547 public function getTouched() {
548 if ( !$this->mDataLoaded
) {
549 $this->loadPageData();
551 return $this->mTouched
;
555 * Get the page_links_updated field
556 * @return string|null Containing GMT timestamp
558 public function getLinksTimestamp() {
559 if ( !$this->mDataLoaded
) {
560 $this->loadPageData();
562 return $this->mLinksUpdated
;
566 * Get the page_latest field
567 * @return int The rev_id of current revision
569 public function getLatest() {
570 if ( !$this->mDataLoaded
) {
571 $this->loadPageData();
573 return (int)$this->mLatest
;
577 * Get the Revision object of the oldest revision
578 * @return Revision|null
580 public function getOldestRevision() {
581 // Try using the replica DB first, then try the master
582 $rev = $this->mTitle
->getFirstRevision();
584 $rev = $this->mTitle
->getFirstRevision( Title
::GAID_FOR_UPDATE
);
590 * Loads everything except the text
591 * This isn't necessary for all uses, so it's only done if needed.
593 protected function loadLastEdit() {
594 if ( $this->mLastRevision
!== null ) {
595 return; // already loaded
598 $latest = $this->getLatest();
600 return; // page doesn't exist or is missing page_latest info
603 if ( $this->mDataLoadedFrom
== self
::READ_LOCKING
) {
604 // T39225: if session S1 loads the page row FOR UPDATE, the result always
605 // includes the latest changes committed. This is true even within REPEATABLE-READ
606 // transactions, where S1 normally only sees changes committed before the first S1
607 // SELECT. Thus we need S1 to also gets the revision row FOR UPDATE; otherwise, it
608 // may not find it since a page row UPDATE and revision row INSERT by S2 may have
609 // happened after the first S1 SELECT.
610 // https://dev.mysql.com/doc/refman/5.0/en/set-transaction.html#isolevel_repeatable-read
611 $flags = Revision
::READ_LOCKING
;
612 $revision = Revision
::newFromPageId( $this->getId(), $latest, $flags );
613 } elseif ( $this->mDataLoadedFrom
== self
::READ_LATEST
) {
614 // Bug T93976: if page_latest was loaded from the master, fetch the
615 // revision from there as well, as it may not exist yet on a replica DB.
616 // Also, this keeps the queries in the same REPEATABLE-READ snapshot.
617 $flags = Revision
::READ_LATEST
;
618 $revision = Revision
::newFromPageId( $this->getId(), $latest, $flags );
620 $dbr = wfGetDB( DB_REPLICA
);
621 $revision = Revision
::newKnownCurrent( $dbr, $this->getId(), $latest );
624 if ( $revision ) { // sanity
625 $this->setLastEdit( $revision );
630 * Set the latest revision
631 * @param Revision $revision
633 protected function setLastEdit( Revision
$revision ) {
634 $this->mLastRevision
= $revision;
635 $this->mTimestamp
= $revision->getTimestamp();
639 * Get the latest revision
640 * @return Revision|null
642 public function getRevision() {
643 $this->loadLastEdit();
644 if ( $this->mLastRevision
) {
645 return $this->mLastRevision
;
651 * Get the content of the current revision. No side-effects...
653 * @param int $audience One of:
654 * Revision::FOR_PUBLIC to be displayed to all users
655 * Revision::FOR_THIS_USER to be displayed to $wgUser
656 * Revision::RAW get the text regardless of permissions
657 * @param User $user User object to check for, only if FOR_THIS_USER is passed
658 * to the $audience parameter
659 * @return Content|null The content of the current revision
663 public function getContent( $audience = Revision
::FOR_PUBLIC
, User
$user = null ) {
664 $this->loadLastEdit();
665 if ( $this->mLastRevision
) {
666 return $this->mLastRevision
->getContent( $audience, $user );
672 * @return string MW timestamp of last article revision
674 public function getTimestamp() {
675 // Check if the field has been filled by WikiPage::setTimestamp()
676 if ( !$this->mTimestamp
) {
677 $this->loadLastEdit();
680 return wfTimestamp( TS_MW
, $this->mTimestamp
);
684 * Set the page timestamp (use only to avoid DB queries)
685 * @param string $ts MW timestamp of last article revision
688 public function setTimestamp( $ts ) {
689 $this->mTimestamp
= wfTimestamp( TS_MW
, $ts );
693 * @param int $audience One of:
694 * Revision::FOR_PUBLIC to be displayed to all users
695 * Revision::FOR_THIS_USER to be displayed to the given user
696 * Revision::RAW get the text regardless of permissions
697 * @param User $user User object to check for, only if FOR_THIS_USER is passed
698 * to the $audience parameter
699 * @return int User ID for the user that made the last article revision
701 public function getUser( $audience = Revision
::FOR_PUBLIC
, User
$user = null ) {
702 $this->loadLastEdit();
703 if ( $this->mLastRevision
) {
704 return $this->mLastRevision
->getUser( $audience, $user );
711 * Get the User object of the user who created the page
712 * @param int $audience One of:
713 * Revision::FOR_PUBLIC to be displayed to all users
714 * Revision::FOR_THIS_USER to be displayed to the given user
715 * Revision::RAW get the text regardless of permissions
716 * @param User $user User object to check for, only if FOR_THIS_USER is passed
717 * to the $audience parameter
720 public function getCreator( $audience = Revision
::FOR_PUBLIC
, User
$user = null ) {
721 $revision = $this->getOldestRevision();
723 $userName = $revision->getUserText( $audience, $user );
724 return User
::newFromName( $userName, false );
731 * @param int $audience One of:
732 * Revision::FOR_PUBLIC to be displayed to all users
733 * Revision::FOR_THIS_USER to be displayed to the given user
734 * Revision::RAW get the text regardless of permissions
735 * @param User $user User object to check for, only if FOR_THIS_USER is passed
736 * to the $audience parameter
737 * @return string Username of the user that made the last article revision
739 public function getUserText( $audience = Revision
::FOR_PUBLIC
, User
$user = null ) {
740 $this->loadLastEdit();
741 if ( $this->mLastRevision
) {
742 return $this->mLastRevision
->getUserText( $audience, $user );
749 * @param int $audience One of:
750 * Revision::FOR_PUBLIC to be displayed to all users
751 * Revision::FOR_THIS_USER to be displayed to the given user
752 * Revision::RAW get the text regardless of permissions
753 * @param User $user User object to check for, only if FOR_THIS_USER is passed
754 * to the $audience parameter
755 * @return string Comment stored for the last article revision
757 public function getComment( $audience = Revision
::FOR_PUBLIC
, User
$user = null ) {
758 $this->loadLastEdit();
759 if ( $this->mLastRevision
) {
760 return $this->mLastRevision
->getComment( $audience, $user );
767 * Returns true if last revision was marked as "minor edit"
769 * @return bool Minor edit indicator for the last article revision.
771 public function getMinorEdit() {
772 $this->loadLastEdit();
773 if ( $this->mLastRevision
) {
774 return $this->mLastRevision
->isMinor();
781 * Determine whether a page would be suitable for being counted as an
782 * article in the site_stats table based on the title & its content
784 * @param object|bool $editInfo (false): object returned by prepareTextForEdit(),
785 * if false, the current database state will be used
788 public function isCountable( $editInfo = false ) {
789 global $wgArticleCountMethod;
791 if ( !$this->mTitle
->isContentPage() ) {
796 $content = $editInfo->pstContent
;
798 $content = $this->getContent();
801 if ( !$content ||
$content->isRedirect() ) {
807 if ( $wgArticleCountMethod === 'link' ) {
808 // nasty special case to avoid re-parsing to detect links
811 // ParserOutput::getLinks() is a 2D array of page links, so
812 // to be really correct we would need to recurse in the array
813 // but the main array should only have items in it if there are
815 $hasLinks = (bool)count( $editInfo->output
->getLinks() );
817 $hasLinks = (bool)wfGetDB( DB_REPLICA
)->selectField( 'pagelinks', 1,
818 [ 'pl_from' => $this->getId() ], __METHOD__
);
822 return $content->isCountable( $hasLinks );
826 * If this page is a redirect, get its target
828 * The target will be fetched from the redirect table if possible.
829 * If this page doesn't have an entry there, call insertRedirect()
830 * @return Title|null Title object, or null if this page is not a redirect
832 public function getRedirectTarget() {
833 if ( !$this->mTitle
->isRedirect() ) {
837 if ( $this->mRedirectTarget
!== null ) {
838 return $this->mRedirectTarget
;
841 // Query the redirect table
842 $dbr = wfGetDB( DB_REPLICA
);
843 $row = $dbr->selectRow( 'redirect',
844 [ 'rd_namespace', 'rd_title', 'rd_fragment', 'rd_interwiki' ],
845 [ 'rd_from' => $this->getId() ],
849 // rd_fragment and rd_interwiki were added later, populate them if empty
850 if ( $row && !is_null( $row->rd_fragment
) && !is_null( $row->rd_interwiki
) ) {
851 $this->mRedirectTarget
= Title
::makeTitle(
852 $row->rd_namespace
, $row->rd_title
,
853 $row->rd_fragment
, $row->rd_interwiki
855 return $this->mRedirectTarget
;
858 // This page doesn't have an entry in the redirect table
859 $this->mRedirectTarget
= $this->insertRedirect();
860 return $this->mRedirectTarget
;
864 * Insert an entry for this page into the redirect table if the content is a redirect
866 * The database update will be deferred via DeferredUpdates
868 * Don't call this function directly unless you know what you're doing.
869 * @return Title|null Title object or null if not a redirect
871 public function insertRedirect() {
872 $content = $this->getContent();
873 $retval = $content ?
$content->getUltimateRedirectTarget() : null;
878 // Update the DB post-send if the page has not cached since now
880 $latest = $this->getLatest();
881 DeferredUpdates
::addCallableUpdate(
882 function () use ( $that, $retval, $latest ) {
883 $that->insertRedirectEntry( $retval, $latest );
885 DeferredUpdates
::POSTSEND
,
893 * Insert or update the redirect table entry for this page to indicate it redirects to $rt
894 * @param Title $rt Redirect target
895 * @param int|null $oldLatest Prior page_latest for check and set
897 public function insertRedirectEntry( Title
$rt, $oldLatest = null ) {
898 $dbw = wfGetDB( DB_MASTER
);
899 $dbw->startAtomic( __METHOD__
);
901 if ( !$oldLatest ||
$oldLatest == $this->lockAndGetLatest() ) {
905 'rd_from' => $this->getId(),
906 'rd_namespace' => $rt->getNamespace(),
907 'rd_title' => $rt->getDBkey(),
908 'rd_fragment' => $rt->getFragment(),
909 'rd_interwiki' => $rt->getInterwiki(),
913 'rd_namespace' => $rt->getNamespace(),
914 'rd_title' => $rt->getDBkey(),
915 'rd_fragment' => $rt->getFragment(),
916 'rd_interwiki' => $rt->getInterwiki(),
922 $dbw->endAtomic( __METHOD__
);
926 * Get the Title object or URL this page redirects to
928 * @return bool|Title|string False, Title of in-wiki target, or string with URL
930 public function followRedirect() {
931 return $this->getRedirectURL( $this->getRedirectTarget() );
935 * Get the Title object or URL to use for a redirect. We use Title
936 * objects for same-wiki, non-special redirects and URLs for everything
938 * @param Title $rt Redirect target
939 * @return bool|Title|string False, Title object of local target, or string with URL
941 public function getRedirectURL( $rt ) {
946 if ( $rt->isExternal() ) {
947 if ( $rt->isLocal() ) {
948 // Offsite wikis need an HTTP redirect.
949 // This can be hard to reverse and may produce loops,
950 // so they may be disabled in the site configuration.
951 $source = $this->mTitle
->getFullURL( 'redirect=no' );
952 return $rt->getFullURL( [ 'rdfrom' => $source ] );
954 // External pages without "local" bit set are not valid
960 if ( $rt->isSpecialPage() ) {
961 // Gotta handle redirects to special pages differently:
962 // Fill the HTTP response "Location" header and ignore the rest of the page we're on.
963 // Some pages are not valid targets.
964 if ( $rt->isValidRedirectTarget() ) {
965 return $rt->getFullURL();
975 * Get a list of users who have edited this article, not including the user who made
976 * the most recent revision, which you can get from $article->getUser() if you want it
977 * @return UserArrayFromResult
979 public function getContributors() {
980 // @todo FIXME: This is expensive; cache this info somewhere.
982 $dbr = wfGetDB( DB_REPLICA
);
984 if ( $dbr->implicitGroupby() ) {
985 $realNameField = 'user_real_name';
987 $realNameField = 'MIN(user_real_name) AS user_real_name';
990 $tables = [ 'revision', 'user' ];
993 'user_id' => 'rev_user',
994 'user_name' => 'rev_user_text',
996 'timestamp' => 'MAX(rev_timestamp)',
999 $conds = [ 'rev_page' => $this->getId() ];
1001 // The user who made the top revision gets credited as "this page was last edited by
1002 // John, based on contributions by Tom, Dick and Harry", so don't include them twice.
1003 $user = $this->getUser();
1005 $conds[] = "rev_user != $user";
1007 $conds[] = "rev_user_text != {$dbr->addQuotes( $this->getUserText() )}";
1011 $conds[] = "{$dbr->bitAnd( 'rev_deleted', Revision::DELETED_USER )} = 0";
1014 'user' => [ 'LEFT JOIN', 'rev_user = user_id' ],
1018 'GROUP BY' => [ 'rev_user', 'rev_user_text' ],
1019 'ORDER BY' => 'timestamp DESC',
1022 $res = $dbr->select( $tables, $fields, $conds, __METHOD__
, $options, $jconds );
1023 return new UserArrayFromResult( $res );
1027 * Should the parser cache be used?
1029 * @param ParserOptions $parserOptions ParserOptions to check
1033 public function shouldCheckParserCache( ParserOptions
$parserOptions, $oldId ) {
1034 return $parserOptions->getStubThreshold() == 0
1036 && ( $oldId === null ||
$oldId === 0 ||
$oldId === $this->getLatest() )
1037 && $this->getContentHandler()->isParserCacheSupported();
1041 * Get a ParserOutput for the given ParserOptions and revision ID.
1043 * The parser cache will be used if possible. Cache misses that result
1044 * in parser runs are debounced with PoolCounter.
1047 * @param ParserOptions $parserOptions ParserOptions to use for the parse operation
1048 * @param null|int $oldid Revision ID to get the text from, passing null or 0 will
1049 * get the current revision (default value)
1050 * @param bool $forceParse Force reindexing, regardless of cache settings
1051 * @return bool|ParserOutput ParserOutput or false if the revision was not found
1053 public function getParserOutput(
1054 ParserOptions
$parserOptions, $oldid = null, $forceParse = false
1057 ( !$forceParse ) && $this->shouldCheckParserCache( $parserOptions, $oldid );
1058 wfDebug( __METHOD__
.
1059 ': using parser cache: ' . ( $useParserCache ?
'yes' : 'no' ) . "\n" );
1060 if ( $parserOptions->getStubThreshold() ) {
1061 wfIncrStats( 'pcache.miss.stub' );
1064 if ( $useParserCache ) {
1065 $parserOutput = ParserCache
::singleton()->get( $this, $parserOptions );
1066 if ( $parserOutput !== false ) {
1067 return $parserOutput;
1071 if ( $oldid === null ||
$oldid === 0 ) {
1072 $oldid = $this->getLatest();
1075 $pool = new PoolWorkArticleView( $this, $parserOptions, $oldid, $useParserCache );
1078 return $pool->getParserOutput();
1082 * Do standard deferred updates after page view (existing or missing page)
1083 * @param User $user The relevant user
1084 * @param int $oldid Revision id being viewed; if not given or 0, latest revision is assumed
1086 public function doViewUpdates( User
$user, $oldid = 0 ) {
1087 if ( wfReadOnly() ) {
1091 Hooks
::run( 'PageViewUpdates', [ $this, $user ] );
1092 // Update newtalk / watchlist notification status
1094 $user->clearNotification( $this->mTitle
, $oldid );
1095 } catch ( DBError
$e ) {
1096 // Avoid outage if the master is not reachable
1097 MWExceptionHandler
::logException( $e );
1102 * Perform the actions of a page purging
1104 * @note In 1.28 (and only 1.28), this took a $flags parameter that
1105 * controlled how much purging was done.
1107 public function doPurge() {
1108 // Avoid PHP 7.1 warning of passing $this by reference
1111 if ( !Hooks
::run( 'ArticlePurge', [ &$wikiPage ] ) ) {
1115 $this->mTitle
->invalidateCache();
1118 HTMLFileCache
::clearFileCache( $this->getTitle() );
1119 // Send purge after above page_touched update was committed
1120 DeferredUpdates
::addUpdate(
1121 new CdnCacheUpdate( $this->mTitle
->getCdnUrls() ),
1122 DeferredUpdates
::PRESEND
1125 if ( $this->mTitle
->getNamespace() == NS_MEDIAWIKI
) {
1126 $messageCache = MessageCache
::singleton();
1127 $messageCache->updateMessageOverride( $this->mTitle
, $this->getContent() );
1134 * Get the last time a user explicitly purged the page via action=purge
1136 * @return string|bool TS_MW timestamp or false
1138 * @deprecated since 1.29. It will always return false.
1140 public function getLastPurgeTimestamp() {
1141 wfDeprecated( __METHOD__
, '1.29' );
1146 * Insert a new empty page record for this article.
1147 * This *must* be followed up by creating a revision
1148 * and running $this->updateRevisionOn( ... );
1149 * or else the record will be left in a funky state.
1150 * Best if all done inside a transaction.
1152 * @param IDatabase $dbw
1153 * @param int|null $pageId Custom page ID that will be used for the insert statement
1155 * @return bool|int The newly created page_id key; false if the row was not
1156 * inserted, e.g. because the title already existed or because the specified
1157 * page ID is already in use.
1159 public function insertOn( $dbw, $pageId = null ) {
1160 $pageIdForInsert = $pageId ?
: $dbw->nextSequenceValue( 'page_page_id_seq' );
1164 'page_id' => $pageIdForInsert,
1165 'page_namespace' => $this->mTitle
->getNamespace(),
1166 'page_title' => $this->mTitle
->getDBkey(),
1167 'page_restrictions' => '',
1168 'page_is_redirect' => 0, // Will set this shortly...
1170 'page_random' => wfRandom(),
1171 'page_touched' => $dbw->timestamp(),
1172 'page_latest' => 0, // Fill this in shortly...
1173 'page_len' => 0, // Fill this in shortly...
1179 if ( $dbw->affectedRows() > 0 ) {
1180 $newid = $pageId ?
: $dbw->insertId();
1181 $this->mId
= $newid;
1182 $this->mTitle
->resetArticleID( $newid );
1186 return false; // nothing changed
1191 * Update the page record to point to a newly saved revision.
1193 * @param IDatabase $dbw
1194 * @param Revision $revision For ID number, and text used to set
1195 * length and redirect status fields
1196 * @param int $lastRevision If given, will not overwrite the page field
1197 * when different from the currently set value.
1198 * Giving 0 indicates the new page flag should be set on.
1199 * @param bool $lastRevIsRedirect If given, will optimize adding and
1200 * removing rows in redirect table.
1201 * @return bool Success; false if the page row was missing or page_latest changed
1203 public function updateRevisionOn( $dbw, $revision, $lastRevision = null,
1204 $lastRevIsRedirect = null
1206 global $wgContentHandlerUseDB;
1208 // Assertion to try to catch T92046
1209 if ( (int)$revision->getId() === 0 ) {
1210 throw new InvalidArgumentException(
1211 __METHOD__
. ': Revision has ID ' . var_export( $revision->getId(), 1 )
1215 $content = $revision->getContent();
1216 $len = $content ?
$content->getSize() : 0;
1217 $rt = $content ?
$content->getUltimateRedirectTarget() : null;
1219 $conditions = [ 'page_id' => $this->getId() ];
1221 if ( !is_null( $lastRevision ) ) {
1222 // An extra check against threads stepping on each other
1223 $conditions['page_latest'] = $lastRevision;
1227 'page_latest' => $revision->getId(),
1228 'page_touched' => $dbw->timestamp( $revision->getTimestamp() ),
1229 'page_is_new' => ( $lastRevision === 0 ) ?
1 : 0,
1230 'page_is_redirect' => $rt !== null ?
1 : 0,
1234 if ( $wgContentHandlerUseDB ) {
1235 $row['page_content_model'] = $revision->getContentModel();
1238 $dbw->update( 'page',
1243 $result = $dbw->affectedRows() > 0;
1245 $this->updateRedirectOn( $dbw, $rt, $lastRevIsRedirect );
1246 $this->setLastEdit( $revision );
1247 $this->mLatest
= $revision->getId();
1248 $this->mIsRedirect
= (bool)$rt;
1249 // Update the LinkCache.
1250 LinkCache
::singleton()->addGoodLinkObj(
1256 $revision->getContentModel()
1264 * Add row to the redirect table if this is a redirect, remove otherwise.
1266 * @param IDatabase $dbw
1267 * @param Title $redirectTitle Title object pointing to the redirect target,
1268 * or NULL if this is not a redirect
1269 * @param null|bool $lastRevIsRedirect If given, will optimize adding and
1270 * removing rows in redirect table.
1271 * @return bool True on success, false on failure
1274 public function updateRedirectOn( $dbw, $redirectTitle, $lastRevIsRedirect = null ) {
1275 // Always update redirects (target link might have changed)
1276 // Update/Insert if we don't know if the last revision was a redirect or not
1277 // Delete if changing from redirect to non-redirect
1278 $isRedirect = !is_null( $redirectTitle );
1280 if ( !$isRedirect && $lastRevIsRedirect === false ) {
1284 if ( $isRedirect ) {
1285 $this->insertRedirectEntry( $redirectTitle );
1287 // This is not a redirect, remove row from redirect table
1288 $where = [ 'rd_from' => $this->getId() ];
1289 $dbw->delete( 'redirect', $where, __METHOD__
);
1292 if ( $this->getTitle()->getNamespace() == NS_FILE
) {
1293 RepoGroup
::singleton()->getLocalRepo()->invalidateImageRedirect( $this->getTitle() );
1296 return ( $dbw->affectedRows() != 0 );
1300 * If the given revision is newer than the currently set page_latest,
1301 * update the page record. Otherwise, do nothing.
1303 * @deprecated since 1.24, use updateRevisionOn instead
1305 * @param IDatabase $dbw
1306 * @param Revision $revision
1309 public function updateIfNewerOn( $dbw, $revision ) {
1311 $row = $dbw->selectRow(
1312 [ 'revision', 'page' ],
1313 [ 'rev_id', 'rev_timestamp', 'page_is_redirect' ],
1315 'page_id' => $this->getId(),
1316 'page_latest=rev_id' ],
1320 if ( wfTimestamp( TS_MW
, $row->rev_timestamp
) >= $revision->getTimestamp() ) {
1323 $prev = $row->rev_id
;
1324 $lastRevIsRedirect = (bool)$row->page_is_redirect
;
1326 // No or missing previous revision; mark the page as new
1328 $lastRevIsRedirect = null;
1331 $ret = $this->updateRevisionOn( $dbw, $revision, $prev, $lastRevIsRedirect );
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
1344 * Before we had the Content object, this was done in getUndoText
1346 public function getUndoContent( Revision
$undo, Revision
$undoafter = null ) {
1347 $handler = $undo->getContentHandler();
1348 return $handler->getUndoContent( $this->getRevision(), $undo, $undoafter );
1352 * Returns true if this page's content model supports sections.
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.
1361 public function supportsSections() {
1362 return $this->getContentHandler()->supportsSections();
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.
1373 * @throws MWException
1374 * @return Content|null New complete article content, or null if error.
1377 * @deprecated since 1.24, use replaceSectionAtRev instead
1379 public function replaceSectionContent(
1380 $sectionId, Content
$sectionContent, $sectionTitle = '', $edittime = null
1384 if ( $edittime && $sectionId !== 'new' ) {
1385 $dbr = wfGetDB( DB_REPLICA
);
1386 $rev = Revision
::loadFromTimestamp( $dbr, $this->mTitle
, $edittime );
1387 // Try the master if this thread may have just added it.
1388 // This could be abstracted into a Revision method, but we don't want
1389 // to encourage loading of revisions by timestamp.
1391 && wfGetLB()->getServerCount() > 1
1392 && wfGetLB()->hasOrMadeRecentMasterChanges()
1394 $dbw = wfGetDB( DB_MASTER
);
1395 $rev = Revision
::loadFromTimestamp( $dbw, $this->mTitle
, $edittime );
1398 $baseRevId = $rev->getId();
1402 return $this->replaceSectionAtRev( $sectionId, $sectionContent, $sectionTitle, $baseRevId );
1406 * @param string|int|null|bool $sectionId Section identifier as a number or string
1407 * (e.g. 0, 1 or 'T-1'), null/false or an empty string for the whole page
1408 * or 'new' for a new section.
1409 * @param Content $sectionContent New content of the section.
1410 * @param string $sectionTitle New section's subject, only if $section is "new".
1411 * @param int|null $baseRevId
1413 * @throws MWException
1414 * @return Content|null New complete article content, or null if error.
1418 public function replaceSectionAtRev( $sectionId, Content
$sectionContent,
1419 $sectionTitle = '', $baseRevId = null
1422 if ( strval( $sectionId ) === '' ) {
1423 // Whole-page edit; let the whole text through
1424 $newContent = $sectionContent;
1426 if ( !$this->supportsSections() ) {
1427 throw new MWException( "sections not supported for content model " .
1428 $this->getContentHandler()->getModelID() );
1431 // T32711: always use current version when adding a new section
1432 if ( is_null( $baseRevId ) ||
$sectionId === 'new' ) {
1433 $oldContent = $this->getContent();
1435 $rev = Revision
::newFromId( $baseRevId );
1437 wfDebug( __METHOD__
. " asked for bogus section (page: " .
1438 $this->getId() . "; section: $sectionId)\n" );
1442 $oldContent = $rev->getContent();
1445 if ( !$oldContent ) {
1446 wfDebug( __METHOD__
. ": no page text\n" );
1450 $newContent = $oldContent->replaceSection( $sectionId, $sectionContent, $sectionTitle );
1457 * Check flags and add EDIT_NEW or EDIT_UPDATE to them as needed.
1459 * @return int Updated $flags
1461 public function checkFlags( $flags ) {
1462 if ( !( $flags & EDIT_NEW
) && !( $flags & EDIT_UPDATE
) ) {
1463 if ( $this->exists() ) {
1464 $flags |
= EDIT_UPDATE
;
1474 * Change an existing article or create a new article. Updates RC and all necessary caches,
1475 * optionally via the deferred update array.
1477 * @param Content $content New content
1478 * @param string $summary Edit summary
1479 * @param int $flags Bitfield:
1481 * Article is known or assumed to be non-existent, create a new one
1483 * Article is known or assumed to be pre-existing, update it
1485 * Mark this edit minor, if the user is allowed to do so
1487 * Do not log the change in recentchanges
1489 * Mark the edit a "bot" edit regardless of user rights
1491 * Fill in blank summaries with generated text where possible
1493 * Signal that the page retrieve/save cycle happened entirely in this request.
1495 * If neither EDIT_NEW nor EDIT_UPDATE is specified, the status of the
1496 * article will be detected. If EDIT_UPDATE is specified and the article
1497 * doesn't exist, the function will return an edit-gone-missing error. If
1498 * EDIT_NEW is specified and the article does exist, an edit-already-exists
1499 * error will be returned. These two conditions are also possible with
1500 * auto-detection due to MediaWiki's performance-optimised locking strategy.
1502 * @param bool|int $baseRevId The revision ID this edit was based off, if any.
1503 * This is not the parent revision ID, rather the revision ID for older
1504 * content used as the source for a rollback, for example.
1505 * @param User $user The user doing the edit
1506 * @param string $serialFormat Format for storing the content in the
1508 * @param array|null $tags Change tags to apply to this edit
1509 * Callers are responsible for permission checks
1510 * (with ChangeTags::canAddTagsAccompanyingChange)
1511 * @param Int $undidRevId Id of revision that was undone or 0
1513 * @throws MWException
1514 * @return Status Possible errors:
1515 * edit-hook-aborted: The ArticleSave hook aborted the edit but didn't
1516 * set the fatal flag of $status.
1517 * edit-gone-missing: In update mode, but the article didn't exist.
1518 * edit-conflict: In update mode, the article changed unexpectedly.
1519 * edit-no-change: Warning that the text was the same as before.
1520 * edit-already-exists: In creation mode, but the article already exists.
1522 * Extensions may define additional errors.
1524 * $return->value will contain an associative array with members as follows:
1525 * new: Boolean indicating if the function attempted to create a new article.
1526 * revision: The revision object for the inserted revision, or null.
1529 * @throws MWException
1531 public function doEditContent(
1532 Content
$content, $summary, $flags = 0, $baseRevId = false,
1533 User
$user = null, $serialFormat = null, $tags = [], $undidRevId = 0
1535 global $wgUser, $wgUseAutomaticEditSummaries;
1537 // Old default parameter for $tags was null
1538 if ( $tags === null ) {
1542 // Low-level sanity check
1543 if ( $this->mTitle
->getText() === '' ) {
1544 throw new MWException( 'Something is trying to edit an article with an empty title' );
1546 // Make sure the given content type is allowed for this page
1547 if ( !$content->getContentHandler()->canBeUsedOn( $this->mTitle
) ) {
1548 return Status
::newFatal( 'content-not-allowed-here',
1549 ContentHandler
::getLocalizedName( $content->getModel() ),
1550 $this->mTitle
->getPrefixedText()
1554 // Load the data from the master database if needed.
1555 // The caller may already loaded it from the master or even loaded it using
1556 // SELECT FOR UPDATE, so do not override that using clear().
1557 $this->loadPageData( 'fromdbmaster' );
1559 $user = $user ?
: $wgUser;
1560 $flags = $this->checkFlags( $flags );
1562 // Avoid PHP 7.1 warning of passing $this by reference
1565 // Trigger pre-save hook (using provided edit summary)
1566 $hookStatus = Status
::newGood( [] );
1567 $hook_args = [ &$wikiPage, &$user, &$content, &$summary,
1568 $flags & EDIT_MINOR
, null, null, &$flags, &$hookStatus ];
1569 // Check if the hook rejected the attempted save
1570 if ( !Hooks
::run( 'PageContentSave', $hook_args ) ) {
1571 if ( $hookStatus->isOK() ) {
1572 // Hook returned false but didn't call fatal(); use generic message
1573 $hookStatus->fatal( 'edit-hook-aborted' );
1579 $old_revision = $this->getRevision(); // current revision
1580 $old_content = $this->getContent( Revision
::RAW
); // current revision's content
1582 if ( $old_content && $old_content->getModel() !== $content->getModel() ) {
1583 $tags[] = 'mw-contentmodelchange';
1586 // Provide autosummaries if one is not provided and autosummaries are enabled
1587 if ( $wgUseAutomaticEditSummaries && ( $flags & EDIT_AUTOSUMMARY
) && $summary == '' ) {
1588 $handler = $content->getContentHandler();
1589 $summary = $handler->getAutosummary( $old_content, $content, $flags );
1592 // Avoid statsd noise and wasted cycles check the edit stash (T136678)
1593 if ( ( $flags & EDIT_INTERNAL
) ||
( $flags & EDIT_FORCE_BOT
) ) {
1599 // Get the pre-save transform content and final parser output
1600 $editInfo = $this->prepareContentForEdit( $content, null, $user, $serialFormat, $useCache );
1601 $pstContent = $editInfo->pstContent
; // Content object
1603 'bot' => ( $flags & EDIT_FORCE_BOT
),
1604 'minor' => ( $flags & EDIT_MINOR
) && $user->isAllowed( 'minoredit' ),
1605 'serialized' => $editInfo->pst
,
1606 'serialFormat' => $serialFormat,
1607 'baseRevId' => $baseRevId,
1608 'oldRevision' => $old_revision,
1609 'oldContent' => $old_content,
1610 'oldId' => $this->getLatest(),
1611 'oldIsRedirect' => $this->isRedirect(),
1612 'oldCountable' => $this->isCountable(),
1613 'tags' => ( $tags !== null ) ?
(array)$tags : [],
1614 'undidRevId' => $undidRevId
1617 // Actually create the revision and create/update the page
1618 if ( $flags & EDIT_UPDATE
) {
1619 $status = $this->doModify( $pstContent, $flags, $user, $summary, $meta );
1621 $status = $this->doCreate( $pstContent, $flags, $user, $summary, $meta );
1624 // Promote user to any groups they meet the criteria for
1625 DeferredUpdates
::addCallableUpdate( function () use ( $user ) {
1626 $user->addAutopromoteOnceGroups( 'onEdit' );
1627 $user->addAutopromoteOnceGroups( 'onView' ); // b/c
1634 * @param Content $content Pre-save transform content
1635 * @param integer $flags
1637 * @param string $summary
1638 * @param array $meta
1640 * @throws DBUnexpectedError
1642 * @throws FatalError
1643 * @throws MWException
1645 private function doModify(
1646 Content
$content, $flags, User
$user, $summary, array $meta
1648 global $wgUseRCPatrol;
1650 // Update article, but only if changed.
1651 $status = Status
::newGood( [ 'new' => false, 'revision' => null ] );
1653 // Convenience variables
1654 $now = wfTimestampNow();
1655 $oldid = $meta['oldId'];
1656 /** @var $oldContent Content|null */
1657 $oldContent = $meta['oldContent'];
1658 $newsize = $content->getSize();
1661 // Article gone missing
1662 $status->fatal( 'edit-gone-missing' );
1665 } elseif ( !$oldContent ) {
1666 // Sanity check for T39225
1667 throw new MWException( "Could not find text for current revision {$oldid}." );
1670 // @TODO: pass content object?!
1671 $revision = new Revision( [
1672 'page' => $this->getId(),
1673 'title' => $this->mTitle
, // for determining the default content model
1674 'comment' => $summary,
1675 'minor_edit' => $meta['minor'],
1676 'text' => $meta['serialized'],
1678 'parent_id' => $oldid,
1679 'user' => $user->getId(),
1680 'user_text' => $user->getName(),
1681 'timestamp' => $now,
1682 'content_model' => $content->getModel(),
1683 'content_format' => $meta['serialFormat'],
1686 $changed = !$content->equals( $oldContent );
1688 $dbw = wfGetDB( DB_MASTER
);
1691 $prepStatus = $content->prepareSave( $this, $flags, $oldid, $user );
1692 $status->merge( $prepStatus );
1693 if ( !$status->isOK() ) {
1697 $dbw->startAtomic( __METHOD__
);
1698 // Get the latest page_latest value while locking it.
1699 // Do a CAS style check to see if it's the same as when this method
1700 // started. If it changed then bail out before touching the DB.
1701 $latestNow = $this->lockAndGetLatest();
1702 if ( $latestNow != $oldid ) {
1703 $dbw->endAtomic( __METHOD__
);
1704 // Page updated or deleted in the mean time
1705 $status->fatal( 'edit-conflict' );
1710 // At this point we are now comitted to returning an OK
1711 // status unless some DB query error or other exception comes up.
1712 // This way callers don't have to call rollback() if $status is bad
1713 // unless they actually try to catch exceptions (which is rare).
1715 // Save the revision text
1716 $revisionId = $revision->insertOn( $dbw );
1717 // Update page_latest and friends to reflect the new revision
1718 if ( !$this->updateRevisionOn( $dbw, $revision, null, $meta['oldIsRedirect'] ) ) {
1719 throw new MWException( "Failed to update page row to use new revision." );
1722 Hooks
::run( 'NewRevisionFromEditComplete',
1723 [ $this, $revision, $meta['baseRevId'], $user ] );
1725 // Update recentchanges
1726 if ( !( $flags & EDIT_SUPPRESS_RC
) ) {
1727 // Mark as patrolled if the user can do so
1728 $patrolled = $wgUseRCPatrol && !count(
1729 $this->mTitle
->getUserPermissionsErrors( 'autopatrol', $user ) );
1730 // Add RC row to the DB
1731 RecentChange
::notifyEdit(
1734 $revision->isMinor(),
1738 $this->getTimestamp(),
1741 $oldContent ?
$oldContent->getSize() : 0,
1749 $user->incEditCount();
1751 $dbw->endAtomic( __METHOD__
);
1752 $this->mTimestamp
= $now;
1754 // T34948: revision ID must be set to page {{REVISIONID}} and
1755 // related variables correctly. Likewise for {{REVISIONUSER}} (T135261).
1756 $revision->setId( $this->getLatest() );
1757 $revision->setUserIdAndName(
1758 $this->getUser( Revision
::RAW
),
1759 $this->getUserText( Revision
::RAW
)
1764 // Return the new revision to the caller
1765 $status->value
['revision'] = $revision;
1767 $status->warning( 'edit-no-change' );
1768 // Update page_touched as updateRevisionOn() was not called.
1769 // Other cache updates are managed in onArticleEdit() via doEditUpdates().
1770 $this->mTitle
->invalidateCache( $now );
1773 // Do secondary updates once the main changes have been committed...
1774 DeferredUpdates
::addUpdate(
1775 new AtomicSectionUpdate(
1779 $revision, &$user, $content, $summary, &$flags,
1780 $changed, $meta, &$status
1782 // Update links tables, site stats, etc.
1783 $this->doEditUpdates(
1787 'changed' => $changed,
1788 'oldcountable' => $meta['oldCountable'],
1789 'oldrevision' => $meta['oldRevision']
1792 // Avoid PHP 7.1 warning of passing $this by reference
1794 // Trigger post-save hook
1795 $params = [ &$wikiPage, &$user, $content, $summary, $flags & EDIT_MINOR
,
1796 null, null, &$flags, $revision, &$status, $meta['baseRevId'],
1797 $meta['undidRevId'] ];
1798 Hooks
::run( 'PageContentSaveComplete', $params );
1801 DeferredUpdates
::PRESEND
1808 * @param Content $content Pre-save transform content
1809 * @param integer $flags
1811 * @param string $summary
1812 * @param array $meta
1814 * @throws DBUnexpectedError
1816 * @throws FatalError
1817 * @throws MWException
1819 private function doCreate(
1820 Content
$content, $flags, User
$user, $summary, array $meta
1822 global $wgUseRCPatrol, $wgUseNPPatrol;
1824 $status = Status
::newGood( [ 'new' => true, 'revision' => null ] );
1826 $now = wfTimestampNow();
1827 $newsize = $content->getSize();
1828 $prepStatus = $content->prepareSave( $this, $flags, $meta['oldId'], $user );
1829 $status->merge( $prepStatus );
1830 if ( !$status->isOK() ) {
1834 $dbw = wfGetDB( DB_MASTER
);
1835 $dbw->startAtomic( __METHOD__
);
1837 // Add the page record unless one already exists for the title
1838 $newid = $this->insertOn( $dbw );
1839 if ( $newid === false ) {
1840 $dbw->endAtomic( __METHOD__
); // nothing inserted
1841 $status->fatal( 'edit-already-exists' );
1843 return $status; // nothing done
1846 // At this point we are now comitted to returning an OK
1847 // status unless some DB query error or other exception comes up.
1848 // This way callers don't have to call rollback() if $status is bad
1849 // unless they actually try to catch exceptions (which is rare).
1851 // @TODO: pass content object?!
1852 $revision = new Revision( [
1854 'title' => $this->mTitle
, // for determining the default content model
1855 'comment' => $summary,
1856 'minor_edit' => $meta['minor'],
1857 'text' => $meta['serialized'],
1859 'user' => $user->getId(),
1860 'user_text' => $user->getName(),
1861 'timestamp' => $now,
1862 'content_model' => $content->getModel(),
1863 'content_format' => $meta['serialFormat'],
1866 // Save the revision text...
1867 $revisionId = $revision->insertOn( $dbw );
1868 // Update the page record with revision data
1869 if ( !$this->updateRevisionOn( $dbw, $revision, 0 ) ) {
1870 throw new MWException( "Failed to update page row to use new revision." );
1873 Hooks
::run( 'NewRevisionFromEditComplete', [ $this, $revision, false, $user ] );
1875 // Update recentchanges
1876 if ( !( $flags & EDIT_SUPPRESS_RC
) ) {
1877 // Mark as patrolled if the user can do so
1878 $patrolled = ( $wgUseRCPatrol ||
$wgUseNPPatrol ) &&
1879 !count( $this->mTitle
->getUserPermissionsErrors( 'autopatrol', $user ) );
1880 // Add RC row to the DB
1881 RecentChange
::notifyNew(
1884 $revision->isMinor(),
1896 $user->incEditCount();
1898 $dbw->endAtomic( __METHOD__
);
1899 $this->mTimestamp
= $now;
1901 // Return the new revision to the caller
1902 $status->value
['revision'] = $revision;
1904 // Do secondary updates once the main changes have been committed...
1905 DeferredUpdates
::addUpdate(
1906 new AtomicSectionUpdate(
1910 $revision, &$user, $content, $summary, &$flags, $meta, &$status
1912 // Update links, etc.
1913 $this->doEditUpdates( $revision, $user, [ 'created' => true ] );
1914 // Avoid PHP 7.1 warning of passing $this by reference
1916 // Trigger post-create hook
1917 $params = [ &$wikiPage, &$user, $content, $summary,
1918 $flags & EDIT_MINOR
, null, null, &$flags, $revision ];
1919 Hooks
::run( 'PageContentInsertComplete', $params );
1920 // Trigger post-save hook
1921 $params = array_merge( $params, [ &$status, $meta['baseRevId'] ] );
1922 Hooks
::run( 'PageContentSaveComplete', $params );
1925 DeferredUpdates
::PRESEND
1932 * Get parser options suitable for rendering the primary article wikitext
1934 * @see ContentHandler::makeParserOptions
1936 * @param IContextSource|User|string $context One of the following:
1937 * - IContextSource: Use the User and the Language of the provided
1939 * - User: Use the provided User object and $wgLang for the language,
1940 * so use an IContextSource object if possible.
1941 * - 'canonical': Canonical options (anonymous user with default
1942 * preferences and content language).
1943 * @return ParserOptions
1945 public function makeParserOptions( $context ) {
1946 $options = $this->getContentHandler()->makeParserOptions( $context );
1948 if ( $this->getTitle()->isConversionTable() ) {
1949 // @todo ConversionTable should become a separate content model, so
1950 // we don't need special cases like this one.
1951 $options->disableContentConversion();
1958 * Prepare content which is about to be saved.
1959 * Returns a stdClass with source, pst and output members
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
1972 public function prepareContentForEdit(
1973 Content
$content, $revision = null, User
$user = null,
1974 $serialFormat = null, $useCache = true
1976 global $wgContLang, $wgUser, $wgAjaxEditStash;
1978 if ( is_object( $revision ) ) {
1979 $revid = $revision->getId();
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
);
1991 $user = is_null( $user ) ?
$wgUser : $user;
1992 // XXX: check $user->getId() here???
1994 // Use a sane default for $serialFormat, see T59026
1995 if ( $serialFormat === null ) {
1996 $serialFormat = $content->getContentHandler()->getDefaultFormat();
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?
2007 return $this->mPreparedEdit
;
2010 // The edit may have already been prepared via api.php?action=stashedit
2011 $cachedEdit = $useCache && $wgAjaxEditStash
2012 ? ApiStashEdit
::checkCache( $this->getTitle(), $content, $user )
2015 $popts = ParserOptions
::newFromUserAndLang( $user, $wgContLang );
2016 Hooks
::run( 'ArticlePrepareTextForEdit', [ $this, $popts ] );
2019 if ( $cachedEdit ) {
2020 $edit->timestamp
= $cachedEdit->timestamp
;
2022 $edit->timestamp
= wfTimestampNow();
2024 // @note: $cachedEdit is safely not used if the rev ID was referenced in the text
2025 $edit->revid
= $revid;
2027 if ( $cachedEdit ) {
2028 $edit->pstContent
= $cachedEdit->pstContent
;
2030 $edit->pstContent
= $content
2031 ?
$content->preSaveTransform( $this->mTitle
, $user, $popts )
2035 $edit->format
= $serialFormat;
2036 $edit->popts
= $this->makeParserOptions( 'canonical' );
2037 if ( $cachedEdit ) {
2038 $edit->output
= $cachedEdit->output
;
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() ) ) {
2051 return call_user_func( $oldCallback, $title, $parser );
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
2061 $edit->popts
->setSpeculativeRevIdCallback( function () use ( $dbIndex ) {
2062 return 1 +
(int)wfGetDB( $dbIndex )->selectField(
2070 $edit->output
= $edit->pstContent
2071 ?
$edit->pstContent
->getParserOutput( $this->mTitle
, $revid, $edit->popts
)
2075 $edit->newContent
= $content;
2076 $edit->oldContent
= $this->getContent( Revision
::RAW
);
2078 // NOTE: B/C for hooks! don't use these fields!
2079 $edit->newText
= $edit->newContent
2080 ? ContentHandler
::getContentText( $edit->newContent
)
2082 $edit->oldText
= $edit->oldContent
2083 ? ContentHandler
::getContentText( $edit->oldContent
)
2085 $edit->pst
= $edit->pstContent ?
$edit->pstContent
->serialize( $serialFormat ) : '';
2087 if ( $edit->output
) {
2088 $edit->output
->setCacheTime( wfTimestampNow() );
2091 // Process cache the result
2092 $this->mPreparedEdit
= $edit;
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.
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: boolean, whether the revision changed the content (default true)
2107 * - created: boolean, whether the revision created the page (default false)
2108 * - moved: boolean, whether the page was moved (default false)
2109 * - restored: boolean, whether the page was undeleted (default false)
2110 * - oldrevision: Revision object for the pre-update revision (default null)
2111 * - oldcountable: boolean, null, or string 'no-change' (default null):
2112 * - boolean: 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
2118 public function doEditUpdates( Revision
$revision, User
$user, array $options = [] ) {
2119 global $wgRCWatchCategoryMembership;
2125 'restored' => false,
2126 'oldrevision' => null,
2127 'oldcountable' => null
2129 $content = $revision->getContent();
2131 $logger = LoggerFactory
::getInstance( 'SaveParse' );
2133 // See if the parser output before $revision was inserted is still valid
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()
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" );
2146 wfDebug( __METHOD__
. ": Using prepared edit...\n" );
2147 $editInfo = $this->mPreparedEdit
;
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 );
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
2164 // Update the links tables and other secondary data
2166 $recursive = $options['changed']; // T52785
2167 $updates = $content->getSecondaryDataUpdates(
2168 $this->getTitle(), null, $recursive, $editInfo->output
2170 foreach ( $updates as $update ) {
2171 if ( $update instanceof LinksUpdate
) {
2172 $update->setRevision( $revision );
2173 $update->setTriggeringUser( $user );
2175 DeferredUpdates
::addUpdate( $update );
2177 if ( $wgRCWatchCategoryMembership
2178 && $this->getContentHandler()->supportsCategories() === true
2179 && ( $options['changed'] ||
$options['created'] )
2180 && !$options['restored']
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(
2188 'pageId' => $this->getId(),
2189 'revTimestamp' => $revision->getTimestamp()
2195 // Avoid PHP 7.1 warning of passing $this by reference
2198 Hooks
::run( 'ArticleEditUpdates', [ &$wikiPage, &$editInfo, $options['changed'] ] );
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() );
2207 if ( !$this->exists() ) {
2211 $id = $this->getId();
2212 $title = $this->mTitle
->getPrefixedDBkey();
2213 $shortTitle = $this->mTitle
->getDBkey();
2215 if ( $options['oldcountable'] === 'no-change' ||
2216 ( !$options['changed'] && !$options['moved'] )
2219 } elseif ( $options['created'] ) {
2220 $good = (int)$this->isCountable( $editInfo );
2221 } elseif ( $options['oldcountable'] !== null ) {
2222 $good = (int)$this->isCountable( $editInfo ) - (int)$options['oldcountable'];
2226 $edits = $options['changed'] ?
1 : 0;
2227 $total = $options['created'] ?
1 : 0;
2229 DeferredUpdates
::addUpdate( new SiteStatsUpdate( 0, $edits, $good, $total ) );
2230 DeferredUpdates
::addUpdate( new SearchUpdate( $id, $title, $content ) );
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' ) )
2240 $recipient = User
::newFromName( $shortTitle, false );
2241 if ( !$recipient ) {
2242 wfDebug( __METHOD__
. ": invalid username\n" );
2244 // Avoid PHP 7.1 warning of passing $this by reference
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 );
2256 wfDebug( __METHOD__
. ": don't need to notify a nonexistent user\n" );
2262 if ( $this->mTitle
->getNamespace() == NS_MEDIAWIKI
) {
2263 MessageCache
::singleton()->updateMessageOverride( $this->mTitle
, $content );
2266 if ( $options['created'] ) {
2267 self
::onArticleCreate( $this->mTitle
);
2268 } elseif ( $options['changed'] ) { // T52785
2269 self
::onArticleEdit( $this->mTitle
, $revision );
2272 ResourceLoaderWikiModule
::invalidateModuleCache(
2273 $this->mTitle
, $options['oldrevision'], $revision, wfWikiID()
2278 * Update the article's restriction field, and leave a log entry.
2279 * This works for protection both existing and non-existing pages.
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.
2291 public function doUpdateRestrictions( array $limit, array $expiry,
2292 &$cascade, $reason, User
$user, $tags = null
2294 global $wgCascadingRestrictionLevels, $wgContLang;
2296 if ( wfReadOnly() ) {
2297 return Status
::newFatal( 'readonlytext', wfReadOnlyReason() );
2300 $this->loadPageData( 'fromdbmaster' );
2301 $restrictionTypes = $this->mTitle
->getRestrictionTypes();
2302 $id = $this->getId();
2308 // Take this opportunity to purge out expired restrictions
2309 Title
::purgeExpiredRestrictions();
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;
2317 $dbw = wfGetDB( DB_MASTER
);
2319 foreach ( $restrictionTypes as $action ) {
2320 if ( !isset( $expiry[$action] ) ||
$expiry[$action] === $dbw->getInfinity() ) {
2321 $expiry[$action] = 'infinity';
2323 if ( !isset( $limit[$action] ) ) {
2324 $limit[$action] = '';
2325 } elseif ( $limit[$action] != '' ) {
2329 // Get current restrictions on $action
2330 $current = implode( '', $this->mTitle
->getRestrictions( $action ) );
2331 if ( $current != '' ) {
2332 $isProtected = true;
2335 if ( $limit[$action] != $current ) {
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
2341 if ( $this->mTitle
->getRestrictionExpiry( $action ) != $expiry[$action] ) {
2347 if ( !$changed && $protect && $this->mTitle
->areRestrictionsCascading() != $cascade ) {
2351 // If nothing has changed, do nothing
2353 return Status
::newGood();
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';
2363 $revCommentMsg = 'protectedarticle-comment';
2364 $logAction = 'protect';
2367 // Truncate for whole multibyte characters
2368 $reason = $wgContLang->truncate( $reason, 255 );
2370 $logRelationsValues = [];
2371 $logRelationsField = null;
2372 $logParamsDetails = [];
2374 // Null revision (used for change tag insertion)
2375 $nullRevision = null;
2377 if ( $id ) { // Protection of existing page
2378 // Avoid PHP 7.1 warning of passing $this by reference
2381 if ( !Hooks
::run( 'ArticleProtect', [ &$wikiPage, &$user, $limit, $reason ] ) ) {
2382 return Status
::newGood();
2385 // Only certain restrictions can cascade...
2386 $editrestriction = isset( $limit['edit'] )
2387 ?
[ $limit['edit'] ]
2388 : $this->mTitle
->getRestrictions( 'edit' );
2389 foreach ( array_keys( $editrestriction, 'sysop' ) as $key ) {
2390 $editrestriction[$key] = 'editprotected'; // backwards compatibility
2392 foreach ( array_keys( $editrestriction, 'autoconfirmed' ) as $key ) {
2393 $editrestriction[$key] = 'editsemiprotected'; // backwards compatibility
2396 $cascadingRestrictionLevels = $wgCascadingRestrictionLevels;
2397 foreach ( array_keys( $cascadingRestrictionLevels, 'sysop' ) as $key ) {
2398 $cascadingRestrictionLevels[$key] = 'editprotected'; // backwards compatibility
2400 foreach ( array_keys( $cascadingRestrictionLevels, 'autoconfirmed' ) as $key ) {
2401 $cascadingRestrictionLevels[$key] = 'editsemiprotected'; // backwards compatibility
2404 // The schema allows multiple restrictions
2405 if ( !array_intersect( $editrestriction, $cascadingRestrictionLevels ) ) {
2409 // insert null revision to identify the page protection change as edit summary
2410 $latest = $this->getLatest();
2411 $nullRevision = $this->insertProtectNullRevision(
2420 if ( $nullRevision === null ) {
2421 return Status
::newFatal( 'no-null-revision', $this->mTitle
->getPrefixedText() );
2424 $logRelationsField = 'pr_id';
2426 // Update restrictions table
2427 foreach ( $limit as $action => $restrictions ) {
2429 'page_restrictions',
2432 'pr_type' => $action
2436 if ( $restrictions != '' ) {
2437 $cascadeValue = ( $cascade && $action == 'edit' ) ?
1 : 0;
2439 'page_restrictions',
2441 'pr_id' => $dbw->nextSequenceValue( 'page_restrictions_pr_id_seq' ),
2443 'pr_type' => $action,
2444 'pr_level' => $restrictions,
2445 'pr_cascade' => $cascadeValue,
2446 'pr_expiry' => $dbw->encodeExpiry( $expiry[$action] )
2450 $logRelationsValues[] = $dbw->insertId();
2451 $logParamsDetails[] = [
2453 'level' => $restrictions,
2454 'expiry' => $expiry[$action],
2455 'cascade' => (bool)$cascadeValue,
2460 // Clear out legacy restriction fields
2463 [ 'page_restrictions' => '' ],
2464 [ 'page_id' => $id ],
2468 // Avoid PHP 7.1 warning of passing $this by reference
2471 Hooks
::run( 'NewRevisionFromEditComplete',
2472 [ $this, $nullRevision, $latest, $user ] );
2473 Hooks
::run( 'ArticleProtectComplete', [ &$wikiPage, &$user, $limit, $reason ] );
2474 } else { // Protection of non-existing page (also known as "title protection")
2475 // Cascade protection is meaningless in this case
2478 if ( $limit['create'] != '' ) {
2479 $dbw->replace( 'protected_titles',
2480 [ [ 'pt_namespace', 'pt_title' ] ],
2482 'pt_namespace' => $this->mTitle
->getNamespace(),
2483 'pt_title' => $this->mTitle
->getDBkey(),
2484 'pt_create_perm' => $limit['create'],
2485 'pt_timestamp' => $dbw->timestamp(),
2486 'pt_expiry' => $dbw->encodeExpiry( $expiry['create'] ),
2487 'pt_user' => $user->getId(),
2488 'pt_reason' => $reason,
2491 $logParamsDetails[] = [
2493 'level' => $limit['create'],
2494 'expiry' => $expiry['create'],
2497 $dbw->delete( 'protected_titles',
2499 'pt_namespace' => $this->mTitle
->getNamespace(),
2500 'pt_title' => $this->mTitle
->getDBkey()
2506 $this->mTitle
->flushRestrictions();
2507 InfoAction
::invalidateCache( $this->mTitle
);
2509 if ( $logAction == 'unprotect' ) {
2512 $protectDescriptionLog = $this->protectDescriptionLog( $limit, $expiry );
2514 '4::description' => $protectDescriptionLog, // parameter for IRC
2515 '5:bool:cascade' => $cascade,
2516 'details' => $logParamsDetails, // parameter for localize and api
2520 // Update the protection log
2521 $logEntry = new ManualLogEntry( 'protect', $logAction );
2522 $logEntry->setTarget( $this->mTitle
);
2523 $logEntry->setComment( $reason );
2524 $logEntry->setPerformer( $user );
2525 $logEntry->setParameters( $params );
2526 if ( !is_null( $nullRevision ) ) {
2527 $logEntry->setAssociatedRevId( $nullRevision->getId() );
2529 $logEntry->setTags( $tags );
2530 if ( $logRelationsField !== null && count( $logRelationsValues ) ) {
2531 $logEntry->setRelations( [ $logRelationsField => $logRelationsValues ] );
2533 $logId = $logEntry->insert();
2534 $logEntry->publish( $logId );
2536 return Status
::newGood( $logId );
2540 * Insert a new null revision for this page.
2542 * @param string $revCommentMsg Comment message key for the revision
2543 * @param array $limit Set of restriction keys
2544 * @param array $expiry Per restriction type expiration
2545 * @param int $cascade Set to false if cascading protection isn't allowed.
2546 * @param string $reason
2547 * @param User|null $user
2548 * @return Revision|null Null on error
2550 public function insertProtectNullRevision( $revCommentMsg, array $limit,
2551 array $expiry, $cascade, $reason, $user = null
2553 $dbw = wfGetDB( DB_MASTER
);
2555 // Prepare a null revision to be added to the history
2556 $editComment = wfMessage(
2558 $this->mTitle
->getPrefixedText(),
2559 $user ?
$user->getName() : ''
2560 )->inContentLanguage()->text();
2562 $editComment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $reason;
2564 $protectDescription = $this->protectDescription( $limit, $expiry );
2565 if ( $protectDescription ) {
2566 $editComment .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2567 $editComment .= wfMessage( 'parentheses' )->params( $protectDescription )
2568 ->inContentLanguage()->text();
2571 $editComment .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2572 $editComment .= wfMessage( 'brackets' )->params(
2573 wfMessage( 'protect-summary-cascade' )->inContentLanguage()->text()
2574 )->inContentLanguage()->text();
2577 $nullRev = Revision
::newNullRevision( $dbw, $this->getId(), $editComment, true, $user );
2579 $nullRev->insertOn( $dbw );
2581 // Update page record and touch page
2582 $oldLatest = $nullRev->getParentId();
2583 $this->updateRevisionOn( $dbw, $nullRev, $oldLatest );
2590 * @param string $expiry 14-char timestamp or "infinity", or false if the input was invalid
2593 protected function formatExpiry( $expiry ) {
2596 if ( $expiry != 'infinity' ) {
2599 $wgContLang->timeanddate( $expiry, false, false ),
2600 $wgContLang->date( $expiry, false, false ),
2601 $wgContLang->time( $expiry, false, false )
2602 )->inContentLanguage()->text();
2604 return wfMessage( 'protect-expiry-indefinite' )
2605 ->inContentLanguage()->text();
2610 * Builds the description to serve as comment for the edit.
2612 * @param array $limit Set of restriction keys
2613 * @param array $expiry Per restriction type expiration
2616 public function protectDescription( array $limit, array $expiry ) {
2617 $protectDescription = '';
2619 foreach ( array_filter( $limit ) as $action => $restrictions ) {
2620 # $action is one of $wgRestrictionTypes = [ 'create', 'edit', 'move', 'upload' ].
2621 # All possible message keys are listed here for easier grepping:
2622 # * restriction-create
2623 # * restriction-edit
2624 # * restriction-move
2625 # * restriction-upload
2626 $actionText = wfMessage( 'restriction-' . $action )->inContentLanguage()->text();
2627 # $restrictions is one of $wgRestrictionLevels = [ '', 'autoconfirmed', 'sysop' ],
2628 # with '' filtered out. All possible message keys are listed below:
2629 # * protect-level-autoconfirmed
2630 # * protect-level-sysop
2631 $restrictionsText = wfMessage( 'protect-level-' . $restrictions )
2632 ->inContentLanguage()->text();
2634 $expiryText = $this->formatExpiry( $expiry[$action] );
2636 if ( $protectDescription !== '' ) {
2637 $protectDescription .= wfMessage( 'word-separator' )->inContentLanguage()->text();
2639 $protectDescription .= wfMessage( 'protect-summary-desc' )
2640 ->params( $actionText, $restrictionsText, $expiryText )
2641 ->inContentLanguage()->text();
2644 return $protectDescription;
2648 * Builds the description to serve as comment for the log entry.
2650 * Some bots may parse IRC lines, which are generated from log entries which contain plain
2651 * protect description text. Keep them in old format to avoid breaking compatibility.
2652 * TODO: Fix protection log to store structured description and format it on-the-fly.
2654 * @param array $limit Set of restriction keys
2655 * @param array $expiry Per restriction type expiration
2658 public function protectDescriptionLog( array $limit, array $expiry ) {
2661 $protectDescriptionLog = '';
2663 foreach ( array_filter( $limit ) as $action => $restrictions ) {
2664 $expiryText = $this->formatExpiry( $expiry[$action] );
2665 $protectDescriptionLog .= $wgContLang->getDirMark() .
2666 "[$action=$restrictions] ($expiryText)";
2669 return trim( $protectDescriptionLog );
2673 * Take an array of page restrictions and flatten it to a string
2674 * suitable for insertion into the page_restrictions field.
2676 * @param string[] $limit
2678 * @throws MWException
2681 protected static function flattenRestrictions( $limit ) {
2682 if ( !is_array( $limit ) ) {
2683 throw new MWException( __METHOD__
. ' given non-array restriction set' );
2689 foreach ( array_filter( $limit ) as $action => $restrictions ) {
2690 $bits[] = "$action=$restrictions";
2693 return implode( ':', $bits );
2697 * Same as doDeleteArticleReal(), but returns a simple boolean. This is kept around for
2698 * backwards compatibility, if you care about error reporting you should use
2699 * doDeleteArticleReal() instead.
2701 * Deletes the article with database consistency, writes logs, purges caches
2703 * @param string $reason Delete reason for deletion log
2704 * @param bool $suppress Suppress all revisions and log the deletion in
2705 * the suppression log instead of the deletion log
2706 * @param int $u1 Unused
2707 * @param bool $u2 Unused
2708 * @param array|string &$error Array of errors to append to
2709 * @param User $user The deleting user
2710 * @return bool True if successful
2712 public function doDeleteArticle(
2713 $reason, $suppress = false, $u1 = null, $u2 = null, &$error = '', User
$user = null
2715 $status = $this->doDeleteArticleReal( $reason, $suppress, $u1, $u2, $error, $user );
2716 return $status->isGood();
2720 * Back-end article deletion
2721 * Deletes the article with database consistency, writes logs, purges caches
2725 * @param string $reason Delete reason for deletion log
2726 * @param bool $suppress Suppress all revisions and log the deletion in
2727 * the suppression log instead of the deletion log
2728 * @param int $u1 Unused
2729 * @param bool $u2 Unused
2730 * @param array|string &$error Array of errors to append to
2731 * @param User $user The deleting user
2732 * @param array $tags Tags to apply to the deletion action
2733 * @return Status Status object; if successful, $status->value is the log_id of the
2734 * deletion log entry. If the page couldn't be deleted because it wasn't
2735 * found, $status is a non-fatal 'cannotdelete' error
2737 public function doDeleteArticleReal(
2738 $reason, $suppress = false, $u1 = null, $u2 = null, &$error = '', User
$user = null,
2739 $tags = [], $logsubtype = 'delete'
2741 global $wgUser, $wgContentHandlerUseDB;
2743 wfDebug( __METHOD__
. "\n" );
2745 $status = Status
::newGood();
2747 if ( $this->mTitle
->getDBkey() === '' ) {
2748 $status->error( 'cannotdelete',
2749 wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2753 // Avoid PHP 7.1 warning of passing $this by reference
2756 $user = is_null( $user ) ?
$wgUser : $user;
2757 if ( !Hooks
::run( 'ArticleDelete',
2758 [ &$wikiPage, &$user, &$reason, &$error, &$status, $suppress ]
2760 if ( $status->isOK() ) {
2761 // Hook aborted but didn't set a fatal status
2762 $status->fatal( 'delete-hook-aborted' );
2767 $dbw = wfGetDB( DB_MASTER
);
2768 $dbw->startAtomic( __METHOD__
);
2770 $this->loadPageData( self
::READ_LATEST
);
2771 $id = $this->getId();
2772 // T98706: lock the page from various other updates but avoid using
2773 // WikiPage::READ_LOCKING as that will carry over the FOR UPDATE to
2774 // the revisions queries (which also JOIN on user). Only lock the page
2775 // row and CAS check on page_latest to see if the trx snapshot matches.
2776 $lockedLatest = $this->lockAndGetLatest();
2777 if ( $id == 0 ||
$this->getLatest() != $lockedLatest ) {
2778 $dbw->endAtomic( __METHOD__
);
2779 // Page not there or trx snapshot is stale
2780 $status->error( 'cannotdelete',
2781 wfEscapeWikiText( $this->getTitle()->getPrefixedText() ) );
2785 // Given the lock above, we can be confident in the title and page ID values
2786 $namespace = $this->getTitle()->getNamespace();
2787 $dbKey = $this->getTitle()->getDBkey();
2789 // At this point we are now comitted to returning an OK
2790 // status unless some DB query error or other exception comes up.
2791 // This way callers don't have to call rollback() if $status is bad
2792 // unless they actually try to catch exceptions (which is rare).
2794 // we need to remember the old content so we can use it to generate all deletion updates.
2795 $revision = $this->getRevision();
2797 $content = $this->getContent( Revision
::RAW
);
2798 } catch ( Exception
$ex ) {
2799 wfLogWarning( __METHOD__
. ': failed to load content during deletion! '
2800 . $ex->getMessage() );
2805 $fields = Revision
::selectFields();
2808 // Bitfields to further suppress the content
2810 $bitfield = Revision
::SUPPRESSED_ALL
;
2811 $fields = array_diff( $fields, [ 'rev_deleted' ] );
2814 // For now, shunt the revision data into the archive table.
2815 // Text is *not* removed from the text table; bulk storage
2816 // is left intact to avoid breaking block-compression or
2817 // immutable storage schemes.
2818 // In the future, we may keep revisions and mark them with
2819 // the rev_deleted field, which is reserved for this purpose.
2821 // Get all of the page revisions
2822 $res = $dbw->select(
2825 [ 'rev_page' => $id ],
2829 // Build their equivalent archive rows
2831 foreach ( $res as $row ) {
2833 'ar_namespace' => $namespace,
2834 'ar_title' => $dbKey,
2835 'ar_comment' => $row->rev_comment
,
2836 'ar_user' => $row->rev_user
,
2837 'ar_user_text' => $row->rev_user_text
,
2838 'ar_timestamp' => $row->rev_timestamp
,
2839 'ar_minor_edit' => $row->rev_minor_edit
,
2840 'ar_rev_id' => $row->rev_id
,
2841 'ar_parent_id' => $row->rev_parent_id
,
2842 'ar_text_id' => $row->rev_text_id
,
2845 'ar_len' => $row->rev_len
,
2846 'ar_page_id' => $id,
2847 'ar_deleted' => $suppress ?
$bitfield : $row->rev_deleted
,
2848 'ar_sha1' => $row->rev_sha1
,
2850 if ( $wgContentHandlerUseDB ) {
2851 $rowInsert['ar_content_model'] = $row->rev_content_model
;
2852 $rowInsert['ar_content_format'] = $row->rev_content_format
;
2854 $rowsInsert[] = $rowInsert;
2856 // Copy them into the archive table
2857 $dbw->insert( 'archive', $rowsInsert, __METHOD__
);
2858 // Save this so we can pass it to the ArticleDeleteComplete hook.
2859 $archivedRevisionCount = $dbw->affectedRows();
2861 // Clone the title and wikiPage, so we have the information we need when
2862 // we log and run the ArticleDeleteComplete hook.
2863 $logTitle = clone $this->mTitle
;
2864 $wikiPageBeforeDelete = clone $this;
2866 // Now that it's safely backed up, delete it
2867 $dbw->delete( 'page', [ 'page_id' => $id ], __METHOD__
);
2868 $dbw->delete( 'revision', [ 'rev_page' => $id ], __METHOD__
);
2870 // Log the deletion, if the page was suppressed, put it in the suppression log instead
2871 $logtype = $suppress ?
'suppress' : 'delete';
2873 $logEntry = new ManualLogEntry( $logtype, $logsubtype );
2874 $logEntry->setPerformer( $user );
2875 $logEntry->setTarget( $logTitle );
2876 $logEntry->setComment( $reason );
2877 $logEntry->setTags( $tags );
2878 $logid = $logEntry->insert();
2880 $dbw->onTransactionPreCommitOrIdle(
2881 function () use ( $dbw, $logEntry, $logid ) {
2882 // T58776: avoid deadlocks (especially from FileDeleteForm)
2883 $logEntry->publish( $logid );
2888 $dbw->endAtomic( __METHOD__
);
2890 $this->doDeleteUpdates( $id, $content, $revision );
2892 Hooks
::run( 'ArticleDeleteComplete', [
2893 &$wikiPageBeforeDelete,
2899 $archivedRevisionCount
2901 $status->value
= $logid;
2903 // Show log excerpt on 404 pages rather than just a link
2904 $cache = ObjectCache
::getMainStashInstance();
2905 $key = wfMemcKey( 'page-recent-delete', md5( $logTitle->getPrefixedText() ) );
2906 $cache->set( $key, 1, $cache::TTL_DAY
);
2912 * Lock the page row for this title+id and return page_latest (or 0)
2914 * @return integer Returns 0 if no row was found with this title+id
2917 public function lockAndGetLatest() {
2918 return (int)wfGetDB( DB_MASTER
)->selectField(
2922 'page_id' => $this->getId(),
2923 // Typically page_id is enough, but some code might try to do
2924 // updates assuming the title is the same, so verify that
2925 'page_namespace' => $this->getTitle()->getNamespace(),
2926 'page_title' => $this->getTitle()->getDBkey()
2934 * Do some database updates after deletion
2936 * @param int $id The page_id value of the page being deleted
2937 * @param Content|null $content Optional page content to be used when determining
2938 * the required updates. This may be needed because $this->getContent()
2939 * may already return null when the page proper was deleted.
2940 * @param Revision|null $revision The latest page revision
2942 public function doDeleteUpdates( $id, Content
$content = null, Revision
$revision = null ) {
2944 $countable = $this->isCountable();
2945 } catch ( Exception
$ex ) {
2946 // fallback for deleting broken pages for which we cannot load the content for
2947 // some reason. Note that doDeleteArticleReal() already logged this problem.
2951 // Update site status
2952 DeferredUpdates
::addUpdate( new SiteStatsUpdate( 0, 1, - (int)$countable, -1 ) );
2954 // Delete pagelinks, update secondary indexes, etc
2955 $updates = $this->getDeletionUpdates( $content );
2956 foreach ( $updates as $update ) {
2957 DeferredUpdates
::addUpdate( $update );
2960 // Reparse any pages transcluding this page
2961 LinksUpdate
::queueRecursiveJobsForTable( $this->mTitle
, 'templatelinks' );
2963 // Reparse any pages including this image
2964 if ( $this->mTitle
->getNamespace() == NS_FILE
) {
2965 LinksUpdate
::queueRecursiveJobsForTable( $this->mTitle
, 'imagelinks' );
2969 WikiPage
::onArticleDelete( $this->mTitle
);
2970 ResourceLoaderWikiModule
::invalidateModuleCache(
2971 $this->mTitle
, $revision, null, wfWikiID()
2974 // Reset this object and the Title object
2975 $this->loadFromRow( false, self
::READ_LATEST
);
2978 DeferredUpdates
::addUpdate( new SearchUpdate( $id, $this->mTitle
) );
2982 * Roll back the most recent consecutive set of edits to a page
2983 * from the same user; fails if there are no eligible edits to
2984 * roll back to, e.g. user is the sole contributor. This function
2985 * performs permissions checks on $user, then calls commitRollback()
2986 * to do the dirty work
2988 * @todo Separate the business/permission stuff out from backend code
2989 * @todo Remove $token parameter. Already verified by RollbackAction and ApiRollback.
2991 * @param string $fromP Name of the user whose edits to rollback.
2992 * @param string $summary Custom summary. Set to default summary if empty.
2993 * @param string $token Rollback token.
2994 * @param bool $bot If true, mark all reverted edits as bot.
2996 * @param array $resultDetails Array contains result-specific array of additional values
2997 * 'alreadyrolled' : 'current' (rev)
2998 * success : 'summary' (str), 'current' (rev), 'target' (rev)
3000 * @param User $user The user performing the rollback
3001 * @param array|null $tags Change tags to apply to the rollback
3002 * Callers are responsible for permission checks
3003 * (with ChangeTags::canAddTagsAccompanyingChange)
3005 * @return array Array of errors, each error formatted as
3006 * array(messagekey, param1, param2, ...).
3007 * On success, the array is empty. This array can also be passed to
3008 * OutputPage::showPermissionsErrorPage().
3010 public function doRollback(
3011 $fromP, $summary, $token, $bot, &$resultDetails, User
$user, $tags = null
3013 $resultDetails = null;
3015 // Check permissions
3016 $editErrors = $this->mTitle
->getUserPermissionsErrors( 'edit', $user );
3017 $rollbackErrors = $this->mTitle
->getUserPermissionsErrors( 'rollback', $user );
3018 $errors = array_merge( $editErrors, wfArrayDiff2( $rollbackErrors, $editErrors ) );
3020 if ( !$user->matchEditToken( $token, 'rollback' ) ) {
3021 $errors[] = [ 'sessionfailure' ];
3024 if ( $user->pingLimiter( 'rollback' ) ||
$user->pingLimiter() ) {
3025 $errors[] = [ 'actionthrottledtext' ];
3028 // If there were errors, bail out now
3029 if ( !empty( $errors ) ) {
3033 return $this->commitRollback( $fromP, $summary, $bot, $resultDetails, $user, $tags );
3037 * Backend implementation of doRollback(), please refer there for parameter
3038 * and return value documentation
3040 * NOTE: This function does NOT check ANY permissions, it just commits the
3041 * rollback to the DB. Therefore, you should only call this function direct-
3042 * ly if you want to use custom permissions checks. If you don't, use
3043 * doRollback() instead.
3044 * @param string $fromP Name of the user whose edits to rollback.
3045 * @param string $summary Custom summary. Set to default summary if empty.
3046 * @param bool $bot If true, mark all reverted edits as bot.
3048 * @param array $resultDetails Contains result-specific array of additional values
3049 * @param User $guser The user performing the rollback
3050 * @param array|null $tags Change tags to apply to the rollback
3051 * Callers are responsible for permission checks
3052 * (with ChangeTags::canAddTagsAccompanyingChange)
3056 public function commitRollback( $fromP, $summary, $bot,
3057 &$resultDetails, User
$guser, $tags = null
3059 global $wgUseRCPatrol, $wgContLang;
3061 $dbw = wfGetDB( DB_MASTER
);
3063 if ( wfReadOnly() ) {
3064 return [ [ 'readonlytext' ] ];
3067 // Get the last editor
3068 $current = $this->getRevision();
3069 if ( is_null( $current ) ) {
3070 // Something wrong... no page?
3071 return [ [ 'notanarticle' ] ];
3074 $from = str_replace( '_', ' ', $fromP );
3075 // User name given should match up with the top revision.
3076 // If the user was deleted then $from should be empty.
3077 if ( $from != $current->getUserText() ) {
3078 $resultDetails = [ 'current' => $current ];
3079 return [ [ 'alreadyrolled',
3080 htmlspecialchars( $this->mTitle
->getPrefixedText() ),
3081 htmlspecialchars( $fromP ),
3082 htmlspecialchars( $current->getUserText() )
3086 // Get the last edit not by this person...
3087 // Note: these may not be public values
3088 $user = intval( $current->getUser( Revision
::RAW
) );
3089 $user_text = $dbw->addQuotes( $current->getUserText( Revision
::RAW
) );
3090 $s = $dbw->selectRow( 'revision',
3091 [ 'rev_id', 'rev_timestamp', 'rev_deleted' ],
3092 [ 'rev_page' => $current->getPage(),
3093 "rev_user != {$user} OR rev_user_text != {$user_text}"
3095 [ 'USE INDEX' => 'page_timestamp',
3096 'ORDER BY' => 'rev_timestamp DESC' ]
3098 if ( $s === false ) {
3099 // No one else ever edited this page
3100 return [ [ 'cantrollback' ] ];
3101 } elseif ( $s->rev_deleted
& Revision
::DELETED_TEXT
3102 ||
$s->rev_deleted
& Revision
::DELETED_USER
3104 // Only admins can see this text
3105 return [ [ 'notvisiblerev' ] ];
3108 // Generate the edit summary if necessary
3109 $target = Revision
::newFromId( $s->rev_id
, Revision
::READ_LATEST
);
3110 if ( empty( $summary ) ) {
3111 if ( $from == '' ) { // no public user name
3112 $summary = wfMessage( 'revertpage-nouser' );
3114 $summary = wfMessage( 'revertpage' );
3118 // Allow the custom summary to use the same args as the default message
3120 $target->getUserText(), $from, $s->rev_id
,
3121 $wgContLang->timeanddate( wfTimestamp( TS_MW
, $s->rev_timestamp
) ),
3122 $current->getId(), $wgContLang->timeanddate( $current->getTimestamp() )
3124 if ( $summary instanceof Message
) {
3125 $summary = $summary->params( $args )->inContentLanguage()->text();
3127 $summary = wfMsgReplaceArgs( $summary, $args );
3130 // Trim spaces on user supplied text
3131 $summary = trim( $summary );
3133 // Truncate for whole multibyte characters.
3134 $summary = $wgContLang->truncate( $summary, 255 );
3137 $flags = EDIT_UPDATE | EDIT_INTERNAL
;
3139 if ( $guser->isAllowed( 'minoredit' ) ) {
3140 $flags |
= EDIT_MINOR
;
3143 if ( $bot && ( $guser->isAllowedAny( 'markbotedits', 'bot' ) ) ) {
3144 $flags |
= EDIT_FORCE_BOT
;
3147 $targetContent = $target->getContent();
3148 $changingContentModel = $targetContent->getModel() !== $current->getContentModel();
3150 // Actually store the edit
3151 $status = $this->doEditContent(
3161 // Set patrolling and bot flag on the edits, which gets rollbacked.
3162 // This is done even on edit failure to have patrolling in that case (T64157).
3164 if ( $bot && $guser->isAllowed( 'markbotedits' ) ) {
3165 // Mark all reverted edits as bot
3169 if ( $wgUseRCPatrol ) {
3170 // Mark all reverted edits as patrolled
3171 $set['rc_patrolled'] = 1;
3174 if ( count( $set ) ) {
3175 $dbw->update( 'recentchanges', $set,
3177 'rc_cur_id' => $current->getPage(),
3178 'rc_user_text' => $current->getUserText(),
3179 'rc_timestamp > ' . $dbw->addQuotes( $s->rev_timestamp
),
3185 if ( !$status->isOK() ) {
3186 return $status->getErrorsArray();
3189 // raise error, when the edit is an edit without a new version
3190 $statusRev = isset( $status->value
['revision'] )
3191 ?
$status->value
['revision']
3193 if ( !( $statusRev instanceof Revision
) ) {
3194 $resultDetails = [ 'current' => $current ];
3195 return [ [ 'alreadyrolled',
3196 htmlspecialchars( $this->mTitle
->getPrefixedText() ),
3197 htmlspecialchars( $fromP ),
3198 htmlspecialchars( $current->getUserText() )
3202 if ( $changingContentModel ) {
3203 // If the content model changed during the rollback,
3204 // make sure it gets logged to Special:Log/contentmodel
3205 $log = new ManualLogEntry( 'contentmodel', 'change' );
3206 $log->setPerformer( $guser );
3207 $log->setTarget( $this->mTitle
);
3208 $log->setComment( $summary );
3209 $log->setParameters( [
3210 '4::oldmodel' => $current->getContentModel(),
3211 '5::newmodel' => $targetContent->getModel(),
3214 $logId = $log->insert( $dbw );
3215 $log->publish( $logId );
3218 $revId = $statusRev->getId();
3220 Hooks
::run( 'ArticleRollbackComplete', [ $this, $guser, $target, $current ] );
3223 'summary' => $summary,
3224 'current' => $current,
3225 'target' => $target,
3233 * The onArticle*() functions are supposed to be a kind of hooks
3234 * which should be called whenever any of the specified actions
3237 * This is a good place to put code to clear caches, for instance.
3239 * This is called on page move and undelete, as well as edit
3241 * @param Title $title
3243 public static function onArticleCreate( Title
$title ) {
3244 // Update existence markers on article/talk tabs...
3245 $other = $title->getOtherPage();
3247 $other->purgeSquid();
3249 $title->touchLinks();
3250 $title->purgeSquid();
3251 $title->deleteTitleProtection();
3253 MediaWikiServices
::getInstance()->getLinkCache()->invalidateTitle( $title );
3255 // Invalidate caches of articles which include this page
3256 DeferredUpdates
::addUpdate( new HTMLCacheUpdate( $title, 'templatelinks' ) );
3258 if ( $title->getNamespace() == NS_CATEGORY
) {
3259 // Load the Category object, which will schedule a job to create
3260 // the category table row if necessary. Checking a replica DB is ok
3261 // here, in the worst case it'll run an unnecessary recount job on
3262 // a category that probably doesn't have many members.
3263 Category
::newFromTitle( $title )->getID();
3268 * Clears caches when article is deleted
3270 * @param Title $title
3272 public static function onArticleDelete( Title
$title ) {
3273 // Update existence markers on article/talk tabs...
3274 $other = $title->getOtherPage();
3276 $other->purgeSquid();
3278 $title->touchLinks();
3279 $title->purgeSquid();
3281 MediaWikiServices
::getInstance()->getLinkCache()->invalidateTitle( $title );
3284 HTMLFileCache
::clearFileCache( $title );
3285 InfoAction
::invalidateCache( $title );
3288 if ( $title->getNamespace() == NS_MEDIAWIKI
) {
3289 MessageCache
::singleton()->updateMessageOverride( $title, null );
3293 if ( $title->getNamespace() == NS_FILE
) {
3294 DeferredUpdates
::addUpdate( new HTMLCacheUpdate( $title, 'imagelinks' ) );
3298 if ( $title->getNamespace() == NS_USER_TALK
) {
3299 $user = User
::newFromName( $title->getText(), false );
3301 $user->setNewtalk( false );
3306 RepoGroup
::singleton()->getLocalRepo()->invalidateImageRedirect( $title );
3310 * Purge caches on page update etc
3312 * @param Title $title
3313 * @param Revision|null $revision Revision that was just saved, may be null
3315 public static function onArticleEdit( Title
$title, Revision
$revision = null ) {
3316 // Invalidate caches of articles which include this page
3317 DeferredUpdates
::addUpdate( new HTMLCacheUpdate( $title, 'templatelinks' ) );
3319 // Invalidate the caches of all pages which redirect here
3320 DeferredUpdates
::addUpdate( new HTMLCacheUpdate( $title, 'redirect' ) );
3322 MediaWikiServices
::getInstance()->getLinkCache()->invalidateTitle( $title );
3324 // Purge CDN for this page only
3325 $title->purgeSquid();
3326 // Clear file cache for this page only
3327 HTMLFileCache
::clearFileCache( $title );
3329 $revid = $revision ?
$revision->getId() : null;
3330 DeferredUpdates
::addCallableUpdate( function() use ( $title, $revid ) {
3331 InfoAction
::invalidateCache( $title, $revid );
3338 * Returns a list of categories this page is a member of.
3339 * Results will include hidden categories
3341 * @return TitleArray
3343 public function getCategories() {
3344 $id = $this->getId();
3346 return TitleArray
::newFromResult( new FakeResultWrapper( [] ) );
3349 $dbr = wfGetDB( DB_REPLICA
);
3350 $res = $dbr->select( 'categorylinks',
3351 [ 'cl_to AS page_title, ' . NS_CATEGORY
. ' AS page_namespace' ],
3352 // Have to do that since Database::fieldNamesWithAlias treats numeric indexes
3353 // as not being aliases, and NS_CATEGORY is numeric
3354 [ 'cl_from' => $id ],
3357 return TitleArray
::newFromResult( $res );
3361 * Returns a list of hidden categories this page is a member of.
3362 * Uses the page_props and categorylinks tables.
3364 * @return array Array of Title objects
3366 public function getHiddenCategories() {
3368 $id = $this->getId();
3374 $dbr = wfGetDB( DB_REPLICA
);
3375 $res = $dbr->select( [ 'categorylinks', 'page_props', 'page' ],
3377 [ 'cl_from' => $id, 'pp_page=page_id', 'pp_propname' => 'hiddencat',
3378 'page_namespace' => NS_CATEGORY
, 'page_title=cl_to' ],
3381 if ( $res !== false ) {
3382 foreach ( $res as $row ) {
3383 $result[] = Title
::makeTitle( NS_CATEGORY
, $row->cl_to
);
3391 * Auto-generates a deletion reason
3393 * @param bool &$hasHistory Whether the page has a history
3394 * @return string|bool String containing deletion reason or empty string, or boolean false
3395 * if no revision occurred
3397 public function getAutoDeleteReason( &$hasHistory ) {
3398 return $this->getContentHandler()->getAutoDeleteReason( $this->getTitle(), $hasHistory );
3402 * Update all the appropriate counts in the category table, given that
3403 * we've added the categories $added and deleted the categories $deleted.
3405 * This should only be called from deferred updates or jobs to avoid contention.
3407 * @param array $added The names of categories that were added
3408 * @param array $deleted The names of categories that were deleted
3409 * @param integer $id Page ID (this should be the original deleted page ID)
3411 public function updateCategoryCounts( array $added, array $deleted, $id = 0 ) {
3412 $id = $id ?
: $this->getId();
3413 $ns = $this->getTitle()->getNamespace();
3415 $addFields = [ 'cat_pages = cat_pages + 1' ];
3416 $removeFields = [ 'cat_pages = cat_pages - 1' ];
3417 if ( $ns == NS_CATEGORY
) {
3418 $addFields[] = 'cat_subcats = cat_subcats + 1';
3419 $removeFields[] = 'cat_subcats = cat_subcats - 1';
3420 } elseif ( $ns == NS_FILE
) {
3421 $addFields[] = 'cat_files = cat_files + 1';
3422 $removeFields[] = 'cat_files = cat_files - 1';
3425 $dbw = wfGetDB( DB_MASTER
);
3427 if ( count( $added ) ) {
3428 $existingAdded = $dbw->selectFieldValues(
3431 [ 'cat_title' => $added ],
3435 // For category rows that already exist, do a plain
3436 // UPDATE instead of INSERT...ON DUPLICATE KEY UPDATE
3437 // to avoid creating gaps in the cat_id sequence.
3438 if ( count( $existingAdded ) ) {
3442 [ 'cat_title' => $existingAdded ],
3447 $missingAdded = array_diff( $added, $existingAdded );
3448 if ( count( $missingAdded ) ) {
3450 foreach ( $missingAdded as $cat ) {
3452 'cat_title' => $cat,
3454 'cat_subcats' => ( $ns == NS_CATEGORY
) ?
1 : 0,
3455 'cat_files' => ( $ns == NS_FILE
) ?
1 : 0,
3468 if ( count( $deleted ) ) {
3472 [ 'cat_title' => $deleted ],
3477 foreach ( $added as $catName ) {
3478 $cat = Category
::newFromName( $catName );
3479 Hooks
::run( 'CategoryAfterPageAdded', [ $cat, $this ] );
3482 foreach ( $deleted as $catName ) {
3483 $cat = Category
::newFromName( $catName );
3484 Hooks
::run( 'CategoryAfterPageRemoved', [ $cat, $this, $id ] );
3487 // Refresh counts on categories that should be empty now, to
3488 // trigger possible deletion. Check master for the most
3489 // up-to-date cat_pages.
3490 if ( count( $deleted ) ) {
3491 $rows = $dbw->select(
3493 [ 'cat_id', 'cat_title', 'cat_pages', 'cat_subcats', 'cat_files' ],
3494 [ 'cat_title' => $deleted, 'cat_pages <= 0' ],
3497 foreach ( $rows as $row ) {
3498 $cat = Category
::newFromRow( $row );
3499 $cat->refreshCounts();
3505 * Opportunistically enqueue link update jobs given fresh parser output if useful
3507 * @param ParserOutput $parserOutput Current version page output
3510 public function triggerOpportunisticLinksUpdate( ParserOutput
$parserOutput ) {
3511 if ( wfReadOnly() ) {
3515 if ( !Hooks
::run( 'OpportunisticLinksUpdate',
3516 [ $this, $this->mTitle
, $parserOutput ]
3521 $config = RequestContext
::getMain()->getConfig();
3524 'isOpportunistic' => true,
3525 'rootJobTimestamp' => $parserOutput->getCacheTime()
3528 if ( $this->mTitle
->areRestrictionsCascading() ) {
3529 // If the page is cascade protecting, the links should really be up-to-date
3530 JobQueueGroup
::singleton()->lazyPush(
3531 RefreshLinksJob
::newPrioritized( $this->mTitle
, $params )
3533 } elseif ( !$config->get( 'MiserMode' ) && $parserOutput->hasDynamicContent() ) {
3534 // Assume the output contains "dynamic" time/random based magic words.
3535 // Only update pages that expired due to dynamic content and NOT due to edits
3536 // to referenced templates/files. When the cache expires due to dynamic content,
3537 // page_touched is unchanged. We want to avoid triggering redundant jobs due to
3538 // views of pages that were just purged via HTMLCacheUpdateJob. In that case, the
3539 // template/file edit already triggered recursive RefreshLinksJob jobs.
3540 if ( $this->getLinksTimestamp() > $this->getTouched() ) {
3541 // If a page is uncacheable, do not keep spamming a job for it.
3542 // Although it would be de-duplicated, it would still waste I/O.
3543 $cache = ObjectCache
::getLocalClusterInstance();
3544 $key = $cache->makeKey( 'dynamic-linksupdate', 'last', $this->getId() );
3545 $ttl = max( $parserOutput->getCacheExpiry(), 3600 );
3546 if ( $cache->add( $key, time(), $ttl ) ) {
3547 JobQueueGroup
::singleton()->lazyPush(
3548 RefreshLinksJob
::newDynamic( $this->mTitle
, $params )
3556 * Returns a list of updates to be performed when this page is deleted. The
3557 * updates should remove any information about this page from secondary data
3558 * stores such as links tables.
3560 * @param Content|null $content Optional Content object for determining the
3561 * necessary updates.
3562 * @return DeferrableUpdate[]
3564 public function getDeletionUpdates( Content
$content = null ) {
3566 // load content object, which may be used to determine the necessary updates.
3567 // XXX: the content may not be needed to determine the updates.
3569 $content = $this->getContent( Revision
::RAW
);
3570 } catch ( Exception
$ex ) {
3571 // If we can't load the content, something is wrong. Perhaps that's why
3572 // the user is trying to delete the page, so let's not fail in that case.
3573 // Note that doDeleteArticleReal() will already have logged an issue with
3574 // loading the content.
3581 $updates = $content->getDeletionUpdates( $this );
3584 Hooks
::run( 'WikiPageDeletionUpdates', [ $this, $content, &$updates ] );
3589 * Whether this content displayed on this page
3590 * comes from the local database
3595 public function isLocal() {
3600 * The display name for the site this content
3601 * come from. If a subclass overrides isLocal(),
3602 * this could return something other than the
3608 public function getWikiDisplayName() {
3614 * Get the source URL for the content on this page,
3615 * typically the canonical URL, but may be a remote
3616 * link if the content comes from another site
3621 public function getSourceURL() {
3622 return $this->getTitle()->getCanonicalURL();
3626 * @param WANObjectCache $cache
3630 public function getMutableCacheKeys( WANObjectCache
$cache ) {
3631 $linkCache = MediaWikiServices
::getInstance()->getLinkCache();
3633 return $linkCache->getMutableCacheKeys( $cache, $this->getTitle()->getTitleValue() );