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 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 = array();
50 public function __construct() {
51 parent
::__construct( 'Block', 'block' );
55 * Checks that the user can unblock themselves if they are trying to do so
58 * @throws ErrorPageError
60 protected function checkExecutePermissions( User
$user ) {
61 parent
::checkExecutePermissions( $user );
63 # bug 15810: blocked admins should have limited access here
64 $status = self
::checkUnblockSelf( $this->target
, $user );
65 if ( $status !== true ) {
66 throw new ErrorPageError( 'badaccess', $status );
71 * Handle some magic here
75 protected function setParameter( $par ) {
76 # Extract variables from the request. Try not to get into a situation where we
77 # need to extract *every* variable from the form just for processing here, but
78 # there are legitimate uses for some variables
79 $request = $this->getRequest();
80 list( $this->target
, $this->type
) = self
::getTargetAndType( $par, $request );
81 if ( $this->target
instanceof User
) {
82 # Set the 'relevant user' in the skin, so it displays links like Contributions,
83 # User logs, UserRights, etc.
84 $this->getSkin()->setRelevantUser( $this->target
);
87 list( $this->previousTarget
, /*...*/ ) =
88 Block
::parseTarget( $request->getVal( 'wpPreviousTarget' ) );
89 $this->requestedHideUser
= $request->getBool( 'wpHideUser' );
93 * Customizes the HTMLForm a bit
95 * @param HTMLForm $form
97 protected function alterForm( HTMLForm
$form ) {
98 $form->setWrapperLegendMsg( 'blockip-legend' );
99 $form->setHeaderText( '' );
100 $form->setSubmitCallback( array( __CLASS__
, 'processUIForm' ) );
101 $form->setSubmitDestructive();
103 $msg = $this->alreadyBlocked ?
'ipb-change-block' : 'ipbsubmit';
104 $form->setSubmitTextMsg( $msg );
106 # Don't need to do anything if the form has been posted
107 if ( !$this->getRequest()->wasPosted() && $this->preErrors
) {
108 $s = $form->formatErrors( $this->preErrors
);
110 $form->addHeaderText( Html
::rawElement(
112 array( 'class' => 'error' ),
120 * Get the HTMLForm descriptor array for the block form
123 protected function getFormFields() {
124 global $wgBlockAllowsUTEdit;
126 $user = $this->getUser();
128 $suggestedDurations = self
::getSuggestedDurations();
133 'label-message' => 'ipaddressorusername',
134 'id' => 'mw-bi-target',
138 'validation-callback' => array( __CLASS__
, 'validateTargetField' ),
139 'cssclass' => 'mw-autocomplete-user', // used by mediawiki.userSuggest
142 'type' => !count( $suggestedDurations ) ?
'text' : 'selectorother',
143 'label-message' => 'ipbexpiry',
145 'options' => $suggestedDurations,
146 'other' => $this->msg( 'ipbother' )->text(),
147 'default' => $this->msg( 'ipb-default-expiry' )->inContentLanguage()->text(),
150 'type' => 'selectandother',
152 'label-message' => 'ipbreason',
153 'options-message' => 'ipbreason-dropdown',
155 'CreateAccount' => array(
157 'label-message' => 'ipbcreateaccount',
162 if ( self
::canBlockEmail( $user ) ) {
163 $a['DisableEmail'] = array(
165 'label-message' => 'ipbemailban',
169 if ( $wgBlockAllowsUTEdit ) {
170 $a['DisableUTEdit'] = array(
172 'label-message' => 'ipb-disableusertalk',
177 $a['AutoBlock'] = array(
179 'label-message' => 'ipbenableautoblock',
183 # Allow some users to hide name from block log, blocklist and listusers
184 if ( $user->isAllowed( 'hideuser' ) ) {
185 $a['HideUser'] = array(
187 'label-message' => 'ipbhidename',
188 'cssclass' => 'mw-block-hideuser',
192 # Watchlist their user page? (Only if user is logged in)
193 if ( $user->isLoggedIn() ) {
196 'label-message' => 'ipbwatchuser',
200 $a['HardBlock'] = array(
202 'label-message' => 'ipb-hardblock',
206 # This is basically a copy of the Target field, but the user can't change it, so we
207 # can see if the warnings we maybe showed to the user before still apply
208 $a['PreviousTarget'] = array(
213 # We'll turn this into a checkbox if we need to
214 $a['Confirm'] = array(
217 'label-message' => 'ipb-confirm',
220 $this->maybeAlterFormDefaults( $a );
222 // Allow extensions to add more fields
223 Hooks
::run( 'SpecialBlockModifyFormFields', array( $this, &$a ) );
229 * If the user has already been blocked with similar settings, load that block
230 * and change the defaults for the form fields to match the existing settings.
231 * @param array $fields HTMLForm descriptor array
232 * @return bool Whether fields were altered (that is, whether the target is
235 protected function maybeAlterFormDefaults( &$fields ) {
236 # This will be overwritten by request data
237 $fields['Target']['default'] = (string)$this->target
;
240 $fields['PreviousTarget']['default'] = (string)$this->target
;
242 $block = Block
::newFromTarget( $this->target
);
244 if ( $block instanceof Block
&& !$block->mAuto
# The block exists and isn't an autoblock
245 && ( $this->type
!= Block
::TYPE_RANGE
# The block isn't a rangeblock
246 ||
$block->getTarget() == $this->target
) # or if it is, the range is what we're about to block
248 $fields['HardBlock']['default'] = $block->isHardblock();
249 $fields['CreateAccount']['default'] = $block->prevents( 'createaccount' );
250 $fields['AutoBlock']['default'] = $block->isAutoblocking();
252 if ( isset( $fields['DisableEmail'] ) ) {
253 $fields['DisableEmail']['default'] = $block->prevents( 'sendemail' );
256 if ( isset( $fields['HideUser'] ) ) {
257 $fields['HideUser']['default'] = $block->mHideName
;
260 if ( isset( $fields['DisableUTEdit'] ) ) {
261 $fields['DisableUTEdit']['default'] = $block->prevents( 'editownusertalk' );
264 // If the username was hidden (ipb_deleted == 1), don't show the reason
265 // unless this user also has rights to hideuser: Bug 35839
266 if ( !$block->mHideName ||
$this->getUser()->isAllowed( 'hideuser' ) ) {
267 $fields['Reason']['default'] = $block->mReason
;
269 $fields['Reason']['default'] = '';
272 if ( $this->getRequest()->wasPosted() ) {
273 # Ok, so we got a POST submission asking us to reblock a user. So show the
274 # confirm checkbox; the user will only see it if they haven't previously
275 $fields['Confirm']['type'] = 'check';
277 # We got a target, but it wasn't a POST request, so the user must have gone
278 # to a link like [[Special:Block/User]]. We don't need to show the checkbox
279 # as long as they go ahead and block *that* user
280 $fields['Confirm']['default'] = 1;
283 if ( $block->mExpiry
== 'infinity' ) {
284 $fields['Expiry']['default'] = 'infinite';
286 $fields['Expiry']['default'] = wfTimestamp( TS_RFC2822
, $block->mExpiry
);
289 $this->alreadyBlocked
= true;
290 $this->preErrors
[] = array( 'ipb-needreblock', wfEscapeWikiText( (string)$block->getTarget() ) );
293 # We always need confirmation to do HideUser
294 if ( $this->requestedHideUser
) {
295 $fields['Confirm']['type'] = 'check';
296 unset( $fields['Confirm']['default'] );
297 $this->preErrors
[] = array( 'ipb-confirmhideuser', 'ipb-confirmaction' );
300 # Or if the user is trying to block themselves
301 if ( (string)$this->target
=== $this->getUser()->getName() ) {
302 $fields['Confirm']['type'] = 'check';
303 unset( $fields['Confirm']['default'] );
304 $this->preErrors
[] = array( 'ipb-blockingself', 'ipb-confirmaction' );
309 * Add header elements like block log entries, etc.
312 protected function preText() {
313 $this->getOutput()->addModules( array( 'mediawiki.special.block', 'mediawiki.userSuggest' ) );
315 $text = $this->msg( 'blockiptext' )->parse();
317 $otherBlockMessages = array();
318 if ( $this->target
!== null ) {
319 # Get other blocks, i.e. from GlobalBlocking or TorBlock extension
320 Hooks
::run( 'OtherBlockLogLink', array( &$otherBlockMessages, $this->target
) );
322 if ( count( $otherBlockMessages ) ) {
323 $s = Html
::rawElement(
326 $this->msg( 'ipb-otherblocks-header', count( $otherBlockMessages ) )->parse()
331 foreach ( $otherBlockMessages as $link ) {
332 $list .= Html
::rawElement( 'li', array(), $link ) . "\n";
335 $s .= Html
::rawElement(
337 array( 'class' => 'mw-blockip-alreadyblocked' ),
349 * Add footer elements to the form
352 protected function postText() {
355 # Link to the user's contributions, if applicable
356 if ( $this->target
instanceof User
) {
357 $contribsPage = SpecialPage
::getTitleFor( 'Contributions', $this->target
->getName() );
358 $links[] = Linker
::link(
360 $this->msg( 'ipb-blocklist-contribs', $this->target
->getName() )->escaped()
364 # Link to unblock the specified user, or to a blank unblock form
365 if ( $this->target
instanceof User
) {
366 $message = $this->msg(
368 wfEscapeWikiText( $this->target
->getName() )
370 $list = SpecialPage
::getTitleFor( 'Unblock', $this->target
->getName() );
372 $message = $this->msg( 'ipb-unblock' )->parse();
373 $list = SpecialPage
::getTitleFor( 'Unblock' );
375 $links[] = Linker
::linkKnown( $list, $message, array() );
377 # Link to the block list
378 $links[] = Linker
::linkKnown(
379 SpecialPage
::getTitleFor( 'BlockList' ),
380 $this->msg( 'ipb-blocklist' )->escaped()
383 $user = $this->getUser();
385 # Link to edit the block dropdown reasons, if applicable
386 if ( $user->isAllowed( 'editinterface' ) ) {
387 $links[] = Linker
::link(
388 Title
::makeTitle( NS_MEDIAWIKI
, 'Ipbreason-dropdown' ),
389 $this->msg( 'ipb-edit-dropdown' )->escaped(),
391 array( 'action' => 'edit' )
395 $text = Html
::rawElement(
397 array( 'class' => 'mw-ipb-conveniencelinks' ),
398 $this->getLanguage()->pipeList( $links )
401 $userTitle = self
::getTargetUserTitle( $this->target
);
403 # Get relevant extracts from the block and suppression logs, if possible
406 LogEventsList
::showLogExtract(
413 'msgKey' => array( 'blocklog-showlog', $userTitle->getText() ),
414 'showIfEmpty' => false
419 # Add suppression block entries if allowed
420 if ( $user->isAllowed( 'suppressionlog' ) ) {
421 LogEventsList
::showLogExtract(
428 'conds' => array( 'log_action' => array( 'block', 'reblock', 'unblock' ) ),
429 'msgKey' => array( 'blocklog-showsuppresslog', $userTitle->getText() ),
430 'showIfEmpty' => false
442 * Get a user page target for things like logs.
443 * This handles account and IP range targets.
444 * @param User|string $target
447 protected static function getTargetUserTitle( $target ) {
448 if ( $target instanceof User
) {
449 return $target->getUserPage();
450 } elseif ( IP
::isIPAddress( $target ) ) {
451 return Title
::makeTitleSafe( NS_USER
, $target );
458 * Determine the target of the block, and the type of target
459 * @todo Should be in Block.php?
460 * @param string $par Subpage parameter passed to setup, or data value from
462 * @param WebRequest $request Optionally try and get data from a request too
463 * @return array( User|string|null, Block::TYPE_ constant|null )
465 public static function getTargetAndType( $par, WebRequest
$request = null ) {
472 # The HTMLForm will check wpTarget first and only if it doesn't get
473 # a value use the default, which will be generated from the options
474 # below; so this has to have a higher precedence here than $par, or
475 # we could end up with different values in $this->target and the HTMLForm!
476 if ( $request instanceof WebRequest
) {
477 $target = $request->getText( 'wpTarget', null );
484 if ( $request instanceof WebRequest
) {
485 $target = $request->getText( 'ip', null );
490 if ( $request instanceof WebRequest
) {
491 $target = $request->getText( 'wpBlockAddress', null );
498 list( $target, $type ) = Block
::parseTarget( $target );
500 if ( $type !== null ) {
501 return array( $target, $type );
505 return array( null, null );
509 * HTMLForm field validation-callback for Target field.
511 * @param string $value
512 * @param array $alldata
513 * @param HTMLForm $form
516 public static function validateTargetField( $value, $alldata, $form ) {
517 $status = self
::validateTarget( $value, $form->getUser() );
518 if ( !$status->isOK() ) {
519 $errors = $status->getErrorsArray();
521 return call_user_func_array( array( $form, 'msg' ), $errors[0] );
528 * Validate a block target.
531 * @param string $value Block target to check
532 * @param User $user Performer of the block
535 public static function validateTarget( $value, User
$user ) {
536 global $wgBlockCIDRLimit;
538 /** @var User $target */
539 list( $target, $type ) = self
::getTargetAndType( $value );
540 $status = Status
::newGood( $target );
542 if ( $type == Block
::TYPE_USER
) {
543 if ( $target->isAnon() ) {
546 wfEscapeWikiText( $target->getName() )
550 $unblockStatus = self
::checkUnblockSelf( $target, $user );
551 if ( $unblockStatus !== true ) {
552 $status->fatal( 'badaccess', $unblockStatus );
554 } elseif ( $type == Block
::TYPE_RANGE
) {
555 list( $ip, $range ) = explode( '/', $target, 2 );
558 ( IP
::isIPv4( $ip ) && $wgBlockCIDRLimit['IPv4'] == 32 ) ||
559 ( IP
::isIPv6( $ip ) && $wgBlockCIDRLimit['IPv6'] == 128 )
561 // Range block effectively disabled
562 $status->fatal( 'range_block_disabled' );
566 ( IP
::isIPv4( $ip ) && $range > 32 ) ||
567 ( IP
::isIPv6( $ip ) && $range > 128 )
570 $status->fatal( 'ip_range_invalid' );
573 if ( IP
::isIPv4( $ip ) && $range < $wgBlockCIDRLimit['IPv4'] ) {
574 $status->fatal( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv4'] );
577 if ( IP
::isIPv6( $ip ) && $range < $wgBlockCIDRLimit['IPv6'] ) {
578 $status->fatal( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv6'] );
580 } elseif ( $type == Block
::TYPE_IP
) {
583 $status->fatal( 'badipaddress' );
590 * Submit callback for an HTMLForm object, will simply pass
592 * @param HTMLForm $form
593 * @return bool|string
595 public static function processUIForm( array $data, HTMLForm
$form ) {
596 return self
::processForm( $data, $form->getContext() );
600 * Given the form data, actually implement a block
602 * @param IContextSource $context
603 * @return bool|string
605 public static function processForm( array $data, IContextSource
$context ) {
606 global $wgBlockAllowsUTEdit, $wgHideUserContribLimit, $wgContLang;
608 $performer = $context->getUser();
610 // Handled by field validator callback
611 // self::validateTargetField( $data['Target'] );
613 # This might have been a hidden field or a checkbox, so interesting data
615 $data['Confirm'] = !in_array( $data['Confirm'], array( '', '0', null, false ), true );
617 /** @var User $target */
618 list( $target, $type ) = self
::getTargetAndType( $data['Target'] );
619 if ( $type == Block
::TYPE_USER
) {
621 $target = $user->getName();
622 $userId = $user->getId();
624 # Give admins a heads-up before they go and block themselves. Much messier
625 # to do this for IPs, but it's pretty unlikely they'd ever get the 'block'
626 # permission anyway, although the code does allow for it.
627 # Note: Important to use $target instead of $data['Target']
628 # since both $data['PreviousTarget'] and $target are normalized
629 # but $data['target'] gets overridden by (non-normalized) request variable
630 # from previous request.
631 if ( $target === $performer->getName() &&
632 ( $data['PreviousTarget'] !== $target ||
!$data['Confirm'] )
634 return array( 'ipb-blockingself', 'ipb-confirmaction' );
636 } elseif ( $type == Block
::TYPE_RANGE
) {
638 } elseif ( $type == Block
::TYPE_IP
) {
639 $target = $target->getName();
642 # This should have been caught in the form field validation
643 return array( 'badipaddress' );
646 if ( ( strlen( $data['Expiry'] ) == 0 ) ||
( strlen( $data['Expiry'] ) > 50 )
647 ||
!self
::parseExpiryInput( $data['Expiry'] )
649 return array( 'ipb_expiry_invalid' );
652 if ( !isset( $data['DisableEmail'] ) ) {
653 $data['DisableEmail'] = false;
656 # If the user has done the form 'properly', they won't even have been given the
657 # option to suppress-block unless they have the 'hideuser' permission
658 if ( !isset( $data['HideUser'] ) ) {
659 $data['HideUser'] = false;
662 if ( $data['HideUser'] ) {
663 if ( !$performer->isAllowed( 'hideuser' ) ) {
664 # this codepath is unreachable except by a malicious user spoofing forms,
665 # or by race conditions (user has oversight and sysop, loads block form,
666 # and is de-oversighted before submission); so need to fail completely
667 # rather than just silently disable hiding
668 return array( 'badaccess-group0' );
671 # Recheck params here...
672 if ( $type != Block
::TYPE_USER
) {
673 $data['HideUser'] = false; # IP users should not be hidden
674 } elseif ( !in_array( $data['Expiry'], array( 'infinite', 'infinity', 'indefinite' ) ) ) {
676 return array( 'ipb_expiry_temp' );
677 } elseif ( $wgHideUserContribLimit !== false
678 && $user->getEditCount() > $wgHideUserContribLimit
680 # Typically, the user should have a handful of edits.
681 # Disallow hiding users with many edits for performance.
682 return array( array( 'ipb_hide_invalid',
683 Message
::numParam( $wgHideUserContribLimit ) ) );
684 } elseif ( !$data['Confirm'] ) {
685 return array( 'ipb-confirmhideuser', 'ipb-confirmaction' );
689 # Create block object.
690 $block = new Block();
691 $block->setTarget( $target );
692 $block->setBlocker( $performer );
693 # Truncate reason for whole multibyte characters
694 $block->mReason
= $wgContLang->truncate( $data['Reason'][0], 255 );
695 $block->mExpiry
= self
::parseExpiryInput( $data['Expiry'] );
696 $block->prevents( 'createaccount', $data['CreateAccount'] );
697 $block->prevents( 'editownusertalk', ( !$wgBlockAllowsUTEdit ||
$data['DisableUTEdit'] ) );
698 $block->prevents( 'sendemail', $data['DisableEmail'] );
699 $block->isHardblock( $data['HardBlock'] );
700 $block->isAutoblocking( $data['AutoBlock'] );
701 $block->mHideName
= $data['HideUser'];
703 $reason = array( 'hookaborted' );
704 if ( !Hooks
::run( 'BlockIp', array( &$block, &$performer, &$reason ) ) ) {
708 # Try to insert block. Is there a conflicting block?
709 $status = $block->insert();
711 # Indicates whether the user is confirming the block and is aware of
712 # the conflict (did not change the block target in the meantime)
713 $blockNotConfirmed = !$data['Confirm'] ||
( array_key_exists( 'PreviousTarget', $data )
714 && $data['PreviousTarget'] !== $target );
716 # Special case for API - bug 32434
717 $reblockNotAllowed = ( array_key_exists( 'Reblock', $data ) && !$data['Reblock'] );
719 # Show form unless the user is already aware of this...
720 if ( $blockNotConfirmed ||
$reblockNotAllowed ) {
721 return array( array( 'ipb_already_blocked', $block->getTarget() ) );
722 # Otherwise, try to update the block...
724 # This returns direct blocks before autoblocks/rangeblocks, since we should
725 # be sure the user is blocked by now it should work for our purposes
726 $currentBlock = Block
::newFromTarget( $target );
728 if ( $block->equals( $currentBlock ) ) {
729 return array( array( 'ipb_already_blocked', $block->getTarget() ) );
732 # If the name was hidden and the blocking user cannot hide
733 # names, then don't allow any block changes...
734 if ( $currentBlock->mHideName
&& !$performer->isAllowed( 'hideuser' ) ) {
735 return array( 'cant-see-hidden-user' );
738 $currentBlock->isHardblock( $block->isHardblock() );
739 $currentBlock->prevents( 'createaccount', $block->prevents( 'createaccount' ) );
740 $currentBlock->mExpiry
= $block->mExpiry
;
741 $currentBlock->isAutoblocking( $block->isAutoblocking() );
742 $currentBlock->mHideName
= $block->mHideName
;
743 $currentBlock->prevents( 'sendemail', $block->prevents( 'sendemail' ) );
744 $currentBlock->prevents( 'editownusertalk', $block->prevents( 'editownusertalk' ) );
745 $currentBlock->mReason
= $block->mReason
;
747 $status = $currentBlock->update();
749 $logaction = 'reblock';
751 # Unset _deleted fields if requested
752 if ( $currentBlock->mHideName
&& !$data['HideUser'] ) {
753 RevisionDeleteUser
::unsuppressUserName( $target, $userId );
756 # If hiding/unhiding a name, this should go in the private logs
757 if ( (bool)$currentBlock->mHideName
) {
758 $data['HideUser'] = true;
762 $logaction = 'block';
765 Hooks
::run( 'BlockIpComplete', array( $block, $performer ) );
767 # Set *_deleted fields if requested
768 if ( $data['HideUser'] ) {
769 RevisionDeleteUser
::suppressUserName( $target, $userId );
772 # Can't watch a rangeblock
773 if ( $type != Block
::TYPE_RANGE
&& $data['Watch'] ) {
774 WatchAction
::doWatch(
775 Title
::makeTitle( NS_USER
, $target ),
777 WatchedItem
::IGNORE_USER_RIGHTS
781 # Block constructor sanitizes certain block options on insert
782 $data['BlockEmail'] = $block->prevents( 'sendemail' );
783 $data['AutoBlock'] = $block->isAutoblocking();
785 # Prepare log parameters
786 $logParams = array();
787 $logParams[] = $data['Expiry'];
788 $logParams[] = self
::blockLogFlags( $data, $type );
790 # Make log entry, if the name is hidden, put it in the oversight log
791 $log_type = $data['HideUser'] ?
'suppress' : 'block';
792 $log = new LogPage( $log_type );
793 $log_id = $log->addEntry(
795 Title
::makeTitle( NS_USER
, $target ),
800 # Relate log ID to block IDs (bug 25763)
801 $blockIds = array_merge( array( $status['id'] ), $status['autoIds'] );
802 $log->addRelations( 'ipb_id', $blockIds, $log_id );
809 * Get an array of suggested block durations from MediaWiki:Ipboptions
810 * @todo FIXME: This uses a rather odd syntax for the options, should it be converted
811 * to the standard "**<duration>|<displayname>" format?
812 * @param Language|null $lang The language to get the durations in, or null to use
813 * the wiki's content language
816 public static function getSuggestedDurations( $lang = null ) {
818 $msg = $lang === null
819 ?
wfMessage( 'ipboptions' )->inContentLanguage()->text()
820 : wfMessage( 'ipboptions' )->inLanguage( $lang )->text();
826 foreach ( explode( ',', $msg ) as $option ) {
827 if ( strpos( $option, ':' ) === false ) {
828 $option = "$option:$option";
831 list( $show, $value ) = explode( ':', $option );
839 * Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute
840 * ("24 May 2034", etc), into an absolute timestamp we can put into the database.
841 * @param string $expiry Whatever was typed into the form
842 * @return string Timestamp or "infinity" string for the DB implementation
844 public static function parseExpiryInput( $expiry ) {
846 if ( $infinity == null ) {
847 $infinity = wfGetDB( DB_SLAVE
)->getInfinity();
850 if ( $expiry == 'infinite' ||
$expiry == 'indefinite' ) {
853 $expiry = strtotime( $expiry );
855 if ( $expiry < 0 ||
$expiry === false ) {
859 $expiry = wfTimestamp( TS_MW
, $expiry );
866 * Can we do an email block?
867 * @param User $user The sysop wanting to make a block
870 public static function canBlockEmail( $user ) {
871 global $wgEnableUserEmail, $wgSysopEmailBans;
873 return ( $wgEnableUserEmail && $wgSysopEmailBans && $user->isAllowed( 'blockemail' ) );
877 * bug 15810: blocked admins should not be able to block/unblock
878 * others, and probably shouldn't be able to unblock themselves
880 * @param User|int|string $user
881 * @param User $performer User doing the request
882 * @return bool|string True or error message key
884 public static function checkUnblockSelf( $user, User
$performer ) {
885 if ( is_int( $user ) ) {
886 $user = User
::newFromId( $user );
887 } elseif ( is_string( $user ) ) {
888 $user = User
::newFromName( $user );
891 if ( $performer->isBlocked() ) {
892 if ( $user instanceof User
&& $user->getId() == $performer->getId() ) {
893 # User is trying to unblock themselves
894 if ( $performer->isAllowed( 'unblockself' ) ) {
896 # User blocked themselves and is now trying to reverse it
897 } elseif ( $performer->blockedBy() === $performer->getName() ) {
900 return 'ipbnounblockself';
903 # User is trying to block/unblock someone else
912 * Return a comma-delimited list of "flags" to be passed to the log
913 * reader for this block, to provide more information in the logs
914 * @param array $data From HTMLForm data
915 * @param int $type Block::TYPE_ constant (USER, RANGE, or IP)
918 protected static function blockLogFlags( array $data, $type ) {
919 global $wgBlockAllowsUTEdit;
922 # when blocking a user the option 'anononly' is not available/has no effect
923 # -> do not write this into log
924 if ( !$data['HardBlock'] && $type != Block
::TYPE_USER
) {
925 // For grepping: message block-log-flags-anononly
926 $flags[] = 'anononly';
929 if ( $data['CreateAccount'] ) {
930 // For grepping: message block-log-flags-nocreate
931 $flags[] = 'nocreate';
934 # Same as anononly, this is not displayed when blocking an IP address
935 if ( !$data['AutoBlock'] && $type == Block
::TYPE_USER
) {
936 // For grepping: message block-log-flags-noautoblock
937 $flags[] = 'noautoblock';
940 if ( $data['DisableEmail'] ) {
941 // For grepping: message block-log-flags-noemail
942 $flags[] = 'noemail';
945 if ( $wgBlockAllowsUTEdit && $data['DisableUTEdit'] ) {
946 // For grepping: message block-log-flags-nousertalk
947 $flags[] = 'nousertalk';
950 if ( $data['HideUser'] ) {
951 // For grepping: message block-log-flags-hiddenname
952 $flags[] = 'hiddenname';
955 return implode( ',', $flags );
959 * Process the form on POST submission.
961 * @return bool|array True for success, false for didn't-try, array of errors on failure
963 public function onSubmit( array $data ) {
964 // This isn't used since we need that HTMLForm that's passed in the
965 // second parameter. See alterForm for the real function
969 * Do something exciting on successful processing of the form, most likely to show a
970 * confirmation message
972 public function onSuccess() {
973 $out = $this->getOutput();
974 $out->setPageTitle( $this->msg( 'blockipsuccesssub' ) );
975 $out->addWikiMsg( 'blockipsuccesstext', wfEscapeWikiText( $this->target
) );
978 protected function getGroupName() {