* Added a proper Pager::doBatchLookups() function
[lhc/web/wiklou.git] / includes / Block.php
index af28185..368ab81 100644 (file)
@@ -1,35 +1,33 @@
 <?php
 /**
- * @file
  * Blocks and bans object
- */
-
-/**
- * The block class
- * All the functions in this class assume the object is either explicitly
- * loaded or filled. It is not load-on-demand. There are no accessors.
  *
- * Globals used: $wgAutoblockExpiry, $wgAntiLockFlags
+ * 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.
  *
- * @todo This could be used everywhere, but it isn't.
- * FIXME: this whole class is a cesspit, needs a complete rewrite
+ * 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.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
  */
 class Block {
-       /* public*/ var $mUser, $mReason, $mTimestamp, $mAuto, $mExpiry,
-                               $mHideName,
-                               $mAngryAutoblock;
+       /* public*/ var $mReason, $mTimestamp, $mAuto, $mExpiry, $mHideName;
+
        protected
-               $mAddress,
                $mId,
-               $mBy,
-               $mByName,
                $mFromMaster,
-               $mRangeStart,
-               $mRangeEnd,
-               $mAnonOnly,
-               $mEnableAutoblock,
+
                $mBlockEmail,
-               $mAllowUsertalk,
+               $mDisableUsertalk,
                $mCreateAccount;
 
        /// @var User|String
@@ -41,6 +39,12 @@ class Block {
        /// @var User
        protected $blocker;
 
+       /// @var Bool
+       protected $isHardblock = true;
+
+       /// @var Bool
+       protected $isAutoblocking = true;
+
        # TYPE constants
        const TYPE_USER = 1;
        const TYPE_IP = 2;
@@ -50,37 +54,40 @@ class Block {
 
        /**
         * Constructor
-        * FIXME: Don't know what the best format to have for this constructor is, but fourteen
+        * @todo FIXME: Don't know what the best format to have for this constructor is, but fourteen
         * optional parameters certainly isn't it.
         */
        function __construct( $address = '', $user = 0, $by = 0, $reason = '',
                $timestamp = 0, $auto = 0, $expiry = '', $anonOnly = 0, $createAccount = 0, $enableAutoblock = 0,
-               $hideName = 0, $blockEmail = 0, $allowUsertalk = 0, $byName = false )
+               $hideName = 0, $blockEmail = 0, $allowUsertalk = 0 )
        {
                if( $timestamp === 0 ){
                        $timestamp = wfTimestampNow();
                }
 
-               $this->mId = 0;
-               # Expand valid IPv6 addresses
-               $address = IP::sanitizeIP( $address );
-               $this->mAddress = $address;
-               $this->mUser = $user;
-               $this->mBy = $by;
+               if( count( func_get_args() ) > 0 ){
+                       # Soon... :D
+                       # wfDeprecated( __METHOD__ . " with arguments" );
+               }
+
+               $this->setTarget( $address );
+               $this->setBlocker( User::newFromID( $by ) );
                $this->mReason = $reason;
                $this->mTimestamp = wfTimestamp( TS_MW, $timestamp );
                $this->mAuto = $auto;
-               $this->mAnonOnly = $anonOnly;
-               $this->mCreateAccount = $createAccount;
-               $this->mExpiry = $expiry;
-               $this->mEnableAutoblock = $enableAutoblock;
+               $this->isHardblock( !$anonOnly );
+               $this->prevents( 'createaccount', $createAccount );
+               if ( $expiry == 'infinity' || $expiry == wfGetDB( DB_SLAVE )->getInfinity() ) {
+                       $this->mExpiry = 'infinity';
+               } else {
+                       $this->mExpiry = wfTimestamp( TS_MW, $expiry );
+               }
+               $this->isAutoblocking( $enableAutoblock );
                $this->mHideName = $hideName;
-               $this->mBlockEmail = $blockEmail;
-               $this->mAllowUsertalk = $allowUsertalk;
+               $this->prevents( 'sendemail', $blockEmail );
+               $this->prevents( 'editownusertalk', !$allowUsertalk );
+
                $this->mFromMaster = false;
-               $this->mByName = $byName;
-               $this->mAngryAutoblock = false;
-               $this->initialiseRange();
        }
 
        /**
@@ -90,55 +97,54 @@ class Block {
         *
         * @param $address String: IP address of user/anon
         * @param $user Integer: user id of user
-        * @param $killExpired Boolean: delete expired blocks on load
         * @return Block Object
+        * @deprecated since 1.18
         */
-       public static function newFromDB( $address, $user = 0, $killExpired = true ) {
-               $block = new Block;
-               $block->load( $address, $user, $killExpired );
-               if ( $block->isValid() ) {
-                       return $block;
-               } else {
-                       return null;
-               }
+       public static function newFromDB( $address, $user = 0 ) {
+               return self::newFromTarget( User::whoIs( $user ), $address );
        }
 
        /**
         * Load a blocked user from their block id.
         *
         * @param $id Integer: Block id to search for
-        * @return Block object
+        * @return Block object or null
         */
        public static function newFromID( $id ) {
                $dbr = wfGetDB( DB_SLAVE );
-               $res = $dbr->resultObject( $dbr->select( 'ipblocks', '*',
-                       array( 'ipb_id' => $id ), __METHOD__ ) );
-               $block = new Block;
-
-               if ( $block->loadFromResult( $res ) ) {
-                       return $block;
+               $res = $dbr->selectRow(
+                       'ipblocks',
+                       '*',
+                       array( 'ipb_id' => $id ),
+                       __METHOD__
+               );
+               if ( $res ) {
+                       return Block::newFromRow( $res );
                } else {
                        return null;
                }
        }
 
        /**
-        * Check if two blocks are effectively equal
+        * Check if two blocks are effectively equal.  Doesn't check irrelevant things like
+        * the blocking user or the block timestamp, only things which affect the blocked user   *
         *
-        * @return Boolean
+        * @param $block Block
+        *
+        * @return bool
         */
        public function equals( Block $block ) {
                return (
-                       $this->mAddress == $block->mAddress
-                       && $this->mUser == $block->mUser
+                       (string)$this->target == (string)$block->target
+                       && $this->type == $block->type
                        && $this->mAuto == $block->mAuto
-                       && $this->mAnonOnly == $block->mAnonOnly
-                       && $this->mCreateAccount == $block->mCreateAccount
+                       && $this->isHardblock() == $block->isHardblock()
+                       && $this->prevents( 'createaccount' ) == $block->prevents( 'createaccount' )
                        && $this->mExpiry == $block->mExpiry
-                       && $this->mEnableAutoblock == $block->mEnableAutoblock
+                       && $this->isAutoblocking() == $block->isAutoblocking()
                        && $this->mHideName == $block->mHideName
-                       && $this->mBlockEmail == $block->mBlockEmail
-                       && $this->mAllowUsertalk == $block->mAllowUsertalk
+                       && $this->prevents( 'sendemail' ) == $block->prevents( 'sendemail' )
+                       && $this->prevents( 'editownusertalk' ) == $block->prevents( 'editownusertalk' )
                        && $this->mReason == $block->mReason
                );
        }
@@ -146,13 +152,10 @@ class Block {
        /**
         * Clear all member variables in the current object. Does not clear
         * the block from the DB.
+        * @deprecated since 1.18
         */
        public function clear() {
-               $this->mAddress = $this->mReason = $this->mTimestamp = '';
-               $this->mId = $this->mAnonOnly = $this->mCreateAccount =
-                       $this->mEnableAutoblock = $this->mAuto = $this->mUser =
-                       $this->mBy = $this->mHideName = $this->mBlockEmail = $this->mAllowUsertalk = 0;
-               $this->mByName = false;
+               # Noop
        }
 
        /**
@@ -160,11 +163,10 @@ class Block {
         *
         * @param $address string The IP address of the user, or blank to skip IP blocks
         * @param $user int The user ID, or zero for anonymous users
-        * @param $killExpired bool Whether to delete expired rows while loading
         * @return Boolean: the user is blocked from editing
         * @deprecated since 1.18
         */
-       public function load( $address = '', $user = 0, $killExpired = true ) {
+       public function load( $address = '', $user = 0 ) {
                wfDeprecated( __METHOD__ );
                if( $user ){
                        $username = User::whoIs( $user );
@@ -190,7 +192,7 @@ class Block {
         *     2) A rangeblock encompasing the given IP (smallest first)
         *     3) An autoblock on the given IP
         * @param $vagueTarget User|String also search for blocks affecting this target.  Doesn't
-        *     make any sense to use TYPE_AUTO / TYPE_ID here
+        *     make any sense to use TYPE_AUTO / TYPE_ID here. Leave blank to skip IP lookups.
         * @return Bool whether a relevant block was found
         */
        protected function newLoad( $vagueTarget = null ) {
@@ -204,7 +206,9 @@ class Block {
                        $conds = array( 'ipb_address' => array() );
                }
 
-               if( $vagueTarget !== null ){
+               # Be aware that the != '' check is explicit, since empty values will be
+               # passed by some callers (bug 29116)
+               if( $vagueTarget != ''){
                        list( $target, $type ) = self::parseTarget( $vagueTarget );
                        switch( $type ) {
                                case self::TYPE_USER:
@@ -265,7 +269,7 @@ class Block {
                                # This has the nice property that a /32 block is ranked equally with a
                                # single-IP block, which is exactly what it is...
                                $score = self::TYPE_RANGE  - 1 + ( $size / 128 );
-                               
+
                        } else {
                                $score = $block->getType();
                        }
@@ -334,109 +338,35 @@ class Block {
                }
        }
 
-       /**
-        * Fill in member variables from a result wrapper
-        *
-        * @param $res ResultWrapper: row from the ipblocks table
-        * @param $killExpired Boolean: whether to delete expired rows while loading
-        * @return Boolean
-        */
-       protected function loadFromResult( ResultWrapper $res, $killExpired = true ) {
-               $ret = false;
-
-               if ( 0 != $res->numRows() ) {
-                       # Get first block
-                       $row = $res->fetchObject();
-                       $this->initFromRow( $row );
-
-                       if ( $killExpired ) {
-                               # If requested, delete expired rows
-                               do {
-                                       $killed = $this->deleteIfExpired();
-                                       if ( $killed ) {
-                                               $row = $res->fetchObject();
-                                               if ( $row ) {
-                                                       $this->initFromRow( $row );
-                                               }
-                                       }
-                               } while ( $killed && $row );
-
-                               # If there were any left after the killing finished, return true
-                               if ( $row ) {
-                                       $ret = true;
-                               }
-                       } else {
-                               $ret = true;
-                       }
-               }
-               $res->free();
-
-               return $ret;
-       }
-
-       /**
-        * Search the database for any range blocks matching the given address, and
-        * load the row if one is found.
-        *
-        * @param $address String: IP address range
-        * @param $killExpired Boolean: whether to delete expired rows while loading
-        * @param $user Integer: if not 0, then sets ipb_anon_only
-        * @return Boolean
-        */
-       protected function loadRange( $address, $killExpired = true, $user = 0 ) {
-               $iaddr = IP::toHex( $address );
-
-               if ( $iaddr === false ) {
-                       # Invalid address
-                       return false;
-               }
-
-               # Only scan ranges which start in this /16, this improves search speed
-               # Blocks should not cross a /16 boundary.
-               $range = substr( $iaddr, 0, 4 );
-
-               $db = wfGetDB( $this->mFromMaster ? DB_MASTER : DB_SLAVE );
-               $conds = array(
-                       'ipb_range_start' . $db->buildLike( $range, $db->anyString() ),
-                       "ipb_range_start <= '$iaddr'",
-                       "ipb_range_end >= '$iaddr'"
-               );
-
-               if ( $user ) {
-                       $conds['ipb_anon_only'] = 0;
-               }
-
-               $res = $db->resultObject( $db->select( 'ipblocks', '*', $conds, __METHOD__ ) );
-               $success = $this->loadFromResult( $res, $killExpired );
-
-               return $success;
-       }
-
        /**
         * Given a database row from the ipblocks table, initialize
         * member variables
-        *
         * @param $row ResultWrapper: a row from the ipblocks table
         */
        protected function initFromRow( $row ) {
-               list( $this->target, $this->type ) = self::parseTarget( $row->ipb_address );
-
                $this->setTarget( $row->ipb_address );
                $this->setBlocker( User::newFromId( $row->ipb_by ) );
 
                $this->mReason = $row->ipb_reason;
                $this->mTimestamp = wfTimestamp( TS_MW, $row->ipb_timestamp );
                $this->mAuto = $row->ipb_auto;
-               $this->mAnonOnly = $row->ipb_anon_only;
-               $this->mCreateAccount = $row->ipb_create_account;
-               $this->mEnableAutoblock = $row->ipb_enable_autoblock;
-               $this->mBlockEmail = $row->ipb_block_email;
-               $this->mAllowUsertalk = $row->ipb_allow_usertalk;
                $this->mHideName = $row->ipb_deleted;
                $this->mId = $row->ipb_id;
-               $this->mExpiry = $row->ipb_expiry;
-               $this->mRangeStart = $row->ipb_range_start;
-               $this->mRangeEnd = $row->ipb_range_end;
+
+               // I wish I didn't have to do this
+               $db = wfGetDB( DB_SLAVE );
+               if ( $row->ipb_expiry == $db->getInfinity() ) {
+                       $this->mExpiry = 'infinity';
+               } else {
+                       $this->mExpiry = wfTimestamp( TS_MW, $row->ipb_expiry );
+               }
+
+               $this->isHardblock( !$row->ipb_anon_only );
+               $this->isAutoblocking( $row->ipb_enable_autoblock );
+
+               $this->prevents( 'createaccount', $row->ipb_create_account );
+               $this->prevents( 'sendemail', $row->ipb_block_email );
+               $this->prevents( 'editownusertalk', !$row->ipb_allow_usertalk );
        }
 
        /**
@@ -450,19 +380,6 @@ class Block {
                return $block;
        }
 
-       /**
-        * Once $mAddress has been set, get the range they came from.
-        * Wrapper for IP::parseRange
-        */
-       protected function initialiseRange() {
-               $this->mRangeStart = '';
-               $this->mRangeEnd = '';
-
-               if ( $this->mUser == 0 ) {
-                       list( $this->mRangeStart, $this->mRangeEnd ) = IP::parseRange( $this->mAddress );
-               }
-       }
-
        /**
         * Delete the row from the IP blocks table.
         *
@@ -473,12 +390,12 @@ class Block {
                        return false;
                }
 
-               if ( !$this->mId ) {
-                       throw new MWException( "Block::delete() now requires that the mId member be filled\n" );
+               if ( !$this->getId() ) {
+                       throw new MWException( "Block::delete() requires that the mId member be filled\n" );
                }
 
                $dbw = wfGetDB( DB_MASTER );
-               $dbw->delete( 'ipblocks', array( 'ipb_id' => $this->mId ), __METHOD__ );
+               $dbw->delete( 'ipblocks', array( 'ipb_id' => $this->getId() ), __METHOD__ );
 
                return $dbw->affectedRows() > 0;
        }
@@ -487,17 +404,16 @@ class Block {
         * Insert a block into the block table. Will fail if there is a conflicting
         * block (same name and options) already in the database.
         *
+        * @param $dbw DatabaseBase if you have one available
         * @return mixed: false on failure, assoc array on success:
-        *      ('id' => block ID, 'autoId' => autoblock ID or false)
+        *      ('id' => block ID, 'autoIds' => array of autoblock IDs)
         */
        public function insert( $dbw = null ) {
                wfDebug( "Block::insert; timestamp {$this->mTimestamp}\n" );
 
-               if ( $dbw === null )
+               if ( $dbw === null ) {
                        $dbw = wfGetDB( DB_MASTER );
-
-               $this->validateBlockParams();
-               $this->initialiseRange();
+               }
 
                # Don't collide with expired blocks
                Block::purgeExpired();
@@ -505,33 +421,16 @@ class Block {
                $ipb_id = $dbw->nextSequenceValue( 'ipblocks_ipb_id_seq' );
                $dbw->insert(
                        'ipblocks',
-                       array(
-                               'ipb_id' => $ipb_id,
-                               'ipb_address' => $this->mAddress,
-                               'ipb_user' => $this->mUser,
-                               'ipb_by' => $this->mBy,
-                               'ipb_by_text' => $this->mByName,
-                               'ipb_reason' => $this->mReason,
-                               'ipb_timestamp' => $dbw->timestamp( $this->mTimestamp ),
-                               'ipb_auto' => $this->mAuto,
-                               'ipb_anon_only' => $this->mAnonOnly,
-                               'ipb_create_account' => $this->mCreateAccount,
-                               'ipb_enable_autoblock' => $this->mEnableAutoblock,
-                               'ipb_expiry' => $dbw->encodeExpiry( $this->mExpiry ),
-                               'ipb_range_start' => $this->mRangeStart,
-                               'ipb_range_end' => $this->mRangeEnd,
-                               'ipb_deleted'   => intval( $this->mHideName ), // typecast required for SQLite
-                               'ipb_block_email' => $this->mBlockEmail,
-                               'ipb_allow_usertalk' => $this->mAllowUsertalk
-                       ),
-                       'Block::insert',
+                       $this->getDatabaseArray(),
+                       __METHOD__,
                        array( 'IGNORE' )
                );
                $affected = $dbw->affectedRows();
+               $this->mId = $dbw->insertId();
 
                if ( $affected ) {
-                       $auto_ipd_id = $this->doRetroactiveAutoblock();
-                       return array( 'id' => $ipb_id, 'autoId' => $auto_ipd_id );
+                       $auto_ipd_ids = $this->doRetroactiveAutoblock();
+                       return array( 'id' => $this->mId, 'autoIds' => $auto_ipd_ids );
                }
 
                return false;
@@ -540,114 +439,115 @@ class Block {
        /**
         * Update a block in the DB with new parameters.
         * The ID field needs to be loaded first.
+        *
+        * @return Int number of affected rows, which should probably be 1 or something's
+        *     gone slightly awry
         */
        public function update() {
                wfDebug( "Block::update; timestamp {$this->mTimestamp}\n" );
                $dbw = wfGetDB( DB_MASTER );
 
-               $this->validateBlockParams();
-
                $dbw->update(
                        'ipblocks',
-                       array(
-                               'ipb_user' => $this->mUser,
-                               'ipb_by' => $this->mBy,
-                               'ipb_by_text' => $this->mByName,
-                               'ipb_reason' => $this->mReason,
-                               'ipb_timestamp' => $dbw->timestamp( $this->mTimestamp ),
-                               'ipb_auto' => $this->mAuto,
-                               'ipb_anon_only' => $this->mAnonOnly,
-                               'ipb_create_account' => $this->mCreateAccount,
-                               'ipb_enable_autoblock' => $this->mEnableAutoblock,
-                               'ipb_expiry' => $dbw->encodeExpiry( $this->mExpiry ),
-                               'ipb_range_start' => $this->mRangeStart,
-                               'ipb_range_end' => $this->mRangeEnd,
-                               'ipb_deleted'   => $this->mHideName,
-                               'ipb_block_email' => $this->mBlockEmail,
-                               'ipb_allow_usertalk' => $this->mAllowUsertalk
-                       ),
-                       array( 'ipb_id' => $this->mId ),
-                       'Block::update'
+                       $this->getDatabaseArray( $dbw ),
+                       array( 'ipb_id' => $this->getId() ),
+                       __METHOD__
                );
 
                return $dbw->affectedRows();
        }
 
        /**
-        * Make sure all the proper members are set to sane values
-        * before adding/updating a block
+        * Get an array suitable for passing to $dbw->insert() or $dbw->update()
+        * @param $db DatabaseBase
+        * @return Array
         */
-       protected function validateBlockParams() {
-               # Unset ipb_anon_only for user blocks, makes no sense
-               if ( $this->mUser ) {
-                       $this->mAnonOnly = 0;
+       protected function getDatabaseArray( $db = null ){
+               if( !$db ){
+                       $db = wfGetDB( DB_SLAVE );
                }
+               $expiry = $db->encodeExpiry( $this->mExpiry );
+
+               $a = array(
+                       'ipb_address'          => (string)$this->target,
+                       'ipb_user'             => $this->target instanceof User ? $this->target->getID() : 0,
+                       'ipb_by'               => $this->getBlocker()->getId(),
+                       'ipb_by_text'          => $this->getBlocker()->getName(),
+                       'ipb_reason'           => $this->mReason,
+                       'ipb_timestamp'        => $db->timestamp( $this->mTimestamp ),
+                       'ipb_auto'             => $this->mAuto,
+                       'ipb_anon_only'        => !$this->isHardblock(),
+                       'ipb_create_account'   => $this->prevents( 'createaccount' ),
+                       'ipb_enable_autoblock' => $this->isAutoblocking(),
+                       'ipb_expiry'           => $expiry,
+                       'ipb_range_start'      => $this->getRangeStart(),
+                       'ipb_range_end'        => $this->getRangeEnd(),
+                       'ipb_deleted'          => intval( $this->mHideName ), // typecast required for SQLite
+                       'ipb_block_email'      => $this->prevents( 'sendemail' ),
+                       'ipb_allow_usertalk'   => !$this->prevents( 'editownusertalk' )
+               );
 
-               # Unset ipb_enable_autoblock for IP blocks, makes no sense
-               if ( !$this->mUser ) {
-                       $this->mEnableAutoblock = 0;
-               }
+               return $a;
+       }
 
-               # bug 18860: non-anon-only IP blocks should be allowed to block email
-               if ( !$this->mUser && $this->mAnonOnly ) {
-                       $this->mBlockEmail = 0;
-               }
+       /**
+        * Retroactively autoblocks the last IP used by the user (if it is a user)
+        * blocked by this Block.
+        *
+        * @return Array: block IDs of retroactive autoblocks made
+        */
+       protected function doRetroactiveAutoblock() {
+               $blockIds = array();
+               # If autoblock is enabled, autoblock the LAST IP(s) used
+               if ( $this->isAutoblocking() && $this->getType() == self::TYPE_USER ) {
+                       wfDebug( "Doing retroactive autoblocks for " . $this->getTarget() . "\n" );
 
-               if ( !$this->mByName ) {
-                       if ( $this->mBy ) {
-                               $this->mByName = User::whoIs( $this->mBy );
-                       } else {
-                               global $wgUser;
-                               $this->mByName = $wgUser->getName();
+                       $continue = wfRunHooks(
+                               'PerformRetroactiveAutoblock', array( $this, &$blockIds ) );
+
+                       if ( $continue ) {
+                               self::defaultRetroactiveAutoblock( $this, $blockIds );
                        }
                }
+               return $blockIds;
        }
 
        /**
         * Retroactively autoblocks the last IP used by the user (if it is a user)
-        * blocked by this Block.
+        * blocked by this Block. This will use the recentchanges table.
         *
-        * @return mixed: block ID if a retroactive autoblock was made, false if not.
+        * @param Block $block
+        * @param Array &$blockIds
+        * @return Array: block IDs of retroactive autoblocks made
         */
-       protected function doRetroactiveAutoblock() {
+       protected static function defaultRetroactiveAutoblock( Block $block, array &$blockIds ) {
                $dbr = wfGetDB( DB_SLAVE );
-               # If autoblock is enabled, autoblock the LAST IP used
-               # - stolen shamelessly from CheckUser_body.php
 
-               if ( $this->mEnableAutoblock && $this->mUser ) {
-                       wfDebug( "Doing retroactive autoblocks for " . $this->mAddress . "\n" );
+               $options = array( 'ORDER BY' => 'rc_timestamp DESC' );
+               $conds = array( 'rc_user_text' => (string)$block->getTarget() );
 
-                       $options = array( 'ORDER BY' => 'rc_timestamp DESC' );
-                       $conds = array( 'rc_user_text' => $this->mAddress );
+               // Just the last IP used.
+               $options['LIMIT'] = 1;
 
-                       if ( $this->mAngryAutoblock ) {
-                               // Block any IP used in the last 7 days. Up to five IPs.
-                               $conds[] = 'rc_timestamp < ' . $dbr->addQuotes( $dbr->timestamp( time() - ( 7 * 86400 ) ) );
-                               $options['LIMIT'] = 5;
-                       } else {
-                               // Just the last IP used.
-                               $options['LIMIT'] = 1;
-                       }
-
-                       $res = $dbr->select( 'recentchanges', array( 'rc_ip' ), $conds,
-                               __METHOD__ ,  $options );
+               $res = $dbr->select( 'recentchanges', array( 'rc_ip' ), $conds,
+                       __METHOD__ ,  $options );
 
-                       if ( !$dbr->numRows( $res ) ) {
-                               # No results, don't autoblock anything
-                               wfDebug( "No IP found to retroactively autoblock\n" );
-                       } else {
-                               foreach ( $res as $row ) {
-                                       if ( $row->rc_ip ) {
-                                               return $this->doAutoblock( $row->rc_ip );
-                                       }
+               if ( !$dbr->numRows( $res ) ) {
+                       # No results, don't autoblock anything
+                       wfDebug( "No IP found to retroactively autoblock\n" );
+               } else {
+                       foreach ( $res as $row ) {
+                               if ( $row->rc_ip ) {
+                                       $id = $block->doAutoblock( $row->rc_ip );
+                                       if ( $id ) $blockIds[] = $id;
                                }
                        }
                }
-               return false;
        }
 
        /**
         * Checks whether a given IP is on the autoblock whitelist.
+        * TODO: this probably belongs somewhere else, but not sure where...
         *
         * @param $ip String: The IP to check
         * @return Boolean
@@ -693,74 +593,70 @@ class Block {
         * Autoblocks the given IP, referring to this Block.
         *
         * @param $autoblockIP String: the IP to autoblock.
-        * @param $justInserted Boolean: the main block was just inserted.
         * @return mixed: block ID if an autoblock was inserted, false if not.
         */
-       public function doAutoblock( $autoblockIP, $justInserted = false ) {
+       public function doAutoblock( $autoblockIP ) {
                # If autoblocks are disabled, go away.
-               if ( !$this->mEnableAutoblock ) {
+               if ( !$this->isAutoblocking() ) {
                        return false;
                }
 
-               # Check for presence on the autoblock whitelist
-               if ( Block::isWhitelistedFromAutoblocks( $autoblockIP ) ) {
+               # Check for presence on the autoblock whitelist.
+               if ( self::isWhitelistedFromAutoblocks( $autoblockIP ) ) {
                        return false;
                }
 
-               # Allow hooks to cancel the autoblock.
+               # Allow hooks to cancel the autoblock.
                if ( !wfRunHooks( 'AbortAutoblock', array( $autoblockIP, &$this ) ) ) {
                        wfDebug( "Autoblock aborted by hook.\n" );
                        return false;
                }
 
-               # It's okay to autoblock. Go ahead and create/insert the block.
+               # It's okay to autoblock. Go ahead and insert/update the block...
 
+               # Do not add a *new* block if the IP is already blocked.
                $ipblock = Block::newFromTarget( $autoblockIP );
                if ( $ipblock ) {
-                       # If the user is already blocked. Then check if the autoblock would
-                       # exceed the user block. If it would exceed, then do nothing, else
-                       # prolong block time
-                       if ( $this->mExpiry &&
-                               ( $this->mExpiry < Block::getAutoblockExpiry( $ipblock->mTimestamp ) )
+                       # Check if the block is an autoblock and would exceed the user block
+                       # if renewed. If so, do nothing, otherwise prolong the block time...
+                       if ( $ipblock->mAuto && // @TODO: why not compare $ipblock->mExpiry?
+                               $this->mExpiry > Block::getAutoblockExpiry( $ipblock->mTimestamp )
                        ) {
-                               return false;
-                       }
-
-                       # Just update the timestamp
-                       if ( !$justInserted ) {
+                               # Reset block timestamp to now and its expiry to
+                               # $wgAutoblockExpiry in the future
                                $ipblock->updateTimestamp();
                        }
-
                        return false;
-               } else {
-                       $ipblock = new Block;
                }
 
-               # Make a new block object with the desired properties
-               wfDebug( "Autoblocking {$this->mAddress}@" . $autoblockIP . "\n" );
-               $ipblock->mAddress = $autoblockIP;
-               $ipblock->mUser = 0;
-               $ipblock->mBy = $this->mBy;
-               $ipblock->mByName = $this->mByName;
-               $ipblock->mReason = wfMsgForContent( 'autoblocker', $this->mAddress, $this->mReason );
-               $ipblock->mTimestamp = wfTimestampNow();
-               $ipblock->mAuto = 1;
-               $ipblock->mCreateAccount = $this->mCreateAccount;
+               # Make a new block object with the desired properties.
+               $autoblock = new Block;
+               wfDebug( "Autoblocking {$this->getTarget()}@" . $autoblockIP . "\n" );
+               $autoblock->setTarget( $autoblockIP );
+               $autoblock->setBlocker( $this->getBlocker() );
+               $autoblock->mReason = wfMsgForContent( 'autoblocker', $this->getTarget(), $this->mReason );
+               $timestamp = wfTimestampNow();
+               $autoblock->mTimestamp = $timestamp;
+               $autoblock->mAuto = 1;
+               $autoblock->prevents( 'createaccount', $this->prevents( 'createaccount' ) );
                # Continue suppressing the name if needed
-               $ipblock->mHideName = $this->mHideName;
-               $ipblock->mAllowUsertalk = $this->mAllowUsertalk;
+               $autoblock->mHideName = $this->mHideName;
+               $autoblock->prevents( 'editownusertalk', $this->prevents( 'editownusertalk' ) );
 
-               # If the user is already blocked with an expiry date, we don't
-               # want to pile on top of that!
-               if ( $this->mExpiry ) {
-                       $ipblock->mExpiry = min( $this->mExpiry, Block::getAutoblockExpiry( $this->mTimestamp ) );
+               if ( $this->mExpiry == 'infinity' ) {
+                       # Original block was indefinite, start an autoblock now
+                       $autoblock->mExpiry = Block::getAutoblockExpiry( $timestamp );
                } else {
-                       $ipblock->mExpiry = Block::getAutoblockExpiry( $this->mTimestamp );
+                       # If the user is already blocked with an expiry date, we don't
+                       # want to pile on top of that.
+                       $autoblock->mExpiry = min( $this->mExpiry, Block::getAutoblockExpiry( $timestamp ) );
                }
 
-               # Insert it
-               $status = $ipblock->insert();
-               return $status ? $status['id'] : false;
+               # Insert the block...
+               $status = $autoblock->insert();
+               return $status
+                       ? $status['id']
+                       : false;
        }
 
        /**
@@ -788,12 +684,13 @@ class Block {
         * @return Boolean
         */
        public function isExpired() {
-               wfDebug( "Block::isExpired() checking current " . wfTimestampNow() . " vs $this->mExpiry\n" );
+               $timestamp = wfTimestampNow();
+               wfDebug( "Block::isExpired() checking current " . $timestamp . " vs $this->mExpiry\n" );
 
                if ( !$this->mExpiry ) {
                        return false;
                } else {
-                       return wfTimestampNow() > $this->mExpiry;
+                       return $timestamp > $this->mExpiry;
                }
        }
 
@@ -802,7 +699,7 @@ class Block {
         * @return Boolean
         */
        public function isValid() {
-               return $this->mAddress != '';
+               return $this->getTarget() != null;
        }
 
        /**
@@ -818,9 +715,11 @@ class Block {
                                array( /* SET */
                                        'ipb_timestamp' => $dbw->timestamp( $this->mTimestamp ),
                                        'ipb_expiry' => $dbw->timestamp( $this->mExpiry ),
-                               ), array( /* WHERE */
-                                       'ipb_address' => $this->mAddress
-                               ), 'Block::updateTimestamp'
+                               ),
+                               array( /* WHERE */
+                                       'ipb_address' => (string)$this->getTarget()
+                               ),
+                               __METHOD__
                        );
                }
        }
@@ -832,11 +731,12 @@ class Block {
        public function getRangeStart() {
                switch( $this->type ) {
                        case self::TYPE_USER:
-                               return null;
+                               return '';
                        case self::TYPE_IP:
                                return IP::toHex( $this->target );
                        case self::TYPE_RANGE:
-                               return $this->mRangeStart;
+                               list( $start, /*...*/ ) = IP::parseRange( $this->target );
+                               return $start;
                        default: throw new MWException( "Block with invalid type" );
                }
        }
@@ -848,11 +748,12 @@ class Block {
        public function getRangeEnd() {
                switch( $this->type ) {
                        case self::TYPE_USER:
-                               return null;
+                               return '';
                        case self::TYPE_IP:
                                return IP::toHex( $this->target );
                        case self::TYPE_RANGE:
-                               return $this->mRangeEnd;
+                               list( /*...*/, $end ) = IP::parseRange( $this->target );
+                               return $end;
                        default: throw new MWException( "Block with invalid type" );
                }
        }
@@ -863,7 +764,9 @@ class Block {
         * @return Integer
         */
        public function getBy() {
-               return $this->mBy;
+               return $this->getBlocker() instanceof User
+                       ? $this->getBlocker()->getId()
+                       : 0;
        }
 
        /**
@@ -872,7 +775,9 @@ class Block {
         * @return String
         */
        public function getByName() {
-               return $this->mByName;
+               return $this->getBlocker() instanceof User
+                       ? $this->getBlocker()->getName()
+                       : null;
        }
 
        /**
@@ -886,6 +791,8 @@ class Block {
        /**
         * Get/set the SELECT ... FOR UPDATE flag
         * @deprecated since 1.18
+        *
+        * @param $x Bool
         */
        public function forUpdate( $x = null ) {
                # noop
@@ -893,6 +800,9 @@ class Block {
 
        /**
         * Get/set a flag determining whether the master is used for reads
+        *
+        * @param $x Bool
+        * @return Bool
         */
        public function fromMaster( $x = null ) {
                return wfSetVar( $this->mFromMaster, $x );
@@ -904,15 +814,22 @@ class Block {
         * @return  Bool
         */
        public function isHardblock( $x = null ) {
-               $y = $this->mAnonOnly;
-               if ( $x !== null ) {
-                       $this->mAnonOnly = !$x;
-               }
-               return !$y;
+               wfSetVar( $this->isHardblock, $x );
+
+               # You can't *not* hardblock a user
+               return $this->getType() == self::TYPE_USER
+                       ? true
+                       : $this->isHardblock;
        }
 
        public function isAutoblocking( $x = null ) {
-               return wfSetVar( $this->mEnableAutoblock, $x );
+               wfSetVar( $this->isAutoblocking, $x );
+
+               # You can't put an autoblock on an IP or range as we don't have any history to
+               # look over to get more IPs from
+               return $this->getType() == self::TYPE_USER
+                       ? $this->isAutoblocking
+                       : false;
        }
 
        /**
@@ -934,11 +851,7 @@ class Block {
                                return wfSetVar( $this->mBlockEmail, $x );
 
                        case 'editownusertalk':
-                               $y = $this->mAllowUsertalk;
-                               if ( $x !== null ) {
-                                       $this->mAllowUsertalk = !$x;
-                               }
-                               return !$y;
+                               return wfSetVar( $this->mDisableUsertalk, $x );
 
                        default:
                                return null;
@@ -951,13 +864,13 @@ class Block {
         */
        public function getRedactedName() {
                if ( $this->mAuto ) {
-                       return HTML::rawElement(
+                       return Html::rawElement(
                                'span',
                                array( 'class' => 'mw-autoblockid' ),
                                wfMessage( 'autoblockid', $this->mId )
                        );
                } else {
-                       return htmlspecialchars( $this->mAddress );
+                       return htmlspecialchars( $this->getTarget() );
                }
        }
 
@@ -977,9 +890,9 @@ class Block {
         * Decode expiry which has come from the DB
         *
         * @param $expiry String: Database expiry format
-        * @param $timestampType Requested timestamp format
+        * @param $timestampType Int Requested timestamp format
         * @return String
-        * @deprecated since 1.18; use $wgLang->decodeExpiry() instead
+        * @deprecated since 1.18; use $wgLang->formatExpiry() instead
         */
        public static function decodeExpiry( $expiry, $timestampType = TS_MW ) {
                global $wgContLang;
@@ -989,6 +902,7 @@ class Block {
        /**
         * Get a timestamp of the expiry for autoblocks
         *
+        * @param $timestamp String|Int
         * @return String
         */
        public static function getAutoblockExpiry( $timestamp ) {
@@ -1059,8 +973,6 @@ class Block {
                return $expirystr;
        }
 
-       # FIXME: everything above here is a mess, needs much cleaning up
-
        /**
         * Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute
         * ("24 May 2034"), into an absolute timestamp we can put into the database.
@@ -1087,19 +999,22 @@ class Block {
         *     1.2.3.4 will not select 1.2.0.0/16 or even 1.2.3.4/32)
         * @param $vagueTarget String|User|Int as above, but we will search for *any* block which
         *     affects that target (so for an IP address, get ranges containing that IP; and also
-        *     get any relevant autoblocks)
+        *     get any relevant autoblocks). Leave empty or blank to skip IP-based lookups.
         * @param $fromMaster Bool whether to use the DB_MASTER database
         * @return Block|null (null if no relevant block could be found).  The target and type
         *     of the returned Block will refer to the actual block which was found, which might
         *     not be the same as the target you gave if you used $vagueTarget!
         */
        public static function newFromTarget( $specificTarget, $vagueTarget = null, $fromMaster = false ) {
+
                list( $target, $type ) = self::parseTarget( $specificTarget );
                if( $type == Block::TYPE_ID || $type == Block::TYPE_AUTO ){
                        return Block::newFromID( $target );
 
-               } elseif( $target === null && $vagueTarget === null ){
+               } elseif( $target === null && $vagueTarget == '' ){
                        # We're not going to find anything useful here
+                       # Be aware that the == '' check is explicit, since empty values will be
+                       # passed by some callers (bug 29116)
                        return null;
 
                } elseif( in_array( $type, array( Block::TYPE_USER, Block::TYPE_IP, Block::TYPE_RANGE, null ) ) ) {
@@ -1124,6 +1039,8 @@ class Block {
         * From an existing Block, get the target and the type of target.  Note that it is
         * always safe to treat the target as a string; for User objects this will return
         * User::__toString() which in turn gives User::getName().
+        *
+        * @param $target String|Int|User
         * @return array( User|String, Block::TYPE_ constant )
         */
        public static function parseTarget( $target ) {
@@ -1132,22 +1049,15 @@ class Block {
                # We may have been through this before
                if( $target instanceof User ){
                        if( IP::isValid( $target->getName() ) ){
-                               return self::TYPE_IP;
+                               return array( $target, self::TYPE_IP );
                        } else {
-                               return self::TYPE_USER;
+                               return array( $target, self::TYPE_USER );
                        }
                } elseif( $target === null ){
                        return array( null, null );
                }
 
-               $userObj = User::newFromName( $target );
-               if ( $userObj instanceof User ) {
-                       # Note that since numbers are valid usernames, a $target of "12345" will be
-                       # considered a User.  If you want to pass a block ID, prepend a hash "#12345",
-                       # since hash characters are not valid in usernames or titles generally.
-                       return array( $userObj, Block::TYPE_USER );
-
-               } elseif ( IP::isValid( $target ) ) {
+               if ( IP::isValid( $target ) ) {
                        # We can still create a User if it's an IP address, but we need to turn
                        # off validation checking (which would exclude IP addresses)
                        return array(
@@ -1158,6 +1068,22 @@ class Block {
                } elseif ( IP::isValidBlock( $target ) ) {
                        # Can't create a User from an IP range
                        return array( IP::sanitizeRange( $target ), Block::TYPE_RANGE );
+               }
+
+               # Consider the possibility that this is not a username at all
+               # but actually an old subpage (bug #29797)
+               if( strpos( $target, '/' ) !== false ){
+                       # An old subpage, drill down to the user behind it
+                       $parts = explode( '/', $target );
+                       $target = $parts[0];
+               }
+
+               $userObj = User::newFromName( $target );
+               if ( $userObj instanceof User ) {
+                       # Note that since numbers are valid usernames, a $target of "12345" will be
+                       # considered a User.  If you want to pass a block ID, prepend a hash "#12345",
+                       # since hash characters are not valid in usernames or titles generally.
+                       return array( $userObj, Block::TYPE_USER );
 
                } elseif ( preg_match( '/^#\d+$/', $target ) ) {
                        # Autoblock reference in the form "#12345"
@@ -1184,7 +1110,7 @@ class Block {
         * this returns the unredacted name; frontend functions need to call $block->getRedactedName()
         * in this situation.
         * @return array( User|String, Block::TYPE_ constant )
-        * FIXME: this should be an integral part of the Block member variables
+        * @todo FIXME: This should be an integral part of the Block member variables
         */
        public function getTargetAndType() {
                return array( $this->getTarget(), $this->getType() );
@@ -1206,18 +1132,6 @@ class Block {
         */
        public function setTarget( $target ){
                list( $this->target, $this->type ) = self::parseTarget( $target );
-
-               $this->mAddress = (string)$this->target;
-               if( $this->type == self::TYPE_USER ){
-                       if( $this->target instanceof User ){
-                               # Cheat
-                               $this->mUser = $this->target->getID();
-                       } else {
-                               $this->mUser = User::idFromName( $this->target );
-                       }
-               } else {
-                       $this->mUser = 0;
-               }
        }
 
        /**
@@ -1234,8 +1148,5 @@ class Block {
         */
        public function setBlocker( User $user ){
                $this->blocker = $user;
-
-               $this->mBy = $user->getID();
-               $this->mByName = $user->getName();
        }
 }