113 'createAccount' =>
false,
114 'enableAutoblock' =>
false,
116 'blockEmail' =>
false,
117 'allowUsertalk' =>
false,
121 if ( func_num_args() > 1 || !is_array(
$options ) ) {
123 array_slice( array_keys( $defaults ), 0, func_num_args() ),
126 wfDeprecated( __METHOD__ .
' with multiple arguments',
'1.26' );
133 if ( $this->target instanceof
User &&
$options[
'user'] ) {
134 # Needed for foreign users
135 $this->forcedTargetID =
$options[
'user'];
146 $this->mReason =
$options[
'reason'];
151 $this->mAuto = (bool)
$options[
'auto'];
152 $this->mHideName = (bool)
$options[
'hideName'];
156 # Prevention measures
157 $this->
prevents(
'sendemail', (
bool)$options[
'blockEmail'] );
158 $this->
prevents(
'editownusertalk', !$options[
'allowUsertalk'] );
159 $this->
prevents(
'createaccount', (
bool)$options[
'createAccount'] );
161 $this->mFromMaster =
false;
174 self::selectFields(),
179 return self::newFromRow(
$res );
200 'ipb_create_account',
201 'ipb_enable_autoblock',
205 'ipb_allow_usertalk',
206 'ipb_parent_block_id',
220 (
string)$this->target == (
string)$block->target
221 && $this->type == $block->type
222 && $this->mAuto == $block->mAuto
224 && $this->
prevents(
'createaccount' ) == $block->
prevents(
'createaccount' )
225 && $this->mExpiry == $block->mExpiry
227 && $this->mHideName == $block->mHideName
229 && $this->
prevents(
'editownusertalk' ) == $block->
prevents(
'editownusertalk' )
230 && $this->mReason == $block->mReason
244 protected function newLoad( $vagueTarget = null ) {
247 if ( $this->
type !== null ) {
249 'ipb_address' => [ (
string)$this->target ],
252 $conds = [
'ipb_address' => [] ];
255 # Be aware that the != '' check is explicit, since empty values will be
256 # passed by some callers (bug 29116)
257 if ( $vagueTarget !=
'' ) {
260 case self::TYPE_USER:
261 # Slightly weird, but who are we to argue?
268 $conds = $db->makeList( $conds,
LIST_OR );
271 case self::TYPE_RANGE:
274 $conds[] = self::getRangeCond( $start, $end );
275 $conds = $db->makeList( $conds,
LIST_OR );
279 throw new MWException(
"Tried to load block with invalid type" );
283 $res = $db->select(
'ipblocks', self::selectFields(), $conds, __METHOD__ );
285 # This result could contain a block on the user, a block on the IP, and a russian-doll
286 # set of rangeblocks. We want to choose the most specific one, so keep a leader board.
289 # Lower will be better
290 $bestBlockScore = 100;
292 # This is begging for $this = $bestBlock, but that's not allowed in PHP :(
293 $bestBlockPreventsEdit = null;
295 foreach (
$res as $row ) {
296 $block = self::newFromRow( $row );
298 # Don't use expired blocks
299 if ( $block->isExpired() ) {
303 # Don't use anon only blocks on users
304 if ( $this->
type == self::TYPE_USER && !$block->isHardblock() ) {
308 if ( $block->getType() == self::TYPE_RANGE ) {
309 # This is the number of bits that are allowed to vary in the block, give
310 # or take some floating point errors
311 $end = Wikimedia\base_convert( $block->getRangeEnd(), 16, 10 );
312 $start = Wikimedia\base_convert( $block->getRangeStart(), 16, 10 );
313 $size = log( $end - $start + 1, 2 );
315 # This has the nice property that a /32 block is ranked equally with a
316 # single-IP block, which is exactly what it is...
317 $score = self::TYPE_RANGE - 1 + ( $size / 128 );
320 $score = $block->getType();
323 if ( $score < $bestBlockScore ) {
324 $bestBlockScore = $score;
326 $bestBlockPreventsEdit = $block->prevents(
'edit' );
330 if ( $bestRow !== null ) {
332 $this->
prevents(
'edit', $bestBlockPreventsEdit );
346 if ( $end === null ) {
349 # Per bug 14634, we want to include relevant active rangeblocks; for
350 # rangeblocks, we want to include larger ranges which enclose the given
351 # range. We know that all blocks must be smaller than $wgBlockCIDRLimit,
352 # so we can improve performance by filtering on a LIKE clause
353 $chunk = self::getIpFragment( $start );
355 $like =
$dbr->buildLike( $chunk,
$dbr->anyString() );
357 # Fairly hard to make a malicious SQL statement out of hex characters,
358 # but stranger things have happened...
359 $safeStart =
$dbr->addQuotes( $start );
360 $safeEnd =
$dbr->addQuotes( $end );
362 return $dbr->makeList(
364 "ipb_range_start $like",
365 "ipb_range_start <= $safeStart",
366 "ipb_range_end >= $safeEnd",
380 if ( substr( $hex, 0, 3 ) ==
'v6-' ) {
381 return 'v6-' . substr( substr( $hex, 3 ), 0, floor( $wgBlockCIDRLimit[
'IPv6'] / 4 ) );
383 return substr( $hex, 0, floor( $wgBlockCIDRLimit[
'IPv4'] / 4 ) );
394 if ( $row->ipb_by ) {
400 $this->mReason = $row->ipb_reason;
402 $this->mAuto = $row->ipb_auto;
403 $this->mHideName = $row->ipb_deleted;
404 $this->mId = (int)$row->ipb_id;
405 $this->mParentBlockId = $row->ipb_parent_block_id;
408 $this->mExpiry =
wfGetDB(
DB_SLAVE )->decodeExpiry( $row->ipb_expiry );
413 $this->
prevents(
'createaccount', $row->ipb_create_account );
414 $this->
prevents(
'sendemail', $row->ipb_block_email );
415 $this->
prevents(
'editownusertalk', !$row->ipb_allow_usertalk );
435 public function delete() {
440 if ( !$this->
getId() ) {
441 throw new MWException(
"Block::delete() requires that the mId member be filled\n" );
445 $dbw->delete(
'ipblocks', [
'ipb_parent_block_id' => $this->
getId() ], __METHOD__ );
446 $dbw->delete(
'ipblocks', [
'ipb_id' => $this->
getId() ], __METHOD__ );
448 return $dbw->affectedRows() > 0;
460 wfDebug(
"Block::insert; timestamp {$this->mTimestamp}\n" );
462 if ( $dbw === null ) {
466 # Periodic purge via commit hooks
467 if ( mt_rand( 0, 9 ) == 0 ) {
472 $row[
'ipb_id'] = $dbw->nextSequenceValue(
"ipblocks_ipb_id_seq" );
474 $dbw->insert(
'ipblocks', $row, __METHOD__, [
'IGNORE' ] );
475 $affected = $dbw->affectedRows();
476 $this->mId = $dbw->insertId();
478 # Don't collide with expired blocks.
479 # Do this after trying to insert to avoid locking.
481 # T96428: The ipb_address index uses a prefix on a field, so
482 # use a standard SELECT + DELETE to avoid annoying gap locks.
483 $ids = $dbw->selectFieldValues(
'ipblocks',
486 'ipb_address' => $row[
'ipb_address'],
487 'ipb_user' => $row[
'ipb_user'],
488 'ipb_expiry < ' . $dbw->addQuotes( $dbw->timestamp() )
493 $dbw->delete(
'ipblocks', [
'ipb_id' => $ids ], __METHOD__ );
494 $dbw->insert(
'ipblocks', $row, __METHOD__, [
'IGNORE' ] );
495 $affected = $dbw->affectedRows();
496 $this->mId = $dbw->insertId();
502 return [
'id' =>
$this->mId,
'autoIds' => $auto_ipd_ids ];
516 wfDebug(
"Block::update; timestamp {$this->mTimestamp}\n" );
519 $dbw->startAtomic( __METHOD__ );
524 [
'ipb_id' => $this->
getId() ],
528 $affected = $dbw->affectedRows();
535 [
'ipb_parent_block_id' => $this->
getId() ],
542 [
'ipb_parent_block_id' => $this->
getId() ],
547 $dbw->endAtomic( __METHOD__ );
551 return [
'id' =>
$this->mId,
'autoIds' => $auto_ipd_ids ];
566 $expiry = $db->encodeExpiry( $this->mExpiry );
568 if ( $this->forcedTargetID ) {
571 $uid = $this->target instanceof
User ? $this->target->
getId() : 0;
575 'ipb_address' => (
string)$this->target,
577 'ipb_by' => $this->
getBy(),
580 'ipb_timestamp' => $db->timestamp( $this->mTimestamp ),
583 'ipb_create_account' => $this->
prevents(
'createaccount' ),
585 'ipb_expiry' => $expiry,
588 'ipb_deleted' => intval( $this->mHideName ),
589 'ipb_block_email' => $this->
prevents(
'sendemail' ),
590 'ipb_allow_usertalk' => !$this->
prevents(
'editownusertalk' ),
602 'ipb_by' => $this->
getBy(),
605 'ipb_create_account' => $this->
prevents(
'createaccount' ),
606 'ipb_deleted' => (int)$this->mHideName,
607 'ipb_allow_usertalk' => !$this->
prevents(
'editownusertalk' ),
619 # If autoblock is enabled, autoblock the LAST IP(s) used
624 'PerformRetroactiveAutoblock', [ $this, &$blockIds ] );
627 self::defaultRetroactiveAutoblock( $this, $blockIds );
644 if ( !$wgPutIPinRC ) {
650 $options = [
'ORDER BY' =>
'rc_timestamp DESC' ];
656 $res =
$dbr->select(
'recentchanges', [
'rc_ip' ], $conds,
659 if ( !
$res->numRows() ) {
660 # No results, don't autoblock anything
661 wfDebug(
"No IP found to retroactively autoblock\n" );
663 foreach (
$res as $row ) {
686 wfMemcKey(
'ipb',
'autoblock',
'whitelist' ),
689 return explode(
"\n",
690 wfMessage(
'autoblock_whitelist' )->inContentLanguage()->plain() );
694 wfDebug(
"Checking the autoblock whitelist..\n" );
698 if ( substr( $line, 0, 1 ) !==
'*' ) {
702 $wlEntry = substr( $line, 1 );
703 $wlEntry = trim( $wlEntry );
705 wfDebug(
"Checking $ip against $wlEntry..." );
707 # Is the IP in this range?
709 wfDebug(
" IP $ip matches $wlEntry, not autoblocking\n" );
726 # If autoblocks are disabled, go away.
731 # Check for presence on the autoblock whitelist.
732 if ( self::isWhitelistedFromAutoblocks( $autoblockIP ) ) {
736 # Allow hooks to cancel the autoblock.
737 if ( !
Hooks::run(
'AbortAutoblock', [ $autoblockIP, &$this ] ) ) {
738 wfDebug(
"Autoblock aborted by hook.\n" );
742 # It's okay to autoblock. Go ahead and insert/update the block...
744 # Do not add a *new* block if the IP is already blocked.
747 # Check if the block is an autoblock and would exceed the user block
748 # if renewed. If so, do nothing, otherwise prolong the block time...
749 if ( $ipblock->mAuto &&
752 # Reset block timestamp to now and its expiry to
753 # $wgAutoblockExpiry in the future
754 $ipblock->updateTimestamp();
759 # Make a new block object with the desired properties.
760 $autoblock =
new Block;
761 wfDebug(
"Autoblocking {$this->getTarget()}@" . $autoblockIP .
"\n" );
762 $autoblock->setTarget( $autoblockIP );
763 $autoblock->setBlocker( $this->
getBlocker() );
765 ->inContentLanguage()->plain();
768 $autoblock->mAuto = 1;
769 $autoblock->prevents(
'createaccount', $this->
prevents(
'createaccount' ) );
770 # Continue suppressing the name if needed
772 $autoblock->prevents(
'editownusertalk', $this->
prevents(
'editownusertalk' ) );
775 if ( $this->mExpiry ==
'infinity' ) {
776 # Original block was indefinite, start an autoblock now
779 # If the user is already blocked with an expiry date, we don't
780 # want to pile on top of that.
784 # Insert the block...
785 $status = $autoblock->insert();
798 wfDebug(
"Block::deleteIfExpired() -- deleting\n" );
802 wfDebug(
"Block::deleteIfExpired() -- not expired\n" );
815 wfDebug(
"Block::isExpired() checking current " .
$timestamp .
" vs $this->mExpiry\n" );
817 if ( !$this->mExpiry ) {
836 if ( $this->mAuto ) {
841 $dbw->update(
'ipblocks',
843 'ipb_timestamp' => $dbw->timestamp( $this->mTimestamp ),
844 'ipb_expiry' => $dbw->timestamp( $this->mExpiry ),
847 'ipb_id' => $this->
getId(),
860 switch ( $this->
type ) {
861 case self::TYPE_USER:
865 case self::TYPE_RANGE:
869 throw new MWException(
"Block with invalid type" );
879 switch ( $this->
type ) {
880 case self::TYPE_USER:
884 case self::TYPE_RANGE:
888 throw new MWException(
"Block with invalid type" );
931 return wfSetVar( $this->mFromMaster, $x );
942 # You can't *not* hardblock a user
943 return $this->
getType() == self::TYPE_USER
955 # You can't put an autoblock on an IP or range as we don't have any history to
956 # look over to get more IPs from
957 return $this->
getType() == self::TYPE_USER
971 # For now... <evil laugh>
974 case 'createaccount':
975 return wfSetVar( $this->mCreateAccount, $x );
978 return wfSetVar( $this->mBlockEmail, $x );
980 case 'editownusertalk':
981 return wfSetVar( $this->mDisableUsertalk, $x );
993 if ( $this->mAuto ) {
996 [
'class' =>
'mw-autoblockid' ],
1000 return htmlspecialchars( $this->
getTarget() );
1057 public static function newFromTarget( $specificTarget, $vagueTarget = null, $fromMaster =
false ) {
1063 } elseif (
$target === null && $vagueTarget ==
'' ) {
1064 # We're not going to find anything useful here
1065 # Be aware that the == '' check is explicit, since empty values will be
1066 # passed by some callers (bug 29116)
1069 } elseif ( in_array(
1073 $block =
new Block();
1074 $block->fromMaster( $fromMaster );
1076 if (
$type !== null ) {
1080 if ( $block->newLoad( $vagueTarget ) ) {
1098 if ( !count( $ipChain ) ) {
1103 foreach ( array_unique( $ipChain )
as $ipaddr ) {
1104 # Discard invalid IP addresses. Since XFF can be spoofed and we do not
1105 # necessarily trust the header given to us, make sure that we are only
1106 # checking for blocks on well-formatted IP addresses (IPv4 and IPv6).
1107 # Do not treat private IP spaces as special as it may be desirable for wikis
1108 # to block those IP ranges in order to stop misbehaving proxies that spoof XFF.
1112 # Don't check trusted IPs (includes local squids which will be in every request)
1116 # Check both the original IP (to check against single blocks), as well as build
1117 # the clause to check for rangeblocks for the given IP.
1118 $conds[
'ipb_address'][] = $ipaddr;
1119 $conds[] = self::getRangeCond(
IP::toHex( $ipaddr ) );
1122 if ( !count( $conds ) ) {
1126 if ( $fromMaster ) {
1131 $conds = $db->makeList( $conds,
LIST_OR );
1133 $conds = [ $conds,
'ipb_anon_only' => 0 ];
1135 $selectFields = array_merge(
1136 [
'ipb_range_start',
'ipb_range_end' ],
1139 $rows = $db->select(
'ipblocks',
1146 foreach ( $rows
as $row ) {
1147 $block = self::newFromRow( $row );
1148 if ( !$block->isExpired() ) {
1178 if ( !count( $blocks ) ) {
1180 } elseif ( count( $blocks ) == 1 ) {
1186 usort( $blocks,
function (
Block $a,
Block $b ) {
1189 return strcmp( $bWeight, $aWeight );
1192 $blocksListExact = [
1194 'disable_create' =>
false,
1198 $blocksListRange = [
1200 'disable_create' =>
false,
1204 $ipChain = array_reverse( $ipChain );
1207 foreach ( $blocks
as $block ) {
1210 if ( !$block->isHardblock() && $blocksListExact[
'hard'] ) {
1212 } elseif ( !$block->prevents(
'createaccount' ) && $blocksListExact[
'disable_create'] ) {
1216 foreach ( $ipChain
as $checkip ) {
1218 if ( (
string)$block->getTarget() === $checkip ) {
1219 if ( $block->isHardblock() ) {
1220 $blocksListExact[
'hard'] = $blocksListExact[
'hard'] ?: $block;
1221 } elseif ( $block->prevents(
'createaccount' ) ) {
1222 $blocksListExact[
'disable_create'] = $blocksListExact[
'disable_create'] ?: $block;
1223 } elseif ( $block->mAuto ) {
1224 $blocksListExact[
'auto'] = $blocksListExact[
'auto'] ?: $block;
1226 $blocksListExact[
'other'] = $blocksListExact[
'other'] ?: $block;
1230 } elseif ( array_filter( $blocksListExact ) == []
1231 && $block->getRangeStart() <= $checkipHex
1232 && $block->getRangeEnd() >= $checkipHex
1234 if ( $block->isHardblock() ) {
1235 $blocksListRange[
'hard'] = $blocksListRange[
'hard'] ?: $block;
1236 } elseif ( $block->prevents(
'createaccount' ) ) {
1237 $blocksListRange[
'disable_create'] = $blocksListRange[
'disable_create'] ?: $block;
1238 } elseif ( $block->mAuto ) {
1239 $blocksListRange[
'auto'] = $blocksListRange[
'auto'] ?: $block;
1241 $blocksListRange[
'other'] = $blocksListRange[
'other'] ?: $block;
1248 if ( array_filter( $blocksListExact ) == [] ) {
1249 $blocksList = &$blocksListRange;
1251 $blocksList = &$blocksListExact;
1254 $chosenBlock = null;
1255 if ( $blocksList[
'hard'] ) {
1256 $chosenBlock = $blocksList[
'hard'];
1257 } elseif ( $blocksList[
'disable_create'] ) {
1258 $chosenBlock = $blocksList[
'disable_create'];
1259 } elseif ( $blocksList[
'other'] ) {
1260 $chosenBlock = $blocksList[
'other'];
1261 } elseif ( $blocksList[
'auto'] ) {
1262 $chosenBlock = $blocksList[
'auto'];
1264 throw new MWException(
"Proxy block found, but couldn't be classified." );
1267 return $chosenBlock;
1280 # We may have been through this before
1283 return [
$target, self::TYPE_IP ];
1285 return [
$target, self::TYPE_USER ];
1287 } elseif (
$target === null ) {
1288 return [ null, null ];
1294 # We can still create a User if it's an IP address, but we need to turn
1295 # off validation checking (which would exclude IP addresses)
1302 # Can't create a User from an IP range
1306 # Consider the possibility that this is not a username at all
1307 # but actually an old subpage (bug #29797)
1308 if ( strpos(
$target,
'/' ) !==
false ) {
1309 # An old subpage, drill down to the user behind it
1314 if ( $userObj instanceof User ) {
1315 # Note that since numbers are valid usernames, a $target of "12345" will be
1316 # considered a User. If you want to pass a block ID, prepend a hash "#12345",
1317 # since hash characters are not valid in usernames or titles generally.
1320 } elseif ( preg_match(
'/^#\d+$/',
$target ) ) {
1321 # Autoblock reference in the form "#12345"
1326 return [ null, null ];
1391 $this->blocker =
$user;
1405 $link =
"[[{$blockerUserpage->getPrefixedText()}|{$blockerUserpage->getText()}]]";
1411 if ( $reason ==
'' ) {
1412 $reason = $context->
msg(
'blockednoreason' )->text();
1421 $this->mAuto ?
'autoblockedtext' :
'blockedtext',
1427 $lang->formatExpiry( $this->mExpiry ),
1429 $lang->userTimeAndDate( $this->mTimestamp, $context->
getUser() ),
getBy()
Get the user id of the blocking sysop.
static newFromName($name, $validate= 'valid')
Static factory method for creation from username.
static getRangeCond($start, $end=null)
Get a set of SQL conditions which will select rangeblocks encompassing a given range.
static getMainWANInstance()
Get the main WAN cache object.
setBlocker($user)
Set the user who implemented (or will implement) this block.
Interface for objects which can provide a MediaWiki context on request.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
the array() calling protocol came about after MediaWiki 1.4rc1.
static defaultRetroactiveAutoblock(Block $block, array &$blockIds)
Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this Block...
static sanitizeIP($ip)
Convert an IP into a verbose, uppercase, normalized form.
static chooseBlock(array $blocks, array $ipChain)
From a list of multiple blocks, find the most exact and strongest Block.
static isInRange($addr, $range)
Determine if a given IPv4/IPv6 address is in a given CIDR network.
static isWhitelistedFromAutoblocks($ip)
Checks whether a given IP is on the autoblock whitelist.
static sanitizeRange($range)
Gets rid of unneeded numbers in quad-dotted/octet IP strings For example, 127.111.113.151/24 -> 127.111.113.0/24.
processing should stop and the error should be shown to the user * false
isValid()
Is the block address valid (i.e.
msg()
Get a Message object with context set.
getType()
Get the type of target for this particular block.
static rawElement($element, $attribs=[], $contents= '')
Returns an HTML element in a string.
if(!isset($args[0])) $lang
equals(Block $block)
Check if two blocks are effectively equal.
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
static newFromId($id)
Static factory method for creation from a given user ID.
__construct($options=[])
Create a new block with specified parameters on a user, IP or IP range.
when a variable name is used in a it is silently declared as a new local masking the global
timestamp($ts=0)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
getName()
Get the user name, or the IP of an anonymous user.
update()
Update a block in the DB with new parameters.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
getRangeEnd()
Get the IP address at the end of the range in Hex form.
The User object encapsulates all of the user-specific settings (user_id, name, rights, email address, options, last login time).
getAutoblockUpdateArray()
wfTimestamp($outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
deleteIfExpired()
Check if a block has expired.
getUser()
Get the User object.
$wgBlockCIDRLimit
Limits on the possible sizes of range blocks.
insert($dbw=null)
Insert a block into the block table.
delete($table, $conds, $fname=__METHOD__)
DELETE query wrapper.
static isTrustedProxy($ip)
Checks if an IP is a trusted proxy provider.
wfReadOnly()
Check whether the wiki is in read-only mode.
int $type
Block::TYPE_ constant.
getTargetAndType()
Get the target and target type for this particular Block.
static newFromTarget($specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
getRedactedName()
Get the block name, but with autoblocked IPs hidden as per standard privacy policy.
static isValid($ip)
Validate an IP address.
setTarget($target)
Set the target for this block, and update $this->type accordingly.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
$wgPutIPinRC
Log IP addresses in the recentchanges table; can be accessed only by extensions (e.g.
Deferrable Update for closure/callback updates via IDatabase::doAtomicSection()
doAutoblock($autoblockIP)
Autoblocks the given IP, referring to this Block.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock()-offset Set to overwrite offset parameter in $wgRequest set to ''to unsetoffset-wrap String Wrap the message in html(usually something like"<
static parseTarget($target)
From an existing Block, get the target and the type of target.
static purgeExpired()
Purge expired blocks from the ipblocks table.
newLoad($vagueTarget=null)
Load a block from the database which affects the already-set $this->target: 1) A block directly on th...
static addUpdate(DeferrableUpdate $update, $type=self::POSTSEND)
Add an update to the deferred list.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
static toHex($ip)
Return a zero-padded upper case hexadecimal representation of an IP address.
getLanguage()
Get the Language object.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
static newFromRow($row)
Create a new Block object from a database row.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
const TS_MW
MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
doRetroactiveAutoblock()
Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this Block...
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
static getBlocksForIPList(array $ipChain, $isAnon, $fromMaster=false)
Get all blocks that match any IP from an array of IP addresses.
int $forcedTargetID
Hack for foreign blocking (CentralAuth)
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
updateTimestamp()
Update the timestamp on autoblocks.
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined...
prevents($action, $x=null)
Get/set whether the Block prevents a given action.
static getAutoblockExpiry($timestamp)
Get a timestamp of the expiry for autoblocks.
getBlocker()
Get the user who implemented this block.
static parseRange($range)
Given a string range in a number of formats, return the start and end of the range in hexadecimal...
getId()
Get the user's ID.
getPermissionsError(IContextSource $context)
Get the key and parameters for the corresponding error message.
static selectFields()
Return the list of ipblocks fields that should be selected to create a new block. ...
getTarget()
Get the target for this particular Block.
getUserPage()
Get this user's personal page title.
static newFromID($id)
Load a blocked user from their block id.
getDatabaseArray($db=null)
Get an array suitable for passing to $dbw->insert() or $dbw->update()
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
fromMaster($x=null)
Get/set a flag determining whether the master is used for reads.
wfMemcKey()
Make a cache key for the local wiki.
addQuotes($s)
Adds quotes and backslashes.
const TS_UNIX
Unix time - the number of seconds since 1970-01-01 00:00:00 UTC.
isHardblock($x=null)
Get/set whether the Block is a hardblock (affects logged-in users on a given IP/range) ...
initFromRow($row)
Given a database row from the ipblocks table, initialize member variables.
static isValidBlock($ipblock)
Validate an IP Block (valid address WITH a valid prefix).
getRangeStart()
Get the IP address at the start of the range in Hex form.
getRequest()
Get the WebRequest object.
static getIpFragment($hex)
Get the component of an IP address which is certain to be the same between an IP address and a rangeb...
getByName()
Get the username of the blocking sysop.
Basic database interface for live and lazy-loaded DB handles.
isExpired()
Has the block expired?
$wgAutoblockExpiry
Number of seconds before autoblock entries expire.