5 * Created on Sep 10, 2007
7 * Copyright © 2007 Roan Kattouw "<Firstname>.<Lastname>@gmail.com"
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
28 * Query module to enumerate all user blocks
32 class ApiQueryBlocks
extends ApiQueryBase
{
34 public function __construct( ApiQuery
$query, $moduleName ) {
35 parent
::__construct( $query, $moduleName, 'bk' );
38 public function execute() {
42 $params = $this->extractRequestParams();
43 $this->requireMaxOneParameter( $params, 'users', 'ip' );
45 $prop = array_flip( $params['prop'] );
46 $fld_id = isset( $prop['id'] );
47 $fld_user = isset( $prop['user'] );
48 $fld_userid = isset( $prop['userid'] );
49 $fld_by = isset( $prop['by'] );
50 $fld_byid = isset( $prop['byid'] );
51 $fld_timestamp = isset( $prop['timestamp'] );
52 $fld_expiry = isset( $prop['expiry'] );
53 $fld_reason = isset( $prop['reason'] );
54 $fld_range = isset( $prop['range'] );
55 $fld_flags = isset( $prop['flags'] );
57 $result = $this->getResult();
59 $this->addTables( 'ipblocks' );
60 $this->addFields( array( 'ipb_auto', 'ipb_id', 'ipb_timestamp' ) );
62 $this->addFieldsIf( array( 'ipb_address', 'ipb_user' ), $fld_user ||
$fld_userid );
63 $this->addFieldsIf( 'ipb_by_text', $fld_by );
64 $this->addFieldsIf( 'ipb_by', $fld_byid );
65 $this->addFieldsIf( 'ipb_expiry', $fld_expiry );
66 $this->addFieldsIf( 'ipb_reason', $fld_reason );
67 $this->addFieldsIf( array( 'ipb_range_start', 'ipb_range_end' ), $fld_range );
68 $this->addFieldsIf( array( 'ipb_anon_only', 'ipb_create_account', 'ipb_enable_autoblock',
69 'ipb_block_email', 'ipb_deleted', 'ipb_allow_usertalk' ),
72 $this->addOption( 'LIMIT', $params['limit'] +
1 );
73 $this->addTimestampWhereRange(
79 // Include in ORDER BY for uniqueness
80 $this->addWhereRange( 'ipb_id', $params['dir'], null, null );
82 if ( !is_null( $params['continue'] ) ) {
83 $cont = explode( '|', $params['continue'] );
84 $this->dieContinueUsageIf( count( $cont ) != 2 );
85 $op = ( $params['dir'] == 'newer' ?
'>' : '<' );
86 $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
87 $continueId = (int)$cont[1];
88 $this->dieContinueUsageIf( $continueId != $cont[1] );
89 $this->addWhere( "ipb_timestamp $op $continueTimestamp OR " .
90 "(ipb_timestamp = $continueTimestamp AND " .
91 "ipb_id $op= $continueId)"
95 if ( isset( $params['ids'] ) ) {
96 $this->addWhereFld( 'ipb_id', $params['ids'] );
98 if ( isset( $params['users'] ) ) {
100 foreach ( (array)$params['users'] as $u ) {
101 $usernames[] = $this->prepareUsername( $u );
103 $this->addWhereFld( 'ipb_address', $usernames );
104 $this->addWhereFld( 'ipb_auto', 0 );
106 if ( isset( $params['ip'] ) ) {
107 $blockCIDRLimit = $this->getConfig()->get( 'BlockCIDRLimit' );
108 if ( IP
::isIPv4( $params['ip'] ) ) {
110 $cidrLimit = $blockCIDRLimit['IPv4'];
112 } elseif ( IP
::isIPv6( $params['ip'] ) ) {
114 $cidrLimit = $blockCIDRLimit['IPv6'];
115 $prefixLen = 3; // IP::toHex output is prefixed with "v6-"
117 $this->dieUsage( 'IP parameter is not valid', 'param_ip' );
120 # Check range validity, if it's a CIDR
121 list( $ip, $range ) = IP
::parseCIDR( $params['ip'] );
122 if ( $ip !== false && $range !== false && $range < $cidrLimit ) {
124 "$type CIDR ranges broader than /$cidrLimit are not accepted",
129 # Let IP::parseRange handle calculating $upper, instead of duplicating the logic here.
130 list( $lower, $upper ) = IP
::parseRange( $params['ip'] );
132 # Extract the common prefix to any rangeblock affecting this IP/CIDR
133 $prefix = substr( $lower, 0, $prefixLen +
floor( $cidrLimit / 4 ) );
135 # Fairly hard to make a malicious SQL statement out of hex characters,
136 # but it is good practice to add quotes
137 $lower = $db->addQuotes( $lower );
138 $upper = $db->addQuotes( $upper );
140 $this->addWhere( array(
141 'ipb_range_start' . $db->buildLike( $prefix, $db->anyString() ),
142 'ipb_range_start <= ' . $lower,
143 'ipb_range_end >= ' . $upper,
148 if ( !is_null( $params['show'] ) ) {
149 $show = array_flip( $params['show'] );
151 /* Check for conflicting parameters. */
152 if ( ( isset( $show['account'] ) && isset( $show['!account'] ) )
153 ||
( isset( $show['ip'] ) && isset( $show['!ip'] ) )
154 ||
( isset( $show['range'] ) && isset( $show['!range'] ) )
155 ||
( isset( $show['temp'] ) && isset( $show['!temp'] ) )
157 $this->dieUsageMsg( 'show' );
160 $this->addWhereIf( 'ipb_user = 0', isset( $show['!account'] ) );
161 $this->addWhereIf( 'ipb_user != 0', isset( $show['account'] ) );
162 $this->addWhereIf( 'ipb_user != 0 OR ipb_range_end > ipb_range_start', isset( $show['!ip'] ) );
163 $this->addWhereIf( 'ipb_user = 0 AND ipb_range_end = ipb_range_start', isset( $show['ip'] ) );
164 $this->addWhereIf( 'ipb_expiry = ' .
165 $db->addQuotes( $db->getInfinity() ), isset( $show['!temp'] ) );
166 $this->addWhereIf( 'ipb_expiry != ' .
167 $db->addQuotes( $db->getInfinity() ), isset( $show['temp'] ) );
168 $this->addWhereIf( 'ipb_range_end = ipb_range_start', isset( $show['!range'] ) );
169 $this->addWhereIf( 'ipb_range_end > ipb_range_start', isset( $show['range'] ) );
172 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
173 $this->addWhereFld( 'ipb_deleted', 0 );
176 // Purge expired entries on one in every 10 queries
177 if ( !mt_rand( 0, 10 ) ) {
178 Block
::purgeExpired();
181 $res = $this->select( __METHOD__
);
184 foreach ( $res as $row ) {
185 if ( ++
$count > $params['limit'] ) {
187 $this->setContinueEnumParameter( 'continue', "$row->ipb_timestamp|$row->ipb_id" );
191 ApiResult
::META_TYPE
=> 'assoc',
194 $block['id'] = (int)$row->ipb_id
;
196 if ( $fld_user && !$row->ipb_auto
) {
197 $block['user'] = $row->ipb_address
;
199 if ( $fld_userid && !$row->ipb_auto
) {
200 $block['userid'] = (int)$row->ipb_user
;
203 $block['by'] = $row->ipb_by_text
;
206 $block['byid'] = (int)$row->ipb_by
;
208 if ( $fld_timestamp ) {
209 $block['timestamp'] = wfTimestamp( TS_ISO_8601
, $row->ipb_timestamp
);
212 $block['expiry'] = $wgContLang->formatExpiry( $row->ipb_expiry
, TS_ISO_8601
);
215 $block['reason'] = $row->ipb_reason
;
217 if ( $fld_range && !$row->ipb_auto
) {
218 $block['rangestart'] = IP
::formatHex( $row->ipb_range_start
);
219 $block['rangeend'] = IP
::formatHex( $row->ipb_range_end
);
222 // For clarity, these flags use the same names as their action=block counterparts
223 $block['automatic'] = (bool)$row->ipb_auto
;
224 $block['anononly'] = (bool)$row->ipb_anon_only
;
225 $block['nocreate'] = (bool)$row->ipb_create_account
;
226 $block['autoblock'] = (bool)$row->ipb_enable_autoblock
;
227 $block['noemail'] = (bool)$row->ipb_block_email
;
228 $block['hidden'] = (bool)$row->ipb_deleted
;
229 $block['allowusertalk'] = (bool)$row->ipb_allow_usertalk
;
231 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $block );
233 $this->setContinueEnumParameter( 'continue', "$row->ipb_timestamp|$row->ipb_id" );
237 $result->addIndexedTagName( array( 'query', $this->getModuleName() ), 'block' );
240 protected function prepareUsername( $user ) {
242 $this->dieUsage( 'User parameter may not be empty', 'param_user' );
244 $name = User
::isIP( $user )
246 : User
::getCanonicalName( $user, 'valid' );
247 if ( $name === false ) {
248 $this->dieUsage( "User name {$user} is not valid", 'param_user' );
253 public function getAllowedParams() {
254 $blockCIDRLimit = $this->getConfig()->get( 'BlockCIDRLimit' );
258 ApiBase
::PARAM_TYPE
=> 'timestamp'
261 ApiBase
::PARAM_TYPE
=> 'timestamp',
264 ApiBase
::PARAM_TYPE
=> array(
268 ApiBase
::PARAM_DFLT
=> 'older',
269 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-direction',
272 ApiBase
::PARAM_TYPE
=> 'integer',
273 ApiBase
::PARAM_ISMULTI
=> true
276 ApiBase
::PARAM_TYPE
=> 'user',
277 ApiBase
::PARAM_ISMULTI
=> true
280 ApiBase
::PARAM_HELP_MSG
=> array(
281 'apihelp-query+blocks-param-ip',
282 $blockCIDRLimit['IPv4'],
283 $blockCIDRLimit['IPv6'],
287 ApiBase
::PARAM_DFLT
=> 10,
288 ApiBase
::PARAM_TYPE
=> 'limit',
289 ApiBase
::PARAM_MIN
=> 1,
290 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
291 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
294 ApiBase
::PARAM_DFLT
=> 'id|user|by|timestamp|expiry|reason|flags',
295 ApiBase
::PARAM_TYPE
=> array(
307 ApiBase
::PARAM_ISMULTI
=> true,
308 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> array(),
311 ApiBase
::PARAM_TYPE
=> array(
321 ApiBase
::PARAM_ISMULTI
=> true
324 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
329 protected function getExamplesMessages() {
331 'action=query&list=blocks'
332 => 'apihelp-query+blocks-example-simple',
333 'action=query&list=blocks&bkusers=Alice|Bob'
334 => 'apihelp-query+blocks-example-users',
338 public function getHelpUrls() {
339 return 'https://www.mediawiki.org/wiki/API:Blocks';