Add missing global $wgUser
[mediawiki.git] / includes / api / ApiQueryUserContributions.php
blob51b391431911137b88340b2675f502de380d401f
1 <?php
3 /**
4 * Created on Oct 16, 2006
6 * API for MediaWiki 1.8+
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiQueryBase.php' );
31 /**
32 * This query action adds a list of a specified user's contributions to the output.
34 * @ingroup API
36 class ApiQueryContributions extends ApiQueryBase {
38 public function __construct( $query, $moduleName ) {
39 parent::__construct( $query, $moduleName, 'uc' );
42 private $params;
43 private $fld_ids = false, $fld_title = false, $fld_timestamp = false,
44 $fld_comment = false, $fld_parsedcomment = false, $fld_flags = false,
45 $fld_patrolled = false, $fld_tags = false;
47 public function execute() {
48 // Parse some parameters
49 $this->params = $this->extractRequestParams();
51 $prop = array_flip( $this->params['prop'] );
52 $this->fld_ids = isset( $prop['ids'] );
53 $this->fld_title = isset( $prop['title'] );
54 $this->fld_comment = isset( $prop['comment'] );
55 $this->fld_parsedcomment = isset ( $prop['parsedcomment'] );
56 $this->fld_size = isset( $prop['size'] );
57 $this->fld_flags = isset( $prop['flags'] );
58 $this->fld_timestamp = isset( $prop['timestamp'] );
59 $this->fld_patrolled = isset( $prop['patrolled'] );
60 $this->fld_tags = isset( $prop['tags'] );
62 // TODO: if the query is going only against the revision table, should this be done?
63 $this->selectNamedDB( 'contributions', DB_SLAVE, 'contributions' );
65 if ( isset( $this->params['userprefix'] ) ) {
66 $this->prefixMode = true;
67 $this->multiUserMode = true;
68 $this->userprefix = $this->params['userprefix'];
69 } else {
70 $this->usernames = array();
71 if ( !is_array( $this->params['user'] ) ) {
72 $this->params['user'] = array( $this->params['user'] );
74 if ( !count( $this->params['user'] ) ) {
75 $this->dieUsage( 'User parameter may not be empty.', 'param_user' );
77 foreach ( $this->params['user'] as $u ) {
78 $this->prepareUsername( $u );
80 $this->prefixMode = false;
81 $this->multiUserMode = ( count( $this->params['user'] ) > 1 );
83 $this->prepareQuery();
85 // Do the actual query.
86 $res = $this->select( __METHOD__ );
88 // Initialise some variables
89 $count = 0;
90 $limit = $this->params['limit'];
92 // Fetch each row
93 foreach ( $res as $row ) {
94 if ( ++ $count > $limit ) {
95 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
96 if ( $this->multiUserMode ) {
97 $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
98 } else {
99 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
101 break;
104 $vals = $this->extractRowInfo( $row );
105 $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
106 if ( !$fit ) {
107 if ( $this->multiUserMode ) {
108 $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
109 } else {
110 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
112 break;
116 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
120 * Validate the 'user' parameter and set the value to compare
121 * against `revision`.`rev_user_text`
123 private function prepareUsername( $user ) {
124 if ( !is_null( $user ) && $user !== '' ) {
125 $name = User::isIP( $user )
126 ? $user
127 : User::getCanonicalName( $user, 'valid' );
128 if ( $name === false ) {
129 $this->dieUsage( "User name {$user} is not valid", 'param_user' );
130 } else {
131 $this->usernames[] = $name;
133 } else {
134 $this->dieUsage( 'User parameter may not be empty', 'param_user' );
139 * Prepares the query and returns the limit of rows requested
141 private function prepareQuery() {
142 // We're after the revision table, and the corresponding page
143 // row for anything we retrieve. We may also need the
144 // recentchanges row and/or tag summary row.
145 global $wgUser;
146 $tables = array( 'page', 'revision' ); // Order may change
147 $this->addWhere( 'page_id=rev_page' );
149 // Handle continue parameter
150 if ( $this->multiUserMode && !is_null( $this->params['continue'] ) ) {
151 $continue = explode( '|', $this->params['continue'] );
152 if ( count( $continue ) != 2 ) {
153 $this->dieUsage( 'Invalid continue param. You should pass the original ' .
154 'value returned by the previous query', '_badcontinue' );
156 $encUser = $this->getDB()->strencode( $continue[0] );
157 $encTS = wfTimestamp( TS_MW, $continue[1] );
158 $op = ( $this->params['dir'] == 'older' ? '<' : '>' );
159 $this->addWhere(
160 "rev_user_text $op '$encUser' OR " .
161 "(rev_user_text = '$encUser' AND " .
162 "rev_timestamp $op= '$encTS')"
166 if ( !$wgUser->isAllowed( 'hideuser' ) ) {
167 $this->addWhere( $this->getDB()->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' );
169 // We only want pages by the specified users.
170 if ( $this->prefixMode ) {
171 $this->addWhere( 'rev_user_text' . $this->getDB()->buildLike( $this->userprefix, $this->getDB()->anyString() ) );
172 } else {
173 $this->addWhereFld( 'rev_user_text', $this->usernames );
175 // ... and in the specified timeframe.
176 // Ensure the same sort order for rev_user_text and rev_timestamp
177 // so our query is indexed
178 if ( $this->multiUserMode ) {
179 $this->addWhereRange( 'rev_user_text', $this->params['dir'], null, null );
181 $this->addWhereRange( 'rev_timestamp',
182 $this->params['dir'], $this->params['start'], $this->params['end'] );
183 $this->addWhereFld( 'page_namespace', $this->params['namespace'] );
185 $show = $this->params['show'];
186 if ( !is_null( $show ) ) {
187 $show = array_flip( $show );
188 if ( ( isset( $show['minor'] ) && isset( $show['!minor'] ) )
189 || ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) ) )
191 $this->dieUsageMsg( array( 'show' ) );
194 $this->addWhereIf( 'rev_minor_edit = 0', isset( $show['!minor'] ) );
195 $this->addWhereIf( 'rev_minor_edit != 0', isset( $show['minor'] ) );
196 $this->addWhereIf( 'rc_patrolled = 0', isset( $show['!patrolled'] ) );
197 $this->addWhereIf( 'rc_patrolled != 0', isset( $show['patrolled'] ) );
199 $this->addOption( 'LIMIT', $this->params['limit'] + 1 );
200 $index = array( 'revision' => 'usertext_timestamp' );
202 // Mandatory fields: timestamp allows request continuation
203 // ns+title checks if the user has access rights for this page
204 // user_text is necessary if multiple users were specified
205 $this->addFields( array(
206 'rev_timestamp',
207 'page_namespace',
208 'page_title',
209 'rev_user_text',
210 'rev_deleted'
211 ) );
213 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ||
214 $this->fld_patrolled )
216 global $wgUser;
217 if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
218 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
221 // Use a redundant join condition on both
222 // timestamp and ID so we can use the timestamp
223 // index
224 $index['recentchanges'] = 'rc_user_text';
225 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
226 // Put the tables in the right order for
227 // STRAIGHT_JOIN
228 $tables = array( 'revision', 'recentchanges', 'page' );
229 $this->addOption( 'STRAIGHT_JOIN' );
230 $this->addWhere( 'rc_user_text=rev_user_text' );
231 $this->addWhere( 'rc_timestamp=rev_timestamp' );
232 $this->addWhere( 'rc_this_oldid=rev_id' );
233 } else {
234 $tables[] = 'recentchanges';
235 $this->addJoinConds( array( 'recentchanges' => array(
236 'LEFT JOIN', array(
237 'rc_user_text=rev_user_text',
238 'rc_timestamp=rev_timestamp',
239 'rc_this_oldid=rev_id' ) ) ) );
243 $this->addTables( $tables );
244 $this->addFieldsIf( 'rev_page', $this->fld_ids );
245 $this->addFieldsIf( 'rev_id', $this->fld_ids || $this->fld_flags );
246 $this->addFieldsIf( 'page_latest', $this->fld_flags );
247 // $this->addFieldsIf( 'rev_text_id', $this->fld_ids ); // Should this field be exposed?
248 $this->addFieldsIf( 'rev_comment', $this->fld_comment || $this->fld_parsedcomment );
249 $this->addFieldsIf( 'rev_len', $this->fld_size );
250 $this->addFieldsIf( 'rev_minor_edit', $this->fld_flags );
251 $this->addFieldsIf( 'rev_parent_id', $this->fld_flags );
252 $this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
254 if ( $this->fld_tags ) {
255 $this->addTables( 'tag_summary' );
256 $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', array( 'rev_id=ts_rev_id' ) ) ) );
257 $this->addFields( 'ts_tags' );
260 if ( isset( $this->params['tag'] ) ) {
261 $this->addTables( 'change_tag' );
262 $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'rev_id=ct_rev_id' ) ) ) );
263 $this->addWhereFld( 'ct_tag', $this->params['tag'] );
264 global $wgOldChangeTagsIndex;
265 $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
268 $this->addOption( 'USE INDEX', $index );
272 * Extract fields from the database row and append them to a result array
274 private function extractRowInfo( $row ) {
275 $vals = array();
277 $vals['user'] = $row->rev_user_text;
278 if ( $row->rev_deleted & Revision::DELETED_USER ) {
279 $vals['userhidden'] = '';
281 if ( $this->fld_ids ) {
282 $vals['pageid'] = intval( $row->rev_page );
283 $vals['revid'] = intval( $row->rev_id );
284 // $vals['textid'] = intval( $row->rev_text_id ); // todo: Should this field be exposed?
287 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
289 if ( $this->fld_title ) {
290 ApiQueryBase::addTitleInfo( $vals, $title );
293 if ( $this->fld_timestamp ) {
294 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
297 if ( $this->fld_flags ) {
298 if ( $row->rev_parent_id == 0 && !is_null( $row->rev_parent_id ) ) {
299 $vals['new'] = '';
301 if ( $row->rev_minor_edit ) {
302 $vals['minor'] = '';
304 if ( $row->page_latest == $row->rev_id ) {
305 $vals['top'] = '';
309 if ( ( $this->fld_comment || $this->fld_parsedcomment ) && isset( $row->rev_comment ) ) {
310 if ( $row->rev_deleted & Revision::DELETED_COMMENT ) {
311 $vals['commenthidden'] = '';
312 } else {
313 if ( $this->fld_comment ) {
314 $vals['comment'] = $row->rev_comment;
317 if ( $this->fld_parsedcomment ) {
318 global $wgUser;
319 $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->rev_comment, $title );
324 if ( $this->fld_patrolled && $row->rc_patrolled ) {
325 $vals['patrolled'] = '';
328 if ( $this->fld_size && !is_null( $row->rev_len ) ) {
329 $vals['size'] = intval( $row->rev_len );
332 if ( $this->fld_tags ) {
333 if ( $row->ts_tags ) {
334 $tags = explode( ',', $row->ts_tags );
335 $this->getResult()->setIndexedTagName( $tags, 'tag' );
336 $vals['tags'] = $tags;
337 } else {
338 $vals['tags'] = array();
342 return $vals;
345 private function continueStr( $row ) {
346 return $row->rev_user_text . '|' .
347 wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
350 public function getCacheMode( $params ) {
351 // This module provides access to deleted revisions and patrol flags if
352 // the requester is logged in
353 return 'anon-public-user-private';
356 public function getAllowedParams() {
357 return array(
358 'limit' => array(
359 ApiBase::PARAM_DFLT => 10,
360 ApiBase::PARAM_TYPE => 'limit',
361 ApiBase::PARAM_MIN => 1,
362 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
363 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
365 'start' => array(
366 ApiBase::PARAM_TYPE => 'timestamp'
368 'end' => array(
369 ApiBase::PARAM_TYPE => 'timestamp'
371 'continue' => null,
372 'user' => array(
373 ApiBase::PARAM_ISMULTI => true
375 'userprefix' => null,
376 'dir' => array(
377 ApiBase::PARAM_DFLT => 'older',
378 ApiBase::PARAM_TYPE => array(
379 'newer',
380 'older'
383 'namespace' => array(
384 ApiBase::PARAM_ISMULTI => true,
385 ApiBase::PARAM_TYPE => 'namespace'
387 'prop' => array(
388 ApiBase::PARAM_ISMULTI => true,
389 ApiBase::PARAM_DFLT => 'ids|title|timestamp|comment|size|flags',
390 ApiBase::PARAM_TYPE => array(
391 'ids',
392 'title',
393 'timestamp',
394 'comment',
395 'parsedcomment',
396 'size',
397 'flags',
398 'patrolled',
399 'tags'
402 'show' => array(
403 ApiBase::PARAM_ISMULTI => true,
404 ApiBase::PARAM_TYPE => array(
405 'minor',
406 '!minor',
407 'patrolled',
408 '!patrolled',
411 'tag' => null,
415 public function getParamDescription() {
416 global $wgRCMaxAge;
417 $p = $this->getModulePrefix();
418 return array(
419 'limit' => 'The maximum number of contributions to return',
420 'start' => 'The start timestamp to return from',
421 'end' => 'The end timestamp to return to',
422 'continue' => 'When more results are available, use this to continue',
423 'user' => 'The users to retrieve contributions for',
424 'userprefix' => "Retrieve contibutions for all users whose names begin with this value. Overrides {$p}user",
425 'dir' => 'The direction to search (older or newer)',
426 'namespace' => 'Only list contributions in these namespaces',
427 'prop' => array(
428 'Include additional pieces of information',
429 ' ids - Adds the page id and revision id',
430 ' title - Adds the title and namespace id of the page',
431 ' timestamp - Adds the timestamp of the edit',
432 ' comment - Adds the comment of the edit',
433 ' parsedcomment - Adds the parsed comment of the edit',
434 ' size - Adds the size of the page',
435 ' flags - Adds flags of the edit',
436 ' patrolled - Tags patrolled edits',
437 ' tags - Lists tags for the edit',
439 'show' => array( "Show only items that meet this criteria, e.g. non minor edits only: {$p}show=!minor",
440 "NOTE: if {$p}show=patrolled or {$p}show=!patrolled is set, revisions older than $wgRCMaxAge won\'t be shown", ),
441 'tag' => 'Only list revisions tagged with this tag',
445 public function getDescription() {
446 return 'Get all edits by a user';
449 public function getPossibleErrors() {
450 return array_merge( parent::getPossibleErrors(), array(
451 array( 'code' => 'param_user', 'info' => 'User parameter may not be empty.' ),
452 array( 'code' => 'param_user', 'info' => 'User name user is not valid' ),
453 array( 'show' ),
454 array( 'code' => 'permissiondenied', 'info' => 'You need the patrol right to request the patrolled flag' ),
455 ) );
458 protected function getExamples() {
459 return array(
460 'api.php?action=query&list=usercontribs&ucuser=YurikBot',
461 'api.php?action=query&list=usercontribs&ucuserprefix=217.121.114.',
465 public function getVersion() {
466 return __CLASS__ . ': $Id$';