wiki.techinc.nl/includes/Block.php

270 lines
6 KiB
PHP
Raw Normal View History

<?php
# Blocks and bans object
2003-09-07 13:56:25 +00:00
#
#TODO: This could be used everywhere, but it isn't.
2003-09-07 13:56:25 +00:00
#
# All the functions in this class assume the object is either explicitly
2003-09-07 13:56:25 +00:00
# loaded or filled. It is not load-on-demand. There are no accessors.
#
# To use delete(), you only need to fill $mAddress
2004-02-21 13:24:35 +00:00
# Globals used: $wgBlockCache, $wgAutoblockExpiry
class Block
{
/* public*/ var $mAddress, $mUser, $mBy, $mReason, $mTimestamp, $mAuto, $mId, $mExpiry;
/* private */ var $mNetworkBits, $mIntegerAddr;
function Block( $address = '', $user = '', $by = 0, $reason = '',
$timestamp = '' , $auto = 0, $expiry = '' )
{
$this->mAddress = $address;
$this->mUser = $user;
$this->mBy = $by;
$this->mReason = $reason;
$this->mTimestamp = $timestamp;
2003-09-07 13:56:25 +00:00
$this->mAuto = $auto;
$this->mExpiry = $expiry;
$this->initialiseRange();
}
/*static*/ function newFromDB( $address, $user = 0, $killExpired = true )
{
$ban = new Block();
$ban->load( $address, $user, $killExpired );
return $ban;
}
function clear()
{
$mAddress = $mReason = $mTimestamp = '';
$mUser = $mBy = 0;
}
# Get a ban from the DB, with either the given address or the given username
2004-06-11 15:16:00 +00:00
function load( $address = "", $user = 0, $killExpired = true )
{
$fname = 'Block::load';
$ret = false;
$killed = false;
$dbr =& wfGetDB( DB_READ );
$ipblocks = $dbr->tableName( 'ipblocks' );
2004-06-11 15:16:00 +00:00
if ( 0 == $user && $address=="" ) {
$sql = "SELECT * from $ipblocks";
2004-06-11 15:16:00 +00:00
} elseif ($address=="") {
$sql = "SELECT * FROM $ipblocks WHERE ipb_user={$user}";
2004-06-11 15:16:00 +00:00
} elseif ($user=="") {
$sql = "SELECT * FROM $ipblocks WHERE ipb_address='" . $dbr->strencode( $address ) . "'";
} else {
$sql = "SELECT * FROM $ipblocks WHERE (ipb_address='" . $dbr->strencode( $address ) .
2003-09-07 13:56:25 +00:00
"' OR ipb_user={$user})";
}
$res = $dbr->query( $sql, $fname );
if ( 0 == $dbr->numRows( $res ) ) {
# User is not blocked
$this->clear();
} else {
# Get first block
$row = $dbr->fetchObject( $res );
$this->initFromRow( $row );
if ( $killExpired ) {
# If requested, delete expired rows
do {
$killed = $this->deleteIfExpired();
2003-09-07 13:56:25 +00:00
if ( $killed ) {
$row = $dbr->fetchObject( $res );
2003-09-07 13:56:25 +00:00
if ( $row ) {
$this->initFromRow( $row );
}
}
} while ( $killed && $row );
# If there were any left after the killing finished, return true
2003-09-07 13:56:25 +00:00
if ( !$row ) {
$ret = false;
$this->clear();
} else {
$ret = true;
}
} else {
$ret = true;
}
}
$dbr->freeResult( $res );
return $ret;
}
function initFromRow( $row )
{
$this->mAddress = $row->ipb_address;
$this->mReason = $row->ipb_reason;
$this->mTimestamp = $row->ipb_timestamp;
$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;
$this->mExpiry = $row->ipb_expiry;
$this->initialiseRange();
}
function initialiseRange()
{
if ( $this->mUser == 0 ) {
$rangeParts = explode( '/', $this->mAddress );
if ( count( $rangeParts ) == 2 ) {
$this->mNetworkBits = $rangeParts[1];
} else {
$this->mNetworkBits = 32;
}
$this->mIntegerAddr = ip2long( $rangeParts[0] );
} else {
$this->mNetworkBits = false;
$this->mIntegerAddr = false;
}
}
# Callback with a Block object for every block
/*static*/ function enumBlocks( $callback, $tag, $killExpired = true )
{
$dbr =& wfGetDB( DB_READ );
$ipblocks = $dbr->tableName( 'ipblocks' );
$sql = "SELECT * FROM $ipblocks ORDER BY ipb_timestamp DESC";
$res = $dbr->query( $sql, 'Block::enumBans' );
$block = new Block();
while ( $row = wfFetchObject( $res ) ) {
$block->initFromRow( $row );
if ( $killExpired ) {
if ( !$block->deleteIfExpired() ) {
$callback( $block, $tag );
}
} else {
$callback( $block, $tag );
}
}
wfFreeResult( $res );
}
function delete()
{
$fname = 'Block::delete';
$dbw =& wfGetDB( DB_WRITE );
2003-09-07 13:56:25 +00:00
if ( $this->mAddress == "" ) {
$condition = array( 'ipb_id' => $this->mId );
2003-09-07 13:56:25 +00:00
} else {
$condition = array( 'ipb_address' => $this->mAddress );
2003-09-07 13:56:25 +00:00
}
$dbw->delete( 'ipblocks', $condition, $fname );
$this->clearCache();
}
function insert()
{
$dbw =& wfGetDB( DB_WRITE );
$dbw->insertArray( 'ipblocks',
array(
'ipb_address' => $this->mAddress,
'ipb_user' => $this->mUser,
'ipb_by' => $this->mBy,
'ipb_reason' => $this->mReason,
'ipb_timestamp' => $this->mTimestamp,
'ipb_auto' => $this->mAuto,
'ipb_expiry' => $this->mExpiry,
), 'Block::insert'
);
$this->clearCache();
}
function deleteIfExpired()
{
if ( $this->isExpired() ) {
$this->delete();
return true;
} else {
return false;
}
}
function isExpired()
{
2004-02-16 00:05:25 +00:00
if ( !$this->mExpiry ) {
return false;
} else {
return wfTimestampNow() > $this->mExpiry;
}
}
function isValid()
{
return $this->mAddress != '';
}
function updateTimestamp()
{
if ( $this->mAuto ) {
$this->mTimestamp = wfTimestampNow();
$this->mExpiry = Block::getAutoblockExpiry( $this->mTimestamp );
$dbw =& wfGetDB( DB_WRITE );
$dbw->updateArray( 'ipblocks',
array( /* SET */
'ipb_timestamp' => $this->mTimestamp,
'ipb_expiry' => $this->mExpiry,
), array( /* WHERE */
'ipb_address' => $this->mAddress
), 'Block::updateTimestamp'
);
$this->clearCache();
}
}
/* private */ function clearCache()
{
global $wgBlockCache;
if ( is_object( $wgBlockCache ) ) {
$wgBlockCache->clear();
}
}
function getIntegerAddr()
{
return $this->mIntegerAddr;
}
function getNetworkBits()
{
return $this->mNetworkBits;
}
/* static */ function getAutoblockExpiry( $timestamp )
{
global $wgAutoblockExpiry;
return wfUnix2Timestamp( wfTimestamp2Unix( $timestamp ) + $wgAutoblockExpiry );
}
/* static */ function normaliseRange( $range )
{
$parts = explode( '/', $range );
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-07 13:56:25 +00:00
}
?>