Merge "Adding temp file/dir management to MediaWikiTestCase"
[lhc/web/wiklou.git] / includes / api / ApiQueryDeletedrevs.php
1 <?php
2 /**
3 *
4 *
5 * Created on Jul 2, 2007
6 *
7 * Copyright © 2007 Roan Kattouw <Firstname>.<Lastname>@gmail.com
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * Query module to enumerate all deleted revisions.
29 *
30 * @ingroup API
31 */
32 class ApiQueryDeletedrevs extends ApiQueryBase {
33
34 public function __construct( $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'dr' );
36 }
37
38 public function execute() {
39 $user = $this->getUser();
40 // Before doing anything at all, let's check permissions
41 if ( !$user->isAllowed( 'deletedhistory' ) ) {
42 $this->dieUsage( 'You don\'t have permission to view deleted revision information', 'permissiondenied' );
43 }
44
45 $db = $this->getDB();
46 $params = $this->extractRequestParams( false );
47 $prop = array_flip( $params['prop'] );
48 $fld_parentid = isset( $prop['parentid'] );
49 $fld_revid = isset( $prop['revid'] );
50 $fld_user = isset( $prop['user'] );
51 $fld_userid = isset( $prop['userid'] );
52 $fld_comment = isset( $prop['comment'] );
53 $fld_parsedcomment = isset ( $prop['parsedcomment'] );
54 $fld_minor = isset( $prop['minor'] );
55 $fld_len = isset( $prop['len'] );
56 $fld_sha1 = isset( $prop['sha1'] );
57 $fld_content = isset( $prop['content'] );
58 $fld_token = isset( $prop['token'] );
59
60 $result = $this->getResult();
61 $pageSet = $this->getPageSet();
62 $titles = $pageSet->getTitles();
63
64 // This module operates in three modes:
65 // 'revs': List deleted revs for certain titles (1)
66 // 'user': List deleted revs by a certain user (2)
67 // 'all': List all deleted revs in NS (3)
68 $mode = 'all';
69 if ( count( $titles ) > 0 ) {
70 $mode = 'revs';
71 } elseif ( !is_null( $params['user'] ) ) {
72 $mode = 'user';
73 }
74
75 if ( $mode == 'revs' || $mode == 'user' ) {
76 // Ignore namespace and unique due to inability to know whether they were purposely set
77 foreach( array( 'from', 'to', 'prefix', /*'namespace',*/ 'continue', /*'unique'*/ ) as $p ) {
78 if ( !is_null( $params[$p] ) ) {
79 $this->dieUsage( "The '{$p}' parameter cannot be used in modes 1 or 2", 'badparams');
80 }
81 }
82 } else {
83 foreach( array( 'start', 'end' ) as $p ) {
84 if ( !is_null( $params[$p] ) ) {
85 $this->dieUsage( "The {$p} parameter cannot be used in mode 3", 'badparams');
86 }
87 }
88 }
89
90 if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) {
91 $this->dieUsage( 'user and excludeuser cannot be used together', 'badparams' );
92 }
93
94 $this->addTables( 'archive' );
95 $this->addWhere( 'ar_deleted = 0' );
96 $this->addFields( array( 'ar_title', 'ar_namespace', 'ar_timestamp' ) );
97
98 $this->addFieldsIf( 'ar_parent_id', $fld_parentid );
99 $this->addFieldsIf( 'ar_rev_id', $fld_revid );
100 $this->addFieldsIf( 'ar_user_text', $fld_user );
101 $this->addFieldsIf( 'ar_user', $fld_userid );
102 $this->addFieldsIf( 'ar_comment', $fld_comment || $fld_parsedcomment );
103 $this->addFieldsIf( 'ar_minor_edit', $fld_minor );
104 $this->addFieldsIf( 'ar_len', $fld_len );
105 $this->addFieldsIf( 'ar_sha1', $fld_sha1 );
106
107 if ( $fld_content ) {
108 $this->addTables( 'text' );
109 $this->addFields( array( 'ar_text', 'ar_text_id', 'old_text', 'old_flags' ) );
110 $this->addWhere( 'ar_text_id = old_id' );
111
112 // This also means stricter restrictions
113 if ( !$user->isAllowed( 'undelete' ) ) {
114 $this->dieUsage( 'You don\'t have permission to view deleted revision content', 'permissiondenied' );
115 }
116 }
117 // Check limits
118 $userMax = $fld_content ? ApiBase::LIMIT_SML1 : ApiBase::LIMIT_BIG1;
119 $botMax = $fld_content ? ApiBase::LIMIT_SML2 : ApiBase::LIMIT_BIG2;
120
121 $limit = $params['limit'];
122
123 if ( $limit == 'max' ) {
124 $limit = $this->getMain()->canApiHighLimits() ? $botMax : $userMax;
125 $this->getResult()->setParsedLimit( $this->getModuleName(), $limit );
126 }
127
128 $this->validateLimit( 'limit', $limit, 1, $userMax, $botMax );
129
130 if ( $fld_token ) {
131 // Undelete tokens are identical for all pages, so we cache one here
132 $token = $user->getEditToken( '', $this->getMain()->getRequest() );
133 }
134
135 $dir = $params['dir'];
136
137 // We need a custom WHERE clause that matches all titles.
138 if ( $mode == 'revs' ) {
139 $lb = new LinkBatch( $titles );
140 $where = $lb->constructSet( 'ar', $db );
141 $this->addWhere( $where );
142 } elseif ( $mode == 'all' ) {
143 $this->addWhereFld( 'ar_namespace', $params['namespace'] );
144
145 $from = is_null( $params['from'] ) ? null : $this->titleToKey( $params['from'] );
146 $to = is_null( $params['to'] ) ? null : $this->titleToKey( $params['to'] );
147 $this->addWhereRange( 'ar_title', $dir, $from, $to );
148
149 if ( isset( $params['prefix'] ) ) {
150 $this->addWhere( 'ar_title' . $db->buildLike( $this->titlePartToKey( $params['prefix'] ), $db->anyString() ) );
151 }
152 }
153
154 if ( !is_null( $params['user'] ) ) {
155 $this->addWhereFld( 'ar_user_text', $params['user'] );
156 } elseif ( !is_null( $params['excludeuser'] ) ) {
157 $this->addWhere( 'ar_user_text != ' .
158 $this->getDB()->addQuotes( $params['excludeuser'] ) );
159 }
160
161 if ( !is_null( $params['continue'] ) && ( $mode == 'all' || $mode == 'revs' ) ) {
162 $cont = explode( '|', $params['continue'] );
163 if ( count( $cont ) != 3 ) {
164 $this->dieUsage( 'Invalid continue param. You should pass the original value returned by the previous query', 'badcontinue' );
165 }
166 $ns = intval( $cont[0] );
167 $title = $this->getDB()->strencode( $this->titleToKey( $cont[1] ) );
168 $ts = $this->getDB()->strencode( $cont[2] );
169 $op = ( $dir == 'newer' ? '>' : '<' );
170 $this->addWhere( "ar_namespace $op $ns OR " .
171 "(ar_namespace = $ns AND " .
172 "(ar_title $op '$title' OR " .
173 "(ar_title = '$title' AND " .
174 "ar_timestamp $op= '$ts')))" );
175 }
176
177 $this->addOption( 'LIMIT', $limit + 1 );
178 $this->addOption( 'USE INDEX', array( 'archive' => ( $mode == 'user' ? 'usertext_timestamp' : 'name_title_timestamp' ) ) );
179 if ( $mode == 'all' ) {
180 if ( $params['unique'] ) {
181 $this->addOption( 'GROUP BY', 'ar_title' );
182 } else {
183 $this->addOption( 'ORDER BY', 'ar_title, ar_timestamp' );
184 }
185 } else {
186 if ( $mode == 'revs' ) {
187 // Sort by ns and title in the same order as timestamp for efficiency
188 $this->addWhereRange( 'ar_namespace', $dir, null, null );
189 $this->addWhereRange( 'ar_title', $dir, null, null );
190 }
191 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
192 }
193 $res = $this->select( __METHOD__ );
194 $pageMap = array(); // Maps ns&title to (fake) pageid
195 $count = 0;
196 $newPageID = 0;
197 foreach ( $res as $row ) {
198 if ( ++$count > $limit ) {
199 // We've had enough
200 if ( $mode == 'all' || $mode == 'revs' ) {
201 $this->setContinueEnumParameter( 'continue', intval( $row->ar_namespace ) . '|' .
202 $this->keyToTitle( $row->ar_title ) . '|' . $row->ar_timestamp );
203 } else {
204 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->ar_timestamp ) );
205 }
206 break;
207 }
208
209 $rev = array();
210 $rev['timestamp'] = wfTimestamp( TS_ISO_8601, $row->ar_timestamp );
211 if ( $fld_revid ) {
212 $rev['revid'] = intval( $row->ar_rev_id );
213 }
214 if ( $fld_parentid && !is_null( $row->ar_parent_id ) ) {
215 $rev['parentid'] = intval( $row->ar_parent_id );
216 }
217 if ( $fld_user ) {
218 $rev['user'] = $row->ar_user_text;
219 }
220 if ( $fld_userid ) {
221 $rev['userid'] = $row->ar_user;
222 }
223 if ( $fld_comment ) {
224 $rev['comment'] = $row->ar_comment;
225 }
226
227 $title = Title::makeTitle( $row->ar_namespace, $row->ar_title );
228
229 if ( $fld_parsedcomment ) {
230 $rev['parsedcomment'] = Linker::formatComment( $row->ar_comment, $title );
231 }
232 if ( $fld_minor && $row->ar_minor_edit == 1 ) {
233 $rev['minor'] = '';
234 }
235 if ( $fld_len ) {
236 $rev['len'] = $row->ar_len;
237 }
238 if ( $fld_sha1 ) {
239 if ( $row->ar_sha1 != '' ) {
240 $rev['sha1'] = wfBaseConvert( $row->ar_sha1, 36, 16, 40 );
241 } else {
242 $rev['sha1'] = '';
243 }
244 }
245 if ( $fld_content ) {
246 ApiResult::setContent( $rev, Revision::getRevisionText( $row ) );
247 }
248
249 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
250 $pageID = $newPageID++;
251 $pageMap[$row->ar_namespace][$row->ar_title] = $pageID;
252 $a['revisions'] = array( $rev );
253 $result->setIndexedTagName( $a['revisions'], 'rev' );
254 ApiQueryBase::addTitleInfo( $a, $title );
255 if ( $fld_token ) {
256 $a['token'] = $token;
257 }
258 $fit = $result->addValue( array( 'query', $this->getModuleName() ), $pageID, $a );
259 } else {
260 $pageID = $pageMap[$row->ar_namespace][$row->ar_title];
261 $fit = $result->addValue(
262 array( 'query', $this->getModuleName(), $pageID, 'revisions' ),
263 null, $rev );
264 }
265 if ( !$fit ) {
266 if ( $mode == 'all' || $mode == 'revs' ) {
267 $this->setContinueEnumParameter( 'continue', intval( $row->ar_namespace ) . '|' .
268 $this->keyToTitle( $row->ar_title ) . '|' . $row->ar_timestamp );
269 } else {
270 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->ar_timestamp ) );
271 }
272 break;
273 }
274 }
275 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'page' );
276 }
277
278 public function getAllowedParams() {
279 return array(
280 'start' => array(
281 ApiBase::PARAM_TYPE => 'timestamp'
282 ),
283 'end' => array(
284 ApiBase::PARAM_TYPE => 'timestamp',
285 ),
286 'dir' => array(
287 ApiBase::PARAM_TYPE => array(
288 'newer',
289 'older'
290 ),
291 ApiBase::PARAM_DFLT => 'older'
292 ),
293 'from' => null,
294 'to' => null,
295 'prefix' => null,
296 'continue' => null,
297 'unique' => false,
298 'user' => array(
299 ApiBase::PARAM_TYPE => 'user'
300 ),
301 'excludeuser' => array(
302 ApiBase::PARAM_TYPE => 'user'
303 ),
304 'namespace' => array(
305 ApiBase::PARAM_TYPE => 'namespace',
306 ApiBase::PARAM_DFLT => 0,
307 ),
308 'limit' => array(
309 ApiBase::PARAM_DFLT => 10,
310 ApiBase::PARAM_TYPE => 'limit',
311 ApiBase::PARAM_MIN => 1,
312 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
313 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
314 ),
315 'prop' => array(
316 ApiBase::PARAM_DFLT => 'user|comment',
317 ApiBase::PARAM_TYPE => array(
318 'revid',
319 'parentid',
320 'user',
321 'userid',
322 'comment',
323 'parsedcomment',
324 'minor',
325 'len',
326 'sha1',
327 'content',
328 'token'
329 ),
330 ApiBase::PARAM_ISMULTI => true
331 ),
332 );
333 }
334
335 public function getParamDescription() {
336 return array(
337 'start' => 'The timestamp to start enumerating from (1, 2)',
338 'end' => 'The timestamp to stop enumerating at (1, 2)',
339 'dir' => $this->getDirectionDescription( $this->getModulePrefix(), ' (1, 3)' ),
340 'from' => 'Start listing at this title (3)',
341 'to' => 'Stop listing at this title (3)',
342 'prefix' => 'Search for all page titles that begin with this value (3)',
343 'limit' => 'The maximum amount of revisions to list',
344 'prop' => array(
345 'Which properties to get',
346 ' revid - Adds the revision ID of the deleted revision',
347 ' parentid - Adds the revision ID of the previous revision to the page',
348 ' user - Adds the user who made the revision',
349 ' userid - Adds the user ID whom made the revision',
350 ' comment - Adds the comment of the revision',
351 ' parsedcomment - Adds the parsed comment of the revision',
352 ' minor - Tags if the revision is minor',
353 ' len - Adds the length (bytes) of the revision',
354 ' sha1 - Adds the SHA-1 (base 16) of the revision',
355 ' content - Adds the content of the revision',
356 ' token - Gives the edit token',
357 ),
358 'namespace' => 'Only list pages in this namespace (3)',
359 'user' => 'Only list revisions by this user',
360 'excludeuser' => 'Don\'t list revisions by this user',
361 'continue' => 'When more results are available, use this to continue (3)',
362 'unique' => 'List only one revision for each page (3)',
363 );
364 }
365
366 public function getDescription() {
367 $p = $this->getModulePrefix();
368 return array(
369 'List deleted revisions.',
370 'Operates in three modes:',
371 ' 1) List deleted revisions for the given title(s), sorted by timestamp',
372 ' 2) List deleted contributions for the given user, sorted by timestamp (no titles specified)',
373 " 3) List all deleted revisions in the given namespace, sorted by title and timestamp (no titles specified, {$p}user not set)",
374 'Certain parameters only apply to some modes and are ignored in others.',
375 'For instance, a parameter marked (1) only applies to mode 1 and is ignored in modes 2 and 3',
376 );
377 }
378
379 public function getPossibleErrors() {
380 return array_merge( parent::getPossibleErrors(), array(
381 array( 'code' => 'permissiondenied', 'info' => 'You don\'t have permission to view deleted revision information' ),
382 array( 'code' => 'badparams', 'info' => 'user and excludeuser cannot be used together' ),
383 array( 'code' => 'permissiondenied', 'info' => 'You don\'t have permission to view deleted revision content' ),
384 array( 'code' => 'badcontinue', 'info' => 'Invalid continue param. You should pass the original value returned by the previous query' ),
385 array( 'code' => 'badparams', 'info' => "The 'from' parameter cannot be used in modes 1 or 2" ),
386 array( 'code' => 'badparams', 'info' => "The 'to' parameter cannot be used in modes 1 or 2" ),
387 array( 'code' => 'badparams', 'info' => "The 'prefix' parameter cannot be used in modes 1 or 2" ),
388 array( 'code' => 'badparams', 'info' => "The 'continue' parameter cannot be used in modes 1 or 2" ),
389 array( 'code' => 'badparams', 'info' => "The 'start' parameter cannot be used in mode 3" ),
390 array( 'code' => 'badparams', 'info' => "The 'end' parameter cannot be used in mode 3" ),
391 ) );
392 }
393
394 public function getExamples() {
395 return array(
396 'api.php?action=query&list=deletedrevs&titles=Main%20Page|Talk:Main%20Page&drprop=user|comment|content'
397 => 'List the last deleted revisions of Main Page and Talk:Main Page, with content (mode 1)',
398 'api.php?action=query&list=deletedrevs&druser=Bob&drlimit=50'
399 => 'List the last 50 deleted contributions by Bob (mode 2)',
400 'api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50'
401 => 'List the first 50 deleted revisions in the main namespace (mode 3)',
402 'api.php?action=query&list=deletedrevs&drdir=newer&drlimit=50&drnamespace=1&drunique='
403 => 'List the first 50 deleted pages in the Talk namespace (mode 3):',
404 );
405 }
406
407 public function getHelpUrls() {
408 return 'https://www.mediawiki.org/wiki/API:Deletedrevs';
409 }
410
411 public function getVersion() {
412 return __CLASS__ . ': $Id$';
413 }
414 }