Replace selectFields() methods with getQueryInfo()
[lhc/web/wiklou.git] / includes / jobqueue / jobs / CategoryMembershipChangeJob.php
1 <?php
2 /**
3 * Updater for link tracking tables after a page edit.
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 use MediaWiki\MediaWikiServices;
23 use Wikimedia\Rdbms\LBFactory;
24
25 /**
26 * Job to add recent change entries mentioning category membership changes
27 *
28 * Parameters include:
29 * - pageId : page ID
30 * - revTimestamp : timestamp of the triggering revision
31 *
32 * Category changes will be mentioned for revisions at/after the timestamp for this page
33 *
34 * @since 1.27
35 */
36 class CategoryMembershipChangeJob extends Job {
37 /** @var int|null */
38 private $ticket;
39
40 const ENQUEUE_FUDGE_SEC = 60;
41
42 public function __construct( Title $title, array $params ) {
43 parent::__construct( 'categoryMembershipChange', $title, $params );
44 // Only need one job per page. Note that ENQUEUE_FUDGE_SEC handles races where an
45 // older revision job gets inserted while the newer revision job is de-duplicated.
46 $this->removeDuplicates = true;
47 }
48
49 public function run() {
50 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
51 $lb = $lbFactory->getMainLB();
52 $dbw = $lb->getConnection( DB_MASTER );
53
54 $this->ticket = $lbFactory->getEmptyTransactionTicket( __METHOD__ );
55
56 $page = WikiPage::newFromID( $this->params['pageId'], WikiPage::READ_LATEST );
57 if ( !$page ) {
58 $this->setLastError( "Could not find page #{$this->params['pageId']}" );
59 return false; // deleted?
60 }
61
62 // Use a named lock so that jobs for this page see each others' changes
63 $lockKey = "CategoryMembershipUpdates:{$page->getId()}";
64 $scopedLock = $dbw->getScopedLockAndFlush( $lockKey, __METHOD__, 3 );
65 if ( !$scopedLock ) {
66 $this->setLastError( "Could not acquire lock '$lockKey'" );
67 return false;
68 }
69
70 $dbr = $lb->getConnection( DB_REPLICA, [ 'recentchanges' ] );
71 // Wait till the replica DB is caught up so that jobs for this page see each others' changes
72 if ( !$lb->safeWaitForMasterPos( $dbr ) ) {
73 $this->setLastError( "Timed out while waiting for replica DB to catch up" );
74 return false;
75 }
76 // Clear any stale REPEATABLE-READ snapshot
77 $dbr->flushSnapshot( __METHOD__ );
78
79 $cutoffUnix = wfTimestamp( TS_UNIX, $this->params['revTimestamp'] );
80 // Using ENQUEUE_FUDGE_SEC handles jobs inserted out of revision order due to the delay
81 // between COMMIT and actual enqueueing of the CategoryMembershipChangeJob job.
82 $cutoffUnix -= self::ENQUEUE_FUDGE_SEC;
83
84 // Get the newest revision that has a SRC_CATEGORIZE row...
85 $row = $dbr->selectRow(
86 [ 'revision', 'recentchanges' ],
87 [ 'rev_timestamp', 'rev_id' ],
88 [
89 'rev_page' => $page->getId(),
90 'rev_timestamp >= ' . $dbr->addQuotes( $dbr->timestamp( $cutoffUnix ) )
91 ],
92 __METHOD__,
93 [ 'ORDER BY' => 'rev_timestamp DESC, rev_id DESC' ],
94 [
95 'recentchanges' => [
96 'INNER JOIN',
97 [
98 'rc_this_oldid = rev_id',
99 'rc_source' => RecentChange::SRC_CATEGORIZE,
100 // Allow rc_cur_id or rc_timestamp index usage
101 'rc_cur_id = rev_page',
102 'rc_timestamp >= rev_timestamp'
103 ]
104 ]
105 ]
106 );
107 // Only consider revisions newer than any such revision
108 if ( $row ) {
109 $cutoffUnix = wfTimestamp( TS_UNIX, $row->rev_timestamp );
110 $lastRevId = (int)$row->rev_id;
111 } else {
112 $lastRevId = 0;
113 }
114
115 // Find revisions to this page made around and after this revision which lack category
116 // notifications in recent changes. This lets jobs pick up were the last one left off.
117 $encCutoff = $dbr->addQuotes( $dbr->timestamp( $cutoffUnix ) );
118 $revQuery = Revision::getQueryInfo();
119 $res = $dbr->select(
120 $revQuery['tables'],
121 $revQuery['fields'],
122 [
123 'rev_page' => $page->getId(),
124 "rev_timestamp > $encCutoff" .
125 " OR (rev_timestamp = $encCutoff AND rev_id > $lastRevId)"
126 ],
127 __METHOD__,
128 [ 'ORDER BY' => 'rev_timestamp ASC, rev_id ASC' ],
129 $revQuery['joins']
130 );
131
132 // Apply all category updates in revision timestamp order
133 foreach ( $res as $row ) {
134 $this->notifyUpdatesForRevision( $lbFactory, $page, Revision::newFromRow( $row ) );
135 }
136
137 return true;
138 }
139
140 /**
141 * @param LBFactory $lbFactory
142 * @param WikiPage $page
143 * @param Revision $newRev
144 * @throws MWException
145 */
146 protected function notifyUpdatesForRevision(
147 LBFactory $lbFactory, WikiPage $page, Revision $newRev
148 ) {
149 $config = RequestContext::getMain()->getConfig();
150 $title = $page->getTitle();
151
152 // Get the new revision
153 if ( !$newRev->getContent() ) {
154 return; // deleted?
155 }
156
157 // Get the prior revision (the same for null edits)
158 if ( $newRev->getParentId() ) {
159 $oldRev = Revision::newFromId( $newRev->getParentId(), Revision::READ_LATEST );
160 if ( !$oldRev->getContent() ) {
161 return; // deleted?
162 }
163 } else {
164 $oldRev = null;
165 }
166
167 // Parse the new revision and get the categories
168 $categoryChanges = $this->getExplicitCategoriesChanges( $title, $newRev, $oldRev );
169 list( $categoryInserts, $categoryDeletes ) = $categoryChanges;
170 if ( !$categoryInserts && !$categoryDeletes ) {
171 return; // nothing to do
172 }
173
174 $catMembChange = new CategoryMembershipChange( $title, $newRev );
175 $catMembChange->checkTemplateLinks();
176
177 $batchSize = $config->get( 'UpdateRowsPerQuery' );
178 $insertCount = 0;
179
180 foreach ( $categoryInserts as $categoryName ) {
181 $categoryTitle = Title::makeTitle( NS_CATEGORY, $categoryName );
182 $catMembChange->triggerCategoryAddedNotification( $categoryTitle );
183 if ( $insertCount++ && ( $insertCount % $batchSize ) == 0 ) {
184 $lbFactory->commitAndWaitForReplication( __METHOD__, $this->ticket );
185 }
186 }
187
188 foreach ( $categoryDeletes as $categoryName ) {
189 $categoryTitle = Title::makeTitle( NS_CATEGORY, $categoryName );
190 $catMembChange->triggerCategoryRemovedNotification( $categoryTitle );
191 if ( $insertCount++ && ( $insertCount++ % $batchSize ) == 0 ) {
192 $lbFactory->commitAndWaitForReplication( __METHOD__, $this->ticket );
193 }
194 }
195 }
196
197 private function getExplicitCategoriesChanges(
198 Title $title, Revision $newRev, Revision $oldRev = null
199 ) {
200 // Inject the same timestamp for both revision parses to avoid seeing category changes
201 // due to time-based parser functions. Inject the same page title for the parses too.
202 // Note that REPEATABLE-READ makes template/file pages appear unchanged between parses.
203 $parseTimestamp = $newRev->getTimestamp();
204 // Parse the old rev and get the categories. Do not use link tables as that
205 // assumes these updates are perfectly FIFO and that link tables are always
206 // up to date, neither of which are true.
207 $oldCategories = $oldRev
208 ? $this->getCategoriesAtRev( $title, $oldRev, $parseTimestamp )
209 : [];
210 // Parse the new revision and get the categories
211 $newCategories = $this->getCategoriesAtRev( $title, $newRev, $parseTimestamp );
212
213 $categoryInserts = array_values( array_diff( $newCategories, $oldCategories ) );
214 $categoryDeletes = array_values( array_diff( $oldCategories, $newCategories ) );
215
216 return [ $categoryInserts, $categoryDeletes ];
217 }
218
219 /**
220 * @param Title $title
221 * @param Revision $rev
222 * @param string $parseTimestamp TS_MW
223 *
224 * @return string[] category names
225 */
226 private function getCategoriesAtRev( Title $title, Revision $rev, $parseTimestamp ) {
227 $content = $rev->getContent();
228 $options = $content->getContentHandler()->makeParserOptions( 'canonical' );
229 $options->setTimestamp( $parseTimestamp );
230 // This could possibly use the parser cache if it checked the revision ID,
231 // but that's more complicated than it's worth.
232 $output = $content->getParserOutput( $title, $rev->getId(), $options );
233
234 // array keys will cast numeric category names to ints
235 // so we need to cast them back to strings to avoid breaking things!
236 return array_map( 'strval', array_keys( $output->getCategories() ) );
237 }
238
239 public function getDeduplicationInfo() {
240 $info = parent::getDeduplicationInfo();
241 unset( $info['params']['revTimestamp'] ); // first job wins
242
243 return $info;
244 }
245 }