3 * Updater for link tracking tables after a page edit.
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
22 use MediaWiki\MediaWikiServices
;
23 use Wikimedia\ScopedCallback
;
26 * Update object handling the cleanup of links tables after a page was deleted.
28 class LinksDeletionUpdate
extends DataUpdate
implements EnqueueableDataUpdate
{
40 * @param WikiPage $page Page we are updating
41 * @param integer|null $pageId ID of the page we are updating [optional]
42 * @param string|null $timestamp TS_MW timestamp of deletion
45 function __construct( WikiPage
$page, $pageId = null, $timestamp = null ) {
46 parent
::__construct();
50 $this->pageId
= $pageId; // page ID at time of deletion
51 } elseif ( $page->exists() ) {
52 $this->pageId
= $page->getId();
54 throw new InvalidArgumentException( "Page ID not known. Page doesn't exist?" );
57 $this->timestamp
= $timestamp ?
: wfTimestampNow();
60 public function doUpdate() {
61 $services = MediaWikiServices
::getInstance();
62 $config = $services->getMainConfig();
63 $lbFactory = $services->getDBLoadBalancerFactory();
64 $batchSize = $config->get( 'UpdateRowsPerQuery' );
66 // Page may already be deleted, so don't just getId()
69 if ( $this->ticket
) {
70 // Make sure all links update threads see the changes of each other.
71 // This handles the case when updates have to batched into several COMMITs.
72 $scopedLock = LinksUpdate
::acquirePageLock( $this->getDB(), $id );
75 $title = $this->page
->getTitle();
76 $dbw = $this->getDB(); // convenience
78 // Delete restrictions for it
79 $dbw->delete( 'page_restrictions', [ 'pr_page' => $id ], __METHOD__
);
81 // Fix category table counts
82 $cats = $dbw->selectFieldValues(
88 $catBatches = array_chunk( $cats, $batchSize );
89 foreach ( $catBatches as $catBatch ) {
90 $this->page
->updateCategoryCounts( [], $catBatch, $id );
91 if ( count( $catBatches ) > 1 ) {
92 $lbFactory->commitAndWaitForReplication(
93 __METHOD__
, $this->ticket
, [ 'wiki' => $dbw->getWikiID() ]
98 // Refresh the category table entry if it seems to have no pages. Check
99 // master for the most up-to-date cat_pages count.
100 if ( $title->getNamespace() === NS_CATEGORY
) {
101 $row = $dbw->selectRow(
103 [ 'cat_id', 'cat_title', 'cat_pages', 'cat_subcats', 'cat_files' ],
104 [ 'cat_title' => $title->getDBkey(), 'cat_pages <= 0' ],
108 Category
::newFromRow( $row, $title )->refreshCounts();
112 $this->batchDeleteByPK(
114 [ 'pl_from' => $id ],
115 [ 'pl_from', 'pl_namespace', 'pl_title' ],
118 $this->batchDeleteByPK(
120 [ 'il_from' => $id ],
121 [ 'il_from', 'il_to' ],
124 $this->batchDeleteByPK(
126 [ 'cl_from' => $id ],
127 [ 'cl_from', 'cl_to' ],
130 $this->batchDeleteByPK(
132 [ 'tl_from' => $id ],
133 [ 'tl_from', 'tl_namespace', 'tl_title' ],
136 $this->batchDeleteByPK(
138 [ 'el_from' => $id ],
142 $this->batchDeleteByPK(
144 [ 'll_from' => $id ],
145 [ 'll_from', 'll_lang' ],
148 $this->batchDeleteByPK(
150 [ 'iwl_from' => $id ],
151 [ 'iwl_from', 'iwl_prefix', 'iwl_title' ],
155 // Delete any redirect entry or page props entries
156 $dbw->delete( 'redirect', [ 'rd_from' => $id ], __METHOD__
);
157 $dbw->delete( 'page_props', [ 'pp_page' => $id ], __METHOD__
);
159 // Find recentchanges entries to clean up...
160 $rcIdsForTitle = $dbw->selectFieldValues(
164 'rc_type != ' . RC_LOG
,
165 'rc_namespace' => $title->getNamespace(),
166 'rc_title' => $title->getDBkey(),
168 $dbw->addQuotes( $dbw->timestamp( $this->timestamp
) )
172 $rcIdsForPage = $dbw->selectFieldValues(
175 [ 'rc_type != ' . RC_LOG
, 'rc_cur_id' => $id ],
179 // T98706: delete by PK to avoid lock contention with RC delete log insertions
180 $rcIdBatches = array_chunk( array_merge( $rcIdsForTitle, $rcIdsForPage ), $batchSize );
181 foreach ( $rcIdBatches as $rcIdBatch ) {
182 $dbw->delete( 'recentchanges', [ 'rc_id' => $rcIdBatch ], __METHOD__
);
183 if ( count( $rcIdBatches ) > 1 ) {
184 $lbFactory->commitAndWaitForReplication(
185 __METHOD__
, $this->ticket
, [ 'wiki' => $dbw->getWikiID() ]
190 // Commit and release the lock (if set)
191 ScopedCallback
::consume( $scopedLock );
194 private function batchDeleteByPK( $table, array $conds, array $pk, $bSize ) {
195 $services = MediaWikiServices
::getInstance();
196 $lbFactory = $services->getDBLoadBalancerFactory();
197 $dbw = $this->getDB(); // convenience
199 $res = $dbw->select( $table, $pk, $conds, __METHOD__
);
202 foreach ( $res as $row ) {
203 $pkDeleteConds[] = $dbw->makeList( (array)$row, LIST_AND
);
204 if ( count( $pkDeleteConds ) >= $bSize ) {
205 $dbw->delete( $table, $dbw->makeList( $pkDeleteConds, LIST_OR
), __METHOD__
);
206 $lbFactory->commitAndWaitForReplication(
207 __METHOD__
, $this->ticket
, [ 'wiki' => $dbw->getWikiID() ]
213 if ( $pkDeleteConds ) {
214 $dbw->delete( $table, $dbw->makeList( $pkDeleteConds, LIST_OR
), __METHOD__
);
218 protected function getDB() {
220 $this->db
= wfGetDB( DB_MASTER
);
226 public function getAsJobSpecification() {
228 'wiki' => $this->getDB()->getWikiID(),
229 'job' => new JobSpecification(
231 [ 'pageId' => $this->pageId
, 'timestamp' => $this->timestamp
],
232 [ 'removeDuplicates' => true ],
233 $this->page
->getTitle()