4 * Created on Oct 16, 2006
6 * API for MediaWiki 1.8+
8 * Copyright (C) 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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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');
32 * This query action adds a list of a specified user's contributions to the output.
36 class ApiQueryContributions
extends ApiQueryBase
{
38 public function __construct($query, $moduleName) {
39 parent
:: __construct($query, $moduleName, 'uc');
42 private $params, $username;
43 private $fld_ids = false, $fld_title = false, $fld_timestamp = false,
44 $fld_comment = false, $fld_flags = false,
45 $fld_patrolled = false;
47 public function execute() {
49 // Parse some parameters
50 $this->params
= $this->extractRequestParams();
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_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']);
61 // TODO: if the query is going only against the revision table, should this be done?
62 $this->selectNamedDB('contributions', DB_SLAVE
, 'contributions');
65 if(isset($this->params
['userprefix']))
67 $this->prefixMode
= true;
68 $this->multiUserMode
= true;
69 $this->userprefix
= $this->params
['userprefix'];
73 $this->usernames
= array();
74 if(!is_array($this->params
['user']))
75 $this->params
['user'] = array($this->params
['user']);
76 foreach($this->params
['user'] as $u)
77 $this->prepareUsername($u);
78 $this->prefixMode
= false;
79 $this->multiUserMode
= (count($this->params
['user']) > 1);
81 $this->prepareQuery();
83 //Do the actual query.
84 $res = $this->select( __METHOD__
);
86 //Initialise some variables
88 $limit = $this->params
['limit'];
91 while ( $row = $db->fetchObject( $res ) ) {
92 if (++
$count > $limit) {
93 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
94 if($this->multiUserMode
)
95 $this->setContinueEnumParameter('continue', $this->continueStr($row));
97 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601
, $row->rev_timestamp
));
101 $vals = $this->extractRowInfo($row);
102 $fit = $this->getResult()->addValue(array('query', $this->getModuleName()), null, $vals);
105 if($this->multiUserMode
)
106 $this->setContinueEnumParameter('continue', $this->continueStr($row));
108 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601
, $row->rev_timestamp
));
113 //Free the database record so the connection can get on with other stuff
114 $db->freeResult($res);
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) {
125 $name = User
::isIP( $user )
127 : User
::getCanonicalName( $user, 'valid' );
128 if( $name === false ) {
129 $this->dieUsage( "User name {$user} is not valid", 'param_user' );
131 $this->usernames
[] = $name;
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.
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']))
152 $continue = explode('|', $this->params
['continue']);
153 if(count($continue) != 2)
154 $this->dieUsage("Invalid continue param. You should pass the original " .
155 "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("rev_user_text $op '$encUser' OR " .
160 "(rev_user_text = '$encUser' AND " .
161 "rev_timestamp $op= '$encTS')");
164 if(!$wgUser->isAllowed('hideuser'))
165 $this->addWhere($this->getDB()->bitAnd('rev_deleted',Revision
::DELETED_USER
) . ' = 0');
166 // We only want pages by the specified users.
167 if($this->prefixMode
)
168 $this->addWhere("rev_user_text LIKE '" . $this->getDB()->escapeLike($this->userprefix
) . "%'");
170 $this->addWhereFld('rev_user_text', $this->usernames
);
171 // ... and in the specified timeframe.
172 // Ensure the same sort order for rev_user_text and rev_timestamp
173 // so our query is indexed
174 if($this->multiUserMode
)
175 $this->addWhereRange('rev_user_text', $this->params
['dir'], null, null);
176 $this->addWhereRange('rev_timestamp',
177 $this->params
['dir'], $this->params
['start'], $this->params
['end'] );
178 $this->addWhereFld('page_namespace', $this->params
['namespace']);
180 $show = $this->params
['show'];
181 if (!is_null($show)) {
182 $show = array_flip($show);
183 if ((isset($show['minor']) && isset($show['!minor']))
184 ||
(isset($show['patrolled']) && isset($show['!patrolled'])))
185 $this->dieUsage("Incorrect parameter - mutually exclusive values may not be supplied", 'show');
187 $this->addWhereIf('rev_minor_edit = 0', isset($show['!minor']));
188 $this->addWhereIf('rev_minor_edit != 0', isset($show['minor']));
189 $this->addWhereIf('rc_patrolled = 0', isset($show['!patrolled']));
190 $this->addWhereIf('rc_patrolled != 0', isset($show['patrolled']));
192 $this->addOption('LIMIT', $this->params
['limit'] +
1);
193 $index['revision'] = 'usertext_timestamp';
195 // Mandatory fields: timestamp allows request continuation
196 // ns+title checks if the user has access rights for this page
197 // user_text is necessary if multiple users were specified
198 $this->addFields(array(
206 if(isset($show['patrolled']) ||
isset($show['!patrolled']) ||
207 $this->fld_patrolled
)
210 if(!$wgUser->useRCPatrol() && !$wgUser->useNPPatrol())
211 $this->dieUsage("You need the patrol right to request the patrolled flag", 'permissiondenied');
212 // Use a redundant join condition on both
213 // timestamp and ID so we can use the timestamp
215 $index['recentchanges'] = 'rc_user_text';
216 if(isset($show['patrolled']) ||
isset($show['!patrolled']))
218 // Put the tables in the right order for
220 $tables = array('revision', 'recentchanges', 'page');
221 $this->addOption('STRAIGHT_JOIN');
222 $this->addWhere('rc_user_text=rev_user_text');
223 $this->addWhere('rc_timestamp=rev_timestamp');
224 $this->addWhere('rc_this_oldid=rev_id');
228 $tables[] = 'recentchanges';
229 $this->addJoinConds(array('recentchanges' => array(
231 'rc_user_text=rev_user_text',
232 'rc_timestamp=rev_timestamp',
233 'rc_this_oldid=rev_id'))));
237 $this->addTables($tables);
238 $this->addOption('USE INDEX', $index);
239 $this->addFieldsIf('rev_page', $this->fld_ids
);
240 $this->addFieldsIf('rev_id', $this->fld_ids ||
$this->fld_flags
);
241 $this->addFieldsIf('page_latest', $this->fld_flags
);
242 // $this->addFieldsIf('rev_text_id', $this->fld_ids); // Should this field be exposed?
243 $this->addFieldsIf('rev_comment', $this->fld_comment
);
244 $this->addFieldsIf('rev_len', $this->fld_size
);
245 $this->addFieldsIf('rev_minor_edit', $this->fld_flags
);
246 $this->addFieldsIf('rev_parent_id', $this->fld_flags
);
247 $this->addFieldsIf('rc_patrolled', $this->fld_patrolled
);
251 * Extract fields from the database row and append them to a result array
253 private function extractRowInfo($row) {
257 $vals['user'] = $row->rev_user_text
;
258 if ($row->rev_deleted
& Revision
::DELETED_USER
)
259 $vals['userhidden'] = '';
260 if ($this->fld_ids
) {
261 $vals['pageid'] = intval($row->rev_page
);
262 $vals['revid'] = intval($row->rev_id
);
263 // $vals['textid'] = intval($row->rev_text_id); // todo: Should this field be exposed?
266 if ($this->fld_title
)
267 ApiQueryBase
:: addTitleInfo($vals,
268 Title
:: makeTitle($row->page_namespace
, $row->page_title
));
270 if ($this->fld_timestamp
)
271 $vals['timestamp'] = wfTimestamp(TS_ISO_8601
, $row->rev_timestamp
);
273 if ($this->fld_flags
) {
274 if ($row->rev_parent_id
== 0 && !is_null($row->rev_parent_id
))
276 if ($row->rev_minor_edit
)
278 if ($row->page_latest
== $row->rev_id
)
282 if ($this->fld_comment
&& isset($row->rev_comment
)) {
283 if ($row->rev_deleted
& Revision
::DELETED_COMMENT
)
284 $vals['commenthidden'] = '';
286 $vals['comment'] = $row->rev_comment
;
289 if ($this->fld_patrolled
&& $row->rc_patrolled
)
290 $vals['patrolled'] = '';
292 if ($this->fld_size
&& !is_null($row->rev_len
))
293 $vals['size'] = intval($row->rev_len
);
298 private function continueStr($row)
300 return $row->rev_user_text
. '|' .
301 wfTimestamp(TS_ISO_8601
, $row->rev_timestamp
);
304 public function getAllowedParams() {
307 ApiBase
:: PARAM_DFLT
=> 10,
308 ApiBase
:: PARAM_TYPE
=> 'limit',
309 ApiBase
:: PARAM_MIN
=> 1,
310 ApiBase
:: PARAM_MAX
=> ApiBase
:: LIMIT_BIG1
,
311 ApiBase
:: PARAM_MAX2
=> ApiBase
:: LIMIT_BIG2
314 ApiBase
:: PARAM_TYPE
=> 'timestamp'
317 ApiBase
:: PARAM_TYPE
=> 'timestamp'
321 ApiBase
:: PARAM_ISMULTI
=> true
323 'userprefix' => null,
325 ApiBase
:: PARAM_DFLT
=> 'older',
326 ApiBase
:: PARAM_TYPE
=> array (
331 'namespace' => array (
332 ApiBase
:: PARAM_ISMULTI
=> true,
333 ApiBase
:: PARAM_TYPE
=> 'namespace'
336 ApiBase
:: PARAM_ISMULTI
=> true,
337 ApiBase
:: PARAM_DFLT
=> 'ids|title|timestamp|comment|size|flags',
338 ApiBase
:: PARAM_TYPE
=> array (
349 ApiBase
:: PARAM_ISMULTI
=> true,
350 ApiBase
:: PARAM_TYPE
=> array (
360 public function getParamDescription() {
362 'limit' => 'The maximum number of contributions to return.',
363 'start' => 'The start timestamp to return from.',
364 'end' => 'The end timestamp to return to.',
365 'continue' => 'When more results are available, use this to continue.',
366 'user' => 'The user to retrieve contributions for.',
367 'userprefix' => 'Retrieve contibutions for all users whose names begin with this value. Overrides ucuser.',
368 'dir' => 'The direction to search (older or newer).',
369 'namespace' => 'Only list contributions in these namespaces',
370 'prop' => 'Include additional pieces of information',
371 'show' => array('Show only items that meet this criteria, e.g. non minor edits only: show=!minor',
372 'NOTE: if show=patrolled or show=!patrolled is set, revisions older than $wgRCMaxAge won\'t be shown',),
376 public function getDescription() {
377 return 'Get all edits by a user';
380 protected function getExamples() {
382 'api.php?action=query&list=usercontribs&ucuser=YurikBot',
383 'api.php?action=query&list=usercontribs&ucuserprefix=217.121.114.',
387 public function getVersion() {
388 return __CLASS__
. ': $Id$';