]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - includes/api/ApiQueryBlocks.php
MediaWiki 1.15.5
[autoinstallsdev/mediawiki.git] / includes / api / ApiQueryBlocks.php
1 <?php
2
3 /*
4  * Created on Sep 10, 2007
5  *
6  * API for MediaWiki 1.8+
7  *
8  * Copyright (C) 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
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  * Query module to enumerate all available pages.
33  *
34  * @ingroup API
35  */
36 class ApiQueryBlocks extends ApiQueryBase {
37         
38         var $users;
39
40         public function __construct($query, $moduleName) {
41                 parent :: __construct($query, $moduleName, 'bk');
42         }
43
44         public function execute() {
45                 global $wgUser;
46
47                 $params = $this->extractRequestParams();
48                 if(isset($params['users']) && isset($params['ip']))
49                         $this->dieUsage('bkusers and bkip cannot be used together', 'usersandip');
50
51                 $prop = array_flip($params['prop']);
52                 $fld_id = isset($prop['id']);
53                 $fld_user = isset($prop['user']);
54                 $fld_by = isset($prop['by']);
55                 $fld_timestamp = isset($prop['timestamp']);
56                 $fld_expiry = isset($prop['expiry']);
57                 $fld_reason = isset($prop['reason']);
58                 $fld_range = isset($prop['range']);
59                 $fld_flags = isset($prop['flags']);
60
61                 $result = $this->getResult();
62                 $pageSet = $this->getPageSet();
63                 $titles = $pageSet->getTitles();
64                 $data = array();
65
66                 $this->addTables('ipblocks');
67                 if($fld_id)
68                         $this->addFields('ipb_id');
69                 if($fld_user)
70                         $this->addFields(array('ipb_address', 'ipb_user', 'ipb_auto'));
71                 if($fld_by)
72                 {
73                         $this->addTables('user');
74                         $this->addFields(array('ipb_by', 'user_name'));
75                         $this->addWhere('user_id = ipb_by');
76                 }
77                 if($fld_timestamp)
78                         $this->addFields('ipb_timestamp');
79                 if($fld_expiry)
80                         $this->addFields('ipb_expiry');
81                 if($fld_reason)
82                         $this->addFields('ipb_reason');
83                 if($fld_range)
84                         $this->addFields(array('ipb_range_start', 'ipb_range_end'));
85                 if($fld_flags)
86                         $this->addFields(array('ipb_auto', 'ipb_anon_only', 'ipb_create_account', 'ipb_enable_autoblock', 'ipb_block_email', 'ipb_deleted', 'ipb_allow_usertalk'));
87
88                 $this->addOption('LIMIT', $params['limit'] + 1);
89                 $this->addWhereRange('ipb_timestamp', $params['dir'], $params['start'], $params['end']);
90                 if(isset($params['ids']))
91                         $this->addWhereFld('ipb_id', $params['ids']);
92                 if(isset($params['users']))
93                 {
94                         foreach((array)$params['users'] as $u)
95                                 $this->prepareUsername($u);
96                         $this->addWhereFld('ipb_address', $this->usernames);
97                 }
98                 if(isset($params['ip']))
99                 {
100                         list($ip, $range) = IP::parseCIDR($params['ip']);
101                         if($ip && $range)
102                         {
103                                 # We got a CIDR range
104                                 if($range < 16)
105                                         $this->dieUsage('CIDR ranges broader than /16 are not accepted', 'cidrtoobroad');
106                                 $lower = wfBaseConvert($ip, 10, 16, 8, false);
107                                 $upper = wfBaseConvert($ip + pow(2, 32 - $range) - 1, 10, 16, 8, false);
108                         }
109                         else
110                                 $lower = $upper = IP::toHex($params['ip']);
111                         $prefix = substr($lower, 0, 4);
112                         $this->addWhere(array(
113                                 "ipb_range_start LIKE '$prefix%'",
114                                 "ipb_range_start <= '$lower'",
115                                 "ipb_range_end >= '$upper'"
116                         ));
117                 }
118                 if(!$wgUser->isAllowed('hideuser'))
119                         $this->addWhereFld('ipb_deleted', 0);
120
121                 // Purge expired entries on one in every 10 queries
122                 if(!mt_rand(0, 10))
123                         Block::purgeExpired();
124
125                 $res = $this->select(__METHOD__);
126
127                 $count = 0;
128                 while($row = $res->fetchObject())
129                 {
130                         if(++$count > $params['limit'])
131                         {
132                                 // We've had enough
133                                 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->ipb_timestamp));
134                                 break;
135                         }
136                         $block = array();
137                         if($fld_id)
138                                 $block['id'] = $row->ipb_id;
139                         if($fld_user && !$row->ipb_auto)
140                                 $block['user'] = $row->ipb_address;
141                         if($fld_by)
142                                 $block['by'] = $row->user_name;
143                         if($fld_timestamp)
144                                 $block['timestamp'] = wfTimestamp(TS_ISO_8601, $row->ipb_timestamp);
145                         if($fld_expiry)
146                                 $block['expiry'] = Block::decodeExpiry($row->ipb_expiry, TS_ISO_8601);
147                         if($fld_reason)
148                                 $block['reason'] = $row->ipb_reason;
149                         if($fld_range)
150                         {
151                                 $block['rangestart'] = IP::hexToQuad($row->ipb_range_start);
152                                 $block['rangeend'] = IP::hexToQuad($row->ipb_range_end);
153                         }
154                         if($fld_flags)
155                         {
156                                 // For clarity, these flags use the same names as their action=block counterparts
157                                 if($row->ipb_auto)
158                                         $block['automatic'] = '';
159                                 if($row->ipb_anon_only)
160                                         $block['anononly'] = '';
161                                 if($row->ipb_create_account)
162                                         $block['nocreate'] = '';
163                                 if($row->ipb_enable_autoblock)
164                                         $block['autoblock'] = '';
165                                 if($row->ipb_block_email)
166                                         $block['noemail'] = '';
167                                 if($row->ipb_deleted)
168                                         $block['hidden'] = '';
169                                 if($row->ipb_allow_usertalk)
170                                         $block['allowusertalk'] = '';
171                         }
172                         $fit = $result->addValue(array('query', $this->getModuleName()), null, $block);
173                         if(!$fit)
174                         {
175                                 $this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->ipb_timestamp));
176                                 break;
177                         }
178                 }
179                 $result->setIndexedTagName_internal(array('query', $this->getModuleName()), 'block');
180         }
181         
182         protected function prepareUsername($user)
183         {
184                 if(!$user)
185                         $this->dieUsage('User parameter may not be empty', 'param_user');
186                 $name = User::isIP($user)
187                         ? $user
188                         : User::getCanonicalName($user, 'valid');
189                 if($name === false)
190                         $this->dieUsage("User name {$user} is not valid", 'param_user');
191                 $this->usernames[] = $name;
192         }
193
194         public function getAllowedParams() {
195                 return array (
196                         'start' => array(
197                                 ApiBase :: PARAM_TYPE => 'timestamp'
198                         ),
199                         'end' => array(
200                                 ApiBase :: PARAM_TYPE => 'timestamp',
201                         ),
202                         'dir' => array(
203                                 ApiBase :: PARAM_TYPE => array(
204                                         'newer',
205                                         'older'
206                                 ),
207                                 ApiBase :: PARAM_DFLT => 'older'
208                         ),
209                         'ids' => array(
210                                 ApiBase :: PARAM_TYPE => 'integer',
211                                 ApiBase :: PARAM_ISMULTI => true
212                         ),
213                         'users' => array(
214                                 ApiBase :: PARAM_ISMULTI => true
215                         ),
216                         'ip' => null,
217                         'limit' => array(
218                                 ApiBase :: PARAM_DFLT => 10,
219                                 ApiBase :: PARAM_TYPE => 'limit',
220                                 ApiBase :: PARAM_MIN => 1,
221                                 ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
222                                 ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
223                         ),
224                         'prop' => array(
225                                 ApiBase :: PARAM_DFLT => 'id|user|by|timestamp|expiry|reason|flags',
226                                 ApiBase :: PARAM_TYPE => array(
227                                                 'id',
228                                                 'user',
229                                                 'by',
230                                                 'timestamp',
231                                                 'expiry',
232                                                 'reason',
233                                                 'range',
234                                                 'flags'
235                                         ),
236                                 ApiBase :: PARAM_ISMULTI => true
237                         )
238                 );
239         }
240
241         public function getParamDescription() {
242                 return array (
243                         'start' => 'The timestamp to start enumerating from',
244                         'end' => 'The timestamp to stop enumerating at',
245                         'dir' => 'The direction in which to enumerate',
246                         'ids' => 'Pipe-separated list of block IDs to list (optional)',
247                         'users' => 'Pipe-separated list of users to search for (optional)',
248                         'ip' => array(  'Get all blocks applying to this IP or CIDR range, including range blocks.',
249                                         'Cannot be used together with bkusers. CIDR ranges broader than /16 are not accepted.'),
250                         'limit' => 'The maximum amount of blocks to list',
251                         'prop' => 'Which properties to get',
252                 );
253         }
254
255         public function getDescription() {
256                 return 'List all blocked users and IP addresses.';
257         }
258
259         protected function getExamples() {
260                 return array (  'api.php?action=query&list=blocks',
261                                 'api.php?action=query&list=blocks&bkusers=Alice|Bob'
262                 );
263         }
264
265         public function getVersion() {
266                 return __CLASS__ . ': $Id: ApiQueryBlocks.php 69579 2010-07-20 02:49:55Z tstarling $';
267         }
268 }