]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - includes/api/ApiQueryUserContributions.php
MediaWiki 1.17.4
[autoinstalls/mediawiki.git] / includes / api / ApiQueryUserContributions.php
1 <?php
2 /**
3  * API for MediaWiki 1.8+
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                 $this->prepareQuery();
85
86                 // Do the actual query.
87                 $res = $this->select( __METHOD__ );
88
89                 // Initialise some variables
90                 $count = 0;
91                 $limit = $this->params['limit'];
92
93                 // Fetch each row
94                 foreach ( $res as $row ) {
95                         if ( ++ $count > $limit ) {
96                                 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
97                                 if ( $this->multiUserMode ) {
98                                         $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
99                                 } else {
100                                         $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
101                                 }
102                                 break;
103                         }
104
105                         $vals = $this->extractRowInfo( $row );
106                         $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
107                         if ( !$fit ) {
108                                 if ( $this->multiUserMode ) {
109                                         $this->setContinueEnumParameter( 'continue', $this->continueStr( $row ) );
110                                 } else {
111                                         $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rev_timestamp ) );
112                                 }
113                                 break;
114                         }
115                 }
116
117                 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
118         }
119
120         /**
121          * Validate the 'user' parameter and set the value to compare
122          * against `revision`.`rev_user_text`
123          */
124         private function prepareUsername( $user ) {
125                 if ( !is_null( $user ) && $user !== '' ) {
126                         $name = User::isIP( $user )
127                                 ? $user
128                                 : User::getCanonicalName( $user, 'valid' );
129                         if ( $name === false ) {
130                                 $this->dieUsage( "User name {$user} is not valid", 'param_user' );
131                         } else {
132                                 $this->usernames[] = $name;
133                         }
134                 } else {
135                         $this->dieUsage( 'User parameter may not be empty', 'param_user' );
136                 }
137         }
138
139         /**
140          * Prepares the query and returns the limit of rows requested
141          */
142         private function prepareQuery() {
143                 // We're after the revision table, and the corresponding page
144                 // row for anything we retrieve. We may also need the
145                 // recentchanges row and/or tag summary row.
146                 global $wgUser;
147                 $tables = array( 'page', 'revision' ); // Order may change
148                 $this->addWhere( 'page_id=rev_page' );
149
150                 // Handle continue parameter
151                 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                         }
157                         $encUser = $this->getDB()->strencode( $continue[0] );
158                         $encTS = wfTimestamp( TS_MW, $continue[1] );
159                         $op = ( $this->params['dir'] == 'older' ? '<' : '>' );
160                         $this->addWhere(
161                                 "rev_user_text $op '$encUser' OR " .
162                                 "(rev_user_text = '$encUser' AND " .
163                                 "rev_timestamp $op= '$encTS')"
164                         );
165                 }
166
167                 if ( !$wgUser->isAllowed( 'hideuser' ) ) {
168                         $this->addWhere( $this->getDB()->bitAnd( 'rev_deleted', Revision::DELETED_USER ) . ' = 0' );
169                 }
170                 // We only want pages by the specified users.
171                 if ( $this->prefixMode ) {
172                         $this->addWhere( 'rev_user_text' . $this->getDB()->buildLike( $this->userprefix, $this->getDB()->anyString() ) );
173                 } else {
174                         $this->addWhereFld( 'rev_user_text', $this->usernames );
175                 }
176                 // ... and in the specified timeframe.
177                 // Ensure the same sort order for rev_user_text and rev_timestamp
178                 // so our query is indexed
179                 if ( $this->multiUserMode ) {
180                         $this->addWhereRange( 'rev_user_text', $this->params['dir'], null, null );
181                 }
182                 $this->addWhereRange( 'rev_timestamp',
183                         $this->params['dir'], $this->params['start'], $this->params['end'] );
184                 $this->addWhereFld( 'page_namespace', $this->params['namespace'] );
185
186                 $show = $this->params['show'];
187                 if ( !is_null( $show ) ) {
188                         $show = array_flip( $show );
189                         if ( ( isset( $show['minor'] ) && isset( $show['!minor'] ) )
190                                         || ( isset( $show['patrolled'] ) && isset( $show['!patrolled'] ) ) ) {
191                                 $this->dieUsageMsg( array( 'show' ) );
192                         }
193
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'] ) );
198                 }
199                 $this->addOption( 'LIMIT', $this->params['limit'] + 1 );
200                 $index = array( 'revision' => 'usertext_timestamp' );
201
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',
210                         'rev_user_text',
211                         'rev_deleted'
212                 ) );
213
214                 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ||
215                                  $this->fld_patrolled ) {
216                         if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
217                                 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
218                         }
219
220                         // Use a redundant join condition on both
221                         // timestamp and ID so we can use the timestamp
222                         // index
223                         $index['recentchanges'] = 'rc_user_text';
224                         if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
225                                 // Put the tables in the right order for
226                                 // STRAIGHT_JOIN
227                                 $tables = array( 'revision', 'recentchanges', 'page' );
228                                 $this->addOption( 'STRAIGHT_JOIN' );
229                                 $this->addWhere( 'rc_user_text=rev_user_text' );
230                                 $this->addWhere( 'rc_timestamp=rev_timestamp' );
231                                 $this->addWhere( 'rc_this_oldid=rev_id' );
232                         } else {
233                                 $tables[] = 'recentchanges';
234                                 $this->addJoinConds( array( 'recentchanges' => array(
235                                         'LEFT JOIN', array(
236                                                 'rc_user_text=rev_user_text',
237                                                 'rc_timestamp=rev_timestamp',
238                                                 'rc_this_oldid=rev_id' ) ) ) );
239                         }
240                 }
241
242                 $this->addTables( $tables );
243                 $this->addFieldsIf( 'rev_page', $this->fld_ids );
244                 $this->addFieldsIf( 'rev_id', $this->fld_ids || $this->fld_flags );
245                 $this->addFieldsIf( 'page_latest', $this->fld_flags );
246                 // $this->addFieldsIf( 'rev_text_id', $this->fld_ids ); // Should this field be exposed?
247                 $this->addFieldsIf( 'rev_comment', $this->fld_comment || $this->fld_parsedcomment );
248                 $this->addFieldsIf( 'rev_len', $this->fld_size );
249                 $this->addFieldsIf( 'rev_minor_edit', $this->fld_flags );
250                 $this->addFieldsIf( 'rev_parent_id', $this->fld_flags );
251                 $this->addFieldsIf( 'rc_patrolled', $this->fld_patrolled );
252
253                 if ( $this->fld_tags ) {
254                         $this->addTables( 'tag_summary' );
255                         $this->addJoinConds( array( 'tag_summary' => array( 'LEFT JOIN', array( 'rev_id=ts_rev_id' ) ) ) );
256                         $this->addFields( 'ts_tags' );
257                 }
258
259                 if ( isset( $this->params['tag'] ) ) {
260                         $this->addTables( 'change_tag' );
261                         $this->addJoinConds( array( 'change_tag' => array( 'INNER JOIN', array( 'rev_id=ct_rev_id' ) ) ) );
262                         $this->addWhereFld( 'ct_tag', $this->params['tag'] );
263                         global $wgOldChangeTagsIndex;
264                         $index['change_tag'] = $wgOldChangeTagsIndex ? 'ct_tag' : 'change_tag_tag_id';
265                 }
266
267                 $this->addOption( 'USE INDEX', $index );
268         }
269
270         /**
271          * Extract fields from the database row and append them to a result array
272          */
273         private function extractRowInfo( $row ) {
274                 $vals = array();
275
276                 $vals['userid'] = $row->rev_user;
277                 $vals['user'] = $row->rev_user_text;
278                 if ( $row->rev_deleted & Revision::DELETED_USER ) {
279                         $vals['userhidden'] = '';
280                 }
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?
285                 }
286
287                 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
288
289                 if ( $this->fld_title ) {
290                         ApiQueryBase::addTitleInfo( $vals, $title );
291                 }
292
293                 if ( $this->fld_timestamp ) {
294                         $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
295                 }
296
297                 if ( $this->fld_flags ) {
298                         if ( $row->rev_parent_id == 0 && !is_null( $row->rev_parent_id ) ) {
299                                 $vals['new'] = '';
300                         }
301                         if ( $row->rev_minor_edit ) {
302                                 $vals['minor'] = '';
303                         }
304                         if ( $row->page_latest == $row->rev_id ) {
305                                 $vals['top'] = '';
306                         }
307                 }
308
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;
315                                 }
316
317                                 if ( $this->fld_parsedcomment ) {
318                                         global $wgUser;
319                                         $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->rev_comment, $title );
320                                 }
321                         }
322                 }
323
324                 if ( $this->fld_patrolled && $row->rc_patrolled ) {
325                         $vals['patrolled'] = '';
326                 }
327
328                 if ( $this->fld_size && !is_null( $row->rev_len ) ) {
329                         $vals['size'] = intval( $row->rev_len );
330                 }
331
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();
339                         }
340                 }
341
342                 return $vals;
343         }
344
345         private function continueStr( $row ) {
346                 return $row->rev_user_text . '|' .
347                         wfTimestamp( TS_ISO_8601, $row->rev_timestamp );
348         }
349
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';
354         }
355
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
364                         ),
365                         'start' => array(
366                                 ApiBase::PARAM_TYPE => 'timestamp'
367                         ),
368                         'end' => array(
369                                 ApiBase::PARAM_TYPE => 'timestamp'
370                         ),
371                         'continue' => null,
372                         'user' => array(
373                                 ApiBase::PARAM_ISMULTI => true
374                         ),
375                         'userprefix' => null,
376                         'dir' => array(
377                                 ApiBase::PARAM_DFLT => 'older',
378                                 ApiBase::PARAM_TYPE => array(
379                                         'newer',
380                                         'older'
381                                 )
382                         ),
383                         'namespace' => array(
384                                 ApiBase::PARAM_ISMULTI => true,
385                                 ApiBase::PARAM_TYPE => 'namespace'
386                         ),
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'
400                                 )
401                         ),
402                         'show' => array(
403                                 ApiBase::PARAM_ISMULTI => true,
404                                 ApiBase::PARAM_TYPE => array(
405                                         'minor',
406                                         '!minor',
407                                         'patrolled',
408                                         '!patrolled',
409                                 )
410                         ),
411                         'tag' => null,
412                 );
413         }
414
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',
438                         ),
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',
442                 );
443         }
444
445         public function getDescription() {
446                 return 'Get all edits by a user';
447         }
448
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                 ) );
456         }
457
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.',
462                 );
463         }
464
465         public function getVersion() {
466                 return __CLASS__ . ': $Id$';
467         }
468 }