Merge "Actually enable the DBPerformance log in the API"
[lhc/web/wiklou.git] / includes / deferred / LinksDeletionUpdate.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 /**
23 * Update object handling the cleanup of links tables after a page was deleted.
24 **/
25 class LinksDeletionUpdate extends SqlDataUpdate implements EnqueueableDataUpdate {
26 /** @var WikiPage */
27 protected $page;
28 /** @var integer */
29 protected $pageId;
30 /** @var string */
31 protected $timestamp;
32
33 /**
34 * @param WikiPage $page Page we are updating
35 * @param integer|null $pageId ID of the page we are updating [optional]
36 * @param string|null $timestamp TS_MW timestamp of deletion
37 * @throws MWException
38 */
39 function __construct( WikiPage $page, $pageId = null, $timestamp = null ) {
40 parent::__construct( false ); // no implicit transaction
41
42 $this->page = $page;
43 if ( $pageId ) {
44 $this->pageId = $pageId; // page ID at time of deletion
45 } elseif ( $page->exists() ) {
46 $this->pageId = $page->getId();
47 } else {
48 throw new InvalidArgumentException( "Page ID not known. Page doesn't exist?" );
49 }
50
51 $this->timestamp = $timestamp ?: wfTimestampNow();
52 }
53
54 public function doUpdate() {
55 $config = RequestContext::getMain()->getConfig();
56 $batchSize = $config->get( 'UpdateRowsPerQuery' );
57 $factory = wfGetLBFactory();
58
59 // Page may already be deleted, so don't just getId()
60 $id = $this->pageId;
61 // Make sure all links update threads see the changes of each other.
62 // This handles the case when updates have to batched into several COMMITs.
63 $scopedLock = LinksUpdate::acquirePageLock( $this->mDb, $id );
64
65 $title = $this->page->getTitle();
66
67 // Delete restrictions for it
68 $this->mDb->delete( 'page_restrictions', [ 'pr_page' => $id ], __METHOD__ );
69
70 // Fix category table counts
71 $cats = $this->mDb->selectFieldValues(
72 'categorylinks',
73 'cl_to',
74 [ 'cl_from' => $id ],
75 __METHOD__
76 );
77 $catBatches = array_chunk( $cats, $batchSize );
78 foreach ( $catBatches as $catBatch ) {
79 $this->page->updateCategoryCounts( [], $catBatch, $id );
80 if ( count( $catBatches ) > 1 ) {
81 $factory->commitAndWaitForReplication(
82 __METHOD__, $this->ticket, [ 'wiki' => $this->mDb->getWikiID() ]
83 );
84 }
85 }
86
87 // Refresh the category table entry if it seems to have no pages. Check
88 // master for the most up-to-date cat_pages count.
89 if ( $title->getNamespace() === NS_CATEGORY ) {
90 $row = $this->mDb->selectRow(
91 'category',
92 [ 'cat_id', 'cat_title', 'cat_pages', 'cat_subcats', 'cat_files' ],
93 [ 'cat_title' => $title->getDBkey(), 'cat_pages <= 0' ],
94 __METHOD__
95 );
96 if ( $row ) {
97 $cat = Category::newFromRow( $row, $title )->refreshCounts();
98 }
99 }
100
101 // If using cascading deletes, we can skip some explicit deletes
102 if ( !$this->mDb->cascadingDeletes() ) {
103 // Delete outgoing links
104 $this->batchDeleteByPK(
105 'pagelinks',
106 [ 'pl_from' => $id ],
107 [ 'pl_from', 'pl_namespace', 'pl_title' ],
108 $batchSize
109 );
110 $this->batchDeleteByPK(
111 'imagelinks',
112 [ 'il_from' => $id ],
113 [ 'il_from', 'il_to' ],
114 $batchSize
115 );
116 $this->batchDeleteByPK(
117 'categorylinks',
118 [ 'cl_from' => $id ],
119 [ 'cl_from', 'cl_to' ],
120 $batchSize
121 );
122 $this->batchDeleteByPK(
123 'templatelinks',
124 [ 'tl_from' => $id ],
125 [ 'tl_from', 'tl_namespace', 'tl_title' ],
126 $batchSize
127 );
128 $this->batchDeleteByPK(
129 'externallinks',
130 [ 'el_from' => $id ],
131 [ 'el_id' ],
132 $batchSize
133 );
134 $this->batchDeleteByPK(
135 'langlinks',
136 [ 'll_from' => $id ],
137 [ 'll_from', 'll_lang' ],
138 $batchSize
139 );
140 $this->batchDeleteByPK(
141 'iwlinks',
142 [ 'iwl_from' => $id ],
143 [ 'iwl_from', 'iwl_prefix', 'iwl_title' ],
144 $batchSize
145 );
146 // Delete any redirect entry or page props entries
147 $this->mDb->delete( 'redirect', [ 'rd_from' => $id ], __METHOD__ );
148 $this->mDb->delete( 'page_props', [ 'pp_page' => $id ], __METHOD__ );
149 }
150
151 // If using cleanup triggers, we can skip some manual deletes
152 if ( !$this->mDb->cleanupTriggers() ) {
153 // Find recentchanges entries to clean up...
154 $rcIdsForTitle = $this->mDb->selectFieldValues(
155 'recentchanges',
156 'rc_id',
157 [
158 'rc_type != ' . RC_LOG,
159 'rc_namespace' => $title->getNamespace(),
160 'rc_title' => $title->getDBkey(),
161 'rc_timestamp < ' .
162 $this->mDb->addQuotes( $this->mDb->timestamp( $this->timestamp ) )
163 ],
164 __METHOD__
165 );
166 $rcIdsForPage = $this->mDb->selectFieldValues(
167 'recentchanges',
168 'rc_id',
169 [ 'rc_type != ' . RC_LOG, 'rc_cur_id' => $id ],
170 __METHOD__
171 );
172
173 // T98706: delete by PK to avoid lock contention with RC delete log insertions
174 $rcIdBatches = array_chunk( array_merge( $rcIdsForTitle, $rcIdsForPage ), $batchSize );
175 foreach ( $rcIdBatches as $rcIdBatch ) {
176 $this->mDb->delete( 'recentchanges', [ 'rc_id' => $rcIdBatch ], __METHOD__ );
177 if ( count( $rcIdBatches ) > 1 ) {
178 $factory->commitAndWaitForReplication(
179 __METHOD__, $this->ticket, [ 'wiki' => $this->mDb->getWikiID() ]
180 );
181 }
182 }
183 }
184
185 // Commit and release the lock
186 ScopedCallback::consume( $scopedLock );
187 }
188
189 private function batchDeleteByPK( $table, array $conds, array $pk, $bSize ) {
190 $dbw = $this->mDb; // convenience
191 $factory = wfGetLBFactory();
192 $res = $dbw->select( $table, $pk, $conds, __METHOD__ );
193
194 $pkDeleteConds = [];
195 foreach ( $res as $row ) {
196 $pkDeleteConds[] = $this->mDb->makeList( (array)$row, LIST_AND );
197 if ( count( $pkDeleteConds ) >= $bSize ) {
198 $dbw->delete( $table, $dbw->makeList( $pkDeleteConds, LIST_OR ), __METHOD__ );
199 $factory->commitAndWaitForReplication(
200 __METHOD__, $this->ticket, [ 'wiki' => $this->mDb->getWikiID() ]
201 );
202 $pkDeleteConds = [];
203 }
204 }
205
206 if ( $pkDeleteConds ) {
207 $dbw->delete( $table, $dbw->makeList( $pkDeleteConds, LIST_OR ), __METHOD__ );
208 }
209 }
210
211 public function getAsJobSpecification() {
212 return [
213 'wiki' => $this->mDb->getWikiID(),
214 'job' => new JobSpecification(
215 'deleteLinks',
216 [ 'pageId' => $this->pageId, 'timestamp' => $this->timestamp ],
217 [ 'removeDuplicates' => true ],
218 $this->page->getTitle()
219 )
220 ];
221 }
222 }