MediaWiki  1.27.2
CategoryMembershipChangeJob.php
Go to the documentation of this file.
1 <?php
35  const ENQUEUE_FUDGE_SEC = 60;
36 
37  public function __construct( Title $title, array $params ) {
38  parent::__construct( 'categoryMembershipChange', $title, $params );
39  // Only need one job per page. Note that ENQUEUE_FUDGE_SEC handles races where an
40  // older revision job gets inserted while the newer revision job is de-duplicated.
41  $this->removeDuplicates = true;
42  }
43 
44  public function run() {
45  $page = WikiPage::newFromID( $this->params['pageId'], WikiPage::READ_LATEST );
46  if ( !$page ) {
47  $this->setLastError( "Could not find page #{$this->params['pageId']}" );
48  return false; // deleted?
49  }
50 
51  $dbw = wfGetDB( DB_MASTER );
52  // Use a named lock so that jobs for this page see each others' changes
53  $lockKey = "CategoryMembershipUpdates:{$page->getId()}";
54  $scopedLock = $dbw->getScopedLockAndFlush( $lockKey, __METHOD__, 10 );
55  if ( !$scopedLock ) {
56  $this->setLastError( "Could not acquire lock '$lockKey'" );
57  return false;
58  }
59 
60  $dbr = wfGetDB( DB_SLAVE, [ 'recentchanges' ] );
61  // Wait till the slave is caught up so that jobs for this page see each others' changes
62  if ( !wfGetLB()->safeWaitForMasterPos( $dbr ) ) {
63  $this->setLastError( "Timed out while waiting for slave to catch up" );
64  return false;
65  }
66  // Clear any stale REPEATABLE-READ snapshot
67  $dbr->commit( __METHOD__, 'flush' );
68 
69  $cutoffUnix = wfTimestamp( TS_UNIX, $this->params['revTimestamp'] );
70  // Using ENQUEUE_FUDGE_SEC handles jobs inserted out of revision order due to the delay
71  // between COMMIT and actual enqueueing of the CategoryMembershipChangeJob job.
72  $cutoffUnix -= self::ENQUEUE_FUDGE_SEC;
73 
74  // Get the newest revision that has a SRC_CATEGORIZE row...
75  $row = $dbr->selectRow(
76  [ 'revision', 'recentchanges' ],
77  [ 'rev_timestamp', 'rev_id' ],
78  [
79  'rev_page' => $page->getId(),
80  'rev_timestamp >= ' . $dbr->addQuotes( $dbr->timestamp( $cutoffUnix ) )
81  ],
82  __METHOD__,
83  [ 'ORDER BY' => 'rev_timestamp DESC, rev_id DESC' ],
84  [
85  'recentchanges' => [
86  'INNER JOIN',
87  [
88  'rc_this_oldid = rev_id',
89  'rc_source' => RecentChange::SRC_CATEGORIZE,
90  // Allow rc_cur_id or rc_timestamp index usage
91  'rc_cur_id = rev_page',
92  'rc_timestamp >= rev_timestamp'
93  ]
94  ]
95  ]
96  );
97  // Only consider revisions newer than any such revision
98  if ( $row ) {
99  $cutoffUnix = wfTimestamp( TS_UNIX, $row->rev_timestamp );
100  $lastRevId = (int)$row->rev_id;
101  } else {
102  $lastRevId = 0;
103  }
104 
105  // Find revisions to this page made around and after this revision which lack category
106  // notifications in recent changes. This lets jobs pick up were the last one left off.
107  $encCutoff = $dbr->addQuotes( $dbr->timestamp( $cutoffUnix ) );
108  $res = $dbr->select(
109  'revision',
111  [
112  'rev_page' => $page->getId(),
113  "rev_timestamp > $encCutoff" .
114  " OR (rev_timestamp = $encCutoff AND rev_id > $lastRevId)"
115  ],
116  __METHOD__,
117  [ 'ORDER BY' => 'rev_timestamp ASC, rev_id ASC' ]
118  );
119 
120  // Apply all category updates in revision timestamp order
121  foreach ( $res as $row ) {
123  }
124 
125  return true;
126  }
127 
133  protected function notifyUpdatesForRevision( WikiPage $page, Revision $newRev ) {
134  $config = RequestContext::getMain()->getConfig();
135  $title = $page->getTitle();
136 
137  // Get the new revision
138  if ( !$newRev->getContent() ) {
139  return; // deleted?
140  }
141 
142  // Get the prior revision (the same for null edits)
143  if ( $newRev->getParentId() ) {
144  $oldRev = Revision::newFromId( $newRev->getParentId(), Revision::READ_LATEST );
145  if ( !$oldRev->getContent() ) {
146  return; // deleted?
147  }
148  } else {
149  $oldRev = null;
150  }
151 
152  // Parse the new revision and get the categories
153  $categoryChanges = $this->getExplicitCategoriesChanges( $title, $newRev, $oldRev );
154  list( $categoryInserts, $categoryDeletes ) = $categoryChanges;
155  if ( !$categoryInserts && !$categoryDeletes ) {
156  return; // nothing to do
157  }
158 
159  $dbw = wfGetDB( DB_MASTER );
160  $catMembChange = new CategoryMembershipChange( $title, $newRev );
161  $catMembChange->checkTemplateLinks();
162 
163  $batchSize = $config->get( 'UpdateRowsPerQuery' );
164  $insertCount = 0;
165 
166  foreach ( $categoryInserts as $categoryName ) {
167  $categoryTitle = Title::makeTitle( NS_CATEGORY, $categoryName );
168  $catMembChange->triggerCategoryAddedNotification( $categoryTitle );
169  if ( $insertCount++ && ( $insertCount % $batchSize ) == 0 ) {
170  $dbw->commit( __METHOD__, 'flush' );
171  wfGetLBFactory()->waitForReplication();
172  }
173  }
174 
175  foreach ( $categoryDeletes as $categoryName ) {
176  $categoryTitle = Title::makeTitle( NS_CATEGORY, $categoryName );
177  $catMembChange->triggerCategoryRemovedNotification( $categoryTitle );
178  if ( $insertCount++ && ( $insertCount++ % $batchSize ) == 0 ) {
179  $dbw->commit( __METHOD__, 'flush' );
180  wfGetLBFactory()->waitForReplication();
181  }
182  }
183  }
184 
186  Title $title, Revision $newRev, Revision $oldRev = null
187  ) {
188  // Inject the same timestamp for both revision parses to avoid seeing category changes
189  // due to time-based parser functions. Inject the same page title for the parses too.
190  // Note that REPEATABLE-READ makes template/file pages appear unchanged between parses.
191  $parseTimestamp = $newRev->getTimestamp();
192  // Parse the old rev and get the categories. Do not use link tables as that
193  // assumes these updates are perfectly FIFO and that link tables are always
194  // up to date, neither of which are true.
195  $oldCategories = $oldRev
196  ? $this->getCategoriesAtRev( $title, $oldRev, $parseTimestamp )
197  : [];
198  // Parse the new revision and get the categories
199  $newCategories = $this->getCategoriesAtRev( $title, $newRev, $parseTimestamp );
200 
201  $categoryInserts = array_values( array_diff( $newCategories, $oldCategories ) );
202  $categoryDeletes = array_values( array_diff( $oldCategories, $newCategories ) );
203 
204  return [ $categoryInserts, $categoryDeletes ];
205  }
206 
214  private function getCategoriesAtRev( Title $title, Revision $rev, $parseTimestamp ) {
215  $content = $rev->getContent();
216  $options = $content->getContentHandler()->makeParserOptions( 'canonical' );
217  $options->setTimestamp( $parseTimestamp );
218  // This could possibly use the parser cache if it checked the revision ID,
219  // but that's more complicated than it's worth.
220  $output = $content->getParserOutput( $title, $rev->getId(), $options );
221 
222  // array keys will cast numeric category names to ints
223  // so we need to cast them back to strings to avoid breaking things!
224  return array_map( 'strval', array_keys( $output->getCategories() ) );
225  }
226 
227  public function getDeduplicationInfo() {
228  $info = parent::getDeduplicationInfo();
229  unset( $info['params']['revTimestamp'] ); // first job wins
230 
231  return $info;
232  }
233 }
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
the array() calling protocol came about after MediaWiki 1.4rc1.
const SRC_CATEGORIZE
__construct(Title $title, array $params)
getTimestamp()
Definition: Revision.php:1152
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
Class to both describe a background job and handle jobs.
Definition: Job.php:31
notifyUpdatesForRevision(WikiPage $page, Revision $newRev)
Represents a title within MediaWiki.
Definition: Title.php:34
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
wfGetLB($wiki=false)
Get a load balancer object.
static getMain()
Static methods.
getParentId()
Get parent revision ID (the original previous page revision)
Definition: Revision.php:744
getId()
Get revision ID.
Definition: Revision.php:716
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1004
$res
Definition: database.txt:21
getCategoriesAtRev(Title $title, Revision $rev, $parseTimestamp)
getTitle()
Get the title object of the article.
Definition: WikiPage.php:217
const NS_CATEGORY
Definition: Defines.php:83
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
Definition: Revision.php:429
getExplicitCategoriesChanges(Title $title, Revision $newRev, Revision $oldRev=null)
const DB_SLAVE
Definition: Defines.php:46
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition: hooks.txt:1584
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1004
Class representing a MediaWiki article and history.
Definition: WikiPage.php:29
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
Definition: Revision.php:99
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
wfGetLBFactory()
Get the load balancer factory object.
Job to add recent change entries mentioning category membership changes.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
Definition: hooks.txt:1004
setLastError($error)
Definition: Job.php:391
getContent($audience=self::FOR_PUBLIC, User $user=null)
Fetch revision content if it's available to the specified audience.
Definition: Revision.php:1029
static newFromRow($row)
Definition: Revision.php:219
static newFromID($id, $from= 'fromdb')
Constructor from a page id.
Definition: WikiPage.php:132
array $params
Array of job parameters.
Definition: Job.php:36
const DB_MASTER
Definition: Defines.php:47
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
Title $title
Definition: Job.php:42
static & makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:524
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2338