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() {
40 $params = $this->extractRequestParams();
41 $this->requireMaxOneParameter( $params, 'users', 'ip' );
43 $prop = array_flip( $params['prop'] );
44 $fld_id = isset( $prop['id'] );
45 $fld_user = isset( $prop['user'] );
46 $fld_userid = isset( $prop['userid'] );
47 $fld_by = isset( $prop['by'] );
48 $fld_byid = isset( $prop['byid'] );
49 $fld_timestamp = isset( $prop['timestamp'] );
50 $fld_expiry = isset( $prop['expiry'] );
51 $fld_reason = isset( $prop['reason'] );
52 $fld_range = isset( $prop['range'] );
53 $fld_flags = isset( $prop['flags'] );
55 $result = $this->getResult();
57 $this->addTables( 'ipblocks' );
58 $this->addFields( [ 'ipb_auto', 'ipb_id', 'ipb_timestamp' ] );
60 $this->addFieldsIf( [ 'ipb_address', 'ipb_user' ], $fld_user ||
$fld_userid );
61 $this->addFieldsIf( 'ipb_by_text', $fld_by );
62 $this->addFieldsIf( 'ipb_by', $fld_byid );
63 $this->addFieldsIf( 'ipb_expiry', $fld_expiry );
64 $this->addFieldsIf( 'ipb_reason', $fld_reason );
65 $this->addFieldsIf( [ 'ipb_range_start', 'ipb_range_end' ], $fld_range );
66 $this->addFieldsIf( [ 'ipb_anon_only', 'ipb_create_account', 'ipb_enable_autoblock',
67 'ipb_block_email', 'ipb_deleted', 'ipb_allow_usertalk' ],
70 $this->addOption( 'LIMIT', $params['limit'] +
1 );
71 $this->addTimestampWhereRange(
77 // Include in ORDER BY for uniqueness
78 $this->addWhereRange( 'ipb_id', $params['dir'], null, null );
80 if ( !is_null( $params['continue'] ) ) {
81 $cont = explode( '|', $params['continue'] );
82 $this->dieContinueUsageIf( count( $cont ) != 2 );
83 $op = ( $params['dir'] == 'newer' ?
'>' : '<' );
84 $continueTimestamp = $db->addQuotes( $db->timestamp( $cont[0] ) );
85 $continueId = (int)$cont[1];
86 $this->dieContinueUsageIf( $continueId != $cont[1] );
87 $this->addWhere( "ipb_timestamp $op $continueTimestamp OR " .
88 "(ipb_timestamp = $continueTimestamp AND " .
89 "ipb_id $op= $continueId)"
93 if ( isset( $params['ids'] ) ) {
94 $this->addWhereFld( 'ipb_id', $params['ids'] );
96 if ( isset( $params['users'] ) ) {
98 foreach ( (array)$params['users'] as $u ) {
99 $usernames[] = $this->prepareUsername( $u );
101 $this->addWhereFld( 'ipb_address', $usernames );
102 $this->addWhereFld( 'ipb_auto', 0 );
104 if ( isset( $params['ip'] ) ) {
105 $blockCIDRLimit = $this->getConfig()->get( 'BlockCIDRLimit' );
106 if ( IP
::isIPv4( $params['ip'] ) ) {
108 $cidrLimit = $blockCIDRLimit['IPv4'];
110 } elseif ( IP
::isIPv6( $params['ip'] ) ) {
112 $cidrLimit = $blockCIDRLimit['IPv6'];
113 $prefixLen = 3; // IP::toHex output is prefixed with "v6-"
115 $this->dieWithError( 'apierror-badip', 'param_ip' );
118 # Check range validity, if it's a CIDR
119 list( $ip, $range ) = IP
::parseCIDR( $params['ip'] );
120 if ( $ip !== false && $range !== false && $range < $cidrLimit ) {
121 $this->dieWithError( [ 'apierror-cidrtoobroad', $type, $cidrLimit ] );
124 # Let IP::parseRange handle calculating $upper, instead of duplicating the logic here.
125 list( $lower, $upper ) = IP
::parseRange( $params['ip'] );
127 # Extract the common prefix to any rangeblock affecting this IP/CIDR
128 $prefix = substr( $lower, 0, $prefixLen +
floor( $cidrLimit / 4 ) );
130 # Fairly hard to make a malicious SQL statement out of hex characters,
131 # but it is good practice to add quotes
132 $lower = $db->addQuotes( $lower );
133 $upper = $db->addQuotes( $upper );
136 'ipb_range_start' . $db->buildLike( $prefix, $db->anyString() ),
137 'ipb_range_start <= ' . $lower,
138 'ipb_range_end >= ' . $upper,
143 if ( !is_null( $params['show'] ) ) {
144 $show = array_flip( $params['show'] );
146 /* Check for conflicting parameters. */
147 if ( ( isset( $show['account'] ) && isset( $show['!account'] ) )
148 ||
( isset( $show['ip'] ) && isset( $show['!ip'] ) )
149 ||
( isset( $show['range'] ) && isset( $show['!range'] ) )
150 ||
( isset( $show['temp'] ) && isset( $show['!temp'] ) )
152 $this->dieWithError( 'apierror-show' );
155 $this->addWhereIf( 'ipb_user = 0', isset( $show['!account'] ) );
156 $this->addWhereIf( 'ipb_user != 0', isset( $show['account'] ) );
157 $this->addWhereIf( 'ipb_user != 0 OR ipb_range_end > ipb_range_start', isset( $show['!ip'] ) );
158 $this->addWhereIf( 'ipb_user = 0 AND ipb_range_end = ipb_range_start', isset( $show['ip'] ) );
159 $this->addWhereIf( 'ipb_expiry = ' .
160 $db->addQuotes( $db->getInfinity() ), isset( $show['!temp'] ) );
161 $this->addWhereIf( 'ipb_expiry != ' .
162 $db->addQuotes( $db->getInfinity() ), isset( $show['temp'] ) );
163 $this->addWhereIf( 'ipb_range_end = ipb_range_start', isset( $show['!range'] ) );
164 $this->addWhereIf( 'ipb_range_end > ipb_range_start', isset( $show['range'] ) );
167 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
168 $this->addWhereFld( 'ipb_deleted', 0 );
171 # Filter out expired rows
172 $this->addWhere( 'ipb_expiry > ' . $db->addQuotes( $db->timestamp() ) );
174 $res = $this->select( __METHOD__
);
177 foreach ( $res as $row ) {
178 if ( ++
$count > $params['limit'] ) {
180 $this->setContinueEnumParameter( 'continue', "$row->ipb_timestamp|$row->ipb_id" );
184 ApiResult
::META_TYPE
=> 'assoc',
187 $block['id'] = (int)$row->ipb_id
;
189 if ( $fld_user && !$row->ipb_auto
) {
190 $block['user'] = $row->ipb_address
;
192 if ( $fld_userid && !$row->ipb_auto
) {
193 $block['userid'] = (int)$row->ipb_user
;
196 $block['by'] = $row->ipb_by_text
;
199 $block['byid'] = (int)$row->ipb_by
;
201 if ( $fld_timestamp ) {
202 $block['timestamp'] = wfTimestamp( TS_ISO_8601
, $row->ipb_timestamp
);
205 $block['expiry'] = ApiResult
::formatExpiry( $row->ipb_expiry
);
208 $block['reason'] = $row->ipb_reason
;
210 if ( $fld_range && !$row->ipb_auto
) {
211 $block['rangestart'] = IP
::formatHex( $row->ipb_range_start
);
212 $block['rangeend'] = IP
::formatHex( $row->ipb_range_end
);
215 // For clarity, these flags use the same names as their action=block counterparts
216 $block['automatic'] = (bool)$row->ipb_auto
;
217 $block['anononly'] = (bool)$row->ipb_anon_only
;
218 $block['nocreate'] = (bool)$row->ipb_create_account
;
219 $block['autoblock'] = (bool)$row->ipb_enable_autoblock
;
220 $block['noemail'] = (bool)$row->ipb_block_email
;
221 $block['hidden'] = (bool)$row->ipb_deleted
;
222 $block['allowusertalk'] = (bool)$row->ipb_allow_usertalk
;
224 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $block );
226 $this->setContinueEnumParameter( 'continue', "$row->ipb_timestamp|$row->ipb_id" );
230 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'block' );
233 protected function prepareUsername( $user ) {
235 $encParamName = $this->encodeParamName( 'users' );
236 $this->dieWithError( [ 'apierror-baduser', $encParamName, wfEscapeWikiText( $user ) ],
237 "baduser_{$encParamName}"
240 $name = User
::isIP( $user )
242 : User
::getCanonicalName( $user, 'valid' );
243 if ( $name === false ) {
244 $encParamName = $this->encodeParamName( 'users' );
245 $this->dieWithError( [ 'apierror-baduser', $encParamName, wfEscapeWikiText( $user ) ],
246 "baduser_{$encParamName}"
252 public function getAllowedParams() {
253 $blockCIDRLimit = $this->getConfig()->get( 'BlockCIDRLimit' );
257 ApiBase
::PARAM_TYPE
=> 'timestamp'
260 ApiBase
::PARAM_TYPE
=> 'timestamp',
263 ApiBase
::PARAM_TYPE
=> [
267 ApiBase
::PARAM_DFLT
=> 'older',
268 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-direction',
271 ApiBase
::PARAM_TYPE
=> 'integer',
272 ApiBase
::PARAM_ISMULTI
=> true
275 ApiBase
::PARAM_TYPE
=> 'user',
276 ApiBase
::PARAM_ISMULTI
=> true
279 ApiBase
::PARAM_HELP_MSG
=> [
280 'apihelp-query+blocks-param-ip',
281 $blockCIDRLimit['IPv4'],
282 $blockCIDRLimit['IPv6'],
286 ApiBase
::PARAM_DFLT
=> 10,
287 ApiBase
::PARAM_TYPE
=> 'limit',
288 ApiBase
::PARAM_MIN
=> 1,
289 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
290 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
293 ApiBase
::PARAM_DFLT
=> 'id|user|by|timestamp|expiry|reason|flags',
294 ApiBase
::PARAM_TYPE
=> [
306 ApiBase
::PARAM_ISMULTI
=> true,
307 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
310 ApiBase
::PARAM_TYPE
=> [
320 ApiBase
::PARAM_ISMULTI
=> true
323 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
328 protected function getExamplesMessages() {
330 'action=query&list=blocks'
331 => 'apihelp-query+blocks-example-simple',
332 'action=query&list=blocks&bkusers=Alice|Bob'
333 => 'apihelp-query+blocks-example-users',
337 public function getHelpUrls() {
338 return 'https://www.mediawiki.org/wiki/API:Blocks';