2007-12-06 16:06:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Created on Sep 10, 2007
|
|
|
|
|
*
|
|
|
|
|
* API for MediaWiki 1.8+
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2007 Roan Kattouw <Firstname>.<Lastname>@home.nl
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (!defined('MEDIAWIKI')) {
|
|
|
|
|
// Eclipse helper - will be ignored in production
|
|
|
|
|
require_once ('ApiQueryBase.php');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Query module to enumerate all available pages.
|
2008-04-14 07:45:50 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup API
|
2007-12-06 16:06:22 +00:00
|
|
|
*/
|
|
|
|
|
class ApiQueryBlocks extends ApiQueryBase {
|
2008-04-26 14:09:16 +00:00
|
|
|
|
|
|
|
|
var $users;
|
2007-12-06 16:06:22 +00:00
|
|
|
|
|
|
|
|
public function __construct($query, $moduleName) {
|
|
|
|
|
parent :: __construct($query, $moduleName, 'bk');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$this->run();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function run() {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
|
|
|
|
|
$params = $this->extractRequestParams();
|
2008-06-19 13:43:14 +00:00
|
|
|
if(isset($params['users']) && isset($params['ip']))
|
|
|
|
|
$this->dieUsage('bkusers and bkip cannot be used together', 'usersandip');
|
|
|
|
|
|
2007-12-06 16:06:22 +00:00
|
|
|
$prop = array_flip($params['prop']);
|
|
|
|
|
$fld_id = isset($prop['id']);
|
|
|
|
|
$fld_user = isset($prop['user']);
|
|
|
|
|
$fld_by = isset($prop['by']);
|
|
|
|
|
$fld_timestamp = isset($prop['timestamp']);
|
|
|
|
|
$fld_expiry = isset($prop['expiry']);
|
|
|
|
|
$fld_reason = isset($prop['reason']);
|
|
|
|
|
$fld_range = isset($prop['range']);
|
|
|
|
|
$fld_flags = isset($prop['flags']);
|
|
|
|
|
|
|
|
|
|
$result = $this->getResult();
|
|
|
|
|
$pageSet = $this->getPageSet();
|
|
|
|
|
$titles = $pageSet->getTitles();
|
|
|
|
|
$data = array();
|
|
|
|
|
|
|
|
|
|
$this->addTables('ipblocks');
|
|
|
|
|
if($fld_id)
|
|
|
|
|
$this->addFields('ipb_id');
|
|
|
|
|
if($fld_user)
|
|
|
|
|
$this->addFields(array('ipb_address', 'ipb_user'));
|
2008-07-19 07:50:14 +00:00
|
|
|
if($fld_user || $fld_flags)
|
|
|
|
|
$this->addFields('ipb_auto');
|
2007-12-06 16:06:22 +00:00
|
|
|
if($fld_by)
|
|
|
|
|
{
|
|
|
|
|
$this->addTables('user');
|
|
|
|
|
$this->addFields(array('ipb_by', 'user_name'));
|
|
|
|
|
$this->addWhere('user_id = ipb_by');
|
|
|
|
|
}
|
|
|
|
|
if($fld_timestamp)
|
|
|
|
|
$this->addFields('ipb_timestamp');
|
|
|
|
|
if($fld_expiry)
|
|
|
|
|
$this->addFields('ipb_expiry');
|
|
|
|
|
if($fld_reason)
|
|
|
|
|
$this->addFields('ipb_reason');
|
|
|
|
|
if($fld_range)
|
|
|
|
|
$this->addFields(array('ipb_range_start', 'ipb_range_end'));
|
|
|
|
|
if($fld_flags)
|
2008-07-19 07:50:14 +00:00
|
|
|
$this->addFields(array('ipb_anon_only', 'ipb_create_account', 'ipb_enable_autoblock', 'ipb_block_email', 'ipb_deleted'));
|
2007-12-06 16:06:22 +00:00
|
|
|
|
|
|
|
|
$this->addOption('LIMIT', $params['limit'] + 1);
|
|
|
|
|
$this->addWhereRange('ipb_timestamp', $params['dir'], $params['start'], $params['end']);
|
|
|
|
|
if(isset($params['ids']))
|
|
|
|
|
$this->addWhere(array('ipb_id' => $params['ids']));
|
|
|
|
|
if(isset($params['users']))
|
2008-04-26 14:09:16 +00:00
|
|
|
{
|
|
|
|
|
foreach((array)$params['users'] as $u)
|
|
|
|
|
$this->prepareUsername($u);
|
|
|
|
|
$this->addWhere(array('ipb_address' => $this->usernames));
|
|
|
|
|
}
|
2008-06-19 13:43:14 +00:00
|
|
|
if(isset($params['ip']))
|
|
|
|
|
{
|
|
|
|
|
list($ip, $range) = IP::parseCIDR($params['ip']);
|
|
|
|
|
if($ip && $range)
|
|
|
|
|
{
|
|
|
|
|
# We got a CIDR range
|
|
|
|
|
if($range < 16)
|
|
|
|
|
$this->dieUsage('CIDR ranges broader than /16 are not accepted', 'cidrtoobroad');
|
|
|
|
|
$lower = wfBaseConvert($ip, 10, 16, 8, false);
|
|
|
|
|
$upper = wfBaseConvert($ip + pow(2, 32 - $range) - 1, 10, 16, 8, false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
$lower = $upper = IP::toHex($params['ip']);
|
|
|
|
|
$prefix = substr($lower, 0, 4);
|
|
|
|
|
$this->addWhere(array(
|
|
|
|
|
"ipb_range_start LIKE '$prefix%'",
|
|
|
|
|
"ipb_range_start <= '$lower'",
|
|
|
|
|
"ipb_range_end >= '$upper'"
|
|
|
|
|
));
|
|
|
|
|
}
|
2008-04-01 22:50:53 +00:00
|
|
|
if(!$wgUser->isAllowed('suppress'))
|
2007-12-06 16:06:22 +00:00
|
|
|
$this->addWhere(array('ipb_deleted' => 0));
|
|
|
|
|
|
|
|
|
|
// Purge expired entries on one in every 10 queries
|
|
|
|
|
if(!mt_rand(0, 10))
|
|
|
|
|
Block::purgeExpired();
|
|
|
|
|
|
|
|
|
|
$res = $this->select(__METHOD__);
|
|
|
|
|
$db = wfGetDB();
|
|
|
|
|
|
|
|
|
|
$count = 0;
|
|
|
|
|
while($row = $db->fetchObject($res))
|
|
|
|
|
{
|
|
|
|
|
if($count++ == $params['limit'])
|
|
|
|
|
{
|
|
|
|
|
// We've had enough
|
|
|
|
|
$this->setContinueEnumParameter('start', wfTimestamp(TS_ISO_8601, $row->ipb_timestamp));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
$block = array();
|
|
|
|
|
if($fld_id)
|
|
|
|
|
$block['id'] = $row->ipb_id;
|
2007-12-16 08:59:47 +00:00
|
|
|
if($fld_user && !$row->ipb_auto)
|
2007-12-06 16:06:22 +00:00
|
|
|
{
|
|
|
|
|
$block['user'] = $row->ipb_address;
|
|
|
|
|
}
|
|
|
|
|
if($fld_by)
|
|
|
|
|
{
|
|
|
|
|
$block['by'] = $row->user_name;
|
|
|
|
|
}
|
|
|
|
|
if($fld_timestamp)
|
|
|
|
|
$block['timestamp'] = wfTimestamp(TS_ISO_8601, $row->ipb_timestamp);
|
|
|
|
|
if($fld_expiry)
|
|
|
|
|
$block['expiry'] = Block::decodeExpiry($row->ipb_expiry, TS_ISO_8601);
|
|
|
|
|
if($fld_reason)
|
|
|
|
|
$block['reason'] = $row->ipb_reason;
|
|
|
|
|
if($fld_range)
|
|
|
|
|
{
|
|
|
|
|
$block['rangestart'] = $this->convertHexIP($row->ipb_range_start);
|
|
|
|
|
$block['rangeend'] = $this->convertHexIP($row->ipb_range_end);
|
|
|
|
|
}
|
|
|
|
|
if($fld_flags)
|
|
|
|
|
{
|
|
|
|
|
// For clarity, these flags use the same names as their action=block counterparts
|
|
|
|
|
if($row->ipb_auto)
|
|
|
|
|
$block['automatic'] = '';
|
|
|
|
|
if($row->ipb_anon_only)
|
|
|
|
|
$block['anononly'] = '';
|
|
|
|
|
if($row->ipb_create_account)
|
|
|
|
|
$block['nocreate'] = '';
|
|
|
|
|
if($row->ipb_enable_autoblock)
|
|
|
|
|
$block['autoblock'] = '';
|
|
|
|
|
if($row->ipb_block_email)
|
|
|
|
|
$block['noemail'] = '';
|
|
|
|
|
if($row->ipb_deleted)
|
|
|
|
|
$block['hidden'] = '';
|
|
|
|
|
}
|
|
|
|
|
$data[] = $block;
|
|
|
|
|
}
|
|
|
|
|
$result->setIndexedTagName($data, 'block');
|
|
|
|
|
$result->addValue('query', $this->getModuleName(), $data);
|
|
|
|
|
}
|
2008-04-26 14:09:16 +00:00
|
|
|
|
2008-06-19 13:43:14 +00:00
|
|
|
protected function prepareUsername($user)
|
|
|
|
|
{
|
|
|
|
|
if(!$user)
|
|
|
|
|
$this->dieUsage('User parameter may not be empty', 'param_user');
|
|
|
|
|
$name = User::isIP($user)
|
|
|
|
|
? $user
|
|
|
|
|
: User::getCanonicalName($user, 'valid');
|
|
|
|
|
if($name === false)
|
|
|
|
|
$this->dieUsage("User name {$user} is not valid", 'param_user');
|
|
|
|
|
$this->usernames[] = $name;
|
2008-04-26 14:09:16 +00:00
|
|
|
}
|
2007-12-06 16:06:22 +00:00
|
|
|
|
|
|
|
|
protected function convertHexIP($ip)
|
|
|
|
|
{
|
|
|
|
|
// Converts a hexadecimal IP to nnn.nnn.nnn.nnn format
|
|
|
|
|
$dec = wfBaseConvert($ip, 16, 10);
|
|
|
|
|
$parts[0] = (int)($dec / (256*256*256));
|
|
|
|
|
$dec %= 256*256*256;
|
|
|
|
|
$parts[1] = (int)($dec / (256*256));
|
|
|
|
|
$dec %= 256*256;
|
|
|
|
|
$parts[2] = (int)($dec / 256);
|
|
|
|
|
$parts[3] = $dec % 256;
|
|
|
|
|
return implode('.', $parts);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getAllowedParams() {
|
2007-12-06 16:06:22 +00:00
|
|
|
return array (
|
|
|
|
|
'start' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp'
|
|
|
|
|
),
|
|
|
|
|
'end' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'timestamp',
|
|
|
|
|
),
|
|
|
|
|
'dir' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => array(
|
|
|
|
|
'newer',
|
|
|
|
|
'older'
|
|
|
|
|
),
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'older'
|
|
|
|
|
),
|
|
|
|
|
'ids' => array(
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'integer',
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true
|
|
|
|
|
),
|
|
|
|
|
'users' => array(
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true
|
|
|
|
|
),
|
2008-06-19 13:43:14 +00:00
|
|
|
'ip' => null,
|
2007-12-06 16:06:22 +00:00
|
|
|
'limit' => array(
|
|
|
|
|
ApiBase :: PARAM_DFLT => 10,
|
|
|
|
|
ApiBase :: PARAM_TYPE => 'limit',
|
|
|
|
|
ApiBase :: PARAM_MIN => 1,
|
|
|
|
|
ApiBase :: PARAM_MAX => ApiBase :: LIMIT_BIG1,
|
|
|
|
|
ApiBase :: PARAM_MAX2 => ApiBase :: LIMIT_BIG2
|
|
|
|
|
),
|
|
|
|
|
'prop' => array(
|
|
|
|
|
ApiBase :: PARAM_DFLT => 'id|user|by|timestamp|expiry|reason|flags',
|
|
|
|
|
ApiBase :: PARAM_TYPE => array(
|
|
|
|
|
'id',
|
|
|
|
|
'user',
|
|
|
|
|
'by',
|
|
|
|
|
'timestamp',
|
|
|
|
|
'expiry',
|
|
|
|
|
'reason',
|
|
|
|
|
'range',
|
|
|
|
|
'flags'
|
|
|
|
|
),
|
|
|
|
|
ApiBase :: PARAM_ISMULTI => true
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getParamDescription() {
|
2007-12-06 16:06:22 +00:00
|
|
|
return array (
|
|
|
|
|
'start' => 'The timestamp to start enumerating from',
|
|
|
|
|
'end' => 'The timestamp to stop enumerating at',
|
|
|
|
|
'dir' => 'The direction in which to enumerate',
|
|
|
|
|
'ids' => 'Pipe-separated list of block IDs to list (optional)',
|
|
|
|
|
'users' => 'Pipe-separated list of users to search for (optional)',
|
2008-06-19 13:43:14 +00:00
|
|
|
'ip' => array( 'Get all blocks applying to this IP or CIDR range, including range blocks.',
|
|
|
|
|
'Cannot be used together with bkusers. CIDR ranges broader than /16 are not accepted.'),
|
2007-12-06 16:06:22 +00:00
|
|
|
'limit' => 'The maximum amount of blocks to list',
|
|
|
|
|
'prop' => 'Which properties to get',
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-28 19:05:26 +00:00
|
|
|
public function getDescription() {
|
2007-12-06 16:06:22 +00:00
|
|
|
return 'List all blocked users and IP addresses.';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function getExamples() {
|
2008-02-28 13:32:10 +00:00
|
|
|
return array ( 'api.php?action=query&list=blocks',
|
|
|
|
|
'api.php?action=query&list=blocks&bkusers=Alice|Bob'
|
2007-12-06 16:06:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getVersion() {
|
2007-12-06 18:33:18 +00:00
|
|
|
return __CLASS__ . ': $Id$';
|
2007-12-06 16:06:22 +00:00
|
|
|
}
|
|
|
|
|
}
|