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