42 parent::__construct(
'categoryMembershipChange', $title, $params );
45 $this->removeDuplicates =
true;
48 public function run() {
49 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
53 $this->ticket =
$lbFactory->getEmptyTransactionTicket( __METHOD__ );
57 $this->
setLastError(
"Could not find page #{$this->params['pageId']}" );
62 $lockKey =
"CategoryMembershipUpdates:{$page->getId()}";
63 $scopedLock = $dbw->getScopedLockAndFlush( $lockKey, __METHOD__, 3 );
65 $this->
setLastError(
"Could not acquire lock '$lockKey'" );
71 if ( !$lb->safeWaitForMasterPos(
$dbr ) ) {
72 $this->
setLastError(
"Timed out while waiting for replica DB to catch up" );
76 $dbr->flushSnapshot( __METHOD__ );
81 $cutoffUnix -= self::ENQUEUE_FUDGE_SEC;
84 $row =
$dbr->selectRow(
85 [
'revision',
'recentchanges' ],
86 [
'rev_timestamp',
'rev_id' ],
88 'rev_page' =>
$page->getId(),
89 'rev_timestamp >= ' .
$dbr->addQuotes(
$dbr->timestamp( $cutoffUnix ) )
92 [
'ORDER BY' =>
'rev_timestamp DESC, rev_id DESC' ],
97 'rc_this_oldid = rev_id',
100 'rc_cur_id = rev_page',
101 'rc_timestamp >= rev_timestamp'
109 $lastRevId = (int)$row->rev_id;
116 $encCutoff =
$dbr->addQuotes(
$dbr->timestamp( $cutoffUnix ) );
121 'rev_page' =>
$page->getId(),
122 "rev_timestamp > $encCutoff" .
123 " OR (rev_timestamp = $encCutoff AND rev_id > $lastRevId)"
126 [
'ORDER BY' =>
'rev_timestamp ASC, rev_id ASC' ]
130 foreach (
$res as $row ) {
157 if ( !$oldRev->getContent() ) {
166 list( $categoryInserts, $categoryDeletes ) = $categoryChanges;
167 if ( !$categoryInserts && !$categoryDeletes ) {
172 $catMembChange->checkTemplateLinks();
174 $batchSize = $config->get(
'UpdateRowsPerQuery' );
177 foreach ( $categoryInserts
as $categoryName ) {
179 $catMembChange->triggerCategoryAddedNotification( $categoryTitle );
180 if ( $insertCount++ && ( $insertCount % $batchSize ) == 0 ) {
185 foreach ( $categoryDeletes
as $categoryName ) {
187 $catMembChange->triggerCategoryRemovedNotification( $categoryTitle );
188 if ( $insertCount++ && ( $insertCount++ % $batchSize ) == 0 ) {
204 $oldCategories = $oldRev
210 $categoryInserts = array_values( array_diff( $newCategories, $oldCategories ) );
211 $categoryDeletes = array_values( array_diff( $oldCategories, $newCategories ) );
213 return [ $categoryInserts, $categoryDeletes ];
226 $options->setTimestamp( $parseTimestamp );
237 $info = parent::getDeduplicationInfo();
238 unset( $info[
'params'][
'revTimestamp'] );
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
the array() calling protocol came about after MediaWiki 1.4rc1.
__construct(Title $title, array $params)
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
notifyUpdatesForRevision(LBFactory $lbFactory, WikiPage $page, Revision $newRev)
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
Class to both describe a background job and handle jobs.
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 MediaWikiServices
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static getMain()
Static methods.
getParentId()
Get parent revision ID (the original previous page revision)
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
getCategoriesAtRev(Title $title, Revision $rev, $parseTimestamp)
getTitle()
Get the title object of the article.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
getExplicitCategoriesChanges(Title $title, Revision $newRev, Revision $oldRev=null)
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
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
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
Class representing a MediaWiki article and history.
static newFromId($id, $flags=0)
Load a page revision from a given revision ID number.
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
commitAndWaitForReplication($fname, $ticket, array $opts=[])
Convenience method for safely running commitMasterChanges()/waitForReplication()
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
getContent($audience=self::FOR_PUBLIC, User $user=null)
Fetch revision content if it's available to the specified audience.
static newFromID($id, $from= 'fromdb')
Constructor from a page id.
array $params
Array of job parameters.
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
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