3 * Copyright © 2007 Roan Kattouw <roan.kattouw@gmail.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 namespace MediaWiki\Api
;
25 use MediaWiki\Block\BlockActionInfo
;
26 use MediaWiki\Block\BlockRestrictionStore
;
27 use MediaWiki\Block\DatabaseBlockStore
;
28 use MediaWiki\Block\HideUserUtils
;
29 use MediaWiki\Block\Restriction\PageRestriction
;
30 use MediaWiki\CommentStore\CommentStore
;
31 use MediaWiki\MainConfigNames
;
32 use MediaWiki\ParamValidator\TypeDef\UserDef
;
33 use Wikimedia\IPUtils
;
34 use Wikimedia\ParamValidator\ParamValidator
;
35 use Wikimedia\ParamValidator\TypeDef\IntegerDef
;
36 use Wikimedia\Rdbms\IResultWrapper
;
37 use Wikimedia\Rdbms\RawSQLExpression
;
40 * Query module to enumerate all user blocks
44 class ApiQueryBlocks
extends ApiQueryBase
{
46 private DatabaseBlockStore
$blockStore;
47 private BlockActionInfo
$blockActionInfo;
48 private BlockRestrictionStore
$blockRestrictionStore;
49 private CommentStore
$commentStore;
50 private HideUserUtils
$hideUserUtils;
52 public function __construct(
55 DatabaseBlockStore
$blockStore,
56 BlockActionInfo
$blockActionInfo,
57 BlockRestrictionStore
$blockRestrictionStore,
58 CommentStore
$commentStore,
59 HideUserUtils
$hideUserUtils
61 parent
::__construct( $query, $moduleName, 'bk' );
62 $this->blockStore
= $blockStore;
63 $this->blockActionInfo
= $blockActionInfo;
64 $this->blockRestrictionStore
= $blockRestrictionStore;
65 $this->commentStore
= $commentStore;
66 $this->hideUserUtils
= $hideUserUtils;
69 public function execute() {
71 $params = $this->extractRequestParams();
72 $this->requireMaxOneParameter( $params, 'users', 'ip' );
74 $prop = array_fill_keys( $params['prop'], true );
75 $fld_id = isset( $prop['id'] );
76 $fld_user = isset( $prop['user'] );
77 $fld_userid = isset( $prop['userid'] );
78 $fld_by = isset( $prop['by'] );
79 $fld_byid = isset( $prop['byid'] );
80 $fld_timestamp = isset( $prop['timestamp'] );
81 $fld_expiry = isset( $prop['expiry'] );
82 $fld_reason = isset( $prop['reason'] );
83 $fld_range = isset( $prop['range'] );
84 $fld_flags = isset( $prop['flags'] );
85 $fld_restrictions = isset( $prop['restrictions'] );
87 $result = $this->getResult();
89 $this->addTables( [ 'block', 'block_target', 'block_target_user' => 'user' ] );
90 $this->addJoinConds( [
91 'block_target' => [ 'JOIN', 'bt_id=bl_target' ],
92 'block_target_user' => [ 'LEFT JOIN', 'user_id=bt_user' ]
94 $this->addFields( [ 'bt_auto', 'bl_id', 'bl_timestamp' ] );
99 'bt_address_or_user_name' => 'COALESCE(bt_address, bt_user_text)'
101 $fld_user ||
$fld_userid
104 if ( $fld_by ||
$fld_byid ) {
105 $this->addTables( 'actor' );
106 $this->addFields( [ 'actor_user', 'actor_name' ] );
107 $this->addJoinConds( [ 'actor' => [ 'JOIN', 'actor_id=bl_by_actor' ] ] );
109 $this->addFieldsIf( 'bl_expiry', $fld_expiry );
110 $this->addFieldsIf( [ 'bt_range_start', 'bt_range_end' ], $fld_range );
111 $this->addFieldsIf( [ 'bl_anon_only', 'bl_create_account', 'bl_enable_autoblock',
112 'bl_block_email', 'bl_deleted', 'bl_allow_usertalk', 'bl_sitewide' ],
114 $this->addFieldsIf( 'bl_sitewide', $fld_restrictions );
117 $commentQuery = $this->commentStore
->getJoin( 'bl_reason' );
118 $this->addTables( $commentQuery['tables'] );
119 $this->addFields( $commentQuery['fields'] );
120 $this->addJoinConds( $commentQuery['joins'] );
123 $this->addOption( 'LIMIT', $params['limit'] +
1 );
124 $this->addTimestampWhereRange(
130 // Include in ORDER BY for uniqueness
131 $this->addWhereRange( 'bl_id', $params['dir'], null, null );
133 if ( $params['continue'] !== null ) {
134 $cont = $this->parseContinueParamOrDie( $params['continue'], [ 'timestamp', 'int' ] );
135 $op = ( $params['dir'] == 'newer' ?
'>=' : '<=' );
136 $this->addWhere( $db->buildComparison( $op, [
137 'bl_timestamp' => $db->timestamp( $cont[0] ),
142 if ( $params['ids'] ) {
143 $this->addWhereIDsFld( 'block', 'bl_id', $params['ids'] );
145 if ( $params['users'] ) {
148 foreach ( $params['users'] as $target ) {
149 if ( IPUtils
::isValid( $target ) || IPUtils
::isValidRange( $target ) ) {
150 $addresses[] = $target;
152 $userNames[] = $target;
155 if ( $addresses && $userNames ) {
156 // Use a union, not "OR" (T360088)
157 $ids = $db->newUnionQueryBuilder()
158 ->add( $db->newSelectQueryBuilder()
160 ->from( 'block_target' )
161 ->where( [ 'bt_address' => $addresses ] )
163 ->add( $db->newSelectQueryBuilder()
165 ->from( 'block_target' )
166 ->join( 'user', null, 'user_id=bt_user' )
167 ->where( [ 'user_name' => $userNames ] )
169 ->caller( __METHOD__
)
170 ->fetchFieldValues();
172 $this->addWhere( [ 'bt_id' => $ids ] );
174 $this->addWhere( '1=0' );
176 } elseif ( $addresses ) {
177 $this->addWhere( [ 'bt_address' => $addresses ] );
178 } elseif ( $userNames ) {
179 $this->addWhere( [ 'block_target_user.user_name' => $userNames ] );
181 // Unreachable since $params['users'] is non-empty
182 $this->addWhere( '1=0' );
184 $this->addWhereFld( 'bt_auto', 0 );
186 if ( $params['ip'] !== null ) {
187 $blockCIDRLimit = $this->getConfig()->get( MainConfigNames
::BlockCIDRLimit
);
188 if ( IPUtils
::isIPv4( $params['ip'] ) ) {
190 $cidrLimit = $blockCIDRLimit['IPv4'];
191 } elseif ( IPUtils
::isIPv6( $params['ip'] ) ) {
193 $cidrLimit = $blockCIDRLimit['IPv6'];
195 $this->dieWithError( 'apierror-badip', 'param_ip' );
198 // Check range validity, if it's a CIDR
199 [ $ip, $range ] = IPUtils
::parseCIDR( $params['ip'] );
200 if ( $ip !== false && $range !== false && $range < $cidrLimit ) {
201 $this->dieWithError( [ 'apierror-cidrtoobroad', $type, $cidrLimit ] );
204 // Let IPUtils::parseRange handle calculating $upper, instead of duplicating the logic here.
205 [ $lower, $upper ] = IPUtils
::parseRange( $params['ip'] );
207 $this->addWhere( $this->blockStore
->getRangeCond( $lower, $upper ) );
208 $this->addWhere( [ 'bt_auto' => 0 ] );
211 if ( $params['show'] !== null ) {
212 $show = array_fill_keys( $params['show'], true );
214 // Check for conflicting parameters.
215 if ( ( isset( $show['account'] ) && isset( $show['!account'] ) )
216 ||
( isset( $show['ip'] ) && isset( $show['!ip'] ) )
217 ||
( isset( $show['range'] ) && isset( $show['!range'] ) )
218 ||
( isset( $show['temp'] ) && isset( $show['!temp'] ) )
220 $this->dieWithError( 'apierror-show' );
223 $this->addWhereIf( [ 'bt_user' => 0 ], isset( $show['!account'] ) );
224 $this->addWhereIf( $db->expr( 'bt_user', '!=', 0 ), isset( $show['account'] ) );
226 $db->expr( 'bt_user', '!=', 0 )->orExpr( new RawSQLExpression( 'bt_range_end > bt_range_start' ) ),
227 isset( $show['!ip'] )
229 $this->addWhereIf( [ 'bt_user' => 0, 'bt_range_end = bt_range_start' ], isset( $show['ip'] ) );
230 $this->addWhereIf( [ 'bl_expiry' => $db->getInfinity() ], isset( $show['!temp'] ) );
231 $this->addWhereIf( $db->expr( 'bl_expiry', '!=', $db->getInfinity() ), isset( $show['temp'] ) );
232 $this->addWhereIf( 'bt_range_end = bt_range_start', isset( $show['!range'] ) );
233 $this->addWhereIf( 'bt_range_end > bt_range_start', isset( $show['range'] ) );
236 if ( !$this->getAuthority()->isAllowed( 'hideuser' ) ) {
238 $this->hideUserUtils
->getExpression( $db, 'block_target.bt_user' )
242 // Filter out expired rows
243 $this->addWhere( $db->expr( 'bl_expiry', '>', $db->timestamp() ) );
245 $res = $this->select( __METHOD__
);
248 if ( $fld_restrictions ) {
249 $restrictions = $this->getRestrictionData( $res, $params['limit'] );
253 foreach ( $res as $row ) {
254 if ( ++
$count > $params['limit'] ) {
256 $this->setContinueEnumParameter( 'continue', "{$row->bl_timestamp}|{$row->bl_id}" );
260 ApiResult
::META_TYPE
=> 'assoc',
263 $block['id'] = (int)$row->bl_id
;
265 if ( $fld_user && !$row->bt_auto
) {
266 $block['user'] = $row->bt_address_or_user_name
;
268 if ( $fld_userid && !$row->bt_auto
) {
269 $block['userid'] = (int)$row->bt_user
;
272 $block['by'] = $row->actor_name
;
275 $block['byid'] = (int)$row->actor_user
;
277 if ( $fld_timestamp ) {
278 $block['timestamp'] = wfTimestamp( TS_ISO_8601
, $row->bl_timestamp
);
281 $block['expiry'] = ApiResult
::formatExpiry( $row->bl_expiry
);
284 $block['reason'] = $this->commentStore
->getComment( 'bl_reason', $row )->text
;
286 if ( $fld_range && !$row->bt_auto
&& $row->bt_range_start
!== null ) {
287 $block['rangestart'] = IPUtils
::formatHex( $row->bt_range_start
);
288 $block['rangeend'] = IPUtils
::formatHex( $row->bt_range_end
);
291 // For clarity, these flags use the same names as their action=block counterparts
292 $block['automatic'] = (bool)$row->bt_auto
;
293 $block['anononly'] = (bool)$row->bl_anon_only
;
294 $block['nocreate'] = (bool)$row->bl_create_account
;
295 $block['autoblock'] = (bool)$row->bl_enable_autoblock
;
296 $block['noemail'] = (bool)$row->bl_block_email
;
297 $block['hidden'] = (bool)$row->bl_deleted
;
298 $block['allowusertalk'] = (bool)$row->bl_allow_usertalk
;
299 $block['partial'] = !(bool)$row->bl_sitewide
;
302 if ( $fld_restrictions ) {
303 $block['restrictions'] = [];
304 if ( !$row->bl_sitewide
&& isset( $restrictions[$row->bl_id
] ) ) {
305 $block['restrictions'] = $restrictions[$row->bl_id
];
309 $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $block );
311 $this->setContinueEnumParameter( 'continue', "{$row->bl_timestamp}|{$row->bl_id}" );
315 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'block' );
319 * Retrieves the restrictions based on the query result.
321 * @param IResultWrapper $result
326 private function getRestrictionData( IResultWrapper
$result, $limit ) {
329 foreach ( $result as $row ) {
330 if ( ++
$count <= $limit && !( $row->ipb_sitewide ??
$row->bl_sitewide
) ) {
331 $partialIds[] = (int)( $row->ipb_id ??
$row->bl_id
);
335 $restrictions = $this->blockRestrictionStore
->loadByBlockId( $partialIds );
340 'ns' => 'namespaces',
342 if ( $this->getConfig()->get( MainConfigNames
::EnablePartialActionBlocks
) ) {
343 $keys['action'] = 'actions';
346 foreach ( $restrictions as $restriction ) {
347 $key = $keys[$restriction->getType()];
348 $id = $restriction->getBlockId();
349 switch ( $restriction->getType() ) {
351 /** @var PageRestriction $restriction */
352 '@phan-var \MediaWiki\Block\Restriction\PageRestriction $restriction';
353 $value = [ 'id' => $restriction->getValue() ];
354 if ( $restriction->getTitle() ) {
355 self
::addTitleInfo( $value, $restriction->getTitle() );
359 $value = $this->blockActionInfo
->getActionFromId( $restriction->getValue() );
362 $value = $restriction->getValue();
365 if ( !isset( $data[$id][$key] ) ) {
366 $data[$id][$key] = [];
367 ApiResult
::setIndexedTagName( $data[$id][$key], $restriction->getType() );
369 $data[$id][$key][] = $value;
375 public function getAllowedParams() {
376 $blockCIDRLimit = $this->getConfig()->get( MainConfigNames
::BlockCIDRLimit
);
380 ParamValidator
::PARAM_TYPE
=> 'timestamp'
383 ParamValidator
::PARAM_TYPE
=> 'timestamp',
386 ParamValidator
::PARAM_TYPE
=> [
390 ParamValidator
::PARAM_DEFAULT
=> 'older',
391 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-direction',
392 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [
393 'newer' => 'api-help-paramvalue-direction-newer',
394 'older' => 'api-help-paramvalue-direction-older',
398 ParamValidator
::PARAM_TYPE
=> 'integer',
399 ParamValidator
::PARAM_ISMULTI
=> true
402 ParamValidator
::PARAM_TYPE
=> 'user',
403 UserDef
::PARAM_ALLOWED_USER_TYPES
=> [ 'name', 'ip', 'temp', 'cidr' ],
404 ParamValidator
::PARAM_ISMULTI
=> true
407 ApiBase
::PARAM_HELP_MSG
=> [
408 'apihelp-query+blocks-param-ip',
409 $blockCIDRLimit['IPv4'],
410 $blockCIDRLimit['IPv6'],
414 ParamValidator
::PARAM_DEFAULT
=> 10,
415 ParamValidator
::PARAM_TYPE
=> 'limit',
416 IntegerDef
::PARAM_MIN
=> 1,
417 IntegerDef
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
418 IntegerDef
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
421 ParamValidator
::PARAM_DEFAULT
=> 'id|user|by|timestamp|expiry|reason|flags',
422 ParamValidator
::PARAM_TYPE
=> [
435 ParamValidator
::PARAM_ISMULTI
=> true,
436 ApiBase
::PARAM_HELP_MSG_PER_VALUE
=> [],
439 ParamValidator
::PARAM_TYPE
=> [
449 ParamValidator
::PARAM_ISMULTI
=> true
452 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
457 protected function getExamplesMessages() {
459 'action=query&list=blocks'
460 => 'apihelp-query+blocks-example-simple',
461 'action=query&list=blocks&bkusers=Alice|Bob'
462 => 'apihelp-query+blocks-example-users',
466 public function getHelpUrls() {
467 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Blocks';
471 /** @deprecated class alias since 1.43 */
472 class_alias( ApiQueryBlocks
::class, 'ApiQueryBlocks' );