Go to the documentation of this file.
125 'createAccount' =>
false,
126 'enableAutoblock' =>
false,
128 'blockEmail' =>
false,
129 'allowUsertalk' =>
false,
131 'systemBlock' =>
null,
134 if ( func_num_args() > 1 || !is_array(
$options ) ) {
136 array_slice( array_keys( $defaults ), 0, func_num_args() ),
139 wfDeprecated( __METHOD__ .
' with multiple arguments',
'1.26' );
146 if ( $this->target instanceof
User &&
$options[
'user'] ) {
147 # Needed for foreign users
148 $this->forcedTargetID =
$options[
'user'];
159 $this->mReason =
$options[
'reason'];
164 $this->mAuto = (bool)
$options[
'auto'];
165 $this->mHideName = (bool)
$options[
'hideName'];
169 # Prevention measures
170 $this->
prevents(
'sendemail', (
bool)$options[
'blockEmail'] );
171 $this->
prevents(
'editownusertalk', !$options[
'allowUsertalk'] );
172 $this->
prevents(
'createaccount', (
bool)$options[
'createAccount'] );
174 $this->mFromMaster =
false;
175 $this->systemBlockType =
$options[
'systemBlock'];
188 self::selectFields(),
215 'ipb_create_account',
216 'ipb_enable_autoblock',
220 'ipb_allow_usertalk',
221 'ipb_parent_block_id',
235 (
string)$this->target == (
string)$block->target
236 && $this->type == $block->type
237 && $this->mAuto == $block->mAuto
239 && $this->
prevents(
'createaccount' ) == $block->
prevents(
'createaccount' )
240 && $this->mExpiry == $block->mExpiry
242 && $this->mHideName == $block->mHideName
244 && $this->
prevents(
'editownusertalk' ) == $block->
prevents(
'editownusertalk' )
245 && $this->mReason == $block->mReason
259 protected function newLoad( $vagueTarget =
null ) {
262 if ( $this->
type !==
null ) {
264 'ipb_address' => [ (
string)$this->target ],
267 $conds = [
'ipb_address' => [] ];
270 # Be aware that the != '' check is explicit, since empty values will be
271 # passed by some callers (T31116)
272 if ( $vagueTarget !=
'' ) {
276 # Slightly weird, but who are we to argue?
283 $conds = $db->makeList( $conds,
LIST_OR );
290 $conds = $db->makeList( $conds,
LIST_OR );
294 throw new MWException(
"Tried to load block with invalid type" );
298 $res = $db->select(
'ipblocks', self::selectFields(), $conds, __METHOD__ );
300 # This result could contain a block on the user, a block on the IP, and a russian-doll
301 # set of rangeblocks. We want to choose the most specific one, so keep a leader board.
304 # Lower will be better
305 $bestBlockScore = 100;
307 # This is begging for $this = $bestBlock, but that's not allowed in PHP :(
308 $bestBlockPreventsEdit =
null;
310 foreach (
$res as $row ) {
313 # Don't use expired blocks
314 if ( $block->isExpired() ) {
318 # Don't use anon only blocks on users
319 if ( $this->
type == self::TYPE_USER && !$block->isHardblock() ) {
324 # This is the number of bits that are allowed to vary in the block, give
325 # or take some floating point errors
326 $end = Wikimedia\base_convert( $block->getRangeEnd(), 16, 10 );
327 $start = Wikimedia\base_convert( $block->getRangeStart(), 16, 10 );
328 $size = log( $end - $start + 1, 2 );
330 # This has the nice property that a /32 block is ranked equally with a
331 # single-IP block, which is exactly what it is...
332 $score = self::TYPE_RANGE - 1 + ( $size / 128 );
335 $score = $block->getType();
338 if ( $score < $bestBlockScore ) {
339 $bestBlockScore = $score;
341 $bestBlockPreventsEdit = $block->prevents(
'edit' );
345 if ( $bestRow !==
null ) {
347 $this->
prevents(
'edit', $bestBlockPreventsEdit );
361 if ( $end ===
null ) {
364 # Per T16634, we want to include relevant active rangeblocks; for
365 # rangeblocks, we want to include larger ranges which enclose the given
366 # range. We know that all blocks must be smaller than $wgBlockCIDRLimit,
367 # so we can improve performance by filtering on a LIKE clause
370 $like =
$dbr->buildLike( $chunk,
$dbr->anyString() );
372 # Fairly hard to make a malicious SQL statement out of hex characters,
373 # but stranger things have happened...
374 $safeStart =
$dbr->addQuotes( $start );
375 $safeEnd =
$dbr->addQuotes( $end );
377 return $dbr->makeList(
379 "ipb_range_start $like",
380 "ipb_range_start <= $safeStart",
381 "ipb_range_end >= $safeEnd",
395 if ( substr( $hex, 0, 3 ) ==
'v6-' ) {
396 return 'v6-' . substr( substr( $hex, 3 ), 0, floor(
$wgBlockCIDRLimit[
'IPv6'] / 4 ) );
409 if ( $row->ipb_by ) {
415 $this->mTimestamp =
wfTimestamp( TS_MW, $row->ipb_timestamp );
416 $this->mAuto = $row->ipb_auto;
417 $this->mHideName = $row->ipb_deleted;
418 $this->mId = (int)$row->ipb_id;
419 $this->mParentBlockId = $row->ipb_parent_block_id;
423 $this->mExpiry = $db->decodeExpiry( $row->ipb_expiry );
426 ->getCommentLegacy( $db, $row )->text;
431 $this->
prevents(
'createaccount', $row->ipb_create_account );
432 $this->
prevents(
'sendemail', $row->ipb_block_email );
433 $this->
prevents(
'editownusertalk', !$row->ipb_allow_usertalk );
453 public function delete() {
458 if ( !$this->
getId() ) {
459 throw new MWException(
"Block::delete() requires that the mId member be filled\n" );
463 $dbw->delete(
'ipblocks', [
'ipb_parent_block_id' => $this->
getId() ], __METHOD__ );
464 $dbw->delete(
'ipblocks', [
'ipb_id' => $this->
getId() ], __METHOD__ );
466 return $dbw->affectedRows() > 0;
481 throw new MWException(
'Cannot insert a system block into the database' );
484 wfDebug(
"Block::insert; timestamp {$this->mTimestamp}\n" );
486 if ( $dbw ===
null ) {
490 # Periodic purge via commit hooks
491 if ( mt_rand( 0, 9 ) == 0 ) {
497 $dbw->insert(
'ipblocks', $row, __METHOD__, [
'IGNORE' ] );
498 $affected = $dbw->affectedRows();
499 $this->mId = $dbw->insertId();
501 # Don't collide with expired blocks.
502 # Do this after trying to insert to avoid locking.
504 # T96428: The ipb_address index uses a prefix on a field, so
505 # use a standard SELECT + DELETE to avoid annoying gap locks.
506 $ids = $dbw->selectFieldValues(
'ipblocks',
509 'ipb_address' => $row[
'ipb_address'],
510 'ipb_user' => $row[
'ipb_user'],
511 'ipb_expiry < ' . $dbw->addQuotes( $dbw->timestamp() )
516 $dbw->delete(
'ipblocks', [
'ipb_id' => $ids ], __METHOD__ );
517 $dbw->insert(
'ipblocks', $row, __METHOD__, [
'IGNORE' ] );
518 $affected = $dbw->affectedRows();
519 $this->mId = $dbw->insertId();
526 if ( $wgBlockDisablesLogin && $this->target instanceof
User ) {
528 $this->target->setToken();
529 $this->target->saveSettings();
532 return [
'id' =>
$this->mId,
'autoIds' => $auto_ipd_ids ];
546 wfDebug(
"Block::update; timestamp {$this->mTimestamp}\n" );
549 $dbw->startAtomic( __METHOD__ );
554 [
'ipb_id' => $this->
getId() ],
558 $affected = $dbw->affectedRows();
565 [
'ipb_parent_block_id' => $this->
getId() ],
572 [
'ipb_parent_block_id' => $this->
getId() ],
577 $dbw->endAtomic( __METHOD__ );
581 return [
'id' =>
$this->mId,
'autoIds' => $auto_ipd_ids ];
595 if ( $this->forcedTargetID ) {
598 $uid = $this->target instanceof
User ? $this->target->
getId() : 0;
602 'ipb_address' => (
string)$this->target,
604 'ipb_by' => $this->
getBy(),
606 'ipb_timestamp' => $dbw->
timestamp( $this->mTimestamp ),
609 'ipb_create_account' => $this->
prevents(
'createaccount' ),
611 'ipb_expiry' => $expiry,
614 'ipb_deleted' => intval( $this->mHideName ),
615 'ipb_block_email' => $this->
prevents(
'sendemail' ),
616 'ipb_allow_usertalk' => !$this->
prevents(
'editownusertalk' ),
629 'ipb_by' => $this->
getBy(),
631 'ipb_create_account' => $this->
prevents(
'createaccount' ),
632 'ipb_deleted' => (int)$this->mHideName,
633 'ipb_allow_usertalk' => !$this->
prevents(
'editownusertalk' ),
645 # If autoblock is enabled, autoblock the LAST IP(s) used
650 'PerformRetroactiveAutoblock', [ $this, &$blockIds ] );
676 $options = [
'ORDER BY' =>
'rc_timestamp DESC' ];
682 $res =
$dbr->select(
'recentchanges', [
'rc_ip' ], $conds,
685 if ( !
$res->numRows() ) {
686 # No results, don't autoblock anything
687 wfDebug(
"No IP found to retroactively autoblock\n" );
689 foreach (
$res as $row ) {
710 $cache = MediaWikiServices::getInstance()->getMainWANObjectCache();
712 $cache->makeKey(
'ipb',
'autoblock',
'whitelist' ),
714 function ( $curValue, &$ttl,
array &$setOpts ) {
717 return explode(
"\n",
718 wfMessage(
'autoblock_whitelist' )->inContentLanguage()->
plain() );
722 wfDebug(
"Checking the autoblock whitelist..\n" );
726 if ( substr(
$line, 0, 1 ) !==
'*' ) {
730 $wlEntry = substr(
$line, 1 );
731 $wlEntry = trim( $wlEntry );
733 wfDebug(
"Checking $ip against $wlEntry..." );
735 # Is the IP in this range?
737 wfDebug(
" IP $ip matches $wlEntry, not autoblocking\n" );
754 # If autoblocks are disabled, go away.
759 # Don't autoblock for system blocks
761 throw new MWException(
'Cannot autoblock from a system block' );
764 # Check for presence on the autoblock whitelist.
765 if ( self::isWhitelistedFromAutoblocks( $autoblockIP ) ) {
771 # Allow hooks to cancel the autoblock.
772 if ( !
Hooks::run(
'AbortAutoblock', [ $autoblockIP, &$block ] ) ) {
773 wfDebug(
"Autoblock aborted by hook.\n" );
777 # It's okay to autoblock. Go ahead and insert/update the block...
779 # Do not add a *new* block if the IP is already blocked.
782 # Check if the block is an autoblock and would exceed the user block
783 # if renewed. If so, do nothing, otherwise prolong the block time...
784 if ( $ipblock->mAuto &&
785 $this->mExpiry > self::getAutoblockExpiry( $ipblock->mTimestamp )
787 # Reset block timestamp to now and its expiry to
788 # $wgAutoblockExpiry in the future
789 $ipblock->updateTimestamp();
794 # Make a new block object with the desired properties.
795 $autoblock =
new Block;
796 wfDebug(
"Autoblocking {$this->getTarget()}@" . $autoblockIP .
"\n" );
797 $autoblock->setTarget( $autoblockIP );
798 $autoblock->setBlocker( $this->
getBlocker() );
800 ->inContentLanguage()->plain();
802 $autoblock->mTimestamp = $timestamp;
803 $autoblock->mAuto = 1;
804 $autoblock->prevents(
'createaccount', $this->
prevents(
'createaccount' ) );
805 # Continue suppressing the name if needed
807 $autoblock->prevents(
'editownusertalk', $this->
prevents(
'editownusertalk' ) );
810 if ( $this->mExpiry ==
'infinity' ) {
811 # Original block was indefinite, start an autoblock now
814 # If the user is already blocked with an expiry date, we don't
815 # want to pile on top of that.
816 $autoblock->mExpiry = min( $this->mExpiry, self::getAutoblockExpiry( $timestamp ) );
819 # Insert the block...
820 $status = $autoblock->insert();
832 wfDebug(
"Block::deleteIfExpired() -- deleting\n" );
836 wfDebug(
"Block::deleteIfExpired() -- not expired\n" );
849 wfDebug(
"Block::isExpired() checking current " . $timestamp .
" vs $this->mExpiry\n" );
851 if ( !$this->mExpiry ) {
870 if ( $this->mAuto ) {
875 $dbw->update(
'ipblocks',
877 'ipb_timestamp' => $dbw->timestamp( $this->mTimestamp ),
878 'ipb_expiry' => $dbw->timestamp( $this->mExpiry ),
881 'ipb_id' => $this->
getId(),
894 switch ( $this->
type ) {
903 throw new MWException(
"Block with invalid type" );
913 switch ( $this->
type ) {
922 throw new MWException(
"Block with invalid type" );
974 return wfSetVar( $this->mFromMaster, $x );
985 # You can't *not* hardblock a user
986 return $this->
getType() == self::TYPE_USER
998 # You can't put an autoblock on an IP or range as we don't have any history to
999 # look over to get more IPs from
1000 return $this->
getType() == self::TYPE_USER
1015 switch ( $action ) {
1017 # For now... <evil laugh>
1020 case 'createaccount':
1026 case 'editownusertalk':
1037 $res = $anon->isAllowed( $action ) ?
$res :
true;
1048 if ( $this->mAuto ) {
1051 [
'class' =>
'mw-autoblockid' ],
1055 return htmlspecialchars( $this->
getTarget() );
1112 public static function newFromTarget( $specificTarget, $vagueTarget =
null, $fromMaster =
false ) {
1114 if (
$type == self::TYPE_ID ||
$type == self::TYPE_AUTO ) {
1117 } elseif (
$target ===
null && $vagueTarget ==
'' ) {
1118 # We're not going to find anything useful here
1119 # Be aware that the == '' check is explicit, since empty values will be
1120 # passed by some callers (T31116)
1123 } elseif ( in_array(
1125 [ self::TYPE_USER, self::TYPE_IP, self::TYPE_RANGE,
null ] )
1127 $block =
new Block();
1128 $block->fromMaster( $fromMaster );
1130 if (
$type !==
null ) {
1134 if ( $block->newLoad( $vagueTarget ) ) {
1152 if ( !
count( $ipChain ) ) {
1157 $proxyLookup = MediaWikiServices::getInstance()->getProxyLookup();
1158 foreach ( array_unique( $ipChain )
as $ipaddr ) {
1159 # Discard invalid IP addresses. Since XFF can be spoofed and we do not
1160 # necessarily trust the header given to us, make sure that we are only
1161 # checking for blocks on well-formatted IP addresses (IPv4 and IPv6).
1162 # Do not treat private IP spaces as special as it may be desirable for wikis
1163 # to block those IP ranges in order to stop misbehaving proxies that spoof XFF.
1167 # Don't check trusted IPs (includes local squids which will be in every request)
1168 if ( $proxyLookup->isTrustedProxy( $ipaddr ) ) {
1171 # Check both the original IP (to check against single blocks), as well as build
1172 # the clause to check for rangeblocks for the given IP.
1173 $conds[
'ipb_address'][] = $ipaddr;
1177 if ( !
count( $conds ) ) {
1181 if ( $fromMaster ) {
1186 $conds = $db->makeList( $conds,
LIST_OR );
1188 $conds = [ $conds,
'ipb_anon_only' => 0 ];
1190 $selectFields = array_merge(
1191 [
'ipb_range_start',
'ipb_range_end' ],
1192 self::selectFields()
1194 $rows = $db->select(
'ipblocks',
1203 if ( !$block->isExpired() ) {
1233 if ( !
count( $blocks ) ) {
1235 } elseif (
count( $blocks ) == 1 ) {
1241 usort( $blocks,
function (
Block $a,
Block $b ) {
1244 return strcmp( $bWeight, $aWeight );
1247 $blocksListExact = [
1249 'disable_create' =>
false,
1253 $blocksListRange = [
1255 'disable_create' =>
false,
1259 $ipChain = array_reverse( $ipChain );
1262 foreach ( $blocks
as $block ) {
1265 if ( !$block->isHardblock() && $blocksListExact[
'hard'] ) {
1267 } elseif ( !$block->prevents(
'createaccount' ) && $blocksListExact[
'disable_create'] ) {
1271 foreach ( $ipChain
as $checkip ) {
1273 if ( (
string)$block->getTarget() === $checkip ) {
1274 if ( $block->isHardblock() ) {
1275 $blocksListExact[
'hard'] = $blocksListExact[
'hard'] ?: $block;
1276 } elseif ( $block->prevents(
'createaccount' ) ) {
1277 $blocksListExact[
'disable_create'] = $blocksListExact[
'disable_create'] ?: $block;
1278 } elseif ( $block->mAuto ) {
1279 $blocksListExact[
'auto'] = $blocksListExact[
'auto'] ?: $block;
1281 $blocksListExact[
'other'] = $blocksListExact[
'other'] ?: $block;
1285 } elseif ( array_filter( $blocksListExact ) == []
1286 && $block->getRangeStart() <= $checkipHex
1287 && $block->getRangeEnd() >= $checkipHex
1289 if ( $block->isHardblock() ) {
1290 $blocksListRange[
'hard'] = $blocksListRange[
'hard'] ?: $block;
1291 } elseif ( $block->prevents(
'createaccount' ) ) {
1292 $blocksListRange[
'disable_create'] = $blocksListRange[
'disable_create'] ?: $block;
1293 } elseif ( $block->mAuto ) {
1294 $blocksListRange[
'auto'] = $blocksListRange[
'auto'] ?: $block;
1296 $blocksListRange[
'other'] = $blocksListRange[
'other'] ?: $block;
1303 if ( array_filter( $blocksListExact ) == [] ) {
1304 $blocksList = &$blocksListRange;
1306 $blocksList = &$blocksListExact;
1309 $chosenBlock =
null;
1310 if ( $blocksList[
'hard'] ) {
1311 $chosenBlock = $blocksList[
'hard'];
1312 } elseif ( $blocksList[
'disable_create'] ) {
1313 $chosenBlock = $blocksList[
'disable_create'];
1314 } elseif ( $blocksList[
'other'] ) {
1315 $chosenBlock = $blocksList[
'other'];
1316 } elseif ( $blocksList[
'auto'] ) {
1317 $chosenBlock = $blocksList[
'auto'];
1319 throw new MWException(
"Proxy block found, but couldn't be classified." );
1322 return $chosenBlock;
1335 # We may have been through this before
1342 } elseif (
$target ===
null ) {
1343 return [
null, null ];
1349 # We can still create a User if it's an IP address, but we need to turn
1350 # off validation checking (which would exclude IP addresses)
1357 # Can't create a User from an IP range
1361 # Consider the possibility that this is not a username at all
1362 # but actually an old subpage (bug #29797)
1363 if ( strpos(
$target,
'/' ) !==
false ) {
1364 # An old subpage, drill down to the user behind it
1369 if ( $userObj instanceof
User ) {
1370 # Note that since numbers are valid usernames, a $target of "12345" will be
1371 # considered a User. If you want to pass a block ID, prepend a hash "#12345",
1372 # since hash characters are not valid in usernames or titles generally.
1375 } elseif ( preg_match(
'/^#\d+$/',
$target ) ) {
1376 # Autoblock reference in the form "#12345"
1381 return [
null, null ];
1446 $this->blocker =
$user;
1468 $expiryValue = DateTime::createFromFormat(
'YmdHis',
$expiryTime )->format(
'U' );
1469 $cookieOptions = [
'httpOnly' =>
false ];
1471 $response->
setCookie(
'BlockID', $cookieValue, $expiryValue, $cookieOptions );
1482 $response->clearCookie(
'BlockID', [
'httpOnly' =>
false ] );
1496 $id = $this->
getId();
1497 $secretKey = $config->get(
'SecretKey' );
1498 if ( !$secretKey ) {
1503 $cookieValue = $id .
'!' . $hmac;
1504 return $cookieValue;
1519 $bangPos = strpos( $cookieValue,
'!' );
1520 $id = ( $bangPos ===
false ) ? $cookieValue : substr( $cookieValue, 0, $bangPos );
1523 $secretKey = $config->get(
'SecretKey' );
1524 if ( !$secretKey ) {
1528 $storedHmac = substr( $cookieValue, $bangPos + 1 );
1530 if ( $calculatedHmac === $storedHmac ) {
1548 $link =
"[[{$blockerUserpage->getPrefixedText()}|{$blockerUserpage->getText()}]]";
1554 if ( $reason ==
'' ) {
1555 $reason =
$context->msg(
'blockednoreason' )->text();
1567 ?
'systemblockedtext'
1568 : ( $this->mAuto ?
'autoblockedtext' :
'blockedtext' ),
1574 $lang->formatExpiry( $this->mExpiry ),
1576 $lang->userTimeAndDate( $this->mTimestamp,
$context->getUser() ),
prevents( $action, $x=null)
Get/set whether the Block prevents a given action.
static toHex( $ip)
Return a zero-padded upper case hexadecimal representation of an IP address.
isHardblock( $x=null)
Get/set whether the Block is a hardblock (affects logged-in users on a given IP/range)
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 account $user
static newFromId( $id)
Static factory method for creation from a given user ID.
getSystemBlockType()
Get the system block type, if any.
equals(Block $block)
Check if two blocks are effectively equal.
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
getType()
Get the type of target for this particular block.
processing should stop and the error should be shown to the user * false
getId()
Get the user's ID.
getCookieValue()
Get the BlockID cookie's value for this block.
static hmac( $data, $key, $raw=true)
Generate an acceptably unstable one-way-hmac of some text making use of the best hash algorithm that ...
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
static clearCookie(WebResponse $response)
Unset the 'BlockID' cookie.
static getIpFragment( $hex)
Get the component of an IP address which is certain to be the same between an IP address and a rangeb...
isExpired()
Has the block expired?
if(!isset( $args[0])) $lang
static newFromID( $id)
Load a blocked user from their block id.
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...
getBy()
Get the user id of the blocking sysop.
static chooseBlock(array $blocks, array $ipChain)
From a list of multiple blocks, find the most exact and strongest Block.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
$wgAutoblockExpiry
Number of seconds before autoblock entries expire.
update()
Update a block in the DB with new parameters.
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
setCookie(WebResponse $response)
Set the 'BlockID' cookie to this block's ID and expiry time.
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
setCookie( $name, $value, $expire=0, $options=[])
Set the browser cookie.
static newFromTarget( $specificTarget, $vagueTarget=null, $fromMaster=false)
Given a target and the target's type, get an existing Block object if possible.
wfReadOnly()
Check whether the wiki is in read-only mode.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
isValid()
Is the block address valid (i.e.
initFromRow( $row)
Given a database row from the ipblocks table, initialize member variables.
getUserPage()
Get this user's personal page title.
getRangeEnd()
Get the IP address at the end of the range in Hex form.
__construct( $options=[])
Create a new block with specified parameters on a user, IP or IP range.
deleteIfExpired()
Check if a block has expired.
getDatabaseArray(IDatabase $dbw)
Get an array suitable for passing to $dbw->insert() or $dbw->update()
insert( $dbw=null)
Insert a block into the block table.
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
$wgPutIPinRC
Log IP addresses in the recentchanges table; can be accessed only by extensions (e....
getRedactedName()
Get the block name, but with autoblocked IPs hidden as per standard privacy policy.
newLoad( $vagueTarget=null)
Load a block from the database which affects the already-set $this->target: 1) A block directly on th...
int $type
Block::TYPE_ constant.
static isValidRange( $ipRange)
Validate an IP range (valid address with a valid CIDR prefix).
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
static parseTarget( $target)
From an existing Block, get the target and the type of target.
static getRangeCond( $start, $end=null)
Get a set of SQL conditions which will select rangeblocks encompassing a given range.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
doAutoblock( $autoblockIP)
Autoblocks the given IP, referring to this Block.
static isWhitelistedFromAutoblocks( $ip)
Checks whether a given IP is on the autoblock whitelist.
when a variable name is used in a it is silently declared as a new masking the global
static isInRange( $addr, $range)
Determine if a given IPv4/IPv6 address is in a given CIDR network.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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
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
static getBlocksForIPList(array $ipChain, $isAnon, $fromMaster=false)
Get all blocks that match any IP from an array of IP addresses.
getTargetAndType()
Get the target and target type for this particular Block.
Deferrable Update for closure/callback updates via IDatabase::doAtomicSection()
doRetroactiveAutoblock()
Retroactively autoblocks the last IP used by the user (if it is a user) blocked by this Block.
static getIdFromCookieValue( $cookieValue)
Get the stored ID from the 'BlockID' cookie.
updateTimestamp()
Update the timestamp on autoblocks.
string null $systemBlockType
static parseRange( $range)
Given a string range in a number of formats, return the start and end of the range in hexadecimal.
getBlocker()
Get the user who implemented this block.
setBlocker( $user)
Set the user who implemented (or will implement) this block.
$wgBlockDisablesLogin
If true, blocked users will not be allowed to login.
fromMaster( $x=null)
Get/set a flag determining whether the master is used for reads.
getTarget()
Get the target for this particular Block.
static purgeExpired()
Purge expired blocks from the ipblocks table.
static getMain()
Static methods.
static isValid( $ip)
Validate an IP address.
this hook is for auditing only $response
Interface for objects which can provide a MediaWiki context on request.
static sanitizeIP( $ip)
Convert an IP into a verbose, uppercase, normalized form.
$wgBlockCIDRLimit
Limits on the possible sizes of range blocks.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
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 & $options
static selectFields()
Return the list of ipblocks fields that should be selected to create a new block.
int $forcedTargetID
Hack for foreign blocking (CentralAuth)
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 rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
getRangeStart()
Get the IP address at the start of the range in Hex form.
usually copyright or history_copyright This message must be in HTML not wikitext & $link
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 noclasses just before the function returns a value If you return true
getPermissionsError(IContextSource $context)
Get the key and parameters for the corresponding error message.
either a unescaped string or a HtmlArmor object 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 unset offset - wrap String Wrap the message in html(usually something like "<
getByName()
Get the username of the blocking sysop.
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 MediaWikiServices
Allow programs to request this object from WebRequest::response() and handle all outputting (or lack ...
static newFromRow( $row)
Create a new Block object from a database row.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
getAutoblockUpdateArray(IDatabase $dbw)
getName()
Get the user name, or the IP of an anonymous user.
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 sanitizeRange( $range)
Gets rid of unneeded numbers in quad-dotted/octet IP strings For example, 127.111....
setTarget( $target)
Set the target for this block, and update $this->type accordingly.
getLanguage()
Get the Language object.
the array() calling protocol came about after MediaWiki 1.4rc1.
static getAutoblockExpiry( $timestamp)
Get a timestamp of the expiry for autoblocks.