MediaWiki REL1_34
MediaWiki\Block\DatabaseBlock Class Reference

A DatabaseBlock (unlike a SystemBlock) is stored in the database, may give rise to autoblocks and may be tracked with cookies. More...

Inheritance diagram for MediaWiki\Block\DatabaseBlock:
Collaboration diagram for MediaWiki\Block\DatabaseBlock:

Public Member Functions

 __construct (array $options=[])
 Create a new block with specified option parameters on a user, IP or IP range.
 
 appliesToNamespace ( $ns)
 Checks if a block applies to a particular namespace.
Since
1.33
Parameters
int$ns
Returns
bool

 
 appliesToPage ( $pageId)
 Checks if a block applies to a particular page.This check does not consider whether $this->isUsertalkEditAllowed returns false, as the identity of the user making the hypothetical edit isn't known here (particularly in the case of IP hardblocks, range blocks, and auto-blocks).
Since
1.33
Parameters
int$pageId
Returns
bool

 
 appliesToTitle (Title $title)
 Checks if a block applies to a particular title.This check does not consider whether $this->isUsertalkEditAllowed returns false, as the identity of the user making the hypothetical edit isn't known here (particularly in the case of IP hardblocks, range blocks, and auto-blocks).
Parameters
Title$title
Returns
bool

 
 delete ()
 Delete the row from the IP blocks table.
 
 deleteIfExpired ()
 Check if a block has expired.
 
 doAutoblock ( $autoblockIP)
 Autoblocks the given IP, referring to this block.
 
 equals (DatabaseBlock $block)
 Check if two blocks are effectively equal.
 
 fromMaster ( $x=null)
 Get/set a flag determining whether the master is used for reads.
 
 getCookieValue ()
 Get the BlockID cookie's value for this block.
 
 getId ()
 Get the block ID.
Returns
int|null

 
 getParentBlockId ()
 
 getPermissionsError (IContextSource $context)
 Get the key and parameters for the corresponding error message.
Since
1.22
Parameters
IContextSource$context
Returns
array

 
 getRangeEnd ()
 Get the IP address at the end of the range in Hex form.
 
 getRangeStart ()
 Get the IP address at the start of the range in Hex form.
 
 getRedactedName ()
 Get the block name, but with autoblocked IPs hidden as per standard privacy policy.
 
 getRestrictions ()
 Get Restrictions.
 
 getType ()
 Get the type of target for this particular block.
Returns
int AbstractBlock::TYPE_ constant, will never be TYPE_ID

 
 insert (IDatabase $dbw=null)
 Insert a block into the block table.
 
 isAutoblocking ( $x=null)
 
 isExpired ()
 Has the block expired?
 
 isHardblock ( $x=null)
 Get/set whether the block is a hardblock (affects logged-in users on a given IP/range)
 
 isValid ()
 Is the block address valid (i.e.
 
 setCookie (WebResponse $response)
 Set the 'BlockID' cookie to this block's ID and expiry time.
 
 setRestrictions (array $restrictions)
 Set Restrictions.
 
 shouldTrackWithCookie ( $isAnon)
 
 update ()
 Update a block in the DB with new parameters.
 
 updateTimestamp ()
 Update the timestamp on autoblocks.
 
- Public Member Functions inherited from MediaWiki\Block\AbstractBlock
 appliesToPasswordReset ()
 Check if the block prevents a user from resetting their password.
 
 appliesToRight ( $right)
 Determine whether the block prevents a given right.
 
 appliesToUsertalk (Title $usertalk=null)
 Determine whether the block allows the user to edit their own user talk page.
 
 getBlocker ()
 Get the user who implemented this block.
 
 getBlockErrorParams (IContextSource $context)
 Get block information used in different block error messages.
 
 getBy ()
 Get the user id of the blocking sysop.
 
 getByName ()
 Get the username of the blocking sysop.
 
 getExpiry ()
 Get the block expiry time.
 
 getHideName ()
 Get whether the block hides the target's username.
 
 getReason ()
 Get the reason given for creating the block.
 
 getTarget ()
 Get the target for this particular block.
 
 getTargetAndType ()
 Get the target and target type for this particular block.
 
 getTimestamp ()
 Get the timestamp indicating when the block was created.
 
 isCreateAccountBlocked ( $x=null)
 Get or set the flag indicating whether this block blocks the target from creating an account.
 
 isEmailBlocked ( $x=null)
 Get or set the flag indicating whether this block blocks the target from sending emails.
 
 isSitewide ( $x=null)
 Indicates that the block is a sitewide block.
 
 isUsertalkEditAllowed ( $x=null)
 Get or set the flag indicating whether this block blocks the target from editing their own user talk page.
 
 prevents ( $action, $x=null)
 Get/set whether the block prevents a given action.
 
 setBlocker ( $user)
 Set the user who implemented (or will implement) this block.
 
 setExpiry ( $expiry)
 Set the block expiry time.
 
 setHideName ( $hideName)
 Set whether ths block hides the target's username.
 
 setReason ( $reason)
 Set the reason for creating the block.
 
 setTarget ( $target)
 Set the target for this block, and update $this->type accordingly.
 
 setTimestamp ( $timestamp)
 Set the timestamp indicating when the block was created.
 

Static Public Member Functions

static chooseBlock (array $blocks, array $ipChain)
 From a list of multiple blocks, find the most exact and strongest block.
 
static clearCookie (WebResponse $response)
 Unset the 'BlockID' cookie.
 
static getAutoblockExpiry ( $timestamp)
 Get a timestamp of the expiry for autoblocks.
 
static getBlocksForIPList (array $ipChain, $isAnon, $fromMaster=false)
 Get all blocks that match any IP from an array of IP addresses.
 
static getIdFromCookieValue ( $cookieValue)
 Get the stored ID from the 'BlockID' cookie.
 
static getQueryInfo ()
 Return the tables, fields, and join conditions to be selected to create a new block object.
 
static getRangeCond ( $start, $end=null)
 Get a set of SQL conditions which will select rangeblocks encompassing a given range.
 
static isWhitelistedFromAutoblocks ( $ip)
 Checks whether a given IP is on the autoblock whitelist.
 
static newFromID ( $id)
 Load a block from the block id.
 
static newFromRow ( $row)
 Create a new DatabaseBlock object from a database row.
 
static newFromTarget ( $specificTarget, $vagueTarget=null, $fromMaster=false)
 Given a target and the target's type, get an existing block object if possible.
 
static newListFromTarget ( $specificTarget, $vagueTarget=null, $fromMaster=false)
 This is similar to DatabaseBlock::newFromTarget, but it returns all the relevant blocks.
 
static purgeExpired ()
 Purge expired blocks from the ipblocks table.
 
- Static Public Member Functions inherited from MediaWiki\Block\AbstractBlock
static parseTarget ( $target)
 From an existing block, get the target and the type of target.
 

Public Attributes

bool $mAuto
 
int $mParentBlockId
 
- Public Attributes inherited from MediaWiki\Block\AbstractBlock
string $mExpiry = ''
 
bool $mHideName = false
 
string $mReason
 
string $mTimestamp
 
const TYPE_AUTO = 4
 
const TYPE_ID = 5
 
const TYPE_IP = 2
 
const TYPE_RANGE = 3
 
const TYPE_USER = 1
 

Protected Member Functions

 doRetroactiveAutoblock ()
 Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this block.
 
 getAutoblockUpdateArray (IDatabase $dbw)
 
 getDatabaseArray (IDatabase $dbw)
 Get an array suitable for passing to $dbw->insert() or $dbw->update()
 
 initFromRow ( $row)
 Given a database row from the ipblocks table, initialize member variables.
 

Static Protected Member Functions

static chooseMostSpecificBlock (array $blocks)
 Choose the most specific block from some combination of user, IP and IP range blocks.
 
static defaultRetroactiveAutoblock (DatabaseBlock $block, array &$blockIds)
 Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this block.
 
static getIpFragment ( $hex)
 Get the component of an IP address which is certain to be the same between an IP address and a rangeblock containing that IP address.
 
static newLoad ( $specificTarget, $specificType, $fromMaster, $vagueTarget=null)
 Load blocks from the database which target the specific target exactly, or which cover the vague target.
 

Private Member Functions

 findRestriction ( $type, $value)
 Find Restriction by type and value.
 
 getBlockRestrictionStore ()
 Get a BlockRestrictionStore instance.
 
 setId ( $blockId)
 Set the block ID.
 

Private Attributes

int $forcedTargetID
 Hack for foreign blocking (CentralAuth)
 
bool $isAutoblocking
 
bool $isHardblock
 
bool $mFromMaster
 
int $mId
 
Restriction[] $restrictions
 

Additional Inherited Members

- Protected Attributes inherited from MediaWiki\Block\AbstractBlock
bool $allowUsertalk = false
 
bool $blockCreateAccount = false
 
User $blocker
 
bool $isSitewide = true
 
bool $mBlockEmail = false
 
User string $target
 
int $type
 AbstractBlock::TYPE_ constant.
 

Detailed Description

A DatabaseBlock (unlike a SystemBlock) is stored in the database, may give rise to autoblocks and may be tracked with cookies.

Such blocks are more customizable than system blocks: they may be hardblocks, and they may be sitewide or partial.

Since
1.34 Renamed from Block.

Definition at line 54 of file DatabaseBlock.php.

Constructor & Destructor Documentation

◆ __construct()

MediaWiki\Block\DatabaseBlock::__construct ( array  $options = [])

Create a new block with specified option parameters on a user, IP or IP range.

Parameters
array$optionsParameters of the block, with options supported by AbstractBlock::__construct, and also:
  • user: (int) Override target user ID (for foreign users)
  • auto: (bool) Is this an automatic block?
  • expiry: (string) Timestamp of expiration of the block or 'infinity'
  • anonOnly: (bool) Only disallow anonymous actions
  • createAccount: (bool) Disallow creation of new accounts
  • enableAutoblock: (bool) Enable automatic blocking
  • blockEmail: (bool) Disallow sending emails
  • allowUsertalk: (bool) Allow the target to edit its own talk page
  • sitewide: (bool) Disallow editing all pages and all contribution actions, except those specifically allowed by other block flags
Since
1.26 $options array

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 103 of file DatabaseBlock.php.

References DB_REPLICA, MediaWiki\Block\DatabaseBlock\isAutoblocking(), MediaWiki\Block\AbstractBlock\isCreateAccountBlocked(), MediaWiki\Block\AbstractBlock\isEmailBlocked(), MediaWiki\Block\DatabaseBlock\isHardblock(), MediaWiki\Block\AbstractBlock\isSitewide(), MediaWiki\Block\AbstractBlock\isUsertalkEditAllowed(), MediaWiki\Block\AbstractBlock\setExpiry(), and wfGetDB().

Member Function Documentation

◆ appliesToNamespace()

MediaWiki\Block\DatabaseBlock::appliesToNamespace (   $ns)

Checks if a block applies to a particular namespace.

Since
1.33
Parameters
int$ns
Returns
bool

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 1490 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\findRestriction(), and MediaWiki\Block\AbstractBlock\isSitewide().

◆ appliesToPage()

MediaWiki\Block\DatabaseBlock::appliesToPage (   $pageId)

Checks if a block applies to a particular page.This check does not consider whether $this->isUsertalkEditAllowed returns false, as the identity of the user making the hypothetical edit isn't known here (particularly in the case of IP hardblocks, range blocks, and auto-blocks).

Since
1.33
Parameters
int$pageId
Returns
bool

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 1508 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\findRestriction(), and MediaWiki\Block\AbstractBlock\isSitewide().

◆ appliesToTitle()

MediaWiki\Block\DatabaseBlock::appliesToTitle ( Title  $title)

Checks if a block applies to a particular title.This check does not consider whether $this->isUsertalkEditAllowed returns false, as the identity of the user making the hypothetical edit isn't known here (particularly in the case of IP hardblocks, range blocks, and auto-blocks).

Parameters
Title$title
Returns
bool

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 1472 of file DatabaseBlock.php.

References $title, MediaWiki\Block\DatabaseBlock\getRestrictions(), and MediaWiki\Block\AbstractBlock\isSitewide().

◆ chooseBlock()

static MediaWiki\Block\DatabaseBlock::chooseBlock ( array  $blocks,
array  $ipChain 
)
static

From a list of multiple blocks, find the most exact and strongest block.

The logic for finding the "best" block is:

  • Blocks that match the block's target IP are preferred over ones in a range
  • Hardblocks are chosen over softblocks that prevent account creation
  • Softblocks that prevent account creation are chosen over other softblocks
  • Other softblocks are chosen over autoblocks
  • If there are multiple exact or range blocks at the same level, the one chosen is random This should be used when $blocks were retrieved from the user's IP address and $ipChain is populated from the same IP address information.
Parameters
array$blocksArray of DatabaseBlock objects
array$ipChainList of IPs (strings). This is used to determine how "close" a block is to the server, and if a block matches exactly, or is in a range. The order is furthest from the server to nearest e.g., (Browser, proxy1, proxy2, local-cdn, ...)
Exceptions
MWException
Returns
DatabaseBlock|null The "best" block from the list

Definition at line 1258 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\appliesToRight(), and MediaWiki\Block\DatabaseBlock\isHardblock().

◆ chooseMostSpecificBlock()

static MediaWiki\Block\DatabaseBlock::chooseMostSpecificBlock ( array  $blocks)
staticprotected

Choose the most specific block from some combination of user, IP and IP range blocks.

Decreasing order of specificity: user > IP > narrower IP range > wider IP range. A range that encompasses one IP address is ranked equally to a singe IP.

Note that DatabaseBlock::chooseBlocks chooses blocks in a different way.

This is refactored out from DatabaseBlock::newLoad.

Parameters
DatabaseBlock[]$blocksThese should not include autoblocks or ID blocks
Returns
DatabaseBlock|null The block with the most specific target

Definition at line 333 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\$target.

Referenced by MediaWiki\Block\DatabaseBlock\newFromTarget().

◆ clearCookie()

static MediaWiki\Block\DatabaseBlock::clearCookie ( WebResponse  $response)
static

Unset the 'BlockID' cookie.

Since
1.29
Deprecated:
since 1.34 Use BlockManager::clearBlockCookie instead
Parameters
WebResponse$responseThe response on which to unset the cookie.

Definition at line 1381 of file DatabaseBlock.php.

References $response, and MediaWiki\MediaWikiServices\getInstance().

◆ defaultRetroactiveAutoblock()

static MediaWiki\Block\DatabaseBlock::defaultRetroactiveAutoblock ( DatabaseBlock  $block,
array &  $blockIds 
)
staticprotected

Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this block.

This will use the recentchanges table.

Parameters
DatabaseBlock$block
array&$blockIds

Definition at line 710 of file DatabaseBlock.php.

References $dbr, $res, MediaWiki\Block\AbstractBlock\$target, $wgPutIPinRC, DB_REPLICA, MediaWiki\Block\DatabaseBlock\doAutoblock(), MediaWiki\Block\AbstractBlock\getTarget(), MediaWiki\Block\DatabaseBlock\getType(), ActorMigration\newMigration(), wfDebug(), and wfGetDB().

Referenced by MediaWiki\Block\DatabaseBlock\doRetroactiveAutoblock().

◆ delete()

MediaWiki\Block\DatabaseBlock::delete ( )

Delete the row from the IP blocks table.

Exceptions
MWException
Returns
bool

Definition at line 469 of file DatabaseBlock.php.

References DB_MASTER, MediaWiki\Block\DatabaseBlock\getBlockRestrictionStore(), MediaWiki\Block\DatabaseBlock\getId(), wfGetDB(), and wfReadOnly().

◆ deleteIfExpired()

MediaWiki\Block\DatabaseBlock::deleteIfExpired ( )

Check if a block has expired.

Delete it if it is.

Returns
bool

Definition at line 885 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\isExpired(), and wfDebug().

◆ doAutoblock()

◆ doRetroactiveAutoblock()

MediaWiki\Block\DatabaseBlock::doRetroactiveAutoblock ( )
protected

Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this block.

Returns
array IDs of retroactive autoblocks made

Definition at line 687 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\defaultRetroactiveAutoblock(), MediaWiki\Block\AbstractBlock\getTarget(), MediaWiki\Block\DatabaseBlock\getType(), MediaWiki\Block\DatabaseBlock\isAutoblocking(), and wfDebug().

Referenced by MediaWiki\Block\DatabaseBlock\insert(), and MediaWiki\Block\DatabaseBlock\update().

◆ equals()

◆ findRestriction()

MediaWiki\Block\DatabaseBlock::findRestriction (   $type,
  $value 
)
private

Find Restriction by type and value.

Parameters
string$type
int$value
Returns
Restriction|null

Definition at line 1530 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\$restrictions, MediaWiki\Block\AbstractBlock\$type, and MediaWiki\Block\DatabaseBlock\getRestrictions().

Referenced by MediaWiki\Block\DatabaseBlock\appliesToNamespace(), and MediaWiki\Block\DatabaseBlock\appliesToPage().

◆ fromMaster()

MediaWiki\Block\DatabaseBlock::fromMaster (   $x = null)

Get/set a flag determining whether the master is used for reads.

Parameters
bool | null$x
Returns
bool

Definition at line 1023 of file DatabaseBlock.php.

References wfSetVar().

◆ getAutoblockExpiry()

static MediaWiki\Block\DatabaseBlock::getAutoblockExpiry (   $timestamp)
static

Get a timestamp of the expiry for autoblocks.

Parameters
string | int$timestamp
Returns
string

Definition at line 1077 of file DatabaseBlock.php.

References $wgAutoblockExpiry, and wfTimestamp().

◆ getAutoblockUpdateArray()

◆ getBlockRestrictionStore()

MediaWiki\Block\DatabaseBlock::getBlockRestrictionStore ( )
private

◆ getBlocksForIPList()

static MediaWiki\Block\DatabaseBlock::getBlocksForIPList ( array  $ipChain,
  $isAnon,
  $fromMaster = false 
)
static

Get all blocks that match any IP from an array of IP addresses.

Parameters
array$ipChainList of IPs (strings), usually retrieved from the X-Forwarded-For header of the request
bool$isAnonExclude anonymous-only blocks if false
bool$fromMasterWhether to query the master or replica DB
Returns
array Array of Blocks
Since
1.22

Definition at line 1177 of file DatabaseBlock.php.

References DB_MASTER, DB_REPLICA, MediaWiki\MediaWikiServices\getInstance(), MediaWiki\Block\DatabaseBlock\getQueryInfo(), MediaWiki\Block\DatabaseBlock\getRangeCond(), LIST_OR, MediaWiki\Block\DatabaseBlock\newFromRow(), and wfGetDB().

Referenced by MediaWiki\Block\BlockManager\getAdditionalIpBlocks().

◆ getCookieValue()

MediaWiki\Block\DatabaseBlock::getCookieValue ( )

Get the BlockID cookie's value for this block.

This is usually the block ID concatenated with an HMAC in order to avoid spoofing (T152951), but if wgSecretKey is not set will just be the block ID.

Since
1.29
Deprecated:
since 1.34 Use BlockManager::trackBlockWithCookie instead of calling this directly
Returns
string The block ID, probably concatenated with "!" and the HMAC.

Definition at line 1395 of file DatabaseBlock.php.

References MediaWiki\MediaWikiServices\getInstance().

◆ getDatabaseArray()

◆ getId()

MediaWiki\Block\DatabaseBlock::getId ( )

◆ getIdFromCookieValue()

static MediaWiki\Block\DatabaseBlock::getIdFromCookieValue (   $cookieValue)
static

Get the stored ID from the 'BlockID' cookie.

The cookie's value is usually a combination of the ID and a HMAC (see DatabaseBlock::setCookie), but will sometimes only be the ID.

Since
1.29
Deprecated:
since 1.34 Use BlockManager::getUserBlock instead
Parameters
string$cookieValueThe string in which to find the ID.
Returns
int|null The block ID, or null if the HMAC is present and invalid.

Definition at line 1408 of file DatabaseBlock.php.

References MediaWiki\MediaWikiServices\getInstance().

◆ getIpFragment()

static MediaWiki\Block\DatabaseBlock::getIpFragment (   $hex)
staticprotected

Get the component of an IP address which is certain to be the same between an IP address and a rangeblock containing that IP address.

Parameters
string$hexHexadecimal IP representation
Returns
string

Definition at line 408 of file DatabaseBlock.php.

References $wgBlockCIDRLimit.

Referenced by MediaWiki\Block\DatabaseBlock\getRangeCond().

◆ getParentBlockId()

MediaWiki\Block\DatabaseBlock::getParentBlockId ( )
Since
1.34
Returns
int|null If this is an autoblock, ID of the parent block; otherwise null

Definition at line 1013 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\$mParentBlockId.

◆ getPermissionsError()

MediaWiki\Block\DatabaseBlock::getPermissionsError ( IContextSource  $context)

Get the key and parameters for the corresponding error message.

Since
1.22
Parameters
IContextSource$context
Returns
array

Build different messages for autoblocks and partial blocks.

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 1417 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\getBlockErrorParams(), and MediaWiki\Block\AbstractBlock\isSitewide().

◆ getQueryInfo()

static MediaWiki\Block\DatabaseBlock::getQueryInfo ( )
static

Return the tables, fields, and join conditions to be selected to create a new block object.

Since
1.31
Returns
array With three keys:
  • tables: (string[]) to include in the $table to IDatabase->select()
  • fields: (string[]) to include in the $vars to IDatabase->select()
  • joins: (array) to include in the $join_conds to IDatabase->select()

Definition at line 172 of file DatabaseBlock.php.

References CommentStore\getStore(), and ActorMigration\newMigration().

Referenced by MediaWiki\Block\DatabaseBlock\getBlocksForIPList(), MediaWiki\Block\DatabaseBlock\newFromID(), and MediaWiki\Block\DatabaseBlock\newLoad().

◆ getRangeCond()

static MediaWiki\Block\DatabaseBlock::getRangeCond (   $start,
  $end = null 
)
static

Get a set of SQL conditions which will select rangeblocks encompassing a given range.

Parameters
string$startHexadecimal IP representation
string | null$endHexadecimal IP representation, or null to use $start = $end
Returns
string

Definition at line 375 of file DatabaseBlock.php.

References $dbr, DB_REPLICA, MediaWiki\Block\DatabaseBlock\getIpFragment(), LIST_AND, and wfGetDB().

Referenced by MediaWiki\Block\DatabaseBlock\getBlocksForIPList(), and MediaWiki\Block\DatabaseBlock\newLoad().

◆ getRangeEnd()

MediaWiki\Block\DatabaseBlock::getRangeEnd ( )

Get the IP address at the end of the range in Hex form.

Exceptions
MWException
Returns
string IP in Hex form

Definition at line 970 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\TYPE_IP, MediaWiki\Block\AbstractBlock\TYPE_RANGE, and MediaWiki\Block\AbstractBlock\TYPE_USER.

Referenced by MediaWiki\Block\DatabaseBlock\getDatabaseArray().

◆ getRangeStart()

MediaWiki\Block\DatabaseBlock::getRangeStart ( )

Get the IP address at the start of the range in Hex form.

Exceptions
MWException
Returns
string IP in Hex form

Definition at line 951 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\TYPE_IP, MediaWiki\Block\AbstractBlock\TYPE_RANGE, and MediaWiki\Block\AbstractBlock\TYPE_USER.

Referenced by MediaWiki\Block\DatabaseBlock\getDatabaseArray().

◆ getRedactedName()

MediaWiki\Block\DatabaseBlock::getRedactedName ( )

Get the block name, but with autoblocked IPs hidden as per standard privacy policy.

Returns
string Text is escaped

Definition at line 1059 of file DatabaseBlock.php.

References Html\element(), MediaWiki\Block\AbstractBlock\getTarget(), and wfMessage().

◆ getRestrictions()

MediaWiki\Block\DatabaseBlock::getRestrictions ( )

Get Restrictions.

Getting the restrictions will perform a database query if the restrictions are not already loaded.

Since
1.33
Returns
Restriction[]

Definition at line 1441 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\$restrictions, and MediaWiki\Block\DatabaseBlock\getBlockRestrictionStore().

Referenced by MediaWiki\Block\DatabaseBlock\appliesToTitle(), MediaWiki\Block\DatabaseBlock\doAutoblock(), MediaWiki\Block\DatabaseBlock\equals(), and MediaWiki\Block\DatabaseBlock\findRestriction().

◆ getType()

MediaWiki\Block\DatabaseBlock::getType ( )

Get the type of target for this particular block.

Returns
int AbstractBlock::TYPE_ constant, will never be TYPE_ID

Autoblocks have whichever type corresponds to their target, so to detect if a block is an autoblock, we have to check the mAuto property instead.

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 1356 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\TYPE_AUTO.

Referenced by MediaWiki\Block\DatabaseBlock\defaultRetroactiveAutoblock(), MediaWiki\Block\DatabaseBlock\doRetroactiveAutoblock(), MediaWiki\Block\DatabaseBlock\isAutoblocking(), MediaWiki\Block\DatabaseBlock\isHardblock(), SpecialBlock\maybeAlterFormDefaults(), MediaWiki\Block\BlockManager\shouldApplyCookieBlock(), and MediaWiki\Block\DatabaseBlock\shouldTrackWithCookie().

◆ initFromRow()

◆ insert()

MediaWiki\Block\DatabaseBlock::insert ( IDatabase  $dbw = null)

Insert a block into the block table.

Will fail if there is a conflicting block (same name and options) already in the database.

Parameters
IDatabase | null$dbwIf you have one available
Returns
bool|array False on failure, assoc array on success: ('id' => block ID, 'autoIds' => array of autoblock IDs)

Definition at line 499 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\$mId, $wgBlockDisablesLogin, DB_MASTER, MediaWiki\Block\DatabaseBlock\doRetroactiveAutoblock(), MediaWiki\Block\AbstractBlock\getBlocker(), MediaWiki\Block\DatabaseBlock\getBlockRestrictionStore(), MediaWiki\Block\DatabaseBlock\getDatabaseArray(), MediaWiki\Block\DatabaseBlock\purgeExpired(), MediaWiki\Block\DatabaseBlock\setId(), wfDebug(), and wfGetDB().

◆ isAutoblocking()

◆ isExpired()

MediaWiki\Block\DatabaseBlock::isExpired ( )

◆ isHardblock()

◆ isValid()

MediaWiki\Block\DatabaseBlock::isValid ( )

Is the block address valid (i.e.

not a null string?)

Deprecated:
since 1.33 No longer needed in core.
Returns
bool

Definition at line 919 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\getTarget(), and wfDeprecated().

◆ isWhitelistedFromAutoblocks()

static MediaWiki\Block\DatabaseBlock::isWhitelistedFromAutoblocks (   $ip)
static

Checks whether a given IP is on the autoblock whitelist.

TODO: this probably belongs somewhere else, but not sure where...

Parameters
string$ipThe IP to check
Returns
bool

Definition at line 763 of file DatabaseBlock.php.

References $cache, $line, $lines, DB_REPLICA, MediaWiki\MediaWikiServices\getInstance(), wfDebug(), wfGetDB(), and wfMessage().

◆ newFromID()

static MediaWiki\Block\DatabaseBlock::newFromID (   $id)
static

Load a block from the block id.

Parameters
int$idid to search for
Returns
DatabaseBlock|null

Definition at line 145 of file DatabaseBlock.php.

References $dbr, $res, DB_REPLICA, MediaWiki\Block\DatabaseBlock\getQueryInfo(), MediaWiki\Block\DatabaseBlock\newFromRow(), and wfGetDB().

Referenced by MediaWiki\Block\BlockManager\getBlockFromCookieValue(), and MediaWiki\Block\DatabaseBlock\newListFromTarget().

◆ newFromRow()

static MediaWiki\Block\DatabaseBlock::newFromRow (   $row)
static

Create a new DatabaseBlock object from a database row.

Parameters
stdClass$rowRow from the ipblocks table
Returns
DatabaseBlock

Definition at line 457 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\initFromRow().

Referenced by MediaWiki\Block\DatabaseBlock\getBlocksForIPList(), MediaWiki\Block\DatabaseBlock\newFromID(), and MediaWiki\Block\DatabaseBlock\newLoad().

◆ newFromTarget()

static MediaWiki\Block\DatabaseBlock::newFromTarget (   $specificTarget,
  $vagueTarget = null,
  $fromMaster = false 
)
static

Given a target and the target's type, get an existing block object if possible.

Parameters
string | User | int$specificTargetA block target, which may be one of several types:
  • A user to block, in which case $target will be a User
  • An IP to block, in which case $target will be a User generated by using User::newFromName( $ip, false ) to turn off name validation
  • An IP range, in which case $target will be a String "123.123.123.123/18" etc
  • The ID of an existing block, in the format "#12345" (since pure numbers are valid usernames Calling this with a user, IP address or range will not select autoblocks, and will only select a block where the targets match exactly (so looking for blocks on 1.2.3.4 will not select 1.2.0.0/16 or even 1.2.3.4/32)
string | User | int | null$vagueTargetAs 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). Leave empty or blank to skip IP-based lookups.
bool$fromMasterWhether to use the DB_MASTER database
Returns
DatabaseBlock|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!

Definition at line 1130 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\chooseMostSpecificBlock(), and MediaWiki\Block\DatabaseBlock\newListFromTarget().

Referenced by MediaWiki\Block\DatabaseBlock\doAutoblock().

◆ newListFromTarget()

static MediaWiki\Block\DatabaseBlock::newListFromTarget (   $specificTarget,
  $vagueTarget = null,
  $fromMaster = false 
)
static

This is similar to DatabaseBlock::newFromTarget, but it returns all the relevant blocks.

Since
1.34
Parameters
string | User | int | null$specificTarget
string | User | int | null$vagueTarget
bool$fromMaster
Returns
DatabaseBlock[] Any relevant blocks

Definition at line 1144 of file DatabaseBlock.php.

References MediaWiki\Block\AbstractBlock\$target, MediaWiki\Block\AbstractBlock\$type, MediaWiki\Block\DatabaseBlock\newFromID(), MediaWiki\Block\DatabaseBlock\newLoad(), and MediaWiki\Block\AbstractBlock\parseTarget().

Referenced by MediaWiki\Block\BlockManager\getUserBlock(), and MediaWiki\Block\DatabaseBlock\newFromTarget().

◆ newLoad()

static MediaWiki\Block\DatabaseBlock::newLoad (   $specificTarget,
  $specificType,
  $fromMaster,
  $vagueTarget = null 
)
staticprotected

Load blocks from the database which target the specific target exactly, or which cover the vague target.

Parameters
User | string | null$specificTarget
int | null$specificType
bool$fromMaster
User | string | null$vagueTargetAlso search for blocks affecting this target. Doesn't make any sense to use TYPE_AUTO / TYPE_ID here. Leave blank to skip IP lookups.
Exceptions
MWException
Returns
DatabaseBlock[] Any relevant blocks

Definition at line 237 of file DatabaseBlock.php.

References $res, MediaWiki\Block\AbstractBlock\$target, MediaWiki\Block\AbstractBlock\$type, DB_MASTER, DB_REPLICA, MediaWiki\Block\DatabaseBlock\getQueryInfo(), MediaWiki\Block\DatabaseBlock\getRangeCond(), LIST_OR, MediaWiki\Block\DatabaseBlock\newFromRow(), MediaWiki\Block\AbstractBlock\parseTarget(), MediaWiki\Block\AbstractBlock\TYPE_IP, MediaWiki\Block\AbstractBlock\TYPE_RANGE, MediaWiki\Block\AbstractBlock\TYPE_USER, and wfGetDB().

Referenced by MediaWiki\Block\DatabaseBlock\newListFromTarget().

◆ purgeExpired()

◆ setCookie()

MediaWiki\Block\DatabaseBlock::setCookie ( WebResponse  $response)

Set the 'BlockID' cookie to this block's ID and expiry time.

The cookie's expiry will be the same as the block's, to a maximum of 24 hours.

Since
1.29
Deprecated:
since 1.34 Set a cookie via BlockManager::trackBlockWithCookie instead.
Parameters
WebResponse$responseThe response on which to set the cookie.

Definition at line 1370 of file DatabaseBlock.php.

References $response, and MediaWiki\MediaWikiServices\getInstance().

◆ setId()

MediaWiki\Block\DatabaseBlock::setId (   $blockId)
private

Set the block ID.

Parameters
int$blockId
Returns
self

Definition at line 997 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\getBlockRestrictionStore().

Referenced by MediaWiki\Block\DatabaseBlock\insert().

◆ setRestrictions()

MediaWiki\Block\DatabaseBlock::setRestrictions ( array  $restrictions)

Set Restrictions.

Since
1.33
Parameters
Restriction[]$restrictions
Returns
self

Definition at line 1461 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\$restrictions.

◆ shouldTrackWithCookie()

MediaWiki\Block\DatabaseBlock::shouldTrackWithCookie (   $isAnon)
Deprecated:
since 1.34 Use BlockManager::trackBlockWithCookie instead of calling this directly. Check if the block should be tracked with a cookie.
Since
1.33
Deprecated:
since 1.34 Use BlockManager::trackBlockWithCookie instead of calling this directly.
Parameters
bool$isAnonThe user is logged out
Returns
bool The block should be tracked with a cookie

Reimplemented from MediaWiki\Block\AbstractBlock.

Definition at line 1550 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\getType(), MediaWiki\Block\DatabaseBlock\isAutoblocking(), MediaWiki\Block\AbstractBlock\TYPE_IP, MediaWiki\Block\AbstractBlock\TYPE_RANGE, MediaWiki\Block\AbstractBlock\TYPE_USER, and wfDeprecated().

◆ update()

MediaWiki\Block\DatabaseBlock::update ( )

Update a block in the DB with new parameters.

The ID field needs to be loaded first.

Returns
bool|array False on failure, array on success: ('id' => block ID, 'autoIds' => array of autoblock IDs)

Definition at line 573 of file DatabaseBlock.php.

References MediaWiki\Block\DatabaseBlock\$mId, $success, DB_MASTER, MediaWiki\Block\DatabaseBlock\doRetroactiveAutoblock(), MediaWiki\Block\DatabaseBlock\getAutoblockUpdateArray(), MediaWiki\Block\DatabaseBlock\getBlockRestrictionStore(), MediaWiki\Block\DatabaseBlock\getDatabaseArray(), MediaWiki\Block\DatabaseBlock\getId(), MediaWiki\Block\DatabaseBlock\isAutoblocking(), wfDebug(), and wfGetDB().

◆ updateTimestamp()

MediaWiki\Block\DatabaseBlock::updateTimestamp ( )

Member Data Documentation

◆ $forcedTargetID

int MediaWiki\Block\DatabaseBlock::$forcedTargetID
private

Hack for foreign blocking (CentralAuth)

Definition at line 74 of file DatabaseBlock.php.

Referenced by MediaWiki\Block\DatabaseBlock\getDatabaseArray().

◆ $isAutoblocking

bool MediaWiki\Block\DatabaseBlock::$isAutoblocking
private

Definition at line 80 of file DatabaseBlock.php.

◆ $isHardblock

bool MediaWiki\Block\DatabaseBlock::$isHardblock
private

Definition at line 77 of file DatabaseBlock.php.

Referenced by MediaWiki\Block\DatabaseBlock\isHardblock().

◆ $mAuto

bool MediaWiki\Block\DatabaseBlock::$mAuto
Deprecated:
since 1.34. Use getType to check whether a block is autoblocking.

Definition at line 59 of file DatabaseBlock.php.

◆ $mFromMaster

bool MediaWiki\Block\DatabaseBlock::$mFromMaster
private

Definition at line 71 of file DatabaseBlock.php.

◆ $mId

◆ $mParentBlockId

int MediaWiki\Block\DatabaseBlock::$mParentBlockId
Deprecated:
since 1.34. Use getParentBlockId instead.

Definition at line 65 of file DatabaseBlock.php.

Referenced by MediaWiki\Block\DatabaseBlock\getDatabaseArray(), and MediaWiki\Block\DatabaseBlock\getParentBlockId().

◆ $restrictions


The documentation for this class was generated from the following file: