Returning protections more consistently
[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 = false;
58 if(!is_null($params['prop'])) {
59 $prop = array_flip($params['prop']);
60 $fld_protection = isset($prop['protection']);
61 }
62 if(!is_null($params['token'])) {
63 $token = $params['token'];
64 $tok_edit = $this->getTokenFlag($token, 'edit');
65 $tok_delete = $this->getTokenFlag($token, 'delete');
66 $tok_protect = $this->getTokenFlag($token, 'protect');
67 $tok_move = $this->getTokenFlag($token, 'move');
68 }
69 else
70 // Fix E_NOTICEs about unset variables
71 $token = $tok_edit = $tok_delete = $tok_protect = $tok_move = null;
72
73 $pageSet = $this->getPageSet();
74 $titles = $pageSet->getGoodTitles();
75 $missing = $pageSet->getMissingTitles();
76 $result = $this->getResult();
77
78 $pageRestrictions = $pageSet->getCustomField('page_restrictions');
79 $pageIsRedir = $pageSet->getCustomField('page_is_redirect');
80 $pageIsNew = $pageSet->getCustomField('page_is_new');
81 $pageCounter = $pageSet->getCustomField('page_counter');
82 $pageTouched = $pageSet->getCustomField('page_touched');
83 $pageLatest = $pageSet->getCustomField('page_latest');
84 $pageLength = $pageSet->getCustomField('page_len');
85
86 $db = $this->getDB();
87 if ($fld_protection && !empty($titles)) {
88 $this->addTables('page_restrictions');
89 $this->addFields(array('pr_page', 'pr_type', 'pr_level', 'pr_expiry'));
90 $this->addWhereFld('pr_page', array_keys($titles));
91
92 $res = $this->select(__METHOD__);
93 while($row = $db->fetchObject($res)) {
94 $protections[$row->pr_page][] = array(
95 'type' => $row->pr_type,
96 'level' => $row->pr_level,
97 'expiry' => Block::decodeExpiry( $row->pr_expiry, TS_ISO_8601 )
98 );
99 }
100 $db->freeResult($res);
101 }
102 // We don't need to check for pt stuff if there are no nonexistent titles
103 if($fld_protection && !empty($missing))
104 {
105 $this->resetQueryParams();
106 // Construct a custom WHERE clause that matches all titles in $missing
107 $lb = new LinkBatch($missing);
108 $this->addTables('protected_titles');
109 $this->addFields(array('pt_title', 'pt_namespace', 'pt_create_perm', 'pt_expiry'));
110 $this->addWhere($lb->constructSet('pt', $db));
111 $res = $this->select(__METHOD__);
112 while($row = $db->fetchObject($res)) {
113 $prottitles[$row->pt_namespace][$row->pt_title] = array(
114 'type' => 'create',
115 'level' => $row->pt_create_perm,
116 'expiry' => Block::decodeExpiry($row->pt_expiry, TS_ISO_8601)
117 );
118 }
119 $db->freeResult($res);
120 }
121
122 foreach ( $titles as $pageid => $title ) {
123 $pageInfo = array (
124 'touched' => wfTimestamp(TS_ISO_8601, $pageTouched[$pageid]),
125 'lastrevid' => intval($pageLatest[$pageid]),
126 'counter' => intval($pageCounter[$pageid]),
127 'length' => intval($pageLength[$pageid]),
128 );
129
130 if ($pageIsRedir[$pageid])
131 $pageInfo['redirect'] = '';
132
133 if ($pageIsNew[$pageid])
134 $pageInfo['new'] = '';
135
136 if (!is_null($token)) {
137 // Currently all tokens are generated the same way, but it might change
138 if ($tok_edit)
139 $pageInfo['edittoken'] = $wgUser->editToken();
140 if ($tok_delete)
141 $pageInfo['deletetoken'] = $wgUser->editToken();
142 if ($tok_protect)
143 $pageInfo['protecttoken'] = $wgUser->editToken();
144 if ($tok_move)
145 $pageInfo['movetoken'] = $wgUser->editToken();
146 }
147
148 if($fld_protection) {
149 if (isset($protections[$pageid])) {
150 $pageInfo['protection'] = $protections[$pageid];
151 $result->setIndexedTagName($pageInfo['protection'], 'pr');
152 } else {
153 # Also check old restrictions
154 if( $pageRestrictions[$pageid] ) {
155 foreach( explode( ':', trim( $pageRestrictions[$pageid] ) ) as $restrict ) {
156 $temp = explode( '=', trim( $restrict ) );
157 if(count($temp) == 1) {
158 // old old format should be treated as edit/move restriction
159 $restriction = trim( $temp[0] );
160 $pageInfo['protection'][] = array(
161 'type' => 'edit',
162 'level' => $restriction,
163 'expiry' => 'infinity',
164 );
165 $pageInfo['protection'][] = array(
166 'type' => 'move',
167 'level' => $restriction,
168 'expiry' => 'infinity',
169 );
170 } else {
171 $restriction = trim( $temp[1] );
172 $pageInfo['protection'][] = array(
173 'type' => $temp[0],
174 'level' => $restriction,
175 'expiry' => 'infinity',
176 );
177 }
178 }
179 $result->setIndexedTagName($pageInfo['protection'], 'pr');
180 } else {
181 $pageInfo['protection'] = array();
182 }
183 }
184 }
185
186 $result->addValue(array (
187 'query',
188 'pages'
189 ), $pageid, $pageInfo);
190 }
191
192 // Get edit/protect tokens and protection data for missing titles if requested
193 // Delete and move tokens are N/A for missing titles anyway
194 if($tok_edit || $tok_protect || $fld_protection)
195 {
196 $res = &$result->getData();
197 foreach($missing as $pageid => $title) {
198 if($tok_edit)
199 $res['query']['pages'][$pageid]['edittoken'] = $wgUser->editToken();
200 if($tok_protect)
201 $res['query']['pages'][$pageid]['protecttoken'] = $wgUser->editToken();
202 if($fld_protection)
203 $res['query']['pages'][$pageid]['protection'][] = $prottitles[$title->getNamespace()][$title->getDbKey()];
204 $result->setIndexedTagName($res['query']['pages'][$pageid]['protection'], 'pr');
205 }
206 }
207 }
208
209 protected function getAllowedParams() {
210 return array (
211 'prop' => array (
212 ApiBase :: PARAM_DFLT => NULL,
213 ApiBase :: PARAM_ISMULTI => true,
214 ApiBase :: PARAM_TYPE => array (
215 'protection'
216 )),
217 'token' => array (
218 ApiBase :: PARAM_DFLT => NULL,
219 ApiBase :: PARAM_ISMULTI => true,
220 ApiBase :: PARAM_TYPE => array (
221 'edit',
222 'delete',
223 'protect',
224 'move',
225 )),
226 );
227 }
228
229 protected function getParamDescription() {
230 return array (
231 'prop' => array (
232 'Which additional properties to get:',
233 ' "protection" - List the protection level of each page'
234 ),
235 'token' => 'Request a token to perform a data-modifying action on a page',
236 );
237 }
238
239
240 protected function getDescription() {
241 return 'Get basic page information such as namespace, title, last touched date, ...';
242 }
243
244 protected function getExamples() {
245 return array (
246 'api.php?action=query&prop=info&titles=Main%20Page',
247 'api.php?action=query&prop=info&inprop=protection&titles=Main%20Page'
248 );
249 }
250
251 public function getVersion() {
252 return __CLASS__ . ': $Id$';
253 }
254 }
255