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;
46 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_flags
= isset($prop['flags']);
56 $this->fld_timestamp
= isset($prop['timestamp']);
58 // TODO: if the query is going only against the revision table, should this be done?
59 $this->selectNamedDB('contributions', DB_SLAVE
, 'contributions');
62 if(isset($this->params
['userprefix']))
64 $this->prefixMode
= true;
65 $this->userprefix
= $this->params
['userprefix'];
69 $this->usernames
= array();
70 if(!is_array($this->params
['user']))
71 $this->params
['user'] = array($this->params
['user']);
72 foreach($this->params
['user'] as $u)
73 $this->prepareUsername($u);
74 $this->prefixMode
= false;
76 $this->prepareQuery();
78 //Do the actual query.
79 $res = $this->select( __METHOD__
);
81 //Initialise some variables
84 $limit = $this->params
['limit'];
87 while ( $row = $db->fetchObject( $res ) ) {
88 if (++
$count > $limit) {
89 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
90 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601
, $row->rev_timestamp
));
94 $vals = $this->extractRowInfo($row);
99 //Free the database record so the connection can get on with other stuff
100 $db->freeResult($res);
102 //And send the whole shebang out as output.
103 $this->getResult()->setIndexedTagName($data, 'item');
104 $this->getResult()->addValue('query', $this->getModuleName(), $data);
108 * Validate the 'user' parameter and set the value to compare
109 * against `revision`.`rev_user_text`
111 private function prepareUsername($user) {
113 $name = User
::isIP( $user )
115 : User
::getCanonicalName( $user, 'valid' );
116 if( $name === false ) {
117 $this->dieUsage( "User name {$user} is not valid", 'param_user' );
119 $this->usernames
[] = $name;
122 $this->dieUsage( 'User parameter may not be empty', 'param_user' );
127 * Prepares the query and returns the limit of rows requested
129 private function prepareQuery() {
131 //We're after the revision table, and the corresponding page row for
132 //anything we retrieve.
133 $this->addTables(array('revision', 'page'));
134 $this->addWhere('page_id=rev_page');
136 $this->addWhereFld('rev_deleted', 0);
137 // We only want pages by the specified users.
138 if($this->prefixMode
)
139 $this->addWhere("rev_user_text LIKE '" . $this->getDb()->escapeLike($this->userprefix
) . "%'");
141 $this->addWhereFld( 'rev_user_text', $this->usernames
);
142 // ... and in the specified timeframe.
143 // Ensure the same sort order for rev_user_text and rev_timestamp
144 // so our query is indexed
145 $this->addWhereRange('rev_user_text', $this->params
['dir'], null, null);
146 $this->addWhereRange('rev_timestamp',
147 $this->params
['dir'], $this->params
['start'], $this->params
['end'] );
148 $this->addWhereFld('page_namespace', $this->params
['namespace']);
150 $show = $this->params
['show'];
151 if (!is_null($show)) {
152 $show = array_flip($show);
153 if (isset ($show['minor']) && isset ($show['!minor']))
154 $this->dieUsage("Incorrect parameter - mutually exclusive values may not be supplied", 'show');
156 $this->addWhereIf('rev_minor_edit = 0', isset ($show['!minor']));
157 $this->addWhereIf('rev_minor_edit != 0', isset ($show['minor']));
159 $this->addOption('LIMIT', $this->params
['limit'] +
1);
161 // Mandatory fields: timestamp allows request continuation
162 // ns+title checks if the user has access rights for this page
163 // user_text is necessary if multiple users were specified
164 $this->addFields(array(
171 $this->addFieldsIf('rev_page', $this->fld_ids
);
172 $this->addFieldsIf('rev_id', $this->fld_ids ||
$this->fld_flags
);
173 $this->addFieldsIf('page_latest', $this->fld_flags
);
174 // $this->addFieldsIf('rev_text_id', $this->fld_ids); // Should this field be exposed?
175 $this->addFieldsIf('rev_comment', $this->fld_comment
);
176 $this->addFieldsIf('rev_minor_edit', $this->fld_flags
);
177 $this->addFieldsIf('page_is_new', $this->fld_flags
);
181 * Extract fields from the database row and append them to a result array
183 private function extractRowInfo($row) {
187 $vals['user'] = $row->rev_user_text
;
188 if ($this->fld_ids
) {
189 $vals['pageid'] = intval($row->rev_page
);
190 $vals['revid'] = intval($row->rev_id
);
191 // $vals['textid'] = intval($row->rev_text_id); // todo: Should this field be exposed?
194 if ($this->fld_title
)
195 ApiQueryBase
:: addTitleInfo($vals,
196 Title
:: makeTitle($row->page_namespace
, $row->page_title
));
198 if ($this->fld_timestamp
)
199 $vals['timestamp'] = wfTimestamp(TS_ISO_8601
, $row->rev_timestamp
);
201 if ($this->fld_flags
) {
202 if ($row->page_is_new
)
204 if ($row->rev_minor_edit
)
206 if ($row->page_latest
== $row->rev_id
)
210 if ($this->fld_comment
&& !empty ($row->rev_comment
))
211 $vals['comment'] = $row->rev_comment
;
216 public function getAllowedParams() {
219 ApiBase
:: PARAM_DFLT
=> 10,
220 ApiBase
:: PARAM_TYPE
=> 'limit',
221 ApiBase
:: PARAM_MIN
=> 1,
222 ApiBase
:: PARAM_MAX
=> ApiBase
:: LIMIT_BIG1
,
223 ApiBase
:: PARAM_MAX2
=> ApiBase
:: LIMIT_BIG2
226 ApiBase
:: PARAM_TYPE
=> 'timestamp'
229 ApiBase
:: PARAM_TYPE
=> 'timestamp'
232 ApiBase
:: PARAM_ISMULTI
=> true
234 'userprefix' => null,
236 ApiBase
:: PARAM_DFLT
=> 'older',
237 ApiBase
:: PARAM_TYPE
=> array (
242 'namespace' => array (
243 ApiBase
:: PARAM_ISMULTI
=> true,
244 ApiBase
:: PARAM_TYPE
=> 'namespace'
247 ApiBase
:: PARAM_ISMULTI
=> true,
248 ApiBase
:: PARAM_DFLT
=> 'ids|title|timestamp|flags|comment',
249 ApiBase
:: PARAM_TYPE
=> array (
258 ApiBase
:: PARAM_ISMULTI
=> true,
259 ApiBase
:: PARAM_TYPE
=> array (
267 public function getParamDescription() {
269 'limit' => 'The maximum number of contributions to return.',
270 'start' => 'The start timestamp to return from.',
271 'end' => 'The end timestamp to return to.',
272 'user' => 'The user to retrieve contributions for.',
273 'userprefix' => 'Retrieve contibutions for all users whose names begin with this value. Overrides ucuser.',
274 'dir' => 'The direction to search (older or newer).',
275 'namespace' => 'Only list contributions in these namespaces',
276 'prop' => 'Include additional pieces of information',
277 'show' => 'Show only items that meet this criteria, e.g. non minor edits only: show=!minor',
281 public function getDescription() {
282 return 'Get all edits by a user';
285 protected function getExamples() {
287 'api.php?action=query&list=usercontribs&ucuser=YurikBot',
288 'api.php?action=query&list=usercontribs&ucuserprefix=217.121.114.',
292 public function getVersion() {
293 return __CLASS__
. ': $Id$';