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