3 * Implements Special:Block
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * A special page that allows users with 'block' right to block users from
26 * editing pages and other actions
28 * @ingroup SpecialPage
30 class SpecialBlock
extends FormSpecialPage
{
31 /** @var User|string|null User to be blocked, as passed either by parameter (url?wpTarget=Foo)
32 * or as subpage (Special:Block/Foo) */
35 /** @var int Block::TYPE_ constant */
38 /** @var User|string The previous block target */
39 protected $previousTarget;
41 /** @var bool Whether the previous submission of the form asked for HideUser */
42 protected $requestedHideUser;
45 protected $alreadyBlocked;
48 protected $preErrors = [];
50 public function __construct() {
51 parent
::__construct( 'Block', 'block' );
54 public function doesWrites() {
59 * Checks that the user can unblock themselves if they are trying to do so
62 * @throws ErrorPageError
64 protected function checkExecutePermissions( User
$user ) {
65 parent
::checkExecutePermissions( $user );
67 # bug 15810: blocked admins should have limited access here
68 $status = self
::checkUnblockSelf( $this->target
, $user );
69 if ( $status !== true ) {
70 throw new ErrorPageError( 'badaccess', $status );
75 * Handle some magic here
79 protected function setParameter( $par ) {
80 # Extract variables from the request. Try not to get into a situation where we
81 # need to extract *every* variable from the form just for processing here, but
82 # there are legitimate uses for some variables
83 $request = $this->getRequest();
84 list( $this->target
, $this->type
) = self
::getTargetAndType( $par, $request );
85 if ( $this->target
instanceof User
) {
86 # Set the 'relevant user' in the skin, so it displays links like Contributions,
87 # User logs, UserRights, etc.
88 $this->getSkin()->setRelevantUser( $this->target
);
91 list( $this->previousTarget
, /*...*/ ) =
92 Block
::parseTarget( $request->getVal( 'wpPreviousTarget' ) );
93 $this->requestedHideUser
= $request->getBool( 'wpHideUser' );
97 * Customizes the HTMLForm a bit
99 * @param HTMLForm $form
101 protected function alterForm( HTMLForm
$form ) {
102 $form->setWrapperLegendMsg( 'blockip-legend' );
103 $form->setHeaderText( '' );
104 $form->setSubmitDestructive();
106 $msg = $this->alreadyBlocked ?
'ipb-change-block' : 'ipbsubmit';
107 $form->setSubmitTextMsg( $msg );
109 $this->addHelpLink( 'Help:Blocking users' );
111 # Don't need to do anything if the form has been posted
112 if ( !$this->getRequest()->wasPosted() && $this->preErrors
) {
113 $s = $form->formatErrors( $this->preErrors
);
115 $form->addHeaderText( Html
::rawElement(
117 [ 'class' => 'error' ],
125 * Get the HTMLForm descriptor array for the block form
128 protected function getFormFields() {
129 global $wgBlockAllowsUTEdit;
131 $user = $this->getUser();
133 $suggestedDurations = self
::getSuggestedDurations();
138 'label-message' => 'ipaddressorusername',
139 'id' => 'mw-bi-target',
143 'validation-callback' => [ __CLASS__
, 'validateTargetField' ],
144 'cssclass' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
147 'type' => !count( $suggestedDurations ) ?
'text' : 'selectorother',
148 'label-message' => 'ipbexpiry',
150 'options' => $suggestedDurations,
151 'other' => $this->msg( 'ipbother' )->text(),
152 'default' => $this->msg( 'ipb-default-expiry' )->inContentLanguage()->text(),
155 'type' => 'selectandother',
157 'label-message' => 'ipbreason',
158 'options-message' => 'ipbreason-dropdown',
162 'label-message' => 'ipbcreateaccount',
167 if ( self
::canBlockEmail( $user ) ) {
168 $a['DisableEmail'] = [
170 'label-message' => 'ipbemailban',
174 if ( $wgBlockAllowsUTEdit ) {
175 $a['DisableUTEdit'] = [
177 'label-message' => 'ipb-disableusertalk',
184 'label-message' => 'ipbenableautoblock',
188 # Allow some users to hide name from block log, blocklist and listusers
189 if ( $user->isAllowed( 'hideuser' ) ) {
192 'label-message' => 'ipbhidename',
193 'cssclass' => 'mw-block-hideuser',
197 # Watchlist their user page? (Only if user is logged in)
198 if ( $user->isLoggedIn() ) {
201 'label-message' => 'ipbwatchuser',
207 'label-message' => 'ipb-hardblock',
211 # This is basically a copy of the Target field, but the user can't change it, so we
212 # can see if the warnings we maybe showed to the user before still apply
213 $a['PreviousTarget'] = [
218 # We'll turn this into a checkbox if we need to
222 'label-message' => 'ipb-confirm',
225 $this->maybeAlterFormDefaults( $a );
227 // Allow extensions to add more fields
228 Hooks
::run( 'SpecialBlockModifyFormFields', [ $this, &$a ] );
234 * If the user has already been blocked with similar settings, load that block
235 * and change the defaults for the form fields to match the existing settings.
236 * @param array $fields HTMLForm descriptor array
237 * @return bool Whether fields were altered (that is, whether the target is
240 protected function maybeAlterFormDefaults( &$fields ) {
241 # This will be overwritten by request data
242 $fields['Target']['default'] = (string)$this->target
;
244 if ( $this->target
) {
245 $status = self
::validateTarget( $this->target
, $this->getUser() );
246 if ( !$status->isOK() ) {
247 $errors = $status->getErrorsArray();
248 $this->preErrors
= array_merge( $this->preErrors
, $errors );
253 $fields['PreviousTarget']['default'] = (string)$this->target
;
255 $block = Block
::newFromTarget( $this->target
);
257 if ( $block instanceof Block
&& !$block->mAuto
# The block exists and isn't an autoblock
258 && ( $this->type
!= Block
::TYPE_RANGE
# The block isn't a rangeblock
259 ||
$block->getTarget() == $this->target
) # or if it is, the range is what we're about to block
261 $fields['HardBlock']['default'] = $block->isHardblock();
262 $fields['CreateAccount']['default'] = $block->prevents( 'createaccount' );
263 $fields['AutoBlock']['default'] = $block->isAutoblocking();
265 if ( isset( $fields['DisableEmail'] ) ) {
266 $fields['DisableEmail']['default'] = $block->prevents( 'sendemail' );
269 if ( isset( $fields['HideUser'] ) ) {
270 $fields['HideUser']['default'] = $block->mHideName
;
273 if ( isset( $fields['DisableUTEdit'] ) ) {
274 $fields['DisableUTEdit']['default'] = $block->prevents( 'editownusertalk' );
277 // If the username was hidden (ipb_deleted == 1), don't show the reason
278 // unless this user also has rights to hideuser: Bug 35839
279 if ( !$block->mHideName ||
$this->getUser()->isAllowed( 'hideuser' ) ) {
280 $fields['Reason']['default'] = $block->mReason
;
282 $fields['Reason']['default'] = '';
285 if ( $this->getRequest()->wasPosted() ) {
286 # Ok, so we got a POST submission asking us to reblock a user. So show the
287 # confirm checkbox; the user will only see it if they haven't previously
288 $fields['Confirm']['type'] = 'check';
290 # We got a target, but it wasn't a POST request, so the user must have gone
291 # to a link like [[Special:Block/User]]. We don't need to show the checkbox
292 # as long as they go ahead and block *that* user
293 $fields['Confirm']['default'] = 1;
296 if ( $block->mExpiry
== 'infinity' ) {
297 $fields['Expiry']['default'] = 'infinite';
299 $fields['Expiry']['default'] = wfTimestamp( TS_RFC2822
, $block->mExpiry
);
302 $this->alreadyBlocked
= true;
303 $this->preErrors
[] = [ 'ipb-needreblock', wfEscapeWikiText( (string)$block->getTarget() ) ];
306 # We always need confirmation to do HideUser
307 if ( $this->requestedHideUser
) {
308 $fields['Confirm']['type'] = 'check';
309 unset( $fields['Confirm']['default'] );
310 $this->preErrors
[] = [ 'ipb-confirmhideuser', 'ipb-confirmaction' ];
313 # Or if the user is trying to block themselves
314 if ( (string)$this->target
=== $this->getUser()->getName() ) {
315 $fields['Confirm']['type'] = 'check';
316 unset( $fields['Confirm']['default'] );
317 $this->preErrors
[] = [ 'ipb-blockingself', 'ipb-confirmaction' ];
322 * Add header elements like block log entries, etc.
325 protected function preText() {
326 $this->getOutput()->addModules( [ 'mediawiki.special.block', 'mediawiki.userSuggest' ] );
328 $blockCIDRLimit = $this->getConfig()->get( 'BlockCIDRLimit' );
329 $text = $this->msg( 'blockiptext', $blockCIDRLimit['IPv4'], $blockCIDRLimit['IPv6'] )->parse();
331 $otherBlockMessages = [];
332 if ( $this->target
!== null ) {
333 $targetName = $this->target
;
334 if ( $this->target
instanceof User
) {
335 $targetName = $this->target
->getName();
337 # Get other blocks, i.e. from GlobalBlocking or TorBlock extension
338 Hooks
::run( 'OtherBlockLogLink', [ &$otherBlockMessages, $targetName ] );
340 if ( count( $otherBlockMessages ) ) {
341 $s = Html
::rawElement(
344 $this->msg( 'ipb-otherblocks-header', count( $otherBlockMessages ) )->parse()
349 foreach ( $otherBlockMessages as $link ) {
350 $list .= Html
::rawElement( 'li', [], $link ) . "\n";
353 $s .= Html
::rawElement(
355 [ 'class' => 'mw-blockip-alreadyblocked' ],
367 * Add footer elements to the form
370 protected function postText() {
373 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
375 # Link to the user's contributions, if applicable
376 if ( $this->target
instanceof User
) {
377 $contribsPage = SpecialPage
::getTitleFor( 'Contributions', $this->target
->getName() );
378 $links[] = Linker
::link(
380 $this->msg( 'ipb-blocklist-contribs', $this->target
->getName() )->escaped()
384 # Link to unblock the specified user, or to a blank unblock form
385 if ( $this->target
instanceof User
) {
386 $message = $this->msg(
388 wfEscapeWikiText( $this->target
->getName() )
390 $list = SpecialPage
::getTitleFor( 'Unblock', $this->target
->getName() );
392 $message = $this->msg( 'ipb-unblock' )->parse();
393 $list = SpecialPage
::getTitleFor( 'Unblock' );
395 $links[] = Linker
::linkKnown( $list, $message, [] );
397 # Link to the block list
398 $links[] = Linker
::linkKnown(
399 SpecialPage
::getTitleFor( 'BlockList' ),
400 $this->msg( 'ipb-blocklist' )->escaped()
403 $user = $this->getUser();
405 # Link to edit the block dropdown reasons, if applicable
406 if ( $user->isAllowed( 'editinterface' ) ) {
407 $links[] = Linker
::linkKnown(
408 $this->msg( 'ipbreason-dropdown' )->inContentLanguage()->getTitle(),
409 $this->msg( 'ipb-edit-dropdown' )->escaped(),
411 [ 'action' => 'edit' ]
415 $text = Html
::rawElement(
417 [ 'class' => 'mw-ipb-conveniencelinks' ],
418 $this->getLanguage()->pipeList( $links )
421 $userTitle = self
::getTargetUserTitle( $this->target
);
423 # Get relevant extracts from the block and suppression logs, if possible
426 LogEventsList
::showLogExtract(
433 'msgKey' => [ 'blocklog-showlog', $userTitle->getText() ],
434 'showIfEmpty' => false
439 # Add suppression block entries if allowed
440 if ( $user->isAllowed( 'suppressionlog' ) ) {
441 LogEventsList
::showLogExtract(
448 'conds' => [ 'log_action' => [ 'block', 'reblock', 'unblock' ] ],
449 'msgKey' => [ 'blocklog-showsuppresslog', $userTitle->getText() ],
450 'showIfEmpty' => false
462 * Get a user page target for things like logs.
463 * This handles account and IP range targets.
464 * @param User|string $target
467 protected static function getTargetUserTitle( $target ) {
468 if ( $target instanceof User
) {
469 return $target->getUserPage();
470 } elseif ( IP
::isIPAddress( $target ) ) {
471 return Title
::makeTitleSafe( NS_USER
, $target );
478 * Determine the target of the block, and the type of target
479 * @todo Should be in Block.php?
480 * @param string $par Subpage parameter passed to setup, or data value from
482 * @param WebRequest $request Optionally try and get data from a request too
483 * @return array( User|string|null, Block::TYPE_ constant|null )
485 public static function getTargetAndType( $par, WebRequest
$request = null ) {
492 # The HTMLForm will check wpTarget first and only if it doesn't get
493 # a value use the default, which will be generated from the options
494 # below; so this has to have a higher precedence here than $par, or
495 # we could end up with different values in $this->target and the HTMLForm!
496 if ( $request instanceof WebRequest
) {
497 $target = $request->getText( 'wpTarget', null );
504 if ( $request instanceof WebRequest
) {
505 $target = $request->getText( 'ip', null );
510 if ( $request instanceof WebRequest
) {
511 $target = $request->getText( 'wpBlockAddress', null );
518 list( $target, $type ) = Block
::parseTarget( $target );
520 if ( $type !== null ) {
521 return [ $target, $type ];
525 return [ null, null ];
529 * HTMLForm field validation-callback for Target field.
531 * @param string $value
532 * @param array $alldata
533 * @param HTMLForm $form
536 public static function validateTargetField( $value, $alldata, $form ) {
537 $status = self
::validateTarget( $value, $form->getUser() );
538 if ( !$status->isOK() ) {
539 $errors = $status->getErrorsArray();
541 return call_user_func_array( [ $form, 'msg' ], $errors[0] );
548 * Validate a block target.
551 * @param string $value Block target to check
552 * @param User $user Performer of the block
555 public static function validateTarget( $value, User
$user ) {
556 global $wgBlockCIDRLimit;
558 /** @var User $target */
559 list( $target, $type ) = self
::getTargetAndType( $value );
560 $status = Status
::newGood( $target );
562 if ( $type == Block
::TYPE_USER
) {
563 if ( $target->isAnon() ) {
566 wfEscapeWikiText( $target->getName() )
570 $unblockStatus = self
::checkUnblockSelf( $target, $user );
571 if ( $unblockStatus !== true ) {
572 $status->fatal( 'badaccess', $unblockStatus );
574 } elseif ( $type == Block
::TYPE_RANGE
) {
575 list( $ip, $range ) = explode( '/', $target, 2 );
578 ( IP
::isIPv4( $ip ) && $wgBlockCIDRLimit['IPv4'] == 32 ) ||
579 ( IP
::isIPv6( $ip ) && $wgBlockCIDRLimit['IPv6'] == 128 )
581 // Range block effectively disabled
582 $status->fatal( 'range_block_disabled' );
586 ( IP
::isIPv4( $ip ) && $range > 32 ) ||
587 ( IP
::isIPv6( $ip ) && $range > 128 )
590 $status->fatal( 'ip_range_invalid' );
593 if ( IP
::isIPv4( $ip ) && $range < $wgBlockCIDRLimit['IPv4'] ) {
594 $status->fatal( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv4'] );
597 if ( IP
::isIPv6( $ip ) && $range < $wgBlockCIDRLimit['IPv6'] ) {
598 $status->fatal( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv6'] );
600 } elseif ( $type == Block
::TYPE_IP
) {
603 $status->fatal( 'badipaddress' );
610 * Given the form data, actually implement a block. This is also called from ApiBlock.
613 * @param IContextSource $context
614 * @return bool|string
616 public static function processForm( array $data, IContextSource
$context ) {
617 global $wgBlockAllowsUTEdit, $wgHideUserContribLimit, $wgContLang;
619 $performer = $context->getUser();
621 // Handled by field validator callback
622 // self::validateTargetField( $data['Target'] );
624 # This might have been a hidden field or a checkbox, so interesting data
626 $data['Confirm'] = !in_array( $data['Confirm'], [ '', '0', null, false ], true );
628 /** @var User $target */
629 list( $target, $type ) = self
::getTargetAndType( $data['Target'] );
630 if ( $type == Block
::TYPE_USER
) {
632 $target = $user->getName();
633 $userId = $user->getId();
635 # Give admins a heads-up before they go and block themselves. Much messier
636 # to do this for IPs, but it's pretty unlikely they'd ever get the 'block'
637 # permission anyway, although the code does allow for it.
638 # Note: Important to use $target instead of $data['Target']
639 # since both $data['PreviousTarget'] and $target are normalized
640 # but $data['target'] gets overridden by (non-normalized) request variable
641 # from previous request.
642 if ( $target === $performer->getName() &&
643 ( $data['PreviousTarget'] !== $target ||
!$data['Confirm'] )
645 return [ 'ipb-blockingself', 'ipb-confirmaction' ];
647 } elseif ( $type == Block
::TYPE_RANGE
) {
649 } elseif ( $type == Block
::TYPE_IP
) {
650 $target = $target->getName();
653 # This should have been caught in the form field validation
654 return [ 'badipaddress' ];
657 $expiryTime = self
::parseExpiryInput( $data['Expiry'] );
660 // an expiry time is needed
661 ( strlen( $data['Expiry'] ) == 0 ) ||
662 // can't be a larger string as 50 (it should be a time format in any way)
663 ( strlen( $data['Expiry'] ) > 50 ) ||
664 // check, if the time could be parsed
667 return [ 'ipb_expiry_invalid' ];
670 // an expiry time should be in the future, not in the
671 // past (wouldn't make any sense) - bug T123069
672 if ( $expiryTime < wfTimestampNow() ) {
673 return [ 'ipb_expiry_old' ];
676 if ( !isset( $data['DisableEmail'] ) ) {
677 $data['DisableEmail'] = false;
680 # If the user has done the form 'properly', they won't even have been given the
681 # option to suppress-block unless they have the 'hideuser' permission
682 if ( !isset( $data['HideUser'] ) ) {
683 $data['HideUser'] = false;
686 if ( $data['HideUser'] ) {
687 if ( !$performer->isAllowed( 'hideuser' ) ) {
688 # this codepath is unreachable except by a malicious user spoofing forms,
689 # or by race conditions (user has hideuser and block rights, loads block form,
690 # and loses hideuser rights before submission); so need to fail completely
691 # rather than just silently disable hiding
692 return [ 'badaccess-group0' ];
695 # Recheck params here...
696 if ( $type != Block
::TYPE_USER
) {
697 $data['HideUser'] = false; # IP users should not be hidden
698 } elseif ( !wfIsInfinity( $data['Expiry'] ) ) {
700 return [ 'ipb_expiry_temp' ];
701 } elseif ( $wgHideUserContribLimit !== false
702 && $user->getEditCount() > $wgHideUserContribLimit
704 # Typically, the user should have a handful of edits.
705 # Disallow hiding users with many edits for performance.
706 return [ [ 'ipb_hide_invalid',
707 Message
::numParam( $wgHideUserContribLimit ) ] ];
708 } elseif ( !$data['Confirm'] ) {
709 return [ 'ipb-confirmhideuser', 'ipb-confirmaction' ];
713 # Create block object.
714 $block = new Block();
715 $block->setTarget( $target );
716 $block->setBlocker( $performer );
717 # Truncate reason for whole multibyte characters
718 $block->mReason
= $wgContLang->truncate( $data['Reason'][0], 255 );
719 $block->mExpiry
= $expiryTime;
720 $block->prevents( 'createaccount', $data['CreateAccount'] );
721 $block->prevents( 'editownusertalk', ( !$wgBlockAllowsUTEdit ||
$data['DisableUTEdit'] ) );
722 $block->prevents( 'sendemail', $data['DisableEmail'] );
723 $block->isHardblock( $data['HardBlock'] );
724 $block->isAutoblocking( $data['AutoBlock'] );
725 $block->mHideName
= $data['HideUser'];
727 $reason = [ 'hookaborted' ];
728 if ( !Hooks
::run( 'BlockIp', [ &$block, &$performer, &$reason ] ) ) {
732 # Try to insert block. Is there a conflicting block?
733 $status = $block->insert();
735 # Indicates whether the user is confirming the block and is aware of
736 # the conflict (did not change the block target in the meantime)
737 $blockNotConfirmed = !$data['Confirm'] ||
( array_key_exists( 'PreviousTarget', $data )
738 && $data['PreviousTarget'] !== $target );
740 # Special case for API - bug 32434
741 $reblockNotAllowed = ( array_key_exists( 'Reblock', $data ) && !$data['Reblock'] );
743 # Show form unless the user is already aware of this...
744 if ( $blockNotConfirmed ||
$reblockNotAllowed ) {
745 return [ [ 'ipb_already_blocked', $block->getTarget() ] ];
746 # Otherwise, try to update the block...
748 # This returns direct blocks before autoblocks/rangeblocks, since we should
749 # be sure the user is blocked by now it should work for our purposes
750 $currentBlock = Block
::newFromTarget( $target );
752 if ( $block->equals( $currentBlock ) ) {
753 return [ [ 'ipb_already_blocked', $block->getTarget() ] ];
756 # If the name was hidden and the blocking user cannot hide
757 # names, then don't allow any block changes...
758 if ( $currentBlock->mHideName
&& !$performer->isAllowed( 'hideuser' ) ) {
759 return [ 'cant-see-hidden-user' ];
762 $currentBlock->isHardblock( $block->isHardblock() );
763 $currentBlock->prevents( 'createaccount', $block->prevents( 'createaccount' ) );
764 $currentBlock->mExpiry
= $block->mExpiry
;
765 $currentBlock->isAutoblocking( $block->isAutoblocking() );
766 $currentBlock->mHideName
= $block->mHideName
;
767 $currentBlock->prevents( 'sendemail', $block->prevents( 'sendemail' ) );
768 $currentBlock->prevents( 'editownusertalk', $block->prevents( 'editownusertalk' ) );
769 $currentBlock->mReason
= $block->mReason
;
771 $status = $currentBlock->update();
773 $logaction = 'reblock';
775 # Unset _deleted fields if requested
776 if ( $currentBlock->mHideName
&& !$data['HideUser'] ) {
777 RevisionDeleteUser
::unsuppressUserName( $target, $userId );
780 # If hiding/unhiding a name, this should go in the private logs
781 if ( (bool)$currentBlock->mHideName
) {
782 $data['HideUser'] = true;
786 $logaction = 'block';
789 Hooks
::run( 'BlockIpComplete', [ $block, $performer ] );
791 # Set *_deleted fields if requested
792 if ( $data['HideUser'] ) {
793 RevisionDeleteUser
::suppressUserName( $target, $userId );
796 # Can't watch a rangeblock
797 if ( $type != Block
::TYPE_RANGE
&& $data['Watch'] ) {
798 WatchAction
::doWatch(
799 Title
::makeTitle( NS_USER
, $target ),
801 User
::IGNORE_USER_RIGHTS
805 # Block constructor sanitizes certain block options on insert
806 $data['BlockEmail'] = $block->prevents( 'sendemail' );
807 $data['AutoBlock'] = $block->isAutoblocking();
809 # Prepare log parameters
811 $logParams['5::duration'] = $data['Expiry'];
812 $logParams['6::flags'] = self
::blockLogFlags( $data, $type );
814 # Make log entry, if the name is hidden, put it in the suppression log
815 $log_type = $data['HideUser'] ?
'suppress' : 'block';
816 $logEntry = new ManualLogEntry( $log_type, $logaction );
817 $logEntry->setTarget( Title
::makeTitle( NS_USER
, $target ) );
818 $logEntry->setComment( $data['Reason'][0] );
819 $logEntry->setPerformer( $performer );
820 $logEntry->setParameters( $logParams );
821 # Relate log ID to block IDs (bug 25763)
822 $blockIds = array_merge( [ $status['id'] ], $status['autoIds'] );
823 $logEntry->setRelations( [ 'ipb_id' => $blockIds ] );
824 $logId = $logEntry->insert();
825 $logEntry->publish( $logId );
832 * Get an array of suggested block durations from MediaWiki:Ipboptions
833 * @todo FIXME: This uses a rather odd syntax for the options, should it be converted
834 * to the standard "**<duration>|<displayname>" format?
835 * @param Language|null $lang The language to get the durations in, or null to use
836 * the wiki's content language
839 public static function getSuggestedDurations( $lang = null ) {
841 $msg = $lang === null
842 ?
wfMessage( 'ipboptions' )->inContentLanguage()->text()
843 : wfMessage( 'ipboptions' )->inLanguage( $lang )->text();
849 foreach ( explode( ',', $msg ) as $option ) {
850 if ( strpos( $option, ':' ) === false ) {
851 $option = "$option:$option";
854 list( $show, $value ) = explode( ':', $option );
862 * Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute
863 * ("24 May 2034", etc), into an absolute timestamp we can put into the database.
864 * @param string $expiry Whatever was typed into the form
865 * @return string Timestamp or 'infinity'
867 public static function parseExpiryInput( $expiry ) {
868 if ( wfIsInfinity( $expiry ) ) {
869 $expiry = 'infinity';
871 $expiry = strtotime( $expiry );
873 if ( $expiry < 0 ||
$expiry === false ) {
877 $expiry = wfTimestamp( TS_MW
, $expiry );
884 * Can we do an email block?
885 * @param User $user The sysop wanting to make a block
888 public static function canBlockEmail( $user ) {
889 global $wgEnableUserEmail, $wgSysopEmailBans;
891 return ( $wgEnableUserEmail && $wgSysopEmailBans && $user->isAllowed( 'blockemail' ) );
895 * bug 15810: blocked admins should not be able to block/unblock
896 * others, and probably shouldn't be able to unblock themselves
898 * @param User|int|string $user
899 * @param User $performer User doing the request
900 * @return bool|string True or error message key
902 public static function checkUnblockSelf( $user, User
$performer ) {
903 if ( is_int( $user ) ) {
904 $user = User
::newFromId( $user );
905 } elseif ( is_string( $user ) ) {
906 $user = User
::newFromName( $user );
909 if ( $performer->isBlocked() ) {
910 if ( $user instanceof User
&& $user->getId() == $performer->getId() ) {
911 # User is trying to unblock themselves
912 if ( $performer->isAllowed( 'unblockself' ) ) {
914 # User blocked themselves and is now trying to reverse it
915 } elseif ( $performer->blockedBy() === $performer->getName() ) {
918 return 'ipbnounblockself';
921 # User is trying to block/unblock someone else
930 * Return a comma-delimited list of "flags" to be passed to the log
931 * reader for this block, to provide more information in the logs
932 * @param array $data From HTMLForm data
933 * @param int $type Block::TYPE_ constant (USER, RANGE, or IP)
936 protected static function blockLogFlags( array $data, $type ) {
937 global $wgBlockAllowsUTEdit;
940 # when blocking a user the option 'anononly' is not available/has no effect
941 # -> do not write this into log
942 if ( !$data['HardBlock'] && $type != Block
::TYPE_USER
) {
943 // For grepping: message block-log-flags-anononly
944 $flags[] = 'anononly';
947 if ( $data['CreateAccount'] ) {
948 // For grepping: message block-log-flags-nocreate
949 $flags[] = 'nocreate';
952 # Same as anononly, this is not displayed when blocking an IP address
953 if ( !$data['AutoBlock'] && $type == Block
::TYPE_USER
) {
954 // For grepping: message block-log-flags-noautoblock
955 $flags[] = 'noautoblock';
958 if ( $data['DisableEmail'] ) {
959 // For grepping: message block-log-flags-noemail
960 $flags[] = 'noemail';
963 if ( $wgBlockAllowsUTEdit && $data['DisableUTEdit'] ) {
964 // For grepping: message block-log-flags-nousertalk
965 $flags[] = 'nousertalk';
968 if ( $data['HideUser'] ) {
969 // For grepping: message block-log-flags-hiddenname
970 $flags[] = 'hiddenname';
973 return implode( ',', $flags );
977 * Process the form on POST submission.
979 * @param HTMLForm $form
980 * @return bool|array True for success, false for didn't-try, array of errors on failure
982 public function onSubmit( array $data, HTMLForm
$form = null ) {
983 return self
::processForm( $data, $form->getContext() );
987 * Do something exciting on successful processing of the form, most likely to show a
988 * confirmation message
990 public function onSuccess() {
991 $out = $this->getOutput();
992 $out->setPageTitle( $this->msg( 'blockipsuccesssub' ) );
993 $out->addWikiMsg( 'blockipsuccesstext', wfEscapeWikiText( $this->target
) );
997 * Return an array of subpages beginning with $search that this special page will accept.
999 * @param string $search Prefix to search for
1000 * @param int $limit Maximum number of results to return (usually 10)
1001 * @param int $offset Number of results to skip (usually 0)
1002 * @return string[] Matching subpages
1004 public function prefixSearchSubpages( $search, $limit, $offset ) {
1005 $user = User
::newFromName( $search );
1007 // No prefix suggestion for invalid user
1010 // Autocomplete subpage as user list - public to allow caching
1011 return UserNamePrefixSearch
::search( 'public', $search, $limit, $offset );
1014 protected function getGroupName() {