API: recentchanges and usercontribs cleaned up to allow more precise properties selec...
[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 (C) 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 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 * @addtogroup 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, $fld_timestamp = false, $fld_user = false, $fld_comment = false;
52
53 private function run($resultPageSet = null) {
54 global $wgUser;
55
56 $this->selectNamedDB('watchlist', DB_SLAVE, 'watchlist');
57
58 if (!$wgUser->isLoggedIn())
59 $this->dieUsage('You must be logged-in to have a watchlist', 'notloggedin');
60
61 $allrev = $start = $end = $namespace = $dir = $limit = $prop = null;
62 extract($this->extractRequestParams());
63
64 if (!is_null($prop)) {
65 if (!is_null($resultPageSet))
66 $this->dieUsage($this->encodeParamName('prop') . ' parameter may not be used in a generator', 'params');
67
68 $prop = array_flip($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_comment = isset($prop['comment']);
75 $this->fld_timestamp = isset($prop['timestamp']);
76 $this->fld_patrol = isset($prop['patrol']);
77
78 if ($this->fld_patrol) {
79 global $wgUseRCPatrol, $wgUser;
80 if (!$wgUseRCPatrol || !$wgUser->isAllowed('patrol'))
81 $this->dieUsage('patrol property is not available', 'patrol');
82 }
83 }
84
85 if (is_null($resultPageSet)) {
86 $this->addFields(array (
87 'rc_cur_id',
88 'rc_this_oldid',
89 'rc_namespace',
90 'rc_title',
91 'rc_timestamp'
92 ));
93
94 $this->addFieldsIf('rc_new', $this->fld_flags);
95 $this->addFieldsIf('rc_minor', $this->fld_flags);
96 $this->addFieldsIf('rc_user', $this->fld_user);
97 $this->addFieldsIf('rc_user_text', $this->fld_user);
98 $this->addFieldsIf('rc_comment', $this->fld_comment);
99 $this->addFieldsIf('rc_patrolled', $this->fld_patrol);
100 }
101 elseif ($allrev) {
102 $this->addFields(array (
103 'rc_this_oldid',
104 'rc_namespace',
105 'rc_title',
106 'rc_timestamp'
107 ));
108 } else {
109 $this->addFields(array (
110 'rc_cur_id',
111 'rc_namespace',
112 'rc_title',
113 'rc_timestamp'
114 ));
115 }
116
117 $this->addTables(array (
118 'watchlist',
119 'page',
120 'recentchanges'
121 ));
122
123 $userId = $wgUser->getID();
124 $this->addWhere(array (
125 'wl_namespace = rc_namespace',
126 'wl_title = rc_title',
127 'rc_cur_id = page_id',
128 'wl_user' => $userId
129 ));
130 $this->addWhereRange('rc_timestamp', $dir, $start, $end);
131 $this->addWhereFld('wl_namespace', $namespace);
132 $this->addWhereIf('rc_this_oldid=page_latest', !$allrev);
133 $this->addWhereIf("rc_timestamp > ''", !isset ($start) && !isset ($end));
134
135 $this->addOption('LIMIT', $limit +1);
136
137 $data = array ();
138 $count = 0;
139 $res = $this->select(__METHOD__);
140
141 $db = $this->getDB();
142 while ($row = $db->fetchObject($res)) {
143 if (++ $count > $limit) {
144 // We've reached the one extra which shows that there are additional pages to be had. Stop here...
145 $this->setContinueEnumParameter('start', $row->rc_timestamp);
146 break;
147 }
148
149 if (is_null($resultPageSet)) {
150 $vals = $this->extractRowInfo($row);
151 if ($vals)
152 $data[] = $vals;
153 } else {
154 $title = Title :: makeTitle($row->rc_namespace, $row->rc_title);
155 // skip any pages that user has no rights to read
156 if ($title->userCanRead()) {
157 if ($allrev) {
158 $data[] = intval($row->rc_this_oldid);
159 } else {
160 $data[] = intval($row->rc_cur_id);
161 }
162 }
163 }
164 }
165
166 $db->freeResult($res);
167
168 if (is_null($resultPageSet)) {
169 $this->getResult()->setIndexedTagName($data, 'item');
170 $this->getResult()->addValue('query', $this->getModuleName(), $data);
171 }
172 elseif ($allrev) {
173 $resultPageSet->populateFromRevisionIDs($data);
174 } else {
175 $resultPageSet->populateFromPageIDs($data);
176 }
177 }
178
179 private function extractRowInfo($row) {
180
181 $title = Title :: makeTitle($row->rc_namespace, $row->rc_title);
182 if (!$title->userCanRead())
183 return false;
184
185 $vals = array ();
186
187 if ($this->fld_ids) {
188 $vals['pageid'] = intval($row->rc_cur_id);
189 $vals['revid'] = intval($row->rc_this_oldid);
190 }
191
192 if ($this->fld_title)
193 ApiQueryBase :: addTitleInfo($vals, $title);
194
195 if ($this->fld_user) {
196 $vals['user'] = $row->rc_user_text;
197 if (!$row->rc_user)
198 $vals['anon'] = '';
199 }
200
201 if ($this->fld_flags) {
202 if ($row->rc_new)
203 $vals['new'] = '';
204 if ($row->rc_minor)
205 $vals['minor'] = '';
206 }
207
208 if ($this->fld_patrol && isset($row->rc_patrolled))
209 $vals['patrolled'] = '';
210
211 if ($this->fld_timestamp)
212 $vals['timestamp'] = wfTimestamp(TS_ISO_8601, $row->rc_timestamp);
213
214 if ($this->fld_comment && !empty ($row->rc_comment))
215 $vals['comment'] = $row->rc_comment;
216
217 return $vals;
218 }
219
220 protected function getAllowedParams() {
221 return array (
222 'allrev' => false,
223 'start' => array (
224 ApiBase :: PARAM_TYPE => 'timestamp'
225 ),
226 'end' => array (
227 ApiBase :: PARAM_TYPE => 'timestamp'
228 ),
229 'namespace' => array (
230 ApiBase :: PARAM_ISMULTI => true,
231 ApiBase :: PARAM_TYPE => 'namespace'
232 ),
233 'dir' => array (
234 ApiBase :: PARAM_DFLT => 'older',
235 ApiBase :: PARAM_TYPE => array (
236 'newer',
237 'older'
238 )
239 ),
240 'limit' => array (
241 ApiBase :: PARAM_DFLT => 10,
242 ApiBase :: PARAM_TYPE => 'limit',
243 ApiBase :: PARAM_MIN => 1,
244 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
245 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
246 ),
247 'prop' => array (
248 APIBase :: PARAM_ISMULTI => true,
249 APIBase :: PARAM_DFLT => 'ids|title|flags',
250 APIBase :: PARAM_TYPE => array (
251 'ids',
252 'title',
253 'flags',
254 'user',
255 'comment',
256 'timestamp',
257 'patrol'
258 )
259 )
260 );
261 }
262
263 protected function getParamDescription() {
264 return array (
265 'allrev' => 'Include multiple revisions of the same page within given timeframe.',
266 'start' => 'The timestamp to start enumerating from.',
267 'end' => 'The timestamp to end enumerating.',
268 'namespace' => 'Filter changes to only the given namespace(s).',
269 'dir' => 'In which direction to enumerate pages.',
270 'limit' => 'How many total pages to return per request.',
271 'prop' => 'Which additional items to get (non-generator mode only).'
272 );
273 }
274
275 protected function getDescription() {
276 return '';
277 }
278
279 protected function getExamples() {
280 return array (
281 'api.php?action=query&list=watchlist',
282 'api.php?action=query&list=watchlist&wlprop=ids|title|timestamp|user|comment',
283 'api.php?action=query&list=watchlist&wlallrev&wlprop=ids|title|timestamp|user|comment',
284 'api.php?action=query&generator=watchlist&prop=info',
285 'api.php?action=query&generator=watchlist&gwlallrev&prop=revisions&rvprop=timestamp|user'
286 );
287 }
288
289 public function getVersion() {
290 return __CLASS__ . ': $Id$';
291 }
292 }
293 ?>