Merge "(bug 17602) fix Monobook action tabs not quite touching the page body"
[lhc/web/wiklou.git] / includes / api / ApiQueryUserContributions.php
1 <?php
2 /**
3 *
4 *
5 * Created on Oct 16, 2006
6 *
7 * Copyright © 2006 Yuri Astrakhan "<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 * This query action adds a list of a specified user's contributions to the output.
29 *
30 * @ingroup API
31 */
32 class ApiQueryContributions extends ApiQueryBase {
33
34 public function __construct( $query, $moduleName ) {
35 parent::__construct( $query, $moduleName, 'uc' );
36 }
37
38 private $params, $prefixMode, $userprefix, $multiUserMode, $usernames, $parentLens;
39 private $fld_ids = false, $fld_title = false, $fld_timestamp = false,
40 $fld_comment = false, $fld_parsedcomment = false, $fld_flags = false,
41 $fld_patrolled = false, $fld_tags = false, $fld_size = false, $fld_sizediff = false;
42
43 public function execute() {
44 // Parse some parameters
45 $this->params = $this->extractRequestParams();
46
47 $prop = array_flip( $this->params['prop'] );
48 $this->fld_ids = isset( $prop['ids'] );
49 $this->fld_title = isset( $prop['title'] );
50 $this->fld_comment = isset( $prop['comment'] );
51 $this->fld_parsedcomment = isset( $prop['parsedcomment'] );
52 $this->fld_size = isset( $prop['size'] );
53 $this->fld_sizediff = isset( $prop['sizediff'] );
54 $this->fld_flags = isset( $prop['flags'] );
55 $this->fld_timestamp = isset( $prop['timestamp'] );
56 $this->fld_patrolled = isset( $prop['patrolled'] );
57 $this->fld_tags = isset( $prop['tags'] );
58
59 // TODO: if the query is going only against the revision table, should this be done?
60 $this->selectNamedDB( 'contributions', DB_SLAVE, 'contributions' );
61
62 if ( isset( $this->params['userprefix'] ) ) {
63 $this->prefixMode = true;
64 $this->multiUserMode = true;
65 $this->userprefix = $this->params['userprefix'];
66 } else {
67 $this->usernames = array();
68 if ( !is_array( $this->params['user'] ) ) {
69 $this->params['user'] = array( $this->params['user'] );
70 }
71 if ( !count( $this->params['user'] ) ) {
72 $this->dieUsage( 'User parameter may not be empty.', 'param_user' );
73 }
74 foreach ( $this->params['user'] as $u ) {
75 $this->prepareUsername( $u );
76 }
77 $this->prefixMode = false;
78 $this->multiUserMode = ( count( $this->params['user'] ) > 1 );
79 }
80
81 $this->prepareQuery();
82
83 // Do the actual query.
84 $res = $this->select( __METHOD__ );
85
86 if ( $this->fld_sizediff ) {
87 $revIds = array();
88 foreach ( $res as $row ) {
89 if ( $row->rev_parent_id ) {
90 $revIds[] = $row->rev_parent_id;
91 }
92 }
93 $this->parentLens = Revision::getParentLengths( $this->getDB(), $revIds );
94 $res->rewind(); // reset
95 }
96
97 // Initialise some variables
98 $count = 0;
99 $limit = $this->params['limit'];
100
101 // Fetch each row
102 foreach ( $res as $row ) {
103 if ( ++ $count > $limit ) {
104 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
105 if ( $this->multiUserMode ) {
106 $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
107 } else {
108 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
109 }
110 break;
111 }
112
113 $vals = $this->extractRowInfo( $row );
114 $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
115 if ( !$fit ) {
116 if ( $this->multiUserMode ) {
117 $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
118 } else {
119 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
120 }
121 break;
122 }
123 }
124
125 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
126 }
127
128 /**
129 * Validate the 'user' parameter and set the value to compare
130 * against `revision`.`rev_user_text`
131 *
132 * @param $user string
133 */
134 private function prepareUsername( $user ) {
135 if ( !is_null( $user ) && $user !== '' ) {
136 $name = User::isIP( $user )
137 ? $user
138 : User::getCanonicalName( $user, 'valid' );
139 if ( $name === false ) {
140 $this->dieUsage( "User name {$user} is not valid", 'param_user' );
141 } else {
142 $this->usernames[] = $name;
143 }
144 } else {
145 $this->dieUsage( 'User parameter may not be empty', 'param_user' );
146 }
147 }
148
149 /**
150 * Prepares the query and returns the limit of rows requested
151 */
152 private function prepareQuery() {
153 // We're after the revision table, and the corresponding page
154 // row for anything we retrieve. We may also need the
155 // recentchanges row and/or tag summary row.
156 $user = $this->getUser();
157 $tables = array( 'page', 'revision' ); // Order may change
158 $this->addWhere( 'page_id=rev_page' );
159
160 // Handle continue parameter
161 if ( $this->multiUserMode && !is_null( $this->params['continue'] ) ) {
162 $continue = explode( '|', $this->params['continue'] );
163 $this->dieContinueUsageIf( count( $continue ) != 2 );
164 $db = $this->getDB();
165 $encUser = $db->addQuotes( $continue[0] );
166 $encTS = $db->addQuotes( $db->timestamp( $continue[1] ) );
167 $op = ( $this->params['dir'] == 'older' ? '<' : '>' );
168 $this->addWhere(
169 "rev_user_text $op $encUser OR " .
170 "(rev_user_text = $encUser AND " .
171 "rev_timestamp $op= $encTS)"
172 );
173 }
174
175 if ( !$user->isAllowed( 'hideuser' ) ) {
176 $this->addWhere( $this->getDB()->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' );
177 }
178 // We only want pages by the specified users.
179 if ( $this->prefixMode ) {
180 $this->addWhere( 'rev_user_text' . $this->getDB()->buildLike( $this->userprefix, $this->getDB()->anyString() ) );
181 } else {
182 $this->addWhereFld( 'rev_user_text', $this->usernames );
183 }
184 // ... and in the specified timeframe.
185 // Ensure the same sort order for rev_user_text and rev_timestamp
186 // so our query is indexed
187 if ( $this->multiUserMode ) {
188 $this->addWhereRange( 'rev_user_text', $this->params['dir'], null, null );
189 }
190 $this->addTimestampWhereRange( 'rev_timestamp',
191 $this->params['dir'], $this->params['start'], $this->params['end'] );
192 $this->addWhereFld( 'page_namespace', $this->params['namespace'] );
193
194 $show = $this->params['show'];
195 if ( !is_null( $show ) ) {
196 $show = array_flip( $show );
197 if ( ( isset( $show['minor'] ) && isset( $show['!minor'] ) )
198 || ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) ) ) {
199 $this->dieUsageMsg( 'show' );
200 }
201
202 $this->addWhereIf( 'rev_minor_edit = 0', isset( $show['!minor'] ) );
203 $this->addWhereIf( 'rev_minor_edit != 0', isset( $show['minor'] ) );
204 $this->addWhereIf( 'rc_patrolled = 0', isset( $show['!patrolled'] ) );
205 $this->addWhereIf( 'rc_patrolled != 0', isset( $show['patrolled'] ) );
206 }
207 $this->addOption( 'LIMIT', $this->params['limit'] + 1 );
208 $index = array( 'revision' => 'usertext_timestamp' );
209
210 // Mandatory fields: timestamp allows request continuation
211 // ns+title checks if the user has access rights for this page
212 // user_text is necessary if multiple users were specified
213 $this->addFields( array(
214 'rev_timestamp',
215 'page_namespace',
216 'page_title',
217 'rev_user',
218 'rev_user_text',
219 'rev_deleted'
220 ) );
221
222 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ||
223 $this->fld_patrolled ) {
224 if ( !$user->useRCPatrol() && !$user->useNPPatrol() ) {
225 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
226 }
227
228 // Use a redundant join condition on both
229 // timestamp and ID so we can use the timestamp
230 // index
231 $index['recentchanges'] = 'rc_user_text';
232 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
233 // Put the tables in the right order for
234 // STRAIGHT_JOIN
235 $tables = array( 'revision', 'recentchanges', 'page' );
236 $this->addOption( 'STRAIGHT_JOIN' );
237 $this->addWhere( 'rc_user_text=rev_user_text' );
238 $this->addWhere( 'rc_timestamp=rev_timestamp' );
239 $this->addWhere( 'rc_this_oldid=rev_id' );
240 } else {
241 $tables[] = 'recentchanges';
242 $this->addJoinConds( array( 'recentchanges' => array(
243 'LEFT JOIN', array(
244 'rc_user_text=rev_user_text',
245 'rc_timestamp=rev_timestamp',
246 'rc_this_oldid=rev_id' ) ) ) );
247 }
248 }
249
250 $this->addTables( $tables );
251 $this->addFieldsIf( 'rev_page', $this->fld_ids );
252 $this->addFieldsIf( 'rev_id', $this->fld_ids || $this->fld_flags );
253 $this->addFieldsIf( 'page_latest', $this->fld_flags );
254 // $this->addFieldsIf( 'rev_text_id', $this->fld_ids ); // Should this field be exposed?
255 $this->addFieldsIf( 'rev_comment', $this->fld_comment || $this->fld_parsedcomment );
256 $this->addFieldsIf( 'rev_len', $this->fld_size || $this->fld_sizediff );
257 $this->addFieldsIf( 'rev_minor_edit', $this->fld_flags );
258 $this->addFieldsIf( 'rev_parent_id', $this->fld_flags || $this->fld_sizediff || $this->fld_ids );
259 $this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
260
261 if ( $this->fld_tags ) {
262 $this->addTables( 'tag_summary' );
263 $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', array( 'rev_id=ts_rev_id' ) ) ) );
264 $this->addFields( 'ts_tags' );
265 }
266
267 if ( isset( $this->params['tag'] ) ) {
268 $this->addTables( 'change_tag' );
269 $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'rev_id=ct_rev_id' ) ) ) );
270 $this->addWhereFld( 'ct_tag', $this->params['tag'] );
271 global $wgOldChangeTagsIndex;
272 $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
273 }
274
275 if ( $this->params['toponly'] ) {
276 $this->addWhere( 'rev_id = page_latest' );
277 }
278
279 $this->addOption( 'USE INDEX', $index );
280 }
281
282 /**
283 * Extract fields from the database row and append them to a result array
284 *
285 * @param $row
286 * @return array
287 */
288 private function extractRowInfo( $row ) {
289 $vals = array();
290
291 $vals['userid'] = $row->rev_user;
292 $vals['user'] = $row->rev_user_text;
293 if ( $row->rev_deleted & Revision::DELETED_USER ) {
294 $vals['userhidden'] = '';
295 }
296 if ( $this->fld_ids ) {
297 $vals['pageid'] = intval( $row->rev_page );
298 $vals['revid'] = intval( $row->rev_id );
299 // $vals['textid'] = intval( $row->rev_text_id ); // todo: Should this field be exposed?
300
301 if ( !is_null( $row->rev_parent_id ) ) {
302 $vals['parentid'] = intval( $row->rev_parent_id );
303 }
304 }
305
306 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
307
308 if ( $this->fld_title ) {
309 ApiQueryBase::addTitleInfo( $vals, $title );
310 }
311
312 if ( $this->fld_timestamp ) {
313 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
314 }
315
316 if ( $this->fld_flags ) {
317 if ( $row->rev_parent_id == 0 && !is_null( $row->rev_parent_id ) ) {
318 $vals['new'] = '';
319 }
320 if ( $row->rev_minor_edit ) {
321 $vals['minor'] = '';
322 }
323 if ( $row->page_latest == $row->rev_id ) {
324 $vals['top'] = '';
325 }
326 }
327
328 if ( ( $this->fld_comment || $this->fld_parsedcomment ) && isset( $row->rev_comment ) ) {
329 if ( $row->rev_deleted & Revision::DELETED_COMMENT ) {
330 $vals['commenthidden'] = '';
331 } else {
332 if ( $this->fld_comment ) {
333 $vals['comment'] = $row->rev_comment;
334 }
335
336 if ( $this->fld_parsedcomment ) {
337 $vals['parsedcomment'] = Linker::formatComment( $row->rev_comment, $title );
338 }
339 }
340 }
341
342 if ( $this->fld_patrolled && $row->rc_patrolled ) {
343 $vals['patrolled'] = '';
344 }
345
346 if ( $this->fld_size && !is_null( $row->rev_len ) ) {
347 $vals['size'] = intval( $row->rev_len );
348 }
349
350 if ( $this->fld_sizediff && !is_null( $row->rev_len ) && !is_null( $row->rev_parent_id ) ) {
351 $parentLen = isset( $this->parentLens[$row->rev_parent_id] ) ? $this->parentLens[$row->rev_parent_id] : 0;
352 $vals['sizediff'] = intval( $row->rev_len - $parentLen );
353 }
354
355 if ( $this->fld_tags ) {
356 if ( $row->ts_tags ) {
357 $tags = explode( ',', $row->ts_tags );
358 $this->getResult()->setIndexedTagName( $tags, 'tag' );
359 $vals['tags'] = $tags;
360 } else {
361 $vals['tags'] = array();
362 }
363 }
364
365 return $vals;
366 }
367
368 private function continueStr( $row ) {
369 return $row->rev_user_text . '|' .
370 wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
371 }
372
373 public function getCacheMode( $params ) {
374 // This module provides access to deleted revisions and patrol flags if
375 // the requester is logged in
376 return 'anon-public-user-private';
377 }
378
379 public function getAllowedParams() {
380 return array(
381 'limit' => array(
382 ApiBase::PARAM_DFLT => 10,
383 ApiBase::PARAM_TYPE => 'limit',
384 ApiBase::PARAM_MIN => 1,
385 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
386 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
387 ),
388 'start' => array(
389 ApiBase::PARAM_TYPE => 'timestamp'
390 ),
391 'end' => array(
392 ApiBase::PARAM_TYPE => 'timestamp'
393 ),
394 'continue' => null,
395 'user' => array(
396 ApiBase::PARAM_ISMULTI => true
397 ),
398 'userprefix' => null,
399 'dir' => array(
400 ApiBase::PARAM_DFLT => 'older',
401 ApiBase::PARAM_TYPE => array(
402 'newer',
403 'older'
404 )
405 ),
406 'namespace' => array(
407 ApiBase::PARAM_ISMULTI => true,
408 ApiBase::PARAM_TYPE => 'namespace'
409 ),
410 'prop' => array(
411 ApiBase::PARAM_ISMULTI => true,
412 ApiBase::PARAM_DFLT => 'ids|title|timestamp|comment|size|flags',
413 ApiBase::PARAM_TYPE => array(
414 'ids',
415 'title',
416 'timestamp',
417 'comment',
418 'parsedcomment',
419 'size',
420 'sizediff',
421 'flags',
422 'patrolled',
423 'tags'
424 )
425 ),
426 'show' => array(
427 ApiBase::PARAM_ISMULTI => true,
428 ApiBase::PARAM_TYPE => array(
429 'minor',
430 '!minor',
431 'patrolled',
432 '!patrolled',
433 )
434 ),
435 'tag' => null,
436 'toponly' => false,
437 );
438 }
439
440 public function getParamDescription() {
441 global $wgRCMaxAge;
442 $p = $this->getModulePrefix();
443 return array(
444 'limit' => 'The maximum number of contributions to return',
445 'start' => 'The start timestamp to return from',
446 'end' => 'The end timestamp to return to',
447 'continue' => 'When more results are available, use this to continue',
448 'user' => 'The users to retrieve contributions for',
449 'userprefix' => "Retrieve contributions for all users whose names begin with this value. Overrides {$p}user",
450 'dir' => $this->getDirectionDescription( $p ),
451 'namespace' => 'Only list contributions in these namespaces',
452 'prop' => array(
453 'Include additional pieces of information',
454 ' ids - Adds the page ID and revision ID',
455 ' title - Adds the title and namespace ID of the page',
456 ' timestamp - Adds the timestamp of the edit',
457 ' comment - Adds the comment of the edit',
458 ' parsedcomment - Adds the parsed comment of the edit',
459 ' size - Adds the new size of the edit',
460 ' sizediff - Adds the size delta of the edit against its parent',
461 ' flags - Adds flags of the edit',
462 ' patrolled - Tags patrolled edits',
463 ' tags - Lists tags for the edit',
464 ),
465 'show' => array( "Show only items that meet this criteria, e.g. non minor edits only: {$p}show=!minor",
466 "NOTE: if {$p}show=patrolled or {$p}show=!patrolled is set, revisions older than \$wgRCMaxAge ($wgRCMaxAge) won't be shown", ),
467 'tag' => 'Only list revisions tagged with this tag',
468 'toponly' => 'Only list changes which are the latest revision',
469 );
470 }
471
472 public function getResultProperties() {
473 return array(
474 '' => array(
475 'userid' => 'integer',
476 'user' => 'string',
477 'userhidden' => 'boolean'
478 ),
479 'ids' => array(
480 'pageid' => 'integer',
481 'revid' => 'integer',
482 'parentid' => array(
483 ApiBase::PROP_TYPE => 'integer',
484 ApiBase::PROP_NULLABLE => true
485 )
486 ),
487 'title' => array(
488 'ns' => 'namespace',
489 'title' => 'string'
490 ),
491 'timestamp' => array(
492 'timestamp' => 'timestamp'
493 ),
494 'flags' => array(
495 'new' => 'boolean',
496 'minor' => 'boolean',
497 'top' => 'boolean'
498 ),
499 'comment' => array(
500 'commenthidden' => 'boolean',
501 'comment' => array(
502 ApiBase::PROP_TYPE => 'string',
503 ApiBase::PROP_NULLABLE => true
504 )
505 ),
506 'parsedcomment' => array(
507 'commenthidden' => 'boolean',
508 'parsedcomment' => array(
509 ApiBase::PROP_TYPE => 'string',
510 ApiBase::PROP_NULLABLE => true
511 )
512 ),
513 'patrolled' => array(
514 'patrolled' => 'boolean'
515 ),
516 'size' => array(
517 'size' => array(
518 ApiBase::PROP_TYPE => 'integer',
519 ApiBase::PROP_NULLABLE => true
520 )
521 ),
522 'sizediff' => array(
523 'sizediff' => array(
524 ApiBase::PROP_TYPE => 'integer',
525 ApiBase::PROP_NULLABLE => true
526 )
527 )
528 );
529 }
530
531 public function getDescription() {
532 return 'Get all edits by a user';
533 }
534
535 public function getPossibleErrors() {
536 return array_merge( parent::getPossibleErrors(), array(
537 array( 'code' => 'param_user', 'info' => 'User parameter may not be empty.' ),
538 array( 'code' => 'param_user', 'info' => 'User name user is not valid' ),
539 array( 'show' ),
540 array( 'code' => 'permissiondenied', 'info' => 'You need the patrol right to request the patrolled flag' ),
541 ) );
542 }
543
544 public function getExamples() {
545 return array(
546 'api.php?action=query&list=usercontribs&ucuser=YurikBot',
547 'api.php?action=query&list=usercontribs&ucuserprefix=217.121.114.',
548 );
549 }
550
551 public function getHelpUrls() {
552 return 'https://www.mediawiki.org/wiki/API:Usercontribs';
553 }
554 }