2004-02-18 02:15:00 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Blocks and bans object
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-02-14 12:37:25 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Some globals
|
|
|
|
|
*/
|
2004-08-15 07:23:39 +00:00
|
|
|
define ( 'EB_KEEP_EXPIRED', 1 );
|
|
|
|
|
define ( 'EB_FOR_UPDATE', 2 );
|
2005-08-21 06:07:48 +00:00
|
|
|
define ( 'EB_RANGE_ONLY', 4 );
|
2004-08-15 07:23:39 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* The block class
|
2005-08-02 13:35:19 +00:00
|
|
|
* All the functions in this class assume the object is either explicitly
|
2004-09-02 23:28:24 +00:00
|
|
|
* loaded or filled. It is not load-on-demand. There are no accessors.
|
2005-08-02 13:35:19 +00:00
|
|
|
*
|
2004-09-02 23:28:24 +00:00
|
|
|
* To use delete(), you only need to fill $mAddress
|
|
|
|
|
* Globals used: $wgBlockCache, $wgAutoblockExpiry
|
2004-09-03 23:00:01 +00:00
|
|
|
*
|
2004-09-02 23:28:24 +00:00
|
|
|
* @todo This could be used everywhere, but it isn't.
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2003-09-01 13:13:56 +00:00
|
|
|
class Block
|
|
|
|
|
{
|
2004-02-14 12:37:25 +00:00
|
|
|
/* public*/ var $mAddress, $mUser, $mBy, $mReason, $mTimestamp, $mAuto, $mId, $mExpiry;
|
2005-08-23 16:52:42 +00:00
|
|
|
/* private */ var $mNetworkBits, $mIntegerAddr, $mForUpdate, $mByName;
|
2005-08-02 13:35:19 +00:00
|
|
|
|
|
|
|
|
function Block( $address = '', $user = '', $by = 0, $reason = '',
|
|
|
|
|
$timestamp = '' , $auto = 0, $expiry = '' )
|
2003-09-01 13:13:56 +00:00
|
|
|
{
|
|
|
|
|
$this->mAddress = $address;
|
|
|
|
|
$this->mUser = $user;
|
|
|
|
|
$this->mBy = $by;
|
|
|
|
|
$this->mReason = $reason;
|
2004-09-07 06:20:51 +00:00
|
|
|
$this->mTimestamp = wfTimestamp(TS_MW,$timestamp);
|
2003-09-07 13:56:25 +00:00
|
|
|
$this->mAuto = $auto;
|
2005-01-11 09:29:29 +00:00
|
|
|
if( empty( $expiry ) ) {
|
|
|
|
|
$this->mExpiry = $expiry;
|
|
|
|
|
} else {
|
|
|
|
|
$this->mExpiry = wfTimestamp( TS_MW, $expiry );
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2004-08-15 07:23:39 +00:00
|
|
|
$this->mForUpdate = false;
|
2005-08-23 16:52:42 +00:00
|
|
|
$this->mByName = false;
|
2004-02-14 12:37:25 +00:00
|
|
|
$this->initialiseRange();
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
|
|
|
|
/*static*/ function newFromDB( $address, $user = 0, $killExpired = true )
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2003-09-01 13:13:56 +00:00
|
|
|
$ban = new Block();
|
|
|
|
|
$ban->load( $address, $user, $killExpired );
|
|
|
|
|
return $ban;
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
|
|
|
|
function clear()
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2005-08-23 16:52:42 +00:00
|
|
|
$this->mAddress = $this->mReason = $this->mTimestamp = '';
|
|
|
|
|
$this->mUser = $this->mBy = 0;
|
|
|
|
|
$this->mByName = false;
|
|
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
2005-01-22 08:30:39 +00:00
|
|
|
/**
|
|
|
|
|
* Get a ban from the DB, with either the given address or the given username
|
|
|
|
|
*/
|
2005-08-02 13:35:19 +00:00
|
|
|
function load( $address = '', $user = 0, $killExpired = true )
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2005-08-26 23:02:54 +00:00
|
|
|
global $wgAntiLockFlags;
|
2004-07-10 03:09:26 +00:00
|
|
|
$fname = 'Block::load';
|
2005-01-11 08:05:22 +00:00
|
|
|
wfDebug( "Block::load: '$address', '$user', $killExpired\n" );
|
2004-07-10 03:09:26 +00:00
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
$ret = false;
|
|
|
|
|
$killed = false;
|
2004-08-15 07:23:39 +00:00
|
|
|
if ( $this->forUpdate() ) {
|
|
|
|
|
$db =& wfGetDB( DB_MASTER );
|
2005-07-25 06:57:12 +00:00
|
|
|
if ( $wgAntiLockFlags & ALF_NO_BLOCK_LOCK ) {
|
|
|
|
|
$options = '';
|
|
|
|
|
} else {
|
|
|
|
|
$options = 'FOR UPDATE';
|
|
|
|
|
}
|
2004-08-15 07:23:39 +00:00
|
|
|
} else {
|
|
|
|
|
$db =& wfGetDB( DB_SLAVE );
|
|
|
|
|
$options = '';
|
|
|
|
|
}
|
|
|
|
|
$ipblocks = $db->tableName( 'ipblocks' );
|
2004-07-10 03:09:26 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( 0 == $user && $address=='' ) {
|
2004-08-15 07:23:39 +00:00
|
|
|
$sql = "SELECT * from $ipblocks $options";
|
2004-06-11 15:16:00 +00:00
|
|
|
} elseif ($address=="") {
|
2004-08-15 07:23:39 +00:00
|
|
|
$sql = "SELECT * FROM $ipblocks WHERE ipb_user={$user} $options";
|
2004-06-11 15:16:00 +00:00
|
|
|
} elseif ($user=="") {
|
2004-08-15 07:23:39 +00:00
|
|
|
$sql = "SELECT * FROM $ipblocks WHERE ipb_address='" . $db->strencode( $address ) . "' $options";
|
2005-08-26 23:02:54 +00:00
|
|
|
} elseif ( $options=='' ) {
|
|
|
|
|
# If there are no options (e.g. FOR UPDATE), use a UNION
|
2005-01-01 11:50:19 +00:00
|
|
|
# so that the query can make efficient use of indices
|
|
|
|
|
$sql = "SELECT * FROM $ipblocks WHERE ipb_address='" . $db->strencode( $address ) .
|
|
|
|
|
"' UNION SELECT * FROM $ipblocks WHERE ipb_user={$user}";
|
2003-09-01 13:13:56 +00:00
|
|
|
} else {
|
2005-01-01 11:50:19 +00:00
|
|
|
# If there are options, a UNION can not be used, use one
|
|
|
|
|
# SELECT instead. Will do a full table scan.
|
2005-08-02 13:35:19 +00:00
|
|
|
$sql = "SELECT * FROM $ipblocks WHERE (ipb_address='" . $db->strencode( $address ) .
|
2004-08-15 07:23:39 +00:00
|
|
|
"' OR ipb_user={$user}) $options";
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-15 07:23:39 +00:00
|
|
|
$res = $db->query( $sql, $fname );
|
|
|
|
|
if ( 0 == $db->numRows( $res ) ) {
|
2003-09-01 13:13:56 +00:00
|
|
|
# User is not blocked
|
|
|
|
|
$this->clear();
|
|
|
|
|
} else {
|
|
|
|
|
# Get first block
|
2004-08-15 07:23:39 +00:00
|
|
|
$row = $db->fetchObject( $res );
|
2003-09-01 13:13:56 +00:00
|
|
|
$this->initFromRow( $row );
|
|
|
|
|
|
|
|
|
|
if ( $killExpired ) {
|
|
|
|
|
# If requested, delete expired rows
|
|
|
|
|
do {
|
|
|
|
|
$killed = $this->deleteIfExpired();
|
2003-09-07 13:56:25 +00:00
|
|
|
if ( $killed ) {
|
2004-08-15 07:23:39 +00:00
|
|
|
$row = $db->fetchObject( $res );
|
2003-09-07 13:56:25 +00:00
|
|
|
if ( $row ) {
|
|
|
|
|
$this->initFromRow( $row );
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-09-01 13:13:56 +00:00
|
|
|
} while ( $killed && $row );
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
# If there were any left after the killing finished, return true
|
2003-09-07 13:56:25 +00:00
|
|
|
if ( !$row ) {
|
2003-09-01 13:13:56 +00:00
|
|
|
$ret = false;
|
|
|
|
|
$this->clear();
|
|
|
|
|
} else {
|
|
|
|
|
$ret = true;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$ret = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-08-15 07:23:39 +00:00
|
|
|
$db->freeResult( $res );
|
2003-09-01 13:13:56 +00:00
|
|
|
return $ret;
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
|
|
|
|
function initFromRow( $row )
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2003-09-01 13:13:56 +00:00
|
|
|
$this->mAddress = $row->ipb_address;
|
|
|
|
|
$this->mReason = $row->ipb_reason;
|
2004-09-07 06:20:51 +00:00
|
|
|
$this->mTimestamp = wfTimestamp(TS_MW,$row->ipb_timestamp);
|
2003-09-01 13:13:56 +00:00
|
|
|
$this->mUser = $row->ipb_user;
|
|
|
|
|
$this->mBy = $row->ipb_by;
|
2003-09-07 13:56:25 +00:00
|
|
|
$this->mAuto = $row->ipb_auto;
|
|
|
|
|
$this->mId = $row->ipb_id;
|
2005-01-11 09:29:29 +00:00
|
|
|
$this->mExpiry = $row->ipb_expiry ?
|
|
|
|
|
wfTimestamp(TS_MW,$row->ipb_expiry) :
|
|
|
|
|
$row->ipb_expiry;
|
2005-08-23 16:52:42 +00:00
|
|
|
if ( isset( $row->user_name ) ) {
|
|
|
|
|
$this->mByName = $row->user_name;
|
|
|
|
|
} else {
|
|
|
|
|
$this->mByName = false;
|
|
|
|
|
}
|
2004-02-14 12:37:25 +00:00
|
|
|
|
|
|
|
|
$this->initialiseRange();
|
2005-08-02 13:35:19 +00:00
|
|
|
}
|
2003-09-01 13:13:56 +00:00
|
|
|
|
2004-02-14 12:37:25 +00:00
|
|
|
function initialiseRange()
|
|
|
|
|
{
|
|
|
|
|
if ( $this->mUser == 0 ) {
|
2004-06-08 23:56:09 +00:00
|
|
|
$rangeParts = explode( '/', $this->mAddress );
|
2004-02-14 12:37:25 +00:00
|
|
|
if ( count( $rangeParts ) == 2 ) {
|
|
|
|
|
$this->mNetworkBits = $rangeParts[1];
|
|
|
|
|
} else {
|
|
|
|
|
$this->mNetworkBits = 32;
|
|
|
|
|
}
|
|
|
|
|
$this->mIntegerAddr = ip2long( $rangeParts[0] );
|
|
|
|
|
} else {
|
|
|
|
|
$this->mNetworkBits = false;
|
|
|
|
|
$this->mIntegerAddr = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-01-22 08:30:39 +00:00
|
|
|
/**
|
|
|
|
|
* Callback with a Block object for every block
|
2005-08-11 05:23:04 +00:00
|
|
|
* @return integer number of blocks;
|
2005-01-22 08:30:39 +00:00
|
|
|
*/
|
2005-08-02 13:35:19 +00:00
|
|
|
/*static*/ function enumBlocks( $callback, $tag, $flags = 0 )
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2005-07-25 06:57:12 +00:00
|
|
|
global $wgAntiLockFlags;
|
|
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
$block = new Block();
|
2004-08-15 07:23:39 +00:00
|
|
|
if ( $flags & EB_FOR_UPDATE ) {
|
|
|
|
|
$db =& wfGetDB( DB_MASTER );
|
2005-07-25 06:57:12 +00:00
|
|
|
if ( $wgAntiLockFlags & ALF_NO_BLOCK_LOCK ) {
|
|
|
|
|
$options = '';
|
|
|
|
|
} else {
|
|
|
|
|
$options = 'FOR UPDATE';
|
|
|
|
|
}
|
2004-08-15 07:23:39 +00:00
|
|
|
$block->forUpdate( true );
|
|
|
|
|
} else {
|
|
|
|
|
$db =& wfGetDB( DB_SLAVE );
|
|
|
|
|
$options = '';
|
2005-08-02 13:35:19 +00:00
|
|
|
}
|
2005-08-21 06:07:48 +00:00
|
|
|
if ( $flags & EB_RANGE_ONLY ) {
|
2005-08-23 16:52:42 +00:00
|
|
|
$cond = " AND ipb_address LIKE '%/%'";
|
2005-08-21 06:07:48 +00:00
|
|
|
} else {
|
|
|
|
|
$cond = '';
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-11 13:43:49 +00:00
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
|
2005-08-23 16:52:42 +00:00
|
|
|
extract( $db->tableNames( 'ipblocks', 'user' ) );
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2005-08-23 20:38:46 +00:00
|
|
|
$sql = "SELECT $ipblocks.*,user_name FROM $ipblocks,$user " .
|
2005-08-23 16:52:42 +00:00
|
|
|
"WHERE user_id=ipb_by $cond ORDER BY ipb_timestamp DESC $options";
|
2005-09-11 13:43:49 +00:00
|
|
|
$res = $db->query( $sql, 'Block::enumBlocks' );
|
2005-08-11 05:23:04 +00:00
|
|
|
$num_rows = $db->numRows( $res );
|
2003-09-01 13:13:56 +00:00
|
|
|
|
2004-08-15 07:23:39 +00:00
|
|
|
while ( $row = $db->fetchObject( $res ) ) {
|
2003-09-01 13:13:56 +00:00
|
|
|
$block->initFromRow( $row );
|
2005-08-21 06:07:48 +00:00
|
|
|
if ( ( $flags & EB_RANGE_ONLY ) && $block->getNetworkBits() == 32 ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-15 07:23:39 +00:00
|
|
|
if ( !( $flags & EB_KEEP_EXPIRED ) ) {
|
2005-09-11 13:43:49 +00:00
|
|
|
if ( $block->mExpiry && $now > $block->mExpiry ) {
|
|
|
|
|
$block->delete();
|
|
|
|
|
} else {
|
2005-08-27 23:51:29 +00:00
|
|
|
call_user_func( $callback, $block, $tag );
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
} else {
|
2005-08-27 23:51:29 +00:00
|
|
|
call_user_func( $callback, $block, $tag );
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
wfFreeResult( $res );
|
2005-08-11 05:23:04 +00:00
|
|
|
return $num_rows;
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-02 13:35:19 +00:00
|
|
|
function delete()
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2004-06-08 23:56:09 +00:00
|
|
|
$fname = 'Block::delete';
|
2005-03-08 02:45:25 +00:00
|
|
|
if (wfReadOnly()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2004-07-10 03:09:26 +00:00
|
|
|
|
2004-08-22 17:24:50 +00:00
|
|
|
if ( $this->mAddress == '' ) {
|
2004-07-10 03:09:26 +00:00
|
|
|
$condition = array( 'ipb_id' => $this->mId );
|
2003-09-07 13:56:25 +00:00
|
|
|
} else {
|
2004-07-10 03:09:26 +00:00
|
|
|
$condition = array( 'ipb_address' => $this->mAddress );
|
2003-09-07 13:56:25 +00:00
|
|
|
}
|
2004-07-10 03:09:26 +00:00
|
|
|
$dbw->delete( 'ipblocks', $condition, $fname );
|
2004-02-14 12:37:25 +00:00
|
|
|
$this->clearCache();
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-02 13:35:19 +00:00
|
|
|
function insert()
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2005-01-11 09:29:29 +00:00
|
|
|
wfDebug( "Block::insert; timestamp {$this->mTimestamp}\n" );
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2005-08-02 13:35:19 +00:00
|
|
|
$ipb_id = $dbw->nextSequenceValue('ipblocks_ipb_id_val');
|
2004-10-24 07:10:33 +00:00
|
|
|
$dbw->insert( 'ipblocks',
|
2004-07-10 03:09:26 +00:00
|
|
|
array(
|
2005-08-02 13:35:19 +00:00
|
|
|
'ipb_id' => $ipb_id,
|
2004-07-10 03:09:26 +00:00
|
|
|
'ipb_address' => $this->mAddress,
|
|
|
|
|
'ipb_user' => $this->mUser,
|
|
|
|
|
'ipb_by' => $this->mBy,
|
|
|
|
|
'ipb_reason' => $this->mReason,
|
2004-09-07 06:20:51 +00:00
|
|
|
'ipb_timestamp' => $dbw->timestamp($this->mTimestamp),
|
2004-07-10 03:09:26 +00:00
|
|
|
'ipb_auto' => $this->mAuto,
|
2005-01-11 09:29:29 +00:00
|
|
|
'ipb_expiry' => $this->mExpiry ?
|
|
|
|
|
$dbw->timestamp($this->mExpiry) :
|
|
|
|
|
$this->mExpiry,
|
2005-08-02 13:35:19 +00:00
|
|
|
), 'Block::insert'
|
2004-07-10 03:09:26 +00:00
|
|
|
);
|
2004-02-14 12:37:25 +00:00
|
|
|
|
|
|
|
|
$this->clearCache();
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-02 13:35:19 +00:00
|
|
|
function deleteIfExpired()
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2003-09-01 13:13:56 +00:00
|
|
|
if ( $this->isExpired() ) {
|
2005-01-11 08:05:22 +00:00
|
|
|
wfDebug( "Block::deleteIfExpired() -- deleting\n" );
|
2003-09-01 13:13:56 +00:00
|
|
|
$this->delete();
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
2005-01-11 08:05:22 +00:00
|
|
|
wfDebug( "Block::deleteIfExpired() -- not expired\n" );
|
2003-09-01 13:13:56 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-02 13:35:19 +00:00
|
|
|
function isExpired()
|
|
|
|
|
{
|
2005-01-11 08:05:22 +00:00
|
|
|
wfDebug( "Block::isExpired() checking current " . wfTimestampNow() . " vs $this->mExpiry\n" );
|
2004-02-16 00:05:25 +00:00
|
|
|
if ( !$this->mExpiry ) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
2005-01-11 08:05:22 +00:00
|
|
|
return wfTimestampNow() > $this->mExpiry;
|
2004-02-16 00:05:25 +00:00
|
|
|
}
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
|
2005-08-02 13:35:19 +00:00
|
|
|
function isValid()
|
2004-02-14 12:37:25 +00:00
|
|
|
{
|
2004-06-08 23:56:09 +00:00
|
|
|
return $this->mAddress != '';
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
|
|
|
|
function updateTimestamp()
|
2004-02-27 08:25:56 +00:00
|
|
|
{
|
|
|
|
|
if ( $this->mAuto ) {
|
2004-09-07 06:20:51 +00:00
|
|
|
$this->mTimestamp = wfTimestamp();
|
2004-02-27 08:25:56 +00:00
|
|
|
$this->mExpiry = Block::getAutoblockExpiry( $this->mTimestamp );
|
|
|
|
|
|
2004-07-18 08:48:43 +00:00
|
|
|
$dbw =& wfGetDB( DB_MASTER );
|
2005-08-02 13:35:19 +00:00
|
|
|
$dbw->update( 'ipblocks',
|
|
|
|
|
array( /* SET */
|
2004-09-07 06:20:51 +00:00
|
|
|
'ipb_timestamp' => $dbw->timestamp($this->mTimestamp),
|
2004-09-07 06:26:15 +00:00
|
|
|
'ipb_expiry' => $dbw->timestamp($this->mExpiry),
|
2004-07-10 03:09:26 +00:00
|
|
|
), array( /* WHERE */
|
|
|
|
|
'ipb_address' => $this->mAddress
|
2005-08-02 13:35:19 +00:00
|
|
|
), 'Block::updateTimestamp'
|
2004-07-10 03:09:26 +00:00
|
|
|
);
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2004-02-27 08:25:56 +00:00
|
|
|
$this->clearCache();
|
|
|
|
|
}
|
2004-02-14 12:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */ function clearCache()
|
|
|
|
|
{
|
|
|
|
|
global $wgBlockCache;
|
|
|
|
|
if ( is_object( $wgBlockCache ) ) {
|
2004-08-15 07:23:39 +00:00
|
|
|
$wgBlockCache->loadFromDB();
|
2004-02-14 12:37:25 +00:00
|
|
|
}
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2004-02-14 12:37:25 +00:00
|
|
|
function getIntegerAddr()
|
|
|
|
|
{
|
|
|
|
|
return $this->mIntegerAddr;
|
|
|
|
|
}
|
2005-08-02 13:35:19 +00:00
|
|
|
|
2004-02-14 12:37:25 +00:00
|
|
|
function getNetworkBits()
|
|
|
|
|
{
|
|
|
|
|
return $this->mNetworkBits;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-23 16:52:42 +00:00
|
|
|
function getByName()
|
|
|
|
|
{
|
|
|
|
|
if ( $this->mByName === false ) {
|
|
|
|
|
$this->mByName = User::whoIs( $this->mBy );
|
|
|
|
|
}
|
|
|
|
|
return $this->mByName;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-15 07:23:39 +00:00
|
|
|
function forUpdate( $x = NULL ) {
|
|
|
|
|
return wfSetVar( $this->mForUpdate, $x );
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-14 12:37:25 +00:00
|
|
|
/* static */ function getAutoblockExpiry( $timestamp )
|
|
|
|
|
{
|
|
|
|
|
global $wgAutoblockExpiry;
|
2004-09-07 06:26:15 +00:00
|
|
|
return wfTimestamp( TS_MW, wfTimestamp( TS_UNIX, $timestamp ) + $wgAutoblockExpiry );
|
2004-02-14 12:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* static */ function normaliseRange( $range )
|
|
|
|
|
{
|
2004-06-08 23:56:09 +00:00
|
|
|
$parts = explode( '/', $range );
|
2004-02-14 12:37:25 +00:00
|
|
|
if ( count( $parts ) == 2 ) {
|
|
|
|
|
$shift = 32 - $parts[1];
|
|
|
|
|
$ipint = ip2long( $parts[0] );
|
|
|
|
|
$ipint = $ipint >> $shift << $shift;
|
|
|
|
|
$newip = long2ip( $ipint );
|
|
|
|
|
$range = "$newip/{$parts[1]}";
|
|
|
|
|
}
|
|
|
|
|
return $range;
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
2003-09-07 13:56:25 +00:00
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
}
|
|
|
|
|
?>
|