9275a7c7272cece73e82a16556a2810bde2f0880
[lhc/web/wiklou.git] / includes / api / ApiQueryDeletedRevisions.php
1 <?php
2 /**
3 * Copyright © 2014 Wikimedia Foundation and contributors
4 *
5 * Heavily based on ApiQueryDeletedrevs,
6 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 use MediaWiki\MediaWikiServices;
27 use MediaWiki\Revision\RevisionRecord;
28 use MediaWiki\Storage\NameTableAccessException;
29
30 /**
31 * Query module to enumerate deleted revisions for pages.
32 *
33 * @ingroup API
34 */
35 class ApiQueryDeletedRevisions extends ApiQueryRevisionsBase {
36
37 public function __construct( ApiQuery $query, $moduleName ) {
38 parent::__construct( $query, $moduleName, 'drv' );
39 }
40
41 protected function run( ApiPageSet $resultPageSet = null ) {
42 $user = $this->getUser();
43 // Before doing anything at all, let's check permissions
44 $this->checkUserRightsAny( 'deletedhistory' );
45
46 $pageSet = $this->getPageSet();
47 $pageMap = $pageSet->getGoodAndMissingTitlesByNamespace();
48 $pageCount = count( $pageSet->getGoodAndMissingTitles() );
49 $revCount = $pageSet->getRevisionCount();
50 if ( $revCount === 0 && $pageCount === 0 ) {
51 // Nothing to do
52 return;
53 }
54 if ( $revCount !== 0 && count( $pageSet->getDeletedRevisionIDs() ) === 0 ) {
55 // Nothing to do, revisions were supplied but none are deleted
56 return;
57 }
58
59 $params = $this->extractRequestParams( false );
60
61 $db = $this->getDB();
62 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
63
64 $this->requireMaxOneParameter( $params, 'user', 'excludeuser' );
65
66 if ( $resultPageSet === null ) {
67 $this->parseParameters( $params );
68 $arQuery = $revisionStore->getArchiveQueryInfo();
69 $this->addTables( $arQuery['tables'] );
70 $this->addFields( $arQuery['fields'] );
71 $this->addJoinConds( $arQuery['joins'] );
72 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
73 } else {
74 $this->limit = $this->getParameter( 'limit' ) ?: 10;
75 $this->addTables( 'archive' );
76 $this->addFields( [ 'ar_title', 'ar_namespace', 'ar_timestamp', 'ar_rev_id', 'ar_id' ] );
77 }
78
79 if ( $this->fld_tags ) {
80 $this->addFields( [ 'ts_tags' => ChangeTags::makeTagSummarySubquery( 'archive' ) ] );
81 }
82
83 if ( !is_null( $params['tag'] ) ) {
84 $this->addTables( 'change_tag' );
85 $this->addJoinConds(
86 [ 'change_tag' => [ 'INNER JOIN', [ 'ar_rev_id=ct_rev_id' ] ] ]
87 );
88 $changeTagDefStore = MediaWikiServices::getInstance()->getChangeTagDefStore();
89 try {
90 $this->addWhereFld( 'ct_tag_id', $changeTagDefStore->getId( $params['tag'] ) );
91 } catch ( NameTableAccessException $exception ) {
92 // Return nothing.
93 $this->addWhere( '1=0' );
94 }
95 }
96
97 if ( $this->fetchContent ) {
98 $this->addTables( 'text' );
99 $this->addJoinConds(
100 [ 'text' => [ 'LEFT JOIN', [ 'ar_text_id=old_id' ] ] ]
101 );
102 $this->addFields( [ 'old_text', 'old_flags' ] );
103
104 // This also means stricter restrictions
105 $this->checkUserRightsAny( [ 'deletedtext', 'undelete' ] );
106 }
107
108 $dir = $params['dir'];
109
110 if ( $revCount !== 0 ) {
111 $this->addWhere( [
112 'ar_rev_id' => array_keys( $pageSet->getDeletedRevisionIDs() )
113 ] );
114 } else {
115 // We need a custom WHERE clause that matches all titles.
116 $lb = new LinkBatch( $pageSet->getGoodAndMissingTitles() );
117 $where = $lb->constructSet( 'ar', $db );
118 $this->addWhere( $where );
119 }
120
121 if ( !is_null( $params['user'] ) ) {
122 // Don't query by user ID here, it might be able to use the ar_usertext_timestamp index.
123 $actorQuery = ActorMigration::newMigration()
124 ->getWhere( $db, 'ar_user', User::newFromName( $params['user'], false ), false );
125 $this->addTables( $actorQuery['tables'] );
126 $this->addJoinConds( $actorQuery['joins'] );
127 $this->addWhere( $actorQuery['conds'] );
128 } elseif ( !is_null( $params['excludeuser'] ) ) {
129 // Here there's no chance of using ar_usertext_timestamp.
130 $actorQuery = ActorMigration::newMigration()
131 ->getWhere( $db, 'ar_user', User::newFromName( $params['excludeuser'], false ) );
132 $this->addTables( $actorQuery['tables'] );
133 $this->addJoinConds( $actorQuery['joins'] );
134 $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
135 }
136
137 if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
138 // Paranoia: avoid brute force searches (T19342)
139 // (shouldn't be able to get here without 'deletedhistory', but
140 // check it again just in case)
141 if ( !$user->isAllowed( 'deletedhistory' ) ) {
142 $bitmask = RevisionRecord::DELETED_USER;
143 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
144 $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
145 } else {
146 $bitmask = 0;
147 }
148 if ( $bitmask ) {
149 $this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
150 }
151 }
152
153 if ( !is_null( $params['continue'] ) ) {
154 $cont = explode( '|', $params['continue'] );
155 $op = ( $dir == 'newer' ? '>' : '<' );
156 if ( $revCount !== 0 ) {
157 $this->dieContinueUsageIf( count( $cont ) != 2 );
158 $rev = intval( $cont[0] );
159 $this->dieContinueUsageIf( strval( $rev ) !== $cont[0] );
160 $ar_id = (int)$cont[1];
161 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[1] );
162 $this->addWhere( "ar_rev_id $op $rev OR " .
163 "(ar_rev_id = $rev AND " .
164 "ar_id $op= $ar_id)" );
165 } else {
166 $this->dieContinueUsageIf( count( $cont ) != 4 );
167 $ns = intval( $cont[0] );
168 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
169 $title = $db->addQuotes( $cont[1] );
170 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
171 $ar_id = (int)$cont[3];
172 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[3] );
173 $this->addWhere( "ar_namespace $op $ns OR " .
174 "(ar_namespace = $ns AND " .
175 "(ar_title $op $title OR " .
176 "(ar_title = $title AND " .
177 "(ar_timestamp $op $ts OR " .
178 "(ar_timestamp = $ts AND " .
179 "ar_id $op= $ar_id)))))" );
180 }
181 }
182
183 $this->addOption( 'LIMIT', $this->limit + 1 );
184
185 if ( $revCount !== 0 ) {
186 // Sort by ar_rev_id when querying by ar_rev_id
187 $this->addWhereRange( 'ar_rev_id', $dir, null, null );
188 } else {
189 // Sort by ns and title in the same order as timestamp for efficiency
190 // But only when not already unique in the query
191 if ( count( $pageMap ) > 1 ) {
192 $this->addWhereRange( 'ar_namespace', $dir, null, null );
193 }
194 $oneTitle = key( reset( $pageMap ) );
195 foreach ( $pageMap as $pages ) {
196 if ( count( $pages ) > 1 || key( $pages ) !== $oneTitle ) {
197 $this->addWhereRange( 'ar_title', $dir, null, null );
198 break;
199 }
200 }
201 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
202 }
203 // Include in ORDER BY for uniqueness
204 $this->addWhereRange( 'ar_id', $dir, null, null );
205
206 $res = $this->select( __METHOD__ );
207 $count = 0;
208 $generated = [];
209 foreach ( $res as $row ) {
210 if ( ++$count > $this->limit ) {
211 // We've had enough
212 $this->setContinueEnumParameter( 'continue',
213 $revCount
214 ? "$row->ar_rev_id|$row->ar_id"
215 : "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
216 );
217 break;
218 }
219
220 if ( $resultPageSet !== null ) {
221 $generated[] = $row->ar_rev_id;
222 } else {
223 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
224 // Was it converted?
225 $title = Title::makeTitle( $row->ar_namespace, $row->ar_title );
226 $converted = $pageSet->getConvertedTitles();
227 if ( $title && isset( $converted[$title->getPrefixedText()] ) ) {
228 $title = Title::newFromText( $converted[$title->getPrefixedText()] );
229 if ( $title && isset( $pageMap[$title->getNamespace()][$title->getDBkey()] ) ) {
230 $pageMap[$row->ar_namespace][$row->ar_title] =
231 $pageMap[$title->getNamespace()][$title->getDBkey()];
232 }
233 }
234 }
235 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
236 ApiBase::dieDebug(
237 __METHOD__,
238 "Found row in archive (ar_id={$row->ar_id}) that didn't get processed by ApiPageSet"
239 );
240 }
241
242 $fit = $this->addPageSubItem(
243 $pageMap[$row->ar_namespace][$row->ar_title],
244 $this->extractRevisionInfo( $revisionStore->newRevisionFromArchiveRow( $row ), $row ),
245 'rev'
246 );
247 if ( !$fit ) {
248 $this->setContinueEnumParameter( 'continue',
249 $revCount
250 ? "$row->ar_rev_id|$row->ar_id"
251 : "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
252 );
253 break;
254 }
255 }
256 }
257
258 if ( $resultPageSet !== null ) {
259 $resultPageSet->populateFromRevisionIDs( $generated );
260 }
261 }
262
263 public function getAllowedParams() {
264 return parent::getAllowedParams() + [
265 'start' => [
266 ApiBase::PARAM_TYPE => 'timestamp',
267 ],
268 'end' => [
269 ApiBase::PARAM_TYPE => 'timestamp',
270 ],
271 'dir' => [
272 ApiBase::PARAM_TYPE => [
273 'newer',
274 'older'
275 ],
276 ApiBase::PARAM_DFLT => 'older',
277 ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
278 ],
279 'tag' => null,
280 'user' => [
281 ApiBase::PARAM_TYPE => 'user'
282 ],
283 'excludeuser' => [
284 ApiBase::PARAM_TYPE => 'user'
285 ],
286 'continue' => [
287 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
288 ],
289 ];
290 }
291
292 protected function getExamplesMessages() {
293 return [
294 'action=query&prop=deletedrevisions&titles=Main%20Page|Talk:Main%20Page&' .
295 'drvslots=*&drvprop=user|comment|content'
296 => 'apihelp-query+deletedrevisions-example-titles',
297 'action=query&prop=deletedrevisions&revids=123456'
298 => 'apihelp-query+deletedrevisions-example-revids',
299 ];
300 }
301
302 public function getHelpUrls() {
303 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Deletedrevisions';
304 }
305 }