-(bug 24484) Add prop=pageprops module
[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.
144 if ( isset( $show['patrolled'] ) || isset( $show['!patrolled'] ) ) {
145 global $wgUser;
146 if ( !$wgUser->useRCPatrol() && !$wgUser->useNPPatrol() ) {
147 $this->dieUsage( 'You need the patrol right to request the patrolled flag', 'permissiondenied' );
148 }
149 }
150
151 /* Add additional conditions to query depending upon parameters. */
152 $this->addWhereIf( 'rc_minor = 0', isset( $show['!minor'] ) );
153 $this->addWhereIf( 'rc_minor != 0', isset( $show['minor'] ) );
154 $this->addWhereIf( 'rc_bot = 0', isset( $show['!bot'] ) );
155 $this->addWhereIf( 'rc_bot != 0', isset( $show['bot'] ) );
156 $this->addWhereIf( 'rc_user = 0', isset( $show['anon'] ) );
157 $this->addWhereIf( 'rc_user != 0', isset( $show['!anon'] ) );
158 $this->addWhereIf( 'rc_patrolled = 0', isset( $show['!patrolled'] ) );
159 $this->addWhereIf( 'rc_patrolled != 0', isset( $show['patrolled'] ) );
160 }
161
162 if ( !is_null( $params['user'] ) && !is_null( $params['excludeuser'] ) ) {
163 $this->dieUsage( 'user and excludeuser cannot be used together', 'user-excludeuser' );
164 }
165 if ( !is_null( $params['user'] ) ) {
166 $this->addWhereFld( 'rc_user_text', $params['user'] );
167 }
168 if ( !is_null( $params['excludeuser'] ) ) {
169 $this->addWhere( 'rc_user_text != ' . $this->getDB()->addQuotes( $params['excludeuser'] ) );
170 }
171
172 $db = $this->getDB();
173
174 // This is an index optimization for mysql, as done in the Special:Watchlist page
175 $this->addWhereIf( "rc_timestamp > ''", !isset( $params['start'] ) && !isset( $params['end'] ) && $db->getType() == 'mysql' );
176
177 $this->addOption( 'LIMIT', $params['limit'] + 1 );
178
179 $ids = array();
180 $count = 0;
181 $res = $this->select( __METHOD__ );
182
183 foreach ( $res as $row ) {
184 if ( ++ $count > $params['limit'] ) {
185 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
186 $this->setContinueEnumParameter( 'start', wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
187 break;
188 }
189
190 if ( is_null( $resultPageSet ) ) {
191 $vals = $this->extractRowInfo( $row );
192 $fit = $this->getResult()->addValue( array( 'query', $this->getModuleName() ), null, $vals );
193 if ( !$fit ) {
194 $this->setContinueEnumParameter( 'start',
195 wfTimestamp( TS_ISO_8601, $row->rc_timestamp ) );
196 break;
197 }
198 } else {
199 if ( $params['allrev'] ) {
200 $ids[] = intval( $row->rc_this_oldid );
201 } else {
202 $ids[] = intval( $row->rc_cur_id );
203 }
204 }
205 }
206
207 if ( is_null( $resultPageSet ) ) {
208 $this->getResult()->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'item' );
209 } elseif ( $params['allrev'] ) {
210 $resultPageSet->populateFromRevisionIDs( $ids );
211 } else {
212 $resultPageSet->populateFromPageIDs( $ids );
213 }
214 }
215
216 private function extractRowInfo( $row ) {
217 $vals = array();
218
219 if ( $this->fld_ids ) {
220 $vals['pageid'] = intval( $row->rc_cur_id );
221 $vals['revid'] = intval( $row->rc_this_oldid );
222 }
223
224 $title = Title::makeTitle( $row->rc_namespace, $row->rc_title );
225
226 if ( $this->fld_title ) {
227 ApiQueryBase::addTitleInfo( $vals, $title );
228 }
229
230 if ( $this->fld_user ) {
231 $vals['user'] = $row->rc_user_text;
232 if ( !$row->rc_user ) {
233 $vals['anon'] = '';
234 }
235 }
236
237 if ( $this->fld_flags ) {
238 if ( $row->rc_new ) {
239 $vals['new'] = '';
240 }
241 if ( $row->rc_minor ) {
242 $vals['minor'] = '';
243 }
244 if ( $row->rc_bot ) {
245 $vals['bot'] = '';
246 }
247 }
248
249 if ( $this->fld_patrol && isset( $row->rc_patrolled ) ) {
250 $vals['patrolled'] = '';
251 }
252
253 if ( $this->fld_timestamp ) {
254 $vals['timestamp'] = wfTimestamp( TS_ISO_8601, $row->rc_timestamp );
255 }
256
257 if ( $this->fld_sizes ) {
258 $vals['oldlen'] = intval( $row->rc_old_len );
259 $vals['newlen'] = intval( $row->rc_new_len );
260 }
261
262 if ( $this->fld_notificationtimestamp ) {
263 $vals['notificationtimestamp'] = ( $row->wl_notificationtimestamp == null )
264 ? ''
265 : wfTimestamp( TS_ISO_8601, $row->wl_notificationtimestamp );
266 }
267
268 if ( $this->fld_comment && isset( $row->rc_comment ) ) {
269 $vals['comment'] = $row->rc_comment;
270 }
271
272 if ( $this->fld_parsedcomment && isset( $row->rc_comment ) ) {
273 global $wgUser;
274 $vals['parsedcomment'] = $wgUser->getSkin()->formatComment( $row->rc_comment, $title );
275 }
276
277 return $vals;
278 }
279
280 public function getAllowedParams() {
281 return array(
282 'allrev' => false,
283 'start' => array(
284 ApiBase::PARAM_TYPE => 'timestamp'
285 ),
286 'end' => array(
287 ApiBase::PARAM_TYPE => 'timestamp'
288 ),
289 'namespace' => array (
290 ApiBase::PARAM_ISMULTI => true,
291 ApiBase::PARAM_TYPE => 'namespace'
292 ),
293 'user' => array(
294 ApiBase::PARAM_TYPE => 'user',
295 ),
296 'excludeuser' => array(
297 ApiBase::PARAM_TYPE => 'user',
298 ),
299 'dir' => array(
300 ApiBase::PARAM_DFLT => 'older',
301 ApiBase::PARAM_TYPE => array(
302 'newer',
303 'older'
304 )
305 ),
306 'limit' => array(
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
312 ),
313 'prop' => array(
314 ApiBase::PARAM_ISMULTI => true,
315 ApiBase::PARAM_DFLT => 'ids|title|flags',
316 ApiBase::PARAM_TYPE => array(
317 'ids',
318 'title',
319 'flags',
320 'user',
321 'comment',
322 'parsedcomment',
323 'timestamp',
324 'patrol',
325 'sizes',
326 'notificationtimestamp'
327 )
328 ),
329 'show' => array(
330 ApiBase::PARAM_ISMULTI => true,
331 ApiBase::PARAM_TYPE => array(
332 'minor',
333 '!minor',
334 'bot',
335 '!bot',
336 'anon',
337 '!anon',
338 'patrolled',
339 '!patrolled',
340 )
341 ),
342 'owner' => array(
343 ApiBase::PARAM_TYPE => 'user'
344 ),
345 'token' => array(
346 ApiBase::PARAM_TYPE => 'string'
347 )
348 );
349 }
350
351 public function getParamDescription() {
352 return array(
353 'allrev' => 'Include multiple revisions of the same page within given timeframe',
354 'start' => 'The timestamp to start enumerating from',
355 'end' => 'The timestamp to end enumerating',
356 'namespace' => 'Filter changes to only the given namespace(s)',
357 'user' => 'Only list changes by this user',
358 'excludeuser' => 'Don\'t list changes by this user',
359 'dir' => 'In which direction to enumerate pages',
360 'limit' => 'How many total results to return per request',
361 'prop' => array(
362 'Which additional items to get (non-generator mode only).',
363 ' ids - Adds revision ids and page ids',
364 ' title - Adds title of the page',
365 ' flags - Adds flags for the edit',
366 ' user - Adds user who made the edit',
367 ' comment - Adds comment of the edit',
368 ' parsedcomment - Adds parsed comment of the edit',
369 ' timestamp - Adds timestamp of the edit',
370 ' patrol - Tags edits that are patrolled',
371 ' size - Adds the old and new lengths of the page',
372 ' notificationtimestamp - Adds timestamp of when the user was last notified about the edit',
373 ),
374 'show' => array(
375 'Show only items that meet this criteria.',
376 "For example, to see only minor edits done by logged-in users, set {$this->getModulePrefix()}show=minor|!anon"
377 ),
378 'owner' => 'The name of the user whose watchlist you\'d like to access',
379 'token' => 'Give a security token (settable in preferences) to allow access to another user\'s watchlist'
380 );
381 }
382
383 public function getDescription() {
384 return "Get all recent changes to pages in the logged in user's watchlist";
385 }
386
387 public function getPossibleErrors() {
388 return array_merge( parent::getPossibleErrors(), array(
389 array( 'code' => 'bad_wlowner', 'info' => 'Specified user does not exist' ),
390 array( 'code' => 'bad_wltoken', 'info' => 'Incorrect watchlist token provided -- please set a correct token in Special:Preferences' ),
391 array( 'code' => 'notloggedin', 'info' => 'You must be logged-in to have a watchlist' ),
392 array( 'code' => 'patrol', 'info' => 'patrol property is not available' ),
393 array( 'show' ),
394 array( 'code' => 'permissiondenied', 'info' => 'You need the patrol right to request the patrolled flag' ),
395 array( 'code' => 'user-excludeuser', 'info' => 'user and excludeuser cannot be used together' ),
396 ) );
397 }
398
399 protected function getExamples() {
400 return array(
401 'api.php?action=query&list=watchlist',
402 'api.php?action=query&list=watchlist&wlprop=ids|title|timestamp|user|comment',
403 'api.php?action=query&list=watchlist&wlallrev&wlprop=ids|title|timestamp|user|comment',
404 'api.php?action=query&generator=watchlist&prop=info',
405 'api.php?action=query&generator=watchlist&gwlallrev&prop=revisions&rvprop=timestamp|user',
406 'api.php?action=query&list=watchlist&wlowner=Bob_Smith&wltoken=d8d562e9725ea1512894cdab28e5ceebc7f20237'
407 );
408 }
409
410 public function getVersion() {
411 return __CLASS__ . ': $Id$';
412 }
413 }