Add support for Number grouping(commafy) based on CLDR number grouping patterns like...
[lhc/web/wiklou.git] / includes / api / ApiQueryWatchlist.php
1 <?php
2 /**
3 *
4 *
5 * Created on Sep 25, 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 allows clients to retrieve a list of recently modified pages
34 * that are part of the logged-in user's watchlist.
35 *
36 * @ingroup API
37 */
38 class ApiQueryWatchlist extends ApiQueryGeneratorBase {
39
40 public function __construct( $query, $moduleName ) {
41 parent::__construct( $query, $moduleName, 'wl' );
42 }
43
44 public function execute() {
45 $this->run();
46 }
47
48 public function executeGenerator( $resultPageSet ) {
49 $this->run( $resultPageSet );
50 }
51
52 private $fld_ids = false, $fld_title = false, $fld_patrol = false, $fld_flags = false,
53 $fld_timestamp = false, $fld_user = false, $fld_comment = false, $fld_parsedcomment = false, $fld_sizes = false,
54 $fld_notificationtimestamp = false, $fld_userid = false, $fld_loginfo = false;
55
56 /**
57 * @param $resultPageSet ApiPageSet
58 * @return void
59 */
60 private function run( $resultPageSet = null ) {
61 $this->selectNamedDB( 'watchlist', DB_SLAVE, 'watchlist' );
62
63 $params = $this->extractRequestParams();
64
65 $user = $this->getWatchlistUser( $params );
66
67 if ( !is_null( $params['prop'] ) && is_null( $resultPageSet ) ) {
68 $prop = array_flip( $params['prop'] );
69
70 $this->fld_ids = isset( $prop['ids'] );
71 $this->fld_title = isset( $prop['title'] );
72 $this->fld_flags = isset( $prop['flags'] );
73 $this->fld_user = isset( $prop['user'] );
74 $this->fld_userid = isset( $prop['userid'] );
75 $this->fld_comment = isset( $prop['comment'] );
76 $this->fld_parsedcomment = isset ( $prop['parsedcomment'] );
77 $this->fld_timestamp = isset( $prop['timestamp'] );
78 $this->fld_sizes = isset( $prop['sizes'] );
79 $this->fld_patrol = isset( $prop['patrol'] );
80 $this->fld_notificationtimestamp = isset( $prop['notificationtimestamp'] );
81 $this->fld_loginfo = isset( $prop['loginfo'] );
82
83 if ( $this->fld_patrol ) {
84 if ( !$user->useRCPatrol() && !$user->useNPPatrol() ) {
85 $this->dieUsage( 'patrol property is not available', 'patrol' );
86 }
87 }
88 }
89
90 $this->addFields( array(
91 'rc_namespace',
92 'rc_title',
93 'rc_timestamp',
94 'rc_type',
95 ) );
96
97 if ( is_null( $resultPageSet ) ) {
98 $this->addFields( array(
99 'rc_cur_id',
100 'rc_this_oldid',
101 'rc_last_oldid',
102 ) );
103
104 $this->addFieldsIf( array( 'rc_new', 'rc_minor', 'rc_bot' ), $this->fld_flags );
105 $this->addFieldsIf( 'rc_user', $this->fld_user || $this->fld_userid );
106 $this->addFieldsIf( 'rc_user_text', $this->fld_user );
107 $this->addFieldsIf( 'rc_comment', $this->fld_comment || $this->fld_parsedcomment );
108 $this->addFieldsIf( 'rc_patrolled', $this->fld_patrol );
109 $this->addFieldsIf( array( 'rc_old_len', 'rc_new_len' ), $this->fld_sizes );
110 $this->addFieldsIf( 'wl_notificationtimestamp', $this->fld_notificationtimestamp );
111 $this->addFieldsIf( array( 'rc_logid', 'rc_log_type', 'rc_log_action', 'rc_params' ), $this->fld_loginfo );
112 } elseif ( $params['allrev'] ) {
113 $this->addFields( 'rc_this_oldid' );
114 } else {
115 $this->addFields( 'rc_cur_id' );
116 }
117
118 $this->addTables( array(
119 'recentchanges',
120 'watchlist',
121 ) );
122
123 $userId = $user->getId();
124 $this->addJoinConds( array( 'watchlist' => array('INNER JOIN',
125 array(
126 'wl_user' => $userId,
127 'wl_namespace=rc_namespace',
128 'wl_title=rc_title'
129 ) ) ) );
130
131 $this->addWhere( array(
132 'rc_deleted' => 0,
133 ) );
134
135 $db = $this->getDB();
136
137 $this->addWhereRange( 'rc_timestamp', $params['dir'],
138 $db->timestamp( $params['start'] ),
139 $db->timestamp( $params['end'] ) );
140 $this->addWhereFld( 'wl_namespace', $params['namespace'] );
141
142 if ( !$params['allrev'] ) {
143 $this->addTables( 'page' );
144 $this->addJoinConds( array( 'page' => array( 'LEFT JOIN','rc_cur_id=page_id' ) ) );
145 $this->addWhere( 'rc_this_oldid=page_latest OR rc_type=' . RC_LOG );
146 }
147
148 if ( !is_null( $params['show'] ) ) {
149 $show = array_flip( $params['show'] );
150
151 /* Check for conflicting parameters. */
152 if ( ( isset ( $show['minor'] ) && isset ( $show['!minor'] ) )
153 || ( isset ( $show['bot'] ) && isset ( $show['!bot'] ) )
154 || ( isset ( $show['anon'] ) && isset ( $show['!anon'] ) )
155 || ( isset ( $show['patrolled'] ) && isset ( $show['!patrolled'] ) )
156 )
157 {
158 $this->dieUsageMsg( 'show' );
159 }
160
161 // Check permissions.
162 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
163 global $wgUser;
164 if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
165 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
166 }
167 }
168
169 /* Add additional conditions to query depending upon parameters. */
170 $this->addWhereIf( 'rc_minor = 0', isset( $show['!minor'] ) );
171 $this->addWhereIf( 'rc_minor != 0', isset( $show['minor'] ) );
172 $this->addWhereIf( 'rc_bot = 0', isset( $show['!bot'] ) );
173 $this->addWhereIf( 'rc_bot != 0', isset( $show['bot'] ) );
174 $this->addWhereIf( 'rc_user = 0', isset( $show['anon'] ) );
175 $this->addWhereIf( 'rc_user != 0', isset( $show['!anon'] ) );
176 $this->addWhereIf( 'rc_patrolled = 0', isset( $show['!patrolled'] ) );
177 $this->addWhereIf( 'rc_patrolled != 0', isset( $show['patrolled'] ) );
178 }
179
180 if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) {
181 $this->dieUsage( 'user and excludeuser cannot be used together', 'user-excludeuser' );
182 }
183 if ( !is_null( $params['user'] ) ) {
184 $this->addWhereFld( 'rc_user_text', $params['user'] );
185 }
186 if ( !is_null( $params['excludeuser'] ) ) {
187 $this->addWhere( 'rc_user_text != ' . $db->addQuotes( $params['excludeuser'] ) );
188 }
189
190 // This is an index optimization for mysql, as done in the Special:Watchlist page
191 $this->addWhereIf( "rc_timestamp > ''", !isset( $params['start'] ) && !isset( $params['end'] ) && $db->getType() == 'mysql' );
192
193 $this->addOption( 'LIMIT', $params['limit'] + 1 );
194
195 $ids = array();
196 $count = 0;
197 $res = $this->select( __METHOD__ );
198
199 foreach ( $res as $row ) {
200 if ( ++ $count > $params['limit'] ) {
201 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
202 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
203 break;
204 }
205
206 if ( is_null( $resultPageSet ) ) {
207 $vals = $this->extractRowInfo( $row );
208 $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
209 if ( !$fit ) {
210 $this->setContinueEnumParameter( 'start',
211 wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
212 break;
213 }
214 } else {
215 if ( $params['allrev'] ) {
216 $ids[] = intval( $row->rc_this_oldid );
217 } else {
218 $ids[] = intval( $row->rc_cur_id );
219 }
220 }
221 }
222
223 if ( is_null( $resultPageSet ) ) {
224 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
225 } elseif ( $params['allrev'] ) {
226 $resultPageSet->populateFromRevisionIDs( $ids );
227 } else {
228 $resultPageSet->populateFromPageIDs( $ids );
229 }
230 }
231
232 private function extractRowInfo( $row ) {
233 $vals = array();
234
235 if ( $this->fld_ids ) {
236 $vals['pageid'] = intval( $row->rc_cur_id );
237 $vals['revid'] = intval( $row->rc_this_oldid );
238 $vals['old_revid'] = intval( $row->rc_last_oldid );
239 }
240
241 $title = Title::makeTitle( $row->rc_namespace, $row->rc_title );
242
243 if ( $this->fld_title ) {
244 ApiQueryBase::addTitleInfo( $vals, $title );
245 }
246
247 if ( $this->fld_user || $this->fld_userid ) {
248
249 if ( $this->fld_user ) {
250 $vals['user'] = $row->rc_user_text;
251 }
252
253 if ( $this->fld_userid ) {
254 $vals['user'] = $row->rc_user;
255 }
256
257 if ( !$row->rc_user ) {
258 $vals['anon'] = '';
259 }
260 }
261
262 if ( $this->fld_flags ) {
263 if ( $row->rc_new ) {
264 $vals['new'] = '';
265 }
266 if ( $row->rc_minor ) {
267 $vals['minor'] = '';
268 }
269 if ( $row->rc_bot ) {
270 $vals['bot'] = '';
271 }
272 }
273
274 if ( $this->fld_patrol && isset( $row->rc_patrolled ) ) {
275 $vals['patrolled'] = '';
276 }
277
278 if ( $this->fld_timestamp ) {
279 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rc_timestamp );
280 }
281
282 if ( $this->fld_sizes ) {
283 $vals['oldlen'] = intval( $row->rc_old_len );
284 $vals['newlen'] = intval( $row->rc_new_len );
285 }
286
287 if ( $this->fld_notificationtimestamp ) {
288 $vals['notificationtimestamp'] = ( $row->wl_notificationtimestamp == null )
289 ? ''
290 : wfTimestamp( TS_ISO_8601, $row->wl_notificationtimestamp );
291 }
292
293 if ( $this->fld_comment && isset( $row->rc_comment ) ) {
294 $vals['comment'] = $row->rc_comment;
295 }
296
297 if ( $this->fld_parsedcomment && isset( $row->rc_comment ) ) {
298 $vals['parsedcomment'] = Linker::formatComment( $row->rc_comment, $title );
299 }
300
301 if ( $this->fld_loginfo && $row->rc_type == RC_LOG ) {
302 $vals['logid'] = intval( $row->rc_logid );
303 $vals['logtype'] = $row->rc_log_type;
304 $vals['logaction'] = $row->rc_log_action;
305 ApiQueryLogEvents::addLogParams(
306 $this->getResult(),
307 $vals,
308 $row->rc_params,
309 $row->rc_log_type,
310 $row->rc_log_action,
311 $row->rc_timestamp
312 );
313 }
314
315 return $vals;
316 }
317
318 public function getAllowedParams() {
319 return array(
320 'allrev' => false,
321 'start' => array(
322 ApiBase::PARAM_TYPE => 'timestamp'
323 ),
324 'end' => array(
325 ApiBase::PARAM_TYPE => 'timestamp'
326 ),
327 'namespace' => array (
328 ApiBase::PARAM_ISMULTI => true,
329 ApiBase::PARAM_TYPE => 'namespace'
330 ),
331 'user' => array(
332 ApiBase::PARAM_TYPE => 'user',
333 ),
334 'excludeuser' => array(
335 ApiBase::PARAM_TYPE => 'user',
336 ),
337 'dir' => array(
338 ApiBase::PARAM_DFLT => 'older',
339 ApiBase::PARAM_TYPE => array(
340 'newer',
341 'older'
342 )
343 ),
344 'limit' => array(
345 ApiBase::PARAM_DFLT => 10,
346 ApiBase::PARAM_TYPE => 'limit',
347 ApiBase::PARAM_MIN => 1,
348 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
349 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2
350 ),
351 'prop' => array(
352 ApiBase::PARAM_ISMULTI => true,
353 ApiBase::PARAM_DFLT => 'ids|title|flags',
354 ApiBase::PARAM_TYPE => array(
355 'ids',
356 'title',
357 'flags',
358 'user',
359 'userid',
360 'comment',
361 'parsedcomment',
362 'timestamp',
363 'patrol',
364 'sizes',
365 'notificationtimestamp',
366 'loginfo',
367 )
368 ),
369 'show' => array(
370 ApiBase::PARAM_ISMULTI => true,
371 ApiBase::PARAM_TYPE => array(
372 'minor',
373 '!minor',
374 'bot',
375 '!bot',
376 'anon',
377 '!anon',
378 'patrolled',
379 '!patrolled',
380 )
381 ),
382 'owner' => array(
383 ApiBase::PARAM_TYPE => 'user'
384 ),
385 'token' => array(
386 ApiBase::PARAM_TYPE => 'string'
387 )
388 );
389 }
390
391 public function getParamDescription() {
392 $p = $this->getModulePrefix();
393 return array(
394 'allrev' => 'Include multiple revisions of the same page within given timeframe',
395 'start' => 'The timestamp to start enumerating from',
396 'end' => 'The timestamp to end enumerating',
397 'namespace' => 'Filter changes to only the given namespace(s)',
398 'user' => 'Only list changes by this user',
399 'excludeuser' => 'Don\'t list changes by this user',
400 'dir' => $this->getDirectionDescription( $p ),
401 'limit' => 'How many total results to return per request',
402 'prop' => array(
403 'Which additional items to get (non-generator mode only).',
404 ' ids - Adds revision ids and page ids',
405 ' title - Adds title of the page',
406 ' flags - Adds flags for the edit',
407 ' user - Adds the user who made the edit',
408 ' userid - Adds user id of whom made the edit',
409 ' comment - Adds comment of the edit',
410 ' parsedcomment - Adds parsed comment of the edit',
411 ' timestamp - Adds timestamp of the edit',
412 ' patrol - Tags edits that are patrolled',
413 ' size - Adds the old and new lengths of the page',
414 ' notificationtimestamp - Adds timestamp of when the user was last notified about the edit',
415 ' loginfo - Adds log information where appropriate',
416 ),
417 'show' => array(
418 'Show only items that meet this criteria.',
419 "For example, to see only minor edits done by logged-in users, set {$p}show=minor|!anon"
420 ),
421 'owner' => 'The name of the user whose watchlist you\'d like to access',
422 'token' => 'Give a security token (settable in preferences) to allow access to another user\'s watchlist'
423 );
424 }
425
426 public function getDescription() {
427 return "Get all recent changes to pages in the logged in user's watchlist";
428 }
429
430 public function getPossibleErrors() {
431 return array_merge( parent::getPossibleErrors(), array(
432 array( 'code' => 'bad_wlowner', 'info' => 'Specified user does not exist' ),
433 array( 'code' => 'bad_wltoken', 'info' => 'Incorrect watchlist token provided -- please set a correct token in Special:Preferences' ),
434 array( 'code' => 'notloggedin', 'info' => 'You must be logged-in to have a watchlist' ),
435 array( 'code' => 'patrol', 'info' => 'patrol property is not available' ),
436 array( 'show' ),
437 array( 'code' => 'permissiondenied', 'info' => 'You need the patrol right to request the patrolled flag' ),
438 array( 'code' => 'user-excludeuser', 'info' => 'user and excludeuser cannot be used together' ),
439 ) );
440 }
441
442 public function getExamples() {
443 return array(
444 'api.php?action=query&list=watchlist',
445 'api.php?action=query&list=watchlist&wlprop=ids|title|timestamp|user|comment',
446 'api.php?action=query&list=watchlist&wlallrev=&wlprop=ids|title|timestamp|user|comment',
447 'api.php?action=query&generator=watchlist&prop=info',
448 'api.php?action=query&generator=watchlist&gwlallrev=&prop=revisions&rvprop=timestamp|user',
449 'api.php?action=query&list=watchlist&wlowner=Bob_Smith&wltoken=d8d562e9725ea1512894cdab28e5ceebc7f20237'
450 );
451 }
452
453 public function getHelpUrls() {
454 return 'http://www.mediawiki.org/wiki/API:Watchlist';
455 }
456
457 public function getVersion() {
458 return __CLASS__ . ': $Id$';
459 }
460 }