(bug 13768) Handling case-insensitivity of pt_title in prop=info
[lhc/web/wiklou.git] / includes / api / ApiQueryInfo.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 * A query module to show basic page information.
33 *
34 * @addtogroup API
35 */
36 class ApiQueryInfo extends ApiQueryBase {
37
38 public function __construct($query, $moduleName) {
39 parent :: __construct($query, $moduleName, 'in');
40 }
41
42 public function requestExtraData($pageSet) {
43 $pageSet->requestField('page_restrictions');
44 $pageSet->requestField('page_is_redirect');
45 $pageSet->requestField('page_is_new');
46 $pageSet->requestField('page_counter');
47 $pageSet->requestField('page_touched');
48 $pageSet->requestField('page_latest');
49 $pageSet->requestField('page_len');
50 }
51
52 public function execute() {
53
54 global $wgUser;
55
56 $params = $this->extractRequestParams();
57 $fld_protection = $fld_talkid = $fld_subjectid = false;
58 if(!is_null($params['prop'])) {
59 $prop = array_flip($params['prop']);
60 $fld_protection = isset($prop['protection']);
61 $fld_talkid = isset($prop['talkid']);
62 $fld_subjectid = isset($prop['subjectid']);
63 }
64 if(!is_null($params['token'])) {
65 $token = $params['token'];
66 $tok_edit = $this->getTokenFlag($token, 'edit');
67 $tok_delete = $this->getTokenFlag($token, 'delete');
68 $tok_protect = $this->getTokenFlag($token, 'protect');
69 $tok_move = $this->getTokenFlag($token, 'move');
70 }
71 else
72 // Fix E_NOTICEs about unset variables
73 $token = $tok_edit = $tok_delete = $tok_protect = $tok_move = null;
74
75 $pageSet = $this->getPageSet();
76 $titles = $pageSet->getGoodTitles();
77 $missing = $pageSet->getMissingTitles();
78 $result = $this->getResult();
79
80 $pageRestrictions = $pageSet->getCustomField('page_restrictions');
81 $pageIsRedir = $pageSet->getCustomField('page_is_redirect');
82 $pageIsNew = $pageSet->getCustomField('page_is_new');
83 $pageCounter = $pageSet->getCustomField('page_counter');
84 $pageTouched = $pageSet->getCustomField('page_touched');
85 $pageLatest = $pageSet->getCustomField('page_latest');
86 $pageLength = $pageSet->getCustomField('page_len');
87
88 $db = $this->getDB();
89 if ($fld_protection && !empty($titles)) {
90 $this->addTables('page_restrictions');
91 $this->addFields(array('pr_page', 'pr_type', 'pr_level', 'pr_expiry', 'pr_cascade'));
92 $this->addWhereFld('pr_page', array_keys($titles));
93
94 $res = $this->select(__METHOD__);
95 while($row = $db->fetchObject($res)) {
96 $a = array(
97 'type' => $row->pr_type,
98 'level' => $row->pr_level,
99 'expiry' => Block::decodeExpiry( $row->pr_expiry, TS_ISO_8601 )
100 );
101 if($row->pr_cascade)
102 $a['cascade'] = '';
103 $protections[$row->pr_page][] = $a;
104 }
105 $db->freeResult($res);
106 }
107 // We don't need to check for pt stuff if there are no nonexistent titles
108 if($fld_protection && !empty($missing))
109 {
110 $this->resetQueryParams();
111 // Construct a custom WHERE clause that matches all titles in $missing
112 $lb = new LinkBatch($missing);
113 $this->addTables('protected_titles');
114 $this->addFields(array('pt_title', 'pt_namespace', 'pt_create_perm', 'pt_expiry'));
115 $this->addWhere($lb->constructSet('pt', $db));
116 $res = $this->select(__METHOD__);
117 $prottitles = array();
118 while($row = $db->fetchObject($res)) {
119 // Argh, pt_title is case-insensitive
120 $prottitles[$row->pt_namespace][strtolower($row->pt_title)] = array(
121 'type' => 'create',
122 'level' => $row->pt_create_perm,
123 'expiry' => Block::decodeExpiry($row->pt_expiry, TS_ISO_8601)
124 );
125 }
126 $db->freeResult($res);
127 }
128
129 // Run the talkid/subjectid query
130 if($fld_talkid || $fld_subjectid)
131 {
132 $talktitles = $subjecttitles =
133 $talkids = $subjectids = array();
134 $everything = array_merge($titles, $missing);
135 foreach($everything as $t)
136 {
137 if(MWNamespace::isTalk($t->getNamespace()))
138 {
139 if($fld_subjectid)
140 $subjecttitles[] = $t->getSubjectPage();
141 }
142 else if($fld_talkid)
143 $talktitles[] = $t->getTalkPage();
144 }
145 if(!empty($talktitles) || !empty($subjecttitles))
146 {
147 // Construct a custom WHERE clause that matches
148 // all titles in $talktitles and $subjecttitles
149 $lb = new LinkBatch(array_merge($talktitles, $subjecttitles));
150 $this->resetQueryParams();
151 $this->addTables('page');
152 $this->addFields(array('page_title', 'page_namespace', 'page_id'));
153 $this->addWhere($lb->constructSet('page', $db));
154 $res = $this->select(__METHOD__);
155 while($row = $db->fetchObject($res))
156 {
157 if(MWNamespace::isTalk($row->page_namespace))
158 $talkids[MWNamespace::getSubject($row->page_namespace)][$row->page_title] = $row->page_id;
159 else
160 $subjectids[MWNamespace::getTalk($row->page_namespace)][$row->page_title] = $row->page_id;
161 }
162 }
163 }
164
165 foreach ( $titles as $pageid => $title ) {
166 $pageInfo = array (
167 'touched' => wfTimestamp(TS_ISO_8601, $pageTouched[$pageid]),
168 'lastrevid' => intval($pageLatest[$pageid]),
169 'counter' => intval($pageCounter[$pageid]),
170 'length' => intval($pageLength[$pageid]),
171 );
172
173 if ($pageIsRedir[$pageid])
174 $pageInfo['redirect'] = '';
175
176 if ($pageIsNew[$pageid])
177 $pageInfo['new'] = '';
178
179 if (!is_null($token)) {
180 // Currently all tokens are generated the same way, but it might change
181 if ($tok_edit)
182 $pageInfo['edittoken'] = $wgUser->editToken();
183 if ($tok_delete)
184 $pageInfo['deletetoken'] = $wgUser->editToken();
185 if ($tok_protect)
186 $pageInfo['protecttoken'] = $wgUser->editToken();
187 if ($tok_move)
188 $pageInfo['movetoken'] = $wgUser->editToken();
189 }
190
191 if($fld_protection) {
192 if (isset($protections[$pageid])) {
193 $pageInfo['protection'] = $protections[$pageid];
194 $result->setIndexedTagName($pageInfo['protection'], 'pr');
195 } else {
196 # Also check old restrictions
197 if( $pageRestrictions[$pageid] ) {
198 foreach( explode( ':', trim( $pageRestrictions[$pageid] ) ) as $restrict ) {
199 $temp = explode( '=', trim( $restrict ) );
200 if(count($temp) == 1) {
201 // old old format should be treated as edit/move restriction
202 $restriction = trim( $temp[0] );
203 $pageInfo['protection'][] = array(
204 'type' => 'edit',
205 'level' => $restriction,
206 'expiry' => 'infinity',
207 );
208 $pageInfo['protection'][] = array(
209 'type' => 'move',
210 'level' => $restriction,
211 'expiry' => 'infinity',
212 );
213 } else {
214 $restriction = trim( $temp[1] );
215 $pageInfo['protection'][] = array(
216 'type' => $temp[0],
217 'level' => $restriction,
218 'expiry' => 'infinity',
219 );
220 }
221 }
222 $result->setIndexedTagName($pageInfo['protection'], 'pr');
223 } else {
224 $pageInfo['protection'] = array();
225 }
226 }
227 }
228 if($fld_talkid && isset($talkids[$title->getNamespace()][$title->getDbKey()]))
229 $pageInfo['talkid'] = $talkids[$title->getNamespace()][$title->getDbKey()];
230 if($fld_subjectid && isset($subjectids[$title->getNamespace()][$title->getDbKey()]))
231 $pageInfo['subjectid'] = $subjectids[$title->getNamespace()][$title->getDbKey()];
232
233 $result->addValue(array (
234 'query',
235 'pages'
236 ), $pageid, $pageInfo);
237 }
238
239 // Get edit/protect tokens and protection data for missing titles if requested
240 // Delete and move tokens are N/A for missing titles anyway
241 if($tok_edit || $tok_protect || $fld_protection || $fld_talkid || $fld_subjectid)
242 {
243 $res = &$result->getData();
244 foreach($missing as $pageid => $title) {
245 if($tok_edit)
246 $res['query']['pages'][$pageid]['edittoken'] = $wgUser->editToken();
247 if($tok_protect)
248 $res['query']['pages'][$pageid]['protecttoken'] = $wgUser->editToken();
249 if($fld_protection)
250 {
251 // Apparently the XML formatting code doesn't like array(null)
252 // This is painful to fix, so we'll just work around it
253 if(isset($prottitles[$title->getNamespace()][strtolower($title->getDBkey())]))
254 $res['query']['pages'][$pageid]['protection'][] = $prottitles[$title->getNamespace()][strtolower($title->getDBkey())];
255 else
256 $res['query']['pages'][$pageid]['protection'] = array();
257 $result->setIndexedTagName($res['query']['pages'][$pageid]['protection'], 'pr');
258 }
259 if($fld_talkid && isset($talkids[$title->getNamespace()][$title->getDbKey()]))
260 $res['query']['pages'][$pageid]['talkid'] = $talkids[$title->getNamespace()][$title->getDbKey()];
261 if($fld_subjectid && isset($subjectids[$title->getNamespace()][$title->getDbKey()]))
262 $res['query']['pages'][$pageid]['subjectid'] = $subjectids[$title->getNamespace()][$title->getDbKey()];
263 }
264 }
265 }
266
267 public function getAllowedParams() {
268 return array (
269 'prop' => array (
270 ApiBase :: PARAM_DFLT => NULL,
271 ApiBase :: PARAM_ISMULTI => true,
272 ApiBase :: PARAM_TYPE => array (
273 'protection',
274 'talkid',
275 'subjectid'
276 )),
277 'token' => array (
278 ApiBase :: PARAM_DFLT => NULL,
279 ApiBase :: PARAM_ISMULTI => true,
280 ApiBase :: PARAM_TYPE => array (
281 'edit',
282 'delete',
283 'protect',
284 'move',
285 )),
286 );
287 }
288
289 public function getParamDescription() {
290 return array (
291 'prop' => array (
292 'Which additional properties to get:',
293 ' "protection" - List the protection level of each page',
294 ' "talkid" - The page ID of the talk page for each non-talk page',
295 ' "subjectid" - The page ID of the parent page for each talk page'
296 ),
297 'token' => 'Request a token to perform a data-modifying action on a page',
298 );
299 }
300
301
302 public function getDescription() {
303 return 'Get basic page information such as namespace, title, last touched date, ...';
304 }
305
306 protected function getExamples() {
307 return array (
308 'api.php?action=query&prop=info&titles=Main%20Page',
309 'api.php?action=query&prop=info&inprop=protection&titles=Main%20Page'
310 );
311 }
312
313 public function getVersion() {
314 return __CLASS__ . ': $Id$';
315 }
316 }