Merge "Migrate Api modules from tag_summary table to change_tag"
[lhc/web/wiklou.git] / includes / Storage / DerivedPageDataUpdater.php
1 <?php
2 /**
3 * A handle for managing updates for derived page data on edit, import, purge, etc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 namespace MediaWiki\Storage;
24
25 use ApiStashEdit;
26 use CategoryMembershipChangeJob;
27 use Content;
28 use ContentHandler;
29 use DataUpdate;
30 use DeferrableUpdate;
31 use DeferredUpdates;
32 use Hooks;
33 use IDBAccessObject;
34 use InvalidArgumentException;
35 use JobQueueGroup;
36 use Language;
37 use LinksDeletionUpdate;
38 use LinksUpdate;
39 use LogicException;
40 use MediaWiki\Edit\PreparedEdit;
41 use MediaWiki\Revision\MutableRevisionRecord;
42 use MediaWiki\Revision\RenderedRevision;
43 use MediaWiki\Revision\RevisionRecord;
44 use MediaWiki\Revision\RevisionRenderer;
45 use MediaWiki\Revision\RevisionSlots;
46 use MediaWiki\Revision\RevisionStore;
47 use MediaWiki\Revision\SlotRecord;
48 use MediaWiki\User\UserIdentity;
49 use MessageCache;
50 use ParserCache;
51 use ParserOptions;
52 use ParserOutput;
53 use RecentChangesUpdateJob;
54 use ResourceLoaderWikiModule;
55 use Revision;
56 use SearchUpdate;
57 use SiteStatsUpdate;
58 use Title;
59 use User;
60 use Wikimedia\Assert\Assert;
61 use Wikimedia\Rdbms\LBFactory;
62 use WikiPage;
63
64 /**
65 * A handle for managing updates for derived page data on edit, import, purge, etc.
66 *
67 * @note Avoid direct usage of DerivedPageDataUpdater.
68 *
69 * @todo Define interfaces for the different use cases of DerivedPageDataUpdater, particularly
70 * providing access to post-PST content and ParserOutput to callbacks during revision creation,
71 * which currently use WikiPage::prepareContentForEdit, and allowing updates to be triggered on
72 * purge, import, and undeletion, which currently use WikiPage::doEditUpdates() and
73 * Content::getSecondaryDataUpdates().
74 *
75 * DerivedPageDataUpdater instances are designed to be cached inside a WikiPage instance,
76 * and re-used by callback code over the course of an update operation. It's a stepping stone
77 * one the way to a more complete refactoring of WikiPage.
78 *
79 * When using a DerivedPageDataUpdater, the following life cycle must be observed:
80 * grabCurrentRevision (optional), prepareContent (optional), prepareUpdate (required
81 * for doUpdates). getCanonicalParserOutput, getSlots, and getSecondaryDataUpdates
82 * require prepareContent or prepareUpdate to have been called first, to initialize the
83 * DerivedPageDataUpdater.
84 *
85 * @see docs/pageupdater.txt for more information.
86 *
87 * MCR migration note: this replaces the relevant methods in WikiPage, and covers the use cases
88 * of PreparedEdit.
89 *
90 * @internal
91 *
92 * @since 1.32
93 * @ingroup Page
94 */
95 class DerivedPageDataUpdater implements IDBAccessObject {
96
97 /**
98 * @var UserIdentity|null
99 */
100 private $user = null;
101
102 /**
103 * @var WikiPage
104 */
105 private $wikiPage;
106
107 /**
108 * @var ParserCache
109 */
110 private $parserCache;
111
112 /**
113 * @var RevisionStore
114 */
115 private $revisionStore;
116
117 /**
118 * @var Language
119 */
120 private $contLang;
121
122 /**
123 * @var JobQueueGroup
124 */
125 private $jobQueueGroup;
126
127 /**
128 * @var MessageCache
129 */
130 private $messageCache;
131
132 /**
133 * @var LBFactory
134 */
135 private $loadbalancerFactory;
136
137 /**
138 * @var string see $wgArticleCountMethod
139 */
140 private $articleCountMethod;
141
142 /**
143 * @var boolean see $wgRCWatchCategoryMembership
144 */
145 private $rcWatchCategoryMembership = false;
146
147 /**
148 * Stores (most of) the $options parameter of prepareUpdate().
149 * @see prepareUpdate()
150 */
151 private $options = [
152 'changed' => true,
153 'created' => false,
154 'moved' => false,
155 'restored' => false,
156 'oldrevision' => null,
157 'oldcountable' => null,
158 'oldredirect' => null,
159 'triggeringUser' => null,
160 // causeAction/causeAgent default to 'unknown' but that's handled where it's read,
161 // to make the life of prepareUpdate() callers easier.
162 'causeAction' => null,
163 'causeAgent' => null,
164 ];
165
166 /**
167 * The state of the relevant row in page table before the edit.
168 * This is determined by the first call to grabCurrentRevision, prepareContent,
169 * or prepareUpdate (so it is only accessible in 'knows-current' or a later stage).
170 * If pageState was not initialized when prepareUpdate() is called, prepareUpdate() will
171 * attempt to emulate the state of the page table before the edit.
172 *
173 * Contains the following fields:
174 * - oldRevision (RevisionRecord|null): the revision that was current before the change
175 * associated with this update. Might not be set, use getParentRevision().
176 * - oldId (int|null): the id of the above revision. 0 if there is no such revision (the change
177 * was about creating a new page); null if not known (that should not happen).
178 * - oldIsRedirect (bool|null): whether the page was a redirect before the change. Lazy-loaded,
179 * can be null; use wasRedirect() instead of direct access.
180 * - oldCountable (bool|null): whether the page was countable before the change (or null
181 * if we don't have that information)
182 *
183 * @var array
184 */
185 private $pageState = null;
186
187 /**
188 * @var RevisionSlotsUpdate|null
189 */
190 private $slotsUpdate = null;
191
192 /**
193 * @var RevisionRecord|null
194 */
195 private $parentRevision = null;
196
197 /**
198 * @var RevisionRecord|null
199 */
200 private $revision = null;
201
202 /**
203 * @var RenderedRevision
204 */
205 private $renderedRevision = null;
206
207 /**
208 * @var RevisionRenderer
209 */
210 private $revisionRenderer;
211
212 /**
213 * A stage identifier for managing the life cycle of this instance.
214 * Possible stages are 'new', 'knows-current', 'has-content', 'has-revision', and 'done'.
215 *
216 * @see docs/pageupdater.txt for documentation of the life cycle.
217 *
218 * @var string
219 */
220 private $stage = 'new';
221
222 /**
223 * Transition table for managing the life cycle of DerivedPageDateUpdater instances.
224 *
225 * XXX: Overkill. This is a linear order, we could just count. Names are nice though,
226 * and constants are also overkill...
227 *
228 * @see docs/pageupdater.txt for documentation of the life cycle.
229 *
230 * @var array[]
231 */
232 private static $transitions = [
233 'new' => [
234 'new' => true,
235 'knows-current' => true,
236 'has-content' => true,
237 'has-revision' => true,
238 ],
239 'knows-current' => [
240 'knows-current' => true,
241 'has-content' => true,
242 'has-revision' => true,
243 ],
244 'has-content' => [
245 'has-content' => true,
246 'has-revision' => true,
247 ],
248 'has-revision' => [
249 'has-revision' => true,
250 'done' => true,
251 ],
252 ];
253
254 /**
255 * @param WikiPage $wikiPage ,
256 * @param RevisionStore $revisionStore
257 * @param RevisionRenderer $revisionRenderer
258 * @param ParserCache $parserCache
259 * @param JobQueueGroup $jobQueueGroup
260 * @param MessageCache $messageCache
261 * @param Language $contLang
262 * @param LBFactory $loadbalancerFactory
263 */
264 public function __construct(
265 WikiPage $wikiPage,
266 RevisionStore $revisionStore,
267 RevisionRenderer $revisionRenderer,
268 ParserCache $parserCache,
269 JobQueueGroup $jobQueueGroup,
270 MessageCache $messageCache,
271 Language $contLang,
272 LBFactory $loadbalancerFactory
273 ) {
274 $this->wikiPage = $wikiPage;
275
276 $this->parserCache = $parserCache;
277 $this->revisionStore = $revisionStore;
278 $this->revisionRenderer = $revisionRenderer;
279 $this->jobQueueGroup = $jobQueueGroup;
280 $this->messageCache = $messageCache;
281 $this->contLang = $contLang;
282 // XXX only needed for waiting for replicas to catch up; there should be a narrower
283 // interface for that.
284 $this->loadbalancerFactory = $loadbalancerFactory;
285 }
286
287 /**
288 * Transition function for managing the life cycle of this instances.
289 *
290 * @see docs/pageupdater.txt for documentation of the life cycle.
291 *
292 * @param string $newStage the new stage
293 * @return string the previous stage
294 *
295 * @throws LogicException If a transition to the given stage is not possible in the current
296 * stage.
297 */
298 private function doTransition( $newStage ) {
299 $this->assertTransition( $newStage );
300
301 $oldStage = $this->stage;
302 $this->stage = $newStage;
303
304 return $oldStage;
305 }
306
307 /**
308 * Asserts that a transition to the given stage is possible, without performing it.
309 *
310 * @see docs/pageupdater.txt for documentation of the life cycle.
311 *
312 * @param string $newStage the new stage
313 *
314 * @throws LogicException If this instance is not in the expected stage
315 */
316 private function assertTransition( $newStage ) {
317 if ( empty( self::$transitions[$this->stage][$newStage] ) ) {
318 throw new LogicException( "Cannot transition from {$this->stage} to $newStage" );
319 }
320 }
321
322 /**
323 * @return bool|string
324 */
325 private function getWikiId() {
326 // TODO: get from RevisionStore
327 return false;
328 }
329
330 /**
331 * Checks whether this DerivedPageDataUpdater can be re-used for running updates targeting
332 * the given revision.
333 *
334 * @param UserIdentity|null $user The user creating the revision in question
335 * @param RevisionRecord|null $revision New revision (after save, if already saved)
336 * @param RevisionSlotsUpdate|null $slotsUpdate New content (before PST)
337 * @param null|int $parentId Parent revision of the edit (use 0 for page creation)
338 *
339 * @return bool
340 */
341 public function isReusableFor(
342 UserIdentity $user = null,
343 RevisionRecord $revision = null,
344 RevisionSlotsUpdate $slotsUpdate = null,
345 $parentId = null
346 ) {
347 if ( $revision
348 && $parentId
349 && $revision->getParentId() !== $parentId
350 ) {
351 throw new InvalidArgumentException( '$parentId should match the parent of $revision' );
352 }
353
354 // NOTE: For null revisions, $user may be different from $this->revision->getUser
355 // and also from $revision->getUser.
356 // But $user should always match $this->user.
357 if ( $user && $this->user && $user->getName() !== $this->user->getName() ) {
358 return false;
359 }
360
361 if ( $revision && $this->revision && $this->revision->getId()
362 && $this->revision->getId() !== $revision->getId()
363 ) {
364 return false;
365 }
366
367 if ( $this->pageState
368 && $revision
369 && $revision->getParentId() !== null
370 && $this->pageState['oldId'] !== $revision->getParentId()
371 ) {
372 return false;
373 }
374
375 if ( $this->pageState
376 && $parentId !== null
377 && $this->pageState['oldId'] !== $parentId
378 ) {
379 return false;
380 }
381
382 // NOTE: this check is the primary reason for having the $this->slotsUpdate field!
383 if ( $this->slotsUpdate
384 && $slotsUpdate
385 && !$this->slotsUpdate->hasSameUpdates( $slotsUpdate )
386 ) {
387 return false;
388 }
389
390 if ( $revision
391 && $this->revision
392 && !$this->revision->getSlots()->hasSameContent( $revision->getSlots() )
393 ) {
394 return false;
395 }
396
397 return true;
398 }
399
400 /**
401 * @param string $articleCountMethod "any" or "link".
402 * @see $wgArticleCountMethod
403 */
404 public function setArticleCountMethod( $articleCountMethod ) {
405 $this->articleCountMethod = $articleCountMethod;
406 }
407
408 /**
409 * @param bool $rcWatchCategoryMembership
410 * @see $wgRCWatchCategoryMembership
411 */
412 public function setRcWatchCategoryMembership( $rcWatchCategoryMembership ) {
413 $this->rcWatchCategoryMembership = $rcWatchCategoryMembership;
414 }
415
416 /**
417 * @return Title
418 */
419 private function getTitle() {
420 // NOTE: eventually, we won't get a WikiPage passed into the constructor any more
421 return $this->wikiPage->getTitle();
422 }
423
424 /**
425 * @return WikiPage
426 */
427 private function getWikiPage() {
428 // NOTE: eventually, we won't get a WikiPage passed into the constructor any more
429 return $this->wikiPage;
430 }
431
432 /**
433 * Determines whether the page being edited already existed.
434 * Only defined after calling grabCurrentRevision() or prepareContent() or prepareUpdate()!
435 *
436 * @return bool
437 * @throws LogicException if called before grabCurrentRevision
438 */
439 public function pageExisted() {
440 $this->assertHasPageState( __METHOD__ );
441
442 return $this->pageState['oldId'] > 0;
443 }
444
445 /**
446 * Returns the parent revision of the new revision wrapped by this update.
447 * If the update is a null-edit, this will return the parent of the current (and new) revision.
448 * This will return null if the revision wrapped by this update created the page.
449 * Only defined after calling prepareContent() or prepareUpdate()!
450 *
451 * @return RevisionRecord|null the parent revision of the new revision, or null if
452 * the update created the page.
453 */
454 private function getParentRevision() {
455 $this->assertPrepared( __METHOD__ );
456
457 if ( $this->parentRevision ) {
458 return $this->parentRevision;
459 }
460
461 if ( !$this->pageState['oldId'] ) {
462 // If there was no current revision, there is no parent revision,
463 // since the page didn't exist.
464 return null;
465 }
466
467 $oldId = $this->revision->getParentId();
468 $flags = $this->useMaster() ? RevisionStore::READ_LATEST : 0;
469 $this->parentRevision = $oldId
470 ? $this->revisionStore->getRevisionById( $oldId, $flags )
471 : null;
472
473 return $this->parentRevision;
474 }
475
476 /**
477 * Returns the revision that was the page's current revision when grabCurrentRevision()
478 * was first called.
479 *
480 * During an edit, that revision will act as the logical parent of the new revision.
481 *
482 * Some updates are performed based on the difference between the database state at the
483 * moment this method is first called, and the state after the edit.
484 *
485 * @see docs/pageupdater.txt for more information on when thie method can and should be called.
486 *
487 * @note After prepareUpdate() was called, grabCurrentRevision() will throw an exception
488 * to avoid confusion, since the page's current revision is then the new revision after
489 * the edit, which was presumably passed to prepareUpdate() as the $revision parameter.
490 * Use getParentRevision() instead to access the revision that is the parent of the
491 * new revision.
492 *
493 * @return RevisionRecord|null the page's current revision, or null if the page does not
494 * yet exist.
495 */
496 public function grabCurrentRevision() {
497 if ( $this->pageState ) {
498 return $this->pageState['oldRevision'];
499 }
500
501 $this->assertTransition( 'knows-current' );
502
503 // NOTE: eventually, we won't get a WikiPage passed into the constructor any more
504 $wikiPage = $this->getWikiPage();
505
506 // Do not call WikiPage::clear(), since the caller may already have caused page data
507 // to be loaded with SELECT FOR UPDATE. Just assert it's loaded now.
508 $wikiPage->loadPageData( self::READ_LATEST );
509 $rev = $wikiPage->getRevision();
510 $current = $rev ? $rev->getRevisionRecord() : null;
511
512 $this->pageState = [
513 'oldRevision' => $current,
514 'oldId' => $rev ? $rev->getId() : 0,
515 'oldIsRedirect' => $wikiPage->isRedirect(), // NOTE: uses page table
516 'oldCountable' => $wikiPage->isCountable(), // NOTE: uses pagelinks table
517 ];
518
519 $this->doTransition( 'knows-current' );
520
521 return $this->pageState['oldRevision'];
522 }
523
524 /**
525 * Whether prepareUpdate() or prepareContent() have been called on this instance.
526 *
527 * @return bool
528 */
529 public function isContentPrepared() {
530 return $this->revision !== null;
531 }
532
533 /**
534 * Whether prepareUpdate() has been called on this instance.
535 *
536 * @note will also return null in case of a null-edit!
537 *
538 * @return bool
539 */
540 public function isUpdatePrepared() {
541 return $this->revision !== null && $this->revision->getId() !== null;
542 }
543
544 /**
545 * @return int
546 */
547 private function getPageId() {
548 // NOTE: eventually, we won't get a WikiPage passed into the constructor any more
549 return $this->wikiPage->getId();
550 }
551
552 /**
553 * Whether the content is deleted and thus not visible to the public.
554 *
555 * @return bool
556 */
557 public function isContentDeleted() {
558 if ( $this->revision ) {
559 // XXX: if that revision is the current revision, this should be skipped
560 return $this->revision->isDeleted( RevisionRecord::DELETED_TEXT );
561 } else {
562 // If the content has not been saved yet, it cannot have been deleted yet.
563 return false;
564 }
565 }
566
567 /**
568 * Returns the slot, modified or inherited, after PST, with no audience checks applied.
569 *
570 * @param string $role slot role name
571 *
572 * @throws PageUpdateException If the slot is neither set for update nor inherited from the
573 * parent revision.
574 * @return SlotRecord
575 */
576 public function getRawSlot( $role ) {
577 return $this->getSlots()->getSlot( $role );
578 }
579
580 /**
581 * Returns the content of the given slot, with no audience checks.
582 *
583 * @throws PageUpdateException If the slot is neither set for update nor inherited from the
584 * parent revision.
585 * @param string $role slot role name
586 * @return Content
587 */
588 public function getRawContent( $role ) {
589 return $this->getRawSlot( $role )->getContent();
590 }
591
592 /**
593 * Returns the content model of the given slot
594 *
595 * @param string $role slot role name
596 * @return string
597 */
598 private function getContentModel( $role ) {
599 return $this->getRawSlot( $role )->getModel();
600 }
601
602 /**
603 * @param string $role slot role name
604 * @return ContentHandler
605 */
606 private function getContentHandler( $role ) {
607 // TODO: inject something like a ContentHandlerRegistry
608 return ContentHandler::getForModelID( $this->getContentModel( $role ) );
609 }
610
611 private function useMaster() {
612 // TODO: can we just set a flag to true in prepareContent()?
613 return $this->wikiPage->wasLoadedFrom( self::READ_LATEST );
614 }
615
616 /**
617 * @return bool
618 */
619 public function isCountable() {
620 // NOTE: Keep in sync with WikiPage::isCountable.
621
622 if ( !$this->getTitle()->isContentPage() ) {
623 return false;
624 }
625
626 if ( $this->isContentDeleted() ) {
627 // This should be irrelevant: countability only applies to the current revision,
628 // and the current revision is never suppressed.
629 return false;
630 }
631
632 if ( $this->isRedirect() ) {
633 return false;
634 }
635
636 $hasLinks = null;
637
638 if ( $this->articleCountMethod === 'link' ) {
639 $hasLinks = (bool)count( $this->getCanonicalParserOutput()->getLinks() );
640 }
641
642 // TODO: MCR: ask all slots if they have links [SlotHandler/PageTypeHandler]
643 $mainContent = $this->getRawContent( SlotRecord::MAIN );
644 return $mainContent->isCountable( $hasLinks );
645 }
646
647 /**
648 * @return bool
649 */
650 public function isRedirect() {
651 // NOTE: main slot determines redirect status
652 $mainContent = $this->getRawContent( SlotRecord::MAIN );
653
654 return $mainContent->isRedirect();
655 }
656
657 /**
658 * @param RevisionRecord $rev
659 *
660 * @return bool
661 */
662 private function revisionIsRedirect( RevisionRecord $rev ) {
663 // NOTE: main slot determines redirect status
664 $mainContent = $rev->getContent( SlotRecord::MAIN, RevisionRecord::RAW );
665
666 return $mainContent->isRedirect();
667 }
668
669 /**
670 * Prepare updates based on an update which has not yet been saved.
671 *
672 * This may be used to create derived data that is needed when creating a new revision;
673 * particularly, this makes available the slots of the new revision via the getSlots()
674 * method, after applying PST and slot inheritance.
675 *
676 * The derived data prepared for revision creation may then later be re-used by doUpdates(),
677 * without the need to re-calculate.
678 *
679 * @see docs/pageupdater.txt for more information on when thie method can and should be called.
680 *
681 * @note Calling this method more than once with the same $slotsUpdate
682 * has no effect. Calling this method multiple times with different content will cause
683 * an exception.
684 *
685 * @note Calling this method after prepareUpdate() has been called will cause an exception.
686 *
687 * @param User $user The user to act as context for pre-save transformation (PST).
688 * Type hint should be reduced to UserIdentity at some point.
689 * @param RevisionSlotsUpdate $slotsUpdate The new content of the slots to be updated
690 * by this edit, before PST.
691 * @param bool $useStash Whether to use stashed ParserOutput
692 */
693 public function prepareContent(
694 User $user,
695 RevisionSlotsUpdate $slotsUpdate,
696 $useStash = true
697 ) {
698 if ( $this->slotsUpdate ) {
699 if ( !$this->user ) {
700 throw new LogicException(
701 'Unexpected state: $this->slotsUpdate was initialized, '
702 . 'but $this->user was not.'
703 );
704 }
705
706 if ( $this->user->getName() !== $user->getName() ) {
707 throw new LogicException( 'Can\'t call prepareContent() again for different user! '
708 . 'Expected ' . $this->user->getName() . ', got ' . $user->getName()
709 );
710 }
711
712 if ( !$this->slotsUpdate->hasSameUpdates( $slotsUpdate ) ) {
713 throw new LogicException(
714 'Can\'t call prepareContent() again with different slot content!'
715 );
716 }
717
718 return; // prepareContent() already done, nothing to do
719 }
720
721 $this->assertTransition( 'has-content' );
722
723 $wikiPage = $this->getWikiPage(); // TODO: use only for legacy hooks!
724 $title = $this->getTitle();
725
726 $parentRevision = $this->grabCurrentRevision();
727
728 $this->slotsOutput = [];
729 $this->canonicalParserOutput = null;
730
731 // The edit may have already been prepared via api.php?action=stashedit
732 $stashedEdit = false;
733
734 // TODO: MCR: allow output for all slots to be stashed.
735 if ( $useStash && $slotsUpdate->isModifiedSlot( SlotRecord::MAIN ) ) {
736 $mainContent = $slotsUpdate->getModifiedSlot( SlotRecord::MAIN )->getContent();
737 $legacyUser = User::newFromIdentity( $user );
738 $stashedEdit = ApiStashEdit::checkCache( $title, $mainContent, $legacyUser );
739 }
740
741 $userPopts = ParserOptions::newFromUserAndLang( $user, $this->contLang );
742 Hooks::run( 'ArticlePrepareTextForEdit', [ $wikiPage, $userPopts ] );
743
744 $this->user = $user;
745 $this->slotsUpdate = $slotsUpdate;
746
747 if ( $parentRevision ) {
748 $this->revision = MutableRevisionRecord::newFromParentRevision( $parentRevision );
749 } else {
750 $this->revision = new MutableRevisionRecord( $title );
751 }
752
753 // NOTE: user and timestamp must be set, so they can be used for
754 // {{subst:REVISIONUSER}} and {{subst:REVISIONTIMESTAMP}} in PST!
755 $this->revision->setTimestamp( wfTimestampNow() );
756 $this->revision->setUser( $user );
757
758 // Set up ParserOptions to operate on the new revision
759 $oldCallback = $userPopts->getCurrentRevisionCallback();
760 $userPopts->setCurrentRevisionCallback(
761 function ( Title $parserTitle, $parser = false ) use ( $title, $oldCallback ) {
762 if ( $parserTitle->equals( $title ) ) {
763 $legacyRevision = new Revision( $this->revision );
764 return $legacyRevision;
765 } else {
766 return call_user_func( $oldCallback, $parserTitle, $parser );
767 }
768 }
769 );
770
771 $pstContentSlots = $this->revision->getSlots();
772
773 foreach ( $slotsUpdate->getModifiedRoles() as $role ) {
774 $slot = $slotsUpdate->getModifiedSlot( $role );
775
776 if ( $slot->isInherited() ) {
777 // No PST for inherited slots! Note that "modified" slots may still be inherited
778 // from an earlier version, e.g. for rollbacks.
779 $pstSlot = $slot;
780 } elseif ( $role === SlotRecord::MAIN && $stashedEdit ) {
781 // TODO: MCR: allow PST content for all slots to be stashed.
782 $pstSlot = SlotRecord::newUnsaved( $role, $stashedEdit->pstContent );
783 } else {
784 $content = $slot->getContent();
785 $pstContent = $content->preSaveTransform( $title, $this->user, $userPopts );
786 $pstSlot = SlotRecord::newUnsaved( $role, $pstContent );
787 }
788
789 $pstContentSlots->setSlot( $pstSlot );
790 }
791
792 foreach ( $slotsUpdate->getRemovedRoles() as $role ) {
793 $pstContentSlots->removeSlot( $role );
794 }
795
796 $this->options['created'] = ( $parentRevision === null );
797 $this->options['changed'] = ( $parentRevision === null
798 || !$pstContentSlots->hasSameContent( $parentRevision->getSlots() ) );
799
800 $this->doTransition( 'has-content' );
801
802 if ( !$this->options['changed'] ) {
803 // null-edit!
804
805 // TODO: move this into MutableRevisionRecord
806 // TODO: This needs to behave differently for a forced dummy edit!
807 $this->revision->setId( $parentRevision->getId() );
808 $this->revision->setTimestamp( $parentRevision->getTimestamp() );
809 $this->revision->setPageId( $parentRevision->getPageId() );
810 $this->revision->setParentId( $parentRevision->getParentId() );
811 $this->revision->setUser( $parentRevision->getUser( RevisionRecord::RAW ) );
812 $this->revision->setComment( $parentRevision->getComment( RevisionRecord::RAW ) );
813 $this->revision->setMinorEdit( $parentRevision->isMinor() );
814 $this->revision->setVisibility( $parentRevision->getVisibility() );
815
816 // prepareUpdate() is redundant for null-edits
817 $this->doTransition( 'has-revision' );
818 } else {
819 $this->parentRevision = $parentRevision;
820 }
821
822 $renderHints = [ 'use-master' => $this->useMaster(), 'audience' => RevisionRecord::RAW ];
823
824 if ( $stashedEdit ) {
825 /** @var ParserOutput $output */
826 $output = $stashedEdit->output;
827
828 // TODO: this should happen when stashing the ParserOutput, not now!
829 $output->setCacheTime( $stashedEdit->timestamp );
830
831 $renderHints['known-revision-output'] = $output;
832 }
833
834 // NOTE: we want a canonical rendering, so don't pass $this->user or ParserOptions
835 // NOTE: the revision is either new or current, so we can bypass audience checks.
836 $this->renderedRevision = $this->revisionRenderer->getRenderedRevision(
837 $this->revision,
838 null,
839 null,
840 $renderHints
841 );
842 }
843
844 /**
845 * Returns the update's target revision - that is, the revision that will be the current
846 * revision after the update.
847 *
848 * @note Callers must treat the returned RevisionRecord's content as immutable, even
849 * if it is a MutableRevisionRecord instance. Other aspects of a MutableRevisionRecord
850 * returned from here, such as the user or the comment, may be changed, but may not
851 * be reflected in ParserOutput until after prepareUpdate() has been called.
852 *
853 * @todo This is currently used by PageUpdater::makeNewRevision() to construct an unsaved
854 * MutableRevisionRecord instance. Introduce something like an UnsavedRevisionFactory service
855 * for that purpose instead!
856 *
857 * @return RevisionRecord
858 */
859 public function getRevision() {
860 $this->assertPrepared( __METHOD__ );
861 return $this->revision;
862 }
863
864 /**
865 * @return RenderedRevision
866 */
867 public function getRenderedRevision() {
868 $this->assertPrepared( __METHOD__ );
869
870 return $this->renderedRevision;
871 }
872
873 private function assertHasPageState( $method ) {
874 if ( !$this->pageState ) {
875 throw new LogicException(
876 'Must call grabCurrentRevision() or prepareContent() '
877 . 'or prepareUpdate() before calling ' . $method
878 );
879 }
880 }
881
882 private function assertPrepared( $method ) {
883 if ( !$this->revision ) {
884 throw new LogicException(
885 'Must call prepareContent() or prepareUpdate() before calling ' . $method
886 );
887 }
888 }
889
890 private function assertHasRevision( $method ) {
891 if ( !$this->revision->getId() ) {
892 throw new LogicException(
893 'Must call prepareUpdate() before calling ' . $method
894 );
895 }
896 }
897
898 /**
899 * Whether the edit creates the page.
900 *
901 * @return bool
902 */
903 public function isCreation() {
904 $this->assertPrepared( __METHOD__ );
905 return $this->options['created'];
906 }
907
908 /**
909 * Whether the edit created, or should create, a new revision (that is, it's not a null-edit).
910 *
911 * @warning at present, "null-revisions" that do not change content but do have a revision
912 * record would return false after prepareContent(), but true after prepareUpdate()!
913 * This should probably be fixed.
914 *
915 * @return bool
916 */
917 public function isChange() {
918 $this->assertPrepared( __METHOD__ );
919 return $this->options['changed'];
920 }
921
922 /**
923 * Whether the page was a redirect before the edit.
924 *
925 * @return bool
926 */
927 public function wasRedirect() {
928 $this->assertHasPageState( __METHOD__ );
929
930 if ( $this->pageState['oldIsRedirect'] === null ) {
931 /** @var RevisionRecord $rev */
932 $rev = $this->pageState['oldRevision'];
933 if ( $rev ) {
934 $this->pageState['oldIsRedirect'] = $this->revisionIsRedirect( $rev );
935 } else {
936 $this->pageState['oldIsRedirect'] = false;
937 }
938 }
939
940 return $this->pageState['oldIsRedirect'];
941 }
942
943 /**
944 * Returns the slots of the target revision, after PST.
945 *
946 * @note Callers must treat the returned RevisionSlots instance as immutable, even
947 * if it is a MutableRevisionSlots instance.
948 *
949 * @return RevisionSlots
950 */
951 public function getSlots() {
952 $this->assertPrepared( __METHOD__ );
953 return $this->revision->getSlots();
954 }
955
956 /**
957 * Returns the RevisionSlotsUpdate for this updater.
958 *
959 * @return RevisionSlotsUpdate
960 */
961 private function getRevisionSlotsUpdate() {
962 $this->assertPrepared( __METHOD__ );
963
964 if ( !$this->slotsUpdate ) {
965 $old = $this->getParentRevision();
966 $this->slotsUpdate = RevisionSlotsUpdate::newFromRevisionSlots(
967 $this->revision->getSlots(),
968 $old ? $old->getSlots() : null
969 );
970 }
971 return $this->slotsUpdate;
972 }
973
974 /**
975 * Returns the role names of the slots touched by the new revision,
976 * including removed roles.
977 *
978 * @return string[]
979 */
980 public function getTouchedSlotRoles() {
981 return $this->getRevisionSlotsUpdate()->getTouchedRoles();
982 }
983
984 /**
985 * Returns the role names of the slots modified by the new revision,
986 * not including removed roles.
987 *
988 * @return string[]
989 */
990 public function getModifiedSlotRoles() {
991 return $this->getRevisionSlotsUpdate()->getModifiedRoles();
992 }
993
994 /**
995 * Returns the role names of the slots removed by the new revision.
996 *
997 * @return string[]
998 */
999 public function getRemovedSlotRoles() {
1000 return $this->getRevisionSlotsUpdate()->getRemovedRoles();
1001 }
1002
1003 /**
1004 * Prepare derived data updates targeting the given Revision.
1005 *
1006 * Calling this method requires the given revision to be present in the database.
1007 * This may be right after a new revision has been created, or when re-generating
1008 * derived data e.g. in ApiPurge, RefreshLinksJob, and the refreshLinks
1009 * script.
1010 *
1011 * @see docs/pageupdater.txt for more information on when thie method can and should be called.
1012 *
1013 * @note Calling this method more than once with the same revision has no effect.
1014 * $options are only used for the first call. Calling this method multiple times with
1015 * different revisions will cause an exception.
1016 *
1017 * @note If grabCurrentRevision() (or prepareContent()) has been called before
1018 * calling this method, $revision->getParentRevision() has to refer to the revision that
1019 * was the current revision at the time grabCurrentRevision() was called.
1020 *
1021 * @param RevisionRecord $revision
1022 * @param array $options Array of options, following indexes are used:
1023 * - changed: bool, whether the revision changed the content (default true)
1024 * - created: bool, whether the revision created the page (default false)
1025 * - moved: bool, whether the page was moved (default false)
1026 * - restored: bool, whether the page was undeleted (default false)
1027 * - oldrevision: Revision object for the pre-update revision (default null)
1028 * - triggeringUser: The user triggering the update (UserIdentity, defaults to the
1029 * user who created the revision)
1030 * - oldredirect: bool, null, or string 'no-change' (default null):
1031 * - bool: whether the page was counted as a redirect before that
1032 * revision, only used in changed is true and created is false
1033 * - null or 'no-change': don't update the redirect status.
1034 * - oldcountable: bool, null, or string 'no-change' (default null):
1035 * - bool: whether the page was counted as an article before that
1036 * revision, only used in changed is true and created is false
1037 * - null: if created is false, don't update the article count; if created
1038 * is true, do update the article count
1039 * - 'no-change': don't update the article count, ever
1040 * When set to null, pageState['oldCountable'] will be used instead if available.
1041 * - causeAction: an arbitrary string identifying the reason for the update.
1042 * See DataUpdate::getCauseAction(). (default 'unknown')
1043 * - causeAgent: name of the user who caused the update. See DataUpdate::getCauseAgent().
1044 * (string, default 'unknown')
1045 */
1046 public function prepareUpdate( RevisionRecord $revision, array $options = [] ) {
1047 Assert::parameter(
1048 !isset( $options['oldrevision'] )
1049 || $options['oldrevision'] instanceof Revision
1050 || $options['oldrevision'] instanceof RevisionRecord,
1051 '$options["oldrevision"]',
1052 'must be a RevisionRecord (or Revision)'
1053 );
1054 Assert::parameter(
1055 !isset( $options['triggeringUser'] )
1056 || $options['triggeringUser'] instanceof UserIdentity,
1057 '$options["triggeringUser"]',
1058 'must be a UserIdentity'
1059 );
1060
1061 if ( !$revision->getId() ) {
1062 throw new InvalidArgumentException(
1063 'Revision must have an ID set for it to be used with prepareUpdate()!'
1064 );
1065 }
1066
1067 if ( $this->revision && $this->revision->getId() ) {
1068 if ( $this->revision->getId() === $revision->getId() ) {
1069 return; // nothing to do!
1070 } else {
1071 throw new LogicException(
1072 'Trying to re-use DerivedPageDataUpdater with revision '
1073 . $revision->getId()
1074 . ', but it\'s already bound to revision '
1075 . $this->revision->getId()
1076 );
1077 }
1078 }
1079
1080 if ( $this->revision
1081 && !$this->revision->getSlots()->hasSameContent( $revision->getSlots() )
1082 ) {
1083 throw new LogicException(
1084 'The Revision provided has mismatching content!'
1085 );
1086 }
1087
1088 // Override fields defined in $this->options with values from $options.
1089 $this->options = array_intersect_key( $options, $this->options ) + $this->options;
1090
1091 if ( isset( $this->pageState['oldId'] ) ) {
1092 $oldId = $this->pageState['oldId'];
1093 } elseif ( isset( $this->options['oldrevision'] ) ) {
1094 /** @var Revision|RevisionRecord $oldRev */
1095 $oldRev = $this->options['oldrevision'];
1096 $oldId = $oldRev->getId();
1097 } else {
1098 $oldId = $revision->getParentId();
1099 }
1100
1101 if ( $oldId !== null ) {
1102 // XXX: what if $options['changed'] disagrees?
1103 // MovePage creates a dummy revision with changed = false!
1104 // We may want to explicitly distinguish between "no new revision" (null-edit)
1105 // and "new revision without new content" (dummy revision).
1106
1107 if ( $oldId === $revision->getParentId() ) {
1108 // NOTE: this may still be a NullRevision!
1109 // New revision!
1110 $this->options['changed'] = true;
1111 } elseif ( $oldId === $revision->getId() ) {
1112 // Null-edit!
1113 $this->options['changed'] = false;
1114 } else {
1115 // This indicates that calling code has given us the wrong Revision object
1116 throw new LogicException(
1117 'The Revision mismatches old revision ID: '
1118 . 'Old ID is ' . $oldId
1119 . ', parent ID is ' . $revision->getParentId()
1120 . ', revision ID is ' . $revision->getId()
1121 );
1122 }
1123 }
1124
1125 // If prepareContent() was used to generate the PST content (which is indicated by
1126 // $this->slotsUpdate being set), and this is not a null-edit, then the given
1127 // revision must have the acting user as the revision author. Otherwise, user
1128 // signatures generated by PST would mismatch the user in the revision record.
1129 if ( $this->user !== null && $this->options['changed'] && $this->slotsUpdate ) {
1130 $user = $revision->getUser();
1131 if ( !$this->user->equals( $user ) ) {
1132 throw new LogicException(
1133 'The Revision provided has a mismatching actor: expected '
1134 . $this->user->getName()
1135 . ', got '
1136 . $user->getName()
1137 );
1138 }
1139 }
1140
1141 // If $this->pageState was not yet initialized by grabCurrentRevision or prepareContent,
1142 // emulate the state of the page table before the edit, as good as we can.
1143 if ( !$this->pageState ) {
1144 $this->pageState = [
1145 'oldIsRedirect' => isset( $this->options['oldredirect'] )
1146 && is_bool( $this->options['oldredirect'] )
1147 ? $this->options['oldredirect']
1148 : null,
1149 'oldCountable' => isset( $this->options['oldcountable'] )
1150 && is_bool( $this->options['oldcountable'] )
1151 ? $this->options['oldcountable']
1152 : null,
1153 ];
1154
1155 if ( $this->options['changed'] ) {
1156 // The edit created a new revision
1157 $this->pageState['oldId'] = $revision->getParentId();
1158
1159 if ( isset( $this->options['oldrevision'] ) ) {
1160 $rev = $this->options['oldrevision'];
1161 $this->pageState['oldRevision'] = $rev instanceof Revision
1162 ? $rev->getRevisionRecord()
1163 : $rev;
1164 }
1165 } else {
1166 // This is a null-edit, so the old revision IS the new revision!
1167 $this->pageState['oldId'] = $revision->getId();
1168 $this->pageState['oldRevision'] = $revision;
1169 }
1170 }
1171
1172 // "created" is forced here
1173 $this->options['created'] = ( $this->pageState['oldId'] === 0 );
1174
1175 $this->revision = $revision;
1176
1177 $this->doTransition( 'has-revision' );
1178
1179 // NOTE: in case we have a User object, don't override with a UserIdentity.
1180 // We already checked that $revision->getUser() mathces $this->user;
1181 if ( !$this->user ) {
1182 $this->user = $revision->getUser( RevisionRecord::RAW );
1183 }
1184
1185 // Prune any output that depends on the revision ID.
1186 if ( $this->renderedRevision ) {
1187 $this->renderedRevision->updateRevision( $revision );
1188 } else {
1189
1190 // NOTE: we want a canonical rendering, so don't pass $this->user or ParserOptions
1191 // NOTE: the revision is either new or current, so we can bypass audience checks.
1192 $this->renderedRevision = $this->revisionRenderer->getRenderedRevision(
1193 $this->revision,
1194 null,
1195 null,
1196 [ 'use-master' => $this->useMaster(), 'audience' => RevisionRecord::RAW ]
1197 );
1198
1199 // XXX: Since we presumably are dealing with the current revision,
1200 // we could try to get the ParserOutput from the parser cache.
1201 }
1202
1203 // TODO: optionally get ParserOutput from the ParserCache here.
1204 // Move the logic used by RefreshLinksJob here!
1205 }
1206
1207 /**
1208 * @deprecated This only exists for B/C, use the getters on DerivedPageDataUpdater directly!
1209 * @return PreparedEdit
1210 */
1211 public function getPreparedEdit() {
1212 $this->assertPrepared( __METHOD__ );
1213
1214 $slotsUpdate = $this->getRevisionSlotsUpdate();
1215 $preparedEdit = new PreparedEdit();
1216
1217 $preparedEdit->popts = $this->getCanonicalParserOptions();
1218 $preparedEdit->output = $this->getCanonicalParserOutput();
1219 $preparedEdit->pstContent = $this->revision->getContent( SlotRecord::MAIN );
1220 $preparedEdit->newContent =
1221 $slotsUpdate->isModifiedSlot( SlotRecord::MAIN )
1222 ? $slotsUpdate->getModifiedSlot( SlotRecord::MAIN )->getContent()
1223 : $this->revision->getContent( SlotRecord::MAIN ); // XXX: can we just remove this?
1224 $preparedEdit->oldContent = null; // unused. // XXX: could get this from the parent revision
1225 $preparedEdit->revid = $this->revision ? $this->revision->getId() : null;
1226 $preparedEdit->timestamp = $preparedEdit->output->getCacheTime();
1227 $preparedEdit->format = $preparedEdit->pstContent->getDefaultFormat();
1228
1229 return $preparedEdit;
1230 }
1231
1232 /**
1233 * @param string $role
1234 * @param bool $generateHtml
1235 * @return ParserOutput
1236 */
1237 public function getSlotParserOutput( $role, $generateHtml = true ) {
1238 return $this->getRenderedRevision()->getSlotParserOutput(
1239 $role,
1240 [ 'generate-html' => $generateHtml ]
1241 );
1242 }
1243
1244 /**
1245 * @return ParserOutput
1246 */
1247 public function getCanonicalParserOutput() {
1248 return $this->getRenderedRevision()->getRevisionParserOutput();
1249 }
1250
1251 /**
1252 * @return ParserOptions
1253 */
1254 public function getCanonicalParserOptions() {
1255 return $this->getRenderedRevision()->getOptions();
1256 }
1257
1258 /**
1259 * @param bool $recursive
1260 *
1261 * @return DeferrableUpdate[]
1262 */
1263 public function getSecondaryDataUpdates( $recursive = false ) {
1264 if ( $this->isContentDeleted() ) {
1265 // This shouldn't happen, since the current content is always public,
1266 // and DataUpates are only needed for current content.
1267 return [];
1268 }
1269
1270 $output = $this->getCanonicalParserOutput();
1271
1272 // Construct a LinksUpdate for the combined canonical output.
1273 $linksUpdate = new LinksUpdate(
1274 $this->getTitle(),
1275 $output,
1276 $recursive
1277 );
1278
1279 $allUpdates = [ $linksUpdate ];
1280
1281 // NOTE: Run updates for all slots, not just the modified slots! Otherwise,
1282 // info for an inherited slot may end up being removed. This is also needed
1283 // to ensure that purges are effective.
1284 $renderedRevision = $this->getRenderedRevision();
1285 foreach ( $this->getSlots()->getSlotRoles() as $role ) {
1286 $slot = $this->getRawSlot( $role );
1287 $content = $slot->getContent();
1288 $handler = $content->getContentHandler();
1289
1290 $updates = $handler->getSecondaryDataUpdates(
1291 $this->getTitle(),
1292 $content,
1293 $role,
1294 $renderedRevision
1295 );
1296 $allUpdates = array_merge( $allUpdates, $updates );
1297
1298 // TODO: remove B/C hack in 1.32!
1299 // NOTE: we assume that the combined output contains all relevant meta-data for
1300 // all slots!
1301 $legacyUpdates = $content->getSecondaryDataUpdates(
1302 $this->getTitle(),
1303 null,
1304 $recursive,
1305 $output
1306 );
1307
1308 // HACK: filter out redundant and incomplete LinksUpdates
1309 $legacyUpdates = array_filter( $legacyUpdates, function ( $update ) {
1310 return !( $update instanceof LinksUpdate );
1311 } );
1312
1313 $allUpdates = array_merge( $allUpdates, $legacyUpdates );
1314 }
1315
1316 // XXX: if a slot was removed by an earlier edit, but deletion updates failed to run at
1317 // that time, we don't know for which slots to run deletion updates when purging a page.
1318 // We'd have to examine the entire history of the page to determine that. Perhaps there
1319 // could be a "try extra hard" mode for that case that would run a DB query to find all
1320 // roles/models ever used on the page. On the other hand, removing slots should be quite
1321 // rare, so perhaps this isn't worth the trouble.
1322
1323 // TODO: consolidate with similar logic in WikiPage::getDeletionUpdates()
1324 $wikiPage = $this->getWikiPage();
1325 $parentRevision = $this->getParentRevision();
1326 foreach ( $this->getRemovedSlotRoles() as $role ) {
1327 // HACK: we should get the content model of the removed slot from a SlotRoleHandler!
1328 // For now, find the slot in the parent revision - if the slot was removed, it should
1329 // always exist in the parent revision.
1330 $parentSlot = $parentRevision->getSlot( $role, RevisionRecord::RAW );
1331 $content = $parentSlot->getContent();
1332 $handler = $content->getContentHandler();
1333
1334 $updates = $handler->getDeletionUpdates(
1335 $this->getTitle(),
1336 $role
1337 );
1338 $allUpdates = array_merge( $allUpdates, $updates );
1339
1340 // TODO: remove B/C hack in 1.32!
1341 $legacyUpdates = $content->getDeletionUpdates( $wikiPage );
1342
1343 // HACK: filter out redundant and incomplete LinksDeletionUpdate
1344 $legacyUpdates = array_filter( $legacyUpdates, function ( $update ) {
1345 return !( $update instanceof LinksDeletionUpdate );
1346 } );
1347
1348 $allUpdates = array_merge( $allUpdates, $legacyUpdates );
1349 }
1350
1351 // TODO: hard deprecate SecondaryDataUpdates in favor of RevisionDataUpdates in 1.33!
1352 Hooks::run(
1353 'RevisionDataUpdates',
1354 [ $this->getTitle(), $renderedRevision, &$allUpdates ]
1355 );
1356
1357 return $allUpdates;
1358 }
1359
1360 /**
1361 * Do standard updates after page edit, purge, or import.
1362 * Update links tables, site stats, search index, title cache, message cache, etc.
1363 * Purges pages that depend on this page when appropriate.
1364 * With a 10% chance, triggers pruning the recent changes table.
1365 *
1366 * @note prepareUpdate() must be called before calling this method!
1367 *
1368 * MCR migration note: this replaces WikiPage::doEditUpdates.
1369 */
1370 public function doUpdates() {
1371 $this->assertTransition( 'done' );
1372
1373 // TODO: move logic into a PageEventEmitter service
1374
1375 $wikiPage = $this->getWikiPage(); // TODO: use only for legacy hooks!
1376
1377 $legacyUser = User::newFromIdentity( $this->user );
1378 $legacyRevision = new Revision( $this->revision );
1379
1380 $this->doParserCacheUpdate();
1381
1382 $this->doSecondaryDataUpdates( [
1383 // T52785 do not update any other pages on a null edit
1384 'recursive' => $this->options['changed'],
1385 'defer' => DeferredUpdates::POSTSEND,
1386 ] );
1387
1388 // TODO: MCR: check if *any* changed slot supports categories!
1389 if ( $this->rcWatchCategoryMembership
1390 && $this->getContentHandler( SlotRecord::MAIN )->supportsCategories() === true
1391 && ( $this->options['changed'] || $this->options['created'] )
1392 && !$this->options['restored']
1393 ) {
1394 // Note: jobs are pushed after deferred updates, so the job should be able to see
1395 // the recent change entry (also done via deferred updates) and carry over any
1396 // bot/deletion/IP flags, ect.
1397 $this->jobQueueGroup->lazyPush(
1398 CategoryMembershipChangeJob::newSpec(
1399 $this->getTitle(),
1400 $this->revision->getTimestamp()
1401 )
1402 );
1403 }
1404
1405 // TODO: replace legacy hook! Use a listener on PageEventEmitter instead!
1406 $editInfo = $this->getPreparedEdit();
1407 Hooks::run( 'ArticleEditUpdates', [ &$wikiPage, &$editInfo, $this->options['changed'] ] );
1408
1409 // TODO: replace legacy hook! Use a listener on PageEventEmitter instead!
1410 if ( Hooks::run( 'ArticleEditUpdatesDeleteFromRecentchanges', [ &$wikiPage ] ) ) {
1411 // Flush old entries from the `recentchanges` table
1412 if ( mt_rand( 0, 9 ) == 0 ) {
1413 $this->jobQueueGroup->lazyPush( RecentChangesUpdateJob::newPurgeJob() );
1414 }
1415 }
1416
1417 $id = $this->getPageId();
1418 $title = $this->getTitle();
1419 $dbKey = $title->getPrefixedDBkey();
1420 $shortTitle = $title->getDBkey();
1421
1422 if ( !$title->exists() ) {
1423 wfDebug( __METHOD__ . ": Page doesn't exist any more, bailing out\n" );
1424
1425 $this->doTransition( 'done' );
1426 return;
1427 }
1428
1429 if ( $this->options['oldcountable'] === 'no-change' ||
1430 ( !$this->options['changed'] && !$this->options['moved'] )
1431 ) {
1432 $good = 0;
1433 } elseif ( $this->options['created'] ) {
1434 $good = (int)$this->isCountable();
1435 } elseif ( $this->options['oldcountable'] !== null ) {
1436 $good = (int)$this->isCountable()
1437 - (int)$this->options['oldcountable'];
1438 } elseif ( isset( $this->pageState['oldCountable'] ) ) {
1439 $good = (int)$this->isCountable()
1440 - (int)$this->pageState['oldCountable'];
1441 } else {
1442 $good = 0;
1443 }
1444 $edits = $this->options['changed'] ? 1 : 0;
1445 $pages = $this->options['created'] ? 1 : 0;
1446
1447 DeferredUpdates::addUpdate( SiteStatsUpdate::factory(
1448 [ 'edits' => $edits, 'articles' => $good, 'pages' => $pages ]
1449 ) );
1450
1451 // TODO: make search infrastructure aware of slots!
1452 $mainSlot = $this->revision->getSlot( SlotRecord::MAIN );
1453 if ( !$mainSlot->isInherited() && !$this->isContentDeleted() ) {
1454 DeferredUpdates::addUpdate( new SearchUpdate( $id, $dbKey, $mainSlot->getContent() ) );
1455 }
1456
1457 // If this is another user's talk page, update newtalk.
1458 // Don't do this if $options['changed'] = false (null-edits) nor if
1459 // it's a minor edit and the user making the edit doesn't generate notifications for those.
1460 if ( $this->options['changed']
1461 && $title->getNamespace() == NS_USER_TALK
1462 && $shortTitle != $legacyUser->getTitleKey()
1463 && !( $this->revision->isMinor() && $legacyUser->isAllowed( 'nominornewtalk' ) )
1464 ) {
1465 $recipient = User::newFromName( $shortTitle, false );
1466 if ( !$recipient ) {
1467 wfDebug( __METHOD__ . ": invalid username\n" );
1468 } else {
1469 // Allow extensions to prevent user notification
1470 // when a new message is added to their talk page
1471 // TODO: replace legacy hook! Use a listener on PageEventEmitter instead!
1472 if ( Hooks::run( 'ArticleEditUpdateNewTalk', [ &$wikiPage, $recipient ] ) ) {
1473 if ( User::isIP( $shortTitle ) ) {
1474 // An anonymous user
1475 $recipient->setNewtalk( true, $legacyRevision );
1476 } elseif ( $recipient->isLoggedIn() ) {
1477 $recipient->setNewtalk( true, $legacyRevision );
1478 } else {
1479 wfDebug( __METHOD__ . ": don't need to notify a nonexistent user\n" );
1480 }
1481 }
1482 }
1483 }
1484
1485 if ( $title->getNamespace() == NS_MEDIAWIKI
1486 && $this->getRevisionSlotsUpdate()->isModifiedSlot( SlotRecord::MAIN )
1487 ) {
1488 $mainContent = $this->isContentDeleted() ? null : $this->getRawContent( SlotRecord::MAIN );
1489
1490 $this->messageCache->updateMessageOverride( $title, $mainContent );
1491 }
1492
1493 // TODO: move onArticleCreate and onArticle into a PageEventEmitter service
1494 if ( $this->options['created'] ) {
1495 WikiPage::onArticleCreate( $title );
1496 } elseif ( $this->options['changed'] ) { // T52785
1497 WikiPage::onArticleEdit( $title, $legacyRevision, $this->getTouchedSlotRoles() );
1498 }
1499
1500 $oldRevision = $this->getParentRevision();
1501 $oldLegacyRevision = $oldRevision ? new Revision( $oldRevision ) : null;
1502
1503 // TODO: In the wiring, register a listener for this on the new PageEventEmitter
1504 ResourceLoaderWikiModule::invalidateModuleCache(
1505 $title, $oldLegacyRevision, $legacyRevision, $this->getWikiId() ?: wfWikiID()
1506 );
1507
1508 $this->doTransition( 'done' );
1509 }
1510
1511 /**
1512 * Do secondary data updates (such as updating link tables).
1513 *
1514 * MCR note: this method is temporarily exposed via WikiPage::doSecondaryDataUpdates.
1515 *
1516 * @param array $options
1517 * - recursive: make the update recursive, i.e. also update pages which transclude the
1518 * current page or otherwise depend on it (default: false)
1519 * - defer: one of the DeferredUpdates constants, or false to run immediately after waiting
1520 * for replication of the changes from the SecondaryDataUpdates hooks (default: false)
1521 * - transactionTicket: a transaction ticket from LBFactory::getEmptyTransactionTicket(),
1522 * only when defer is false (default: null)
1523 * @since 1.32
1524 */
1525 public function doSecondaryDataUpdates( array $options = [] ) {
1526 $this->assertHasRevision( __METHOD__ );
1527 $options += [
1528 'recursive' => false,
1529 'defer' => false,
1530 'transactionTicket' => null,
1531 ];
1532 $deferValues = [ false, DeferredUpdates::PRESEND, DeferredUpdates::POSTSEND ];
1533 if ( !in_array( $options['defer'], $deferValues, true ) ) {
1534 throw new InvalidArgumentException( 'invalid value for defer: ' . $options['defer'] );
1535 }
1536 Assert::parameterType( 'integer|null', $options['transactionTicket'],
1537 '$options[\'transactionTicket\']' );
1538
1539 $updates = $this->getSecondaryDataUpdates( $options['recursive'] );
1540
1541 $triggeringUser = $this->options['triggeringUser'] ?? $this->user;
1542 if ( !$triggeringUser instanceof User ) {
1543 $triggeringUser = User::newFromIdentity( $triggeringUser );
1544 }
1545 $causeAction = $this->options['causeAction'] ?? 'unknown';
1546 $causeAgent = $this->options['causeAgent'] ?? 'unknown';
1547 $legacyRevision = new Revision( $this->revision );
1548
1549 if ( $options['defer'] === false && $options['transactionTicket'] !== null ) {
1550 // For legacy hook handlers doing updates via LinksUpdateConstructed, make sure
1551 // any pending writes they made get flushed before the doUpdate() calls below.
1552 // This avoids snapshot-clearing errors in LinksUpdate::acquirePageLock().
1553 $this->loadbalancerFactory->commitAndWaitForReplication(
1554 __METHOD__, $options['transactionTicket']
1555 );
1556 }
1557
1558 foreach ( $updates as $update ) {
1559 if ( $update instanceof DataUpdate ) {
1560 $update->setCause( $causeAction, $causeAgent );
1561 }
1562 if ( $update instanceof LinksUpdate ) {
1563 $update->setRevision( $legacyRevision );
1564 $update->setTriggeringUser( $triggeringUser );
1565 }
1566 if ( $options['defer'] === false ) {
1567 if ( $options['transactionTicket'] !== null ) {
1568 $update->setTransactionTicket( $options['transactionTicket'] );
1569 }
1570 $update->doUpdate();
1571 } else {
1572 DeferredUpdates::addUpdate( $update, $options['defer'] );
1573 }
1574 }
1575 }
1576
1577 public function doParserCacheUpdate() {
1578 $this->assertHasRevision( __METHOD__ );
1579
1580 $wikiPage = $this->getWikiPage(); // TODO: ParserCache should accept a RevisionRecord instead
1581
1582 // NOTE: this may trigger the first parsing of the new content after an edit (when not
1583 // using pre-generated stashed output).
1584 // XXX: we may want to use the PoolCounter here. This would perhaps allow the initial parse
1585 // to be performed post-send. The client could already follow a HTTP redirect to the
1586 // page view, but would then have to wait for a response until rendering is complete.
1587 $output = $this->getCanonicalParserOutput();
1588
1589 // Save it to the parser cache. Use the revision timestamp in the case of a
1590 // freshly saved edit, as that matches page_touched and a mismatch would trigger an
1591 // unnecessary reparse.
1592 $timestamp = $this->options['changed'] ? $this->revision->getTimestamp()
1593 : $output->getTimestamp();
1594 $this->parserCache->save(
1595 $output, $wikiPage, $this->getCanonicalParserOptions(),
1596 $timestamp, $this->revision->getId()
1597 );
1598 }
1599
1600 }