07214af4fa43e834da99cdc4b8fdc96a2979bc18
[lhc/web/wiklou.git] / includes / specials / SpecialBlock.php
1 <?php
2 /**
3 * Implements Special:Block
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 use MediaWiki\Block\DatabaseBlock;
25 use MediaWiki\Block\Restriction\PageRestriction;
26 use MediaWiki\Block\Restriction\NamespaceRestriction;
27 use MediaWiki\MediaWikiServices;
28
29 /**
30 * A special page that allows users with 'block' right to block users from
31 * editing pages and other actions
32 *
33 * @ingroup SpecialPage
34 */
35 class SpecialBlock extends FormSpecialPage {
36 /** @var User|string|null User to be blocked, as passed either by parameter (url?wpTarget=Foo)
37 * or as subpage (Special:Block/Foo)
38 */
39 protected $target;
40
41 /** @var int DatabaseBlock::TYPE_ constant */
42 protected $type;
43
44 /** @var User|string The previous block target */
45 protected $previousTarget;
46
47 /** @var bool Whether the previous submission of the form asked for HideUser */
48 protected $requestedHideUser;
49
50 /** @var bool */
51 protected $alreadyBlocked;
52
53 /** @var array */
54 protected $preErrors = [];
55
56 public function __construct() {
57 parent::__construct( 'Block', 'block' );
58 }
59
60 public function doesWrites() {
61 return true;
62 }
63
64 /**
65 * Checks that the user can unblock themselves if they are trying to do so
66 *
67 * @param User $user
68 * @throws ErrorPageError
69 */
70 protected function checkExecutePermissions( User $user ) {
71 parent::checkExecutePermissions( $user );
72 # T17810: blocked admins should have limited access here
73 $status = self::checkUnblockSelf( $this->target, $user );
74 if ( $status !== true ) {
75 throw new ErrorPageError( 'badaccess', $status );
76 }
77 }
78
79 /**
80 * We allow certain special cases where user is blocked
81 *
82 * @return bool
83 */
84 public function requiresUnblock() {
85 return false;
86 }
87
88 /**
89 * Handle some magic here
90 *
91 * @param string $par
92 */
93 protected function setParameter( $par ) {
94 # Extract variables from the request. Try not to get into a situation where we
95 # need to extract *every* variable from the form just for processing here, but
96 # there are legitimate uses for some variables
97 $request = $this->getRequest();
98 list( $this->target, $this->type ) = self::getTargetAndType( $par, $request );
99 if ( $this->target instanceof User ) {
100 # Set the 'relevant user' in the skin, so it displays links like Contributions,
101 # User logs, UserRights, etc.
102 $this->getSkin()->setRelevantUser( $this->target );
103 }
104
105 list( $this->previousTarget, /*...*/ ) =
106 DatabaseBlock::parseTarget( $request->getVal( 'wpPreviousTarget' ) );
107 $this->requestedHideUser = $request->getBool( 'wpHideUser' );
108 }
109
110 /**
111 * Customizes the HTMLForm a bit
112 *
113 * @param HTMLForm $form
114 */
115 protected function alterForm( HTMLForm $form ) {
116 $form->setHeaderText( '' );
117 $form->setSubmitDestructive();
118
119 $msg = $this->alreadyBlocked ? 'ipb-change-block' : 'ipbsubmit';
120 $form->setSubmitTextMsg( $msg );
121
122 $this->addHelpLink( 'Help:Blocking users' );
123
124 # Don't need to do anything if the form has been posted
125 if ( !$this->getRequest()->wasPosted() && $this->preErrors ) {
126 $s = $form->formatErrors( $this->preErrors );
127 if ( $s ) {
128 $form->addHeaderText( Html::rawElement(
129 'div',
130 [ 'class' => 'error' ],
131 $s
132 ) );
133 }
134 }
135 }
136
137 protected function getDisplayFormat() {
138 return 'ooui';
139 }
140
141 /**
142 * Get the HTMLForm descriptor array for the block form
143 * @return array
144 */
145 protected function getFormFields() {
146 $conf = $this->getConfig();
147 $enablePartialBlocks = $conf->get( 'EnablePartialBlocks' );
148 $blockAllowsUTEdit = $conf->get( 'BlockAllowsUTEdit' );
149
150 $this->getOutput()->enableOOUI();
151
152 $user = $this->getUser();
153
154 $suggestedDurations = self::getSuggestedDurations();
155
156 $a = [];
157
158 $a['Target'] = [
159 'type' => 'user',
160 'ipallowed' => true,
161 'iprange' => true,
162 'id' => 'mw-bi-target',
163 'size' => '45',
164 'autofocus' => true,
165 'required' => true,
166 'validation-callback' => [ __CLASS__, 'validateTargetField' ],
167 'section' => 'target',
168 ];
169
170 $a['Editing'] = [
171 'type' => 'check',
172 'label-message' => 'block-prevent-edit',
173 'default' => true,
174 'section' => 'actions',
175 'disabled' => $enablePartialBlocks ? false : true,
176 ];
177
178 if ( $enablePartialBlocks ) {
179 $a['EditingRestriction'] = [
180 'type' => 'radio',
181 'cssclass' => 'mw-block-editing-restriction',
182 'options' => [
183 $this->msg( 'ipb-sitewide' )->escaped() .
184 new \OOUI\LabelWidget( [
185 'classes' => [ 'oo-ui-inline-help' ],
186 'label' => $this->msg( 'ipb-sitewide-help' )->text(),
187 ] ) => 'sitewide',
188 $this->msg( 'ipb-partial' )->escaped() .
189 new \OOUI\LabelWidget( [
190 'classes' => [ 'oo-ui-inline-help' ],
191 'label' => $this->msg( 'ipb-partial-help' )->text(),
192 ] ) => 'partial',
193 ],
194 'section' => 'actions',
195 ];
196 $a['PageRestrictions'] = [
197 'type' => 'titlesmultiselect',
198 'label' => $this->msg( 'ipb-pages-label' )->text(),
199 'exists' => true,
200 'max' => 10,
201 'cssclass' => 'mw-block-restriction',
202 'showMissing' => false,
203 'excludeDynamicNamespaces' => true,
204 'input' => [
205 'autocomplete' => false
206 ],
207 'section' => 'actions',
208 ];
209 $a['NamespaceRestrictions'] = [
210 'type' => 'namespacesmultiselect',
211 'label' => $this->msg( 'ipb-namespaces-label' )->text(),
212 'exists' => true,
213 'cssclass' => 'mw-block-restriction',
214 'input' => [
215 'autocomplete' => false
216 ],
217 'section' => 'actions',
218 ];
219 }
220
221 $a['CreateAccount'] = [
222 'type' => 'check',
223 'label-message' => 'ipbcreateaccount',
224 'default' => true,
225 'section' => 'actions',
226 ];
227
228 if ( self::canBlockEmail( $user ) ) {
229 $a['DisableEmail'] = [
230 'type' => 'check',
231 'label-message' => 'ipbemailban',
232 'section' => 'actions',
233 ];
234 }
235
236 if ( $blockAllowsUTEdit ) {
237 $a['DisableUTEdit'] = [
238 'type' => 'check',
239 'label-message' => 'ipb-disableusertalk',
240 'default' => false,
241 'section' => 'actions',
242 ];
243 }
244
245 $a['Expiry'] = [
246 'type' => 'expiry',
247 'required' => true,
248 'options' => $suggestedDurations,
249 'default' => $this->msg( 'ipb-default-expiry' )->inContentLanguage()->text(),
250 'section' => 'expiry',
251 ];
252
253 $a['Reason'] = [
254 'type' => 'selectandother',
255 // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
256 // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
257 // Unicode codepoints.
258 'maxlength' => CommentStore::COMMENT_CHARACTER_LIMIT,
259 'maxlength-unit' => 'codepoints',
260 'options-message' => 'ipbreason-dropdown',
261 'section' => 'reason',
262 ];
263
264 $a['AutoBlock'] = [
265 'type' => 'check',
266 'label-message' => 'ipbenableautoblock',
267 'default' => true,
268 'section' => 'options',
269 ];
270
271 # Allow some users to hide name from block log, blocklist and listusers
272 if ( $user->isAllowed( 'hideuser' ) ) {
273 $a['HideUser'] = [
274 'type' => 'check',
275 'label-message' => 'ipbhidename',
276 'cssclass' => 'mw-block-hideuser',
277 'section' => 'options',
278 ];
279 }
280
281 # Watchlist their user page? (Only if user is logged in)
282 if ( $user->isLoggedIn() ) {
283 $a['Watch'] = [
284 'type' => 'check',
285 'label-message' => 'ipbwatchuser',
286 'section' => 'options',
287 ];
288 }
289
290 $a['HardBlock'] = [
291 'type' => 'check',
292 'label-message' => 'ipb-hardblock',
293 'default' => false,
294 'section' => 'options',
295 ];
296
297 # This is basically a copy of the Target field, but the user can't change it, so we
298 # can see if the warnings we maybe showed to the user before still apply
299 $a['PreviousTarget'] = [
300 'type' => 'hidden',
301 'default' => false,
302 ];
303
304 # We'll turn this into a checkbox if we need to
305 $a['Confirm'] = [
306 'type' => 'hidden',
307 'default' => '',
308 'label-message' => 'ipb-confirm',
309 'cssclass' => 'mw-block-confirm',
310 ];
311
312 $this->maybeAlterFormDefaults( $a );
313
314 // Allow extensions to add more fields
315 Hooks::run( 'SpecialBlockModifyFormFields', [ $this, &$a ] );
316
317 return $a;
318 }
319
320 /**
321 * If the user has already been blocked with similar settings, load that block
322 * and change the defaults for the form fields to match the existing settings.
323 * @param array &$fields HTMLForm descriptor array
324 */
325 protected function maybeAlterFormDefaults( &$fields ) {
326 # This will be overwritten by request data
327 $fields['Target']['default'] = (string)$this->target;
328
329 if ( $this->target ) {
330 $status = self::validateTarget( $this->target, $this->getUser() );
331 if ( !$status->isOK() ) {
332 $errors = $status->getErrorsArray();
333 $this->preErrors = array_merge( $this->preErrors, $errors );
334 }
335 }
336
337 # This won't be
338 $fields['PreviousTarget']['default'] = (string)$this->target;
339
340 $block = DatabaseBlock::newFromTarget( $this->target );
341
342 // Populate fields if there is a block that is not an autoblock; if it is a range
343 // block, only populate the fields if the range is the same as $this->target
344 if ( $block instanceof DatabaseBlock && $block->getType() !== DatabaseBlock::TYPE_AUTO
345 && ( $this->type != DatabaseBlock::TYPE_RANGE
346 || $block->getTarget() == $this->target )
347 ) {
348 $fields['HardBlock']['default'] = $block->isHardblock();
349 $fields['CreateAccount']['default'] = $block->isCreateAccountBlocked();
350 $fields['AutoBlock']['default'] = $block->isAutoblocking();
351
352 if ( isset( $fields['DisableEmail'] ) ) {
353 $fields['DisableEmail']['default'] = $block->isEmailBlocked();
354 }
355
356 if ( isset( $fields['HideUser'] ) ) {
357 $fields['HideUser']['default'] = $block->getHideName();
358 }
359
360 if ( isset( $fields['DisableUTEdit'] ) ) {
361 $fields['DisableUTEdit']['default'] = !$block->isUsertalkEditAllowed();
362 }
363
364 // If the username was hidden (ipb_deleted == 1), don't show the reason
365 // unless this user also has rights to hideuser: T37839
366 if ( !$block->getHideName() || $this->getUser()->isAllowed( 'hideuser' ) ) {
367 $fields['Reason']['default'] = $block->getReason();
368 } else {
369 $fields['Reason']['default'] = '';
370 }
371
372 if ( $this->getRequest()->wasPosted() ) {
373 # Ok, so we got a POST submission asking us to reblock a user. So show the
374 # confirm checkbox; the user will only see it if they haven't previously
375 $fields['Confirm']['type'] = 'check';
376 } else {
377 # We got a target, but it wasn't a POST request, so the user must have gone
378 # to a link like [[Special:Block/User]]. We don't need to show the checkbox
379 # as long as they go ahead and block *that* user
380 $fields['Confirm']['default'] = 1;
381 }
382
383 if ( $block->getExpiry() == 'infinity' ) {
384 $fields['Expiry']['default'] = 'infinite';
385 } else {
386 $fields['Expiry']['default'] = wfTimestamp( TS_RFC2822, $block->getExpiry() );
387 }
388
389 $this->alreadyBlocked = true;
390 $this->preErrors[] = [ 'ipb-needreblock', wfEscapeWikiText( (string)$block->getTarget() ) ];
391 }
392
393 if ( $this->alreadyBlocked || $this->getRequest()->wasPosted()
394 || $this->getRequest()->getCheck( 'wpCreateAccount' )
395 ) {
396 $this->getOutput()->addJsConfigVars( 'wgCreateAccountDirty', true );
397 }
398
399 # We always need confirmation to do HideUser
400 if ( $this->requestedHideUser ) {
401 $fields['Confirm']['type'] = 'check';
402 unset( $fields['Confirm']['default'] );
403 $this->preErrors[] = [ 'ipb-confirmhideuser', 'ipb-confirmaction' ];
404 }
405
406 # Or if the user is trying to block themselves
407 if ( (string)$this->target === $this->getUser()->getName() ) {
408 $fields['Confirm']['type'] = 'check';
409 unset( $fields['Confirm']['default'] );
410 $this->preErrors[] = [ 'ipb-blockingself', 'ipb-confirmaction' ];
411 }
412
413 if ( $this->getConfig()->get( 'EnablePartialBlocks' ) ) {
414 if ( $block instanceof DatabaseBlock && !$block->isSitewide() ) {
415 $fields['EditingRestriction']['default'] = 'partial';
416 } else {
417 $fields['EditingRestriction']['default'] = 'sitewide';
418 }
419
420 if ( $block instanceof DatabaseBlock ) {
421 $pageRestrictions = [];
422 $namespaceRestrictions = [];
423 foreach ( $block->getRestrictions() as $restriction ) {
424 switch ( $restriction->getType() ) {
425 case PageRestriction::TYPE:
426 /** @var PageRestriction $restriction */
427 '@phan-var PageRestriction $restriction';
428 if ( $restriction->getTitle() ) {
429 $pageRestrictions[] = $restriction->getTitle()->getPrefixedText();
430 }
431 break;
432 case NamespaceRestriction::TYPE:
433 $namespaceRestrictions[] = $restriction->getValue();
434 break;
435 }
436 }
437
438 if (
439 !$block->isSitewide() &&
440 empty( $pageRestrictions ) &&
441 empty( $namespaceRestrictions )
442 ) {
443 $fields['Editing']['default'] = false;
444 }
445
446 // Sort the restrictions so they are in alphabetical order.
447 sort( $pageRestrictions );
448 $fields['PageRestrictions']['default'] = implode( "\n", $pageRestrictions );
449 sort( $namespaceRestrictions );
450 $fields['NamespaceRestrictions']['default'] = implode( "\n", $namespaceRestrictions );
451 }
452 }
453 }
454
455 /**
456 * Add header elements like block log entries, etc.
457 * @return string
458 */
459 protected function preText() {
460 $this->getOutput()->addModuleStyles( [
461 'mediawiki.widgets.TagMultiselectWidget.styles',
462 'mediawiki.special',
463 ] );
464 $this->getOutput()->addModules( [ 'mediawiki.special.block' ] );
465
466 $blockCIDRLimit = $this->getConfig()->get( 'BlockCIDRLimit' );
467 $text = $this->msg( 'blockiptext', $blockCIDRLimit['IPv4'], $blockCIDRLimit['IPv6'] )->parse();
468
469 $otherBlockMessages = [];
470 if ( $this->target !== null ) {
471 $targetName = $this->target;
472 if ( $this->target instanceof User ) {
473 $targetName = $this->target->getName();
474 }
475 # Get other blocks, i.e. from GlobalBlocking or TorBlock extension
476 Hooks::run( 'OtherBlockLogLink', [ &$otherBlockMessages, $targetName ] );
477
478 if ( count( $otherBlockMessages ) ) {
479 $s = Html::rawElement(
480 'h2',
481 [],
482 $this->msg( 'ipb-otherblocks-header', count( $otherBlockMessages ) )->parse()
483 ) . "\n";
484
485 $list = '';
486
487 foreach ( $otherBlockMessages as $link ) {
488 $list .= Html::rawElement( 'li', [], $link ) . "\n";
489 }
490
491 $s .= Html::rawElement(
492 'ul',
493 [ 'class' => 'mw-blockip-alreadyblocked' ],
494 $list
495 ) . "\n";
496
497 $text .= $s;
498 }
499 }
500
501 return $text;
502 }
503
504 /**
505 * Add footer elements to the form
506 * @return string
507 */
508 protected function postText() {
509 $links = [];
510
511 $this->getOutput()->addModuleStyles( 'mediawiki.special' );
512
513 $linkRenderer = $this->getLinkRenderer();
514 # Link to the user's contributions, if applicable
515 if ( $this->target instanceof User ) {
516 $contribsPage = SpecialPage::getTitleFor( 'Contributions', $this->target->getName() );
517 $links[] = $linkRenderer->makeLink(
518 $contribsPage,
519 $this->msg( 'ipb-blocklist-contribs', $this->target->getName() )->text()
520 );
521 }
522
523 # Link to unblock the specified user, or to a blank unblock form
524 if ( $this->target instanceof User ) {
525 $message = $this->msg(
526 'ipb-unblock-addr',
527 wfEscapeWikiText( $this->target->getName() )
528 )->parse();
529 $list = SpecialPage::getTitleFor( 'Unblock', $this->target->getName() );
530 } else {
531 $message = $this->msg( 'ipb-unblock' )->parse();
532 $list = SpecialPage::getTitleFor( 'Unblock' );
533 }
534 $links[] = $linkRenderer->makeKnownLink(
535 $list,
536 new HtmlArmor( $message )
537 );
538
539 # Link to the block list
540 $links[] = $linkRenderer->makeKnownLink(
541 SpecialPage::getTitleFor( 'BlockList' ),
542 $this->msg( 'ipb-blocklist' )->text()
543 );
544
545 $user = $this->getUser();
546
547 # Link to edit the block dropdown reasons, if applicable
548 if ( $user->isAllowed( 'editinterface' ) ) {
549 $links[] = $linkRenderer->makeKnownLink(
550 $this->msg( 'ipbreason-dropdown' )->inContentLanguage()->getTitle(),
551 $this->msg( 'ipb-edit-dropdown' )->text(),
552 [],
553 [ 'action' => 'edit' ]
554 );
555 }
556
557 $text = Html::rawElement(
558 'p',
559 [ 'class' => 'mw-ipb-conveniencelinks' ],
560 $this->getLanguage()->pipeList( $links )
561 );
562
563 $userTitle = self::getTargetUserTitle( $this->target );
564 if ( $userTitle ) {
565 # Get relevant extracts from the block and suppression logs, if possible
566 $out = '';
567
568 LogEventsList::showLogExtract(
569 $out,
570 'block',
571 $userTitle,
572 '',
573 [
574 'lim' => 10,
575 'msgKey' => [ 'blocklog-showlog', $userTitle->getText() ],
576 'showIfEmpty' => false
577 ]
578 );
579 $text .= $out;
580
581 # Add suppression block entries if allowed
582 if ( $user->isAllowed( 'suppressionlog' ) ) {
583 LogEventsList::showLogExtract(
584 $out,
585 'suppress',
586 $userTitle,
587 '',
588 [
589 'lim' => 10,
590 'conds' => [ 'log_action' => [ 'block', 'reblock', 'unblock' ] ],
591 'msgKey' => [ 'blocklog-showsuppresslog', $userTitle->getText() ],
592 'showIfEmpty' => false
593 ]
594 );
595
596 $text .= $out;
597 }
598 }
599
600 return $text;
601 }
602
603 /**
604 * Get a user page target for things like logs.
605 * This handles account and IP range targets.
606 * @param User|string $target
607 * @return Title|null
608 */
609 protected static function getTargetUserTitle( $target ) {
610 if ( $target instanceof User ) {
611 return $target->getUserPage();
612 } elseif ( IP::isIPAddress( $target ) ) {
613 return Title::makeTitleSafe( NS_USER, $target );
614 }
615
616 return null;
617 }
618
619 /**
620 * Determine the target of the block, and the type of target
621 * @todo Should be in DatabaseBlock.php?
622 * @param string $par Subpage parameter passed to setup, or data value from
623 * the HTMLForm
624 * @param WebRequest|null $request Optionally try and get data from a request too
625 * @return array [ User|string|null, DatabaseBlock::TYPE_ constant|null ]
626 * @phan-return array{0:User|string|null,1:int|null}
627 */
628 public static function getTargetAndType( $par, WebRequest $request = null ) {
629 $i = 0;
630 $target = null;
631
632 while ( true ) {
633 switch ( $i++ ) {
634 case 0:
635 # The HTMLForm will check wpTarget first and only if it doesn't get
636 # a value use the default, which will be generated from the options
637 # below; so this has to have a higher precedence here than $par, or
638 # we could end up with different values in $this->target and the HTMLForm!
639 if ( $request instanceof WebRequest ) {
640 $target = $request->getText( 'wpTarget', null );
641 }
642 break;
643 case 1:
644 $target = $par;
645 break;
646 case 2:
647 if ( $request instanceof WebRequest ) {
648 $target = $request->getText( 'ip', null );
649 }
650 break;
651 case 3:
652 # B/C @since 1.18
653 if ( $request instanceof WebRequest ) {
654 $target = $request->getText( 'wpBlockAddress', null );
655 }
656 break;
657 case 4:
658 break 2;
659 }
660
661 list( $target, $type ) = DatabaseBlock::parseTarget( $target );
662
663 if ( $type !== null ) {
664 return [ $target, $type ];
665 }
666 }
667
668 return [ null, null ];
669 }
670
671 /**
672 * HTMLForm field validation-callback for Target field.
673 * @since 1.18
674 * @param string $value
675 * @param array $alldata
676 * @param HTMLForm $form
677 * @return Message
678 */
679 public static function validateTargetField( $value, $alldata, $form ) {
680 $status = self::validateTarget( $value, $form->getUser() );
681 if ( !$status->isOK() ) {
682 $errors = $status->getErrorsArray();
683
684 return $form->msg( ...$errors[0] );
685 } else {
686 return true;
687 }
688 }
689
690 /**
691 * Validate a block target.
692 *
693 * @since 1.21
694 * @param string $value Block target to check
695 * @param User $user Performer of the block
696 * @return Status
697 */
698 public static function validateTarget( $value, User $user ) {
699 global $wgBlockCIDRLimit;
700
701 /** @var User $target */
702 list( $target, $type ) = self::getTargetAndType( $value );
703 $status = Status::newGood( $target );
704
705 if ( $type == DatabaseBlock::TYPE_USER ) {
706 if ( $target->isAnon() ) {
707 $status->fatal(
708 'nosuchusershort',
709 wfEscapeWikiText( $target->getName() )
710 );
711 }
712
713 $unblockStatus = self::checkUnblockSelf( $target, $user );
714 if ( $unblockStatus !== true ) {
715 $status->fatal( 'badaccess', $unblockStatus );
716 }
717 } elseif ( $type == DatabaseBlock::TYPE_RANGE ) {
718 list( $ip, $range ) = explode( '/', $target, 2 );
719
720 if (
721 ( IP::isIPv4( $ip ) && $wgBlockCIDRLimit['IPv4'] == 32 ) ||
722 ( IP::isIPv6( $ip ) && $wgBlockCIDRLimit['IPv6'] == 128 )
723 ) {
724 // Range block effectively disabled
725 $status->fatal( 'range_block_disabled' );
726 }
727
728 if (
729 ( IP::isIPv4( $ip ) && $range > 32 ) ||
730 ( IP::isIPv6( $ip ) && $range > 128 )
731 ) {
732 // Dodgy range
733 $status->fatal( 'ip_range_invalid' );
734 }
735
736 if ( IP::isIPv4( $ip ) && $range < $wgBlockCIDRLimit['IPv4'] ) {
737 $status->fatal( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv4'] );
738 }
739
740 if ( IP::isIPv6( $ip ) && $range < $wgBlockCIDRLimit['IPv6'] ) {
741 $status->fatal( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv6'] );
742 }
743 } elseif ( $type == DatabaseBlock::TYPE_IP ) {
744 # All is well
745 } else {
746 $status->fatal( 'badipaddress' );
747 }
748
749 return $status;
750 }
751
752 /**
753 * Given the form data, actually implement a block. This is also called from ApiBlock.
754 *
755 * @param array $data
756 * @param IContextSource $context
757 * @return bool|array
758 */
759 public static function processForm( array $data, IContextSource $context ) {
760 $performer = $context->getUser();
761 $enablePartialBlocks = $context->getConfig()->get( 'EnablePartialBlocks' );
762 $isPartialBlock = $enablePartialBlocks &&
763 isset( $data['EditingRestriction'] ) &&
764 $data['EditingRestriction'] === 'partial';
765
766 # This might have been a hidden field or a checkbox, so interesting data
767 # can come from it
768 $data['Confirm'] = !in_array( $data['Confirm'], [ '', '0', null, false ], true );
769
770 /** @var User $target */
771 list( $target, $type ) = self::getTargetAndType( $data['Target'] );
772 if ( $type == DatabaseBlock::TYPE_USER ) {
773 $user = $target;
774 $target = $user->getName();
775 $userId = $user->getId();
776
777 # Give admins a heads-up before they go and block themselves. Much messier
778 # to do this for IPs, but it's pretty unlikely they'd ever get the 'block'
779 # permission anyway, although the code does allow for it.
780 # Note: Important to use $target instead of $data['Target']
781 # since both $data['PreviousTarget'] and $target are normalized
782 # but $data['target'] gets overridden by (non-normalized) request variable
783 # from previous request.
784 if ( $target === $performer->getName() &&
785 ( $data['PreviousTarget'] !== $target || !$data['Confirm'] )
786 ) {
787 return [ 'ipb-blockingself', 'ipb-confirmaction' ];
788 }
789 } elseif ( $type == DatabaseBlock::TYPE_RANGE ) {
790 $user = null;
791 $userId = 0;
792 } elseif ( $type == DatabaseBlock::TYPE_IP ) {
793 $user = null;
794 $target = $target->getName();
795 $userId = 0;
796 } else {
797 # This should have been caught in the form field validation
798 return [ 'badipaddress' ];
799 }
800
801 $expiryTime = self::parseExpiryInput( $data['Expiry'] );
802
803 if (
804 // an expiry time is needed
805 ( strlen( $data['Expiry'] ) == 0 ) ||
806 // can't be a larger string as 50 (it should be a time format in any way)
807 ( strlen( $data['Expiry'] ) > 50 ) ||
808 // check, if the time could be parsed
809 !$expiryTime
810 ) {
811 return [ 'ipb_expiry_invalid' ];
812 }
813
814 // an expiry time should be in the future, not in the
815 // past (wouldn't make any sense) - bug T123069
816 if ( $expiryTime < wfTimestampNow() ) {
817 return [ 'ipb_expiry_old' ];
818 }
819
820 if ( !isset( $data['DisableEmail'] ) ) {
821 $data['DisableEmail'] = false;
822 }
823
824 # If the user has done the form 'properly', they won't even have been given the
825 # option to suppress-block unless they have the 'hideuser' permission
826 if ( !isset( $data['HideUser'] ) ) {
827 $data['HideUser'] = false;
828 }
829
830 if ( $data['HideUser'] ) {
831 if ( !$performer->isAllowed( 'hideuser' ) ) {
832 # this codepath is unreachable except by a malicious user spoofing forms,
833 # or by race conditions (user has hideuser and block rights, loads block form,
834 # and loses hideuser rights before submission); so need to fail completely
835 # rather than just silently disable hiding
836 return [ 'badaccess-group0' ];
837 }
838
839 if ( $isPartialBlock ) {
840 return [ 'ipb_hide_partial' ];
841 }
842
843 # Recheck params here...
844 $hideUserContribLimit = $context->getConfig()->get( 'HideUserContribLimit' );
845 if ( $type != DatabaseBlock::TYPE_USER ) {
846 $data['HideUser'] = false; # IP users should not be hidden
847 } elseif ( !wfIsInfinity( $data['Expiry'] ) ) {
848 # Bad expiry.
849 return [ 'ipb_expiry_temp' ];
850 } elseif ( $hideUserContribLimit !== false
851 && $user->getEditCount() > $hideUserContribLimit
852 ) {
853 # Typically, the user should have a handful of edits.
854 # Disallow hiding users with many edits for performance.
855 return [ [ 'ipb_hide_invalid',
856 Message::numParam( $hideUserContribLimit ) ] ];
857 } elseif ( !$data['Confirm'] ) {
858 return [ 'ipb-confirmhideuser', 'ipb-confirmaction' ];
859 }
860 }
861
862 $blockAllowsUTEdit = $context->getConfig()->get( 'BlockAllowsUTEdit' );
863 $userTalkEditAllowed = !$blockAllowsUTEdit || !$data['DisableUTEdit'];
864 if ( !$userTalkEditAllowed &&
865 $isPartialBlock &&
866 !in_array( NS_USER_TALK, explode( "\n", $data['NamespaceRestrictions'] ) )
867 ) {
868 return [ 'ipb-prevent-user-talk-edit' ];
869 }
870
871 # Create block object.
872 $block = new DatabaseBlock();
873 $block->setTarget( $target );
874 $block->setBlocker( $performer );
875 $block->setReason( $data['Reason'][0] );
876 $block->setExpiry( $expiryTime );
877 $block->isCreateAccountBlocked( $data['CreateAccount'] );
878 $block->isUsertalkEditAllowed( $userTalkEditAllowed );
879 $block->isEmailBlocked( $data['DisableEmail'] );
880 $block->isHardblock( $data['HardBlock'] );
881 $block->isAutoblocking( $data['AutoBlock'] );
882 $block->setHideName( $data['HideUser'] );
883
884 if ( $isPartialBlock ) {
885 $block->isSitewide( false );
886 }
887
888 $reason = [ 'hookaborted' ];
889 if ( !Hooks::run( 'BlockIp', [ &$block, &$performer, &$reason ] ) ) {
890 return $reason;
891 }
892
893 $pageRestrictions = [];
894 $namespaceRestrictions = [];
895 if ( $enablePartialBlocks ) {
896 if ( $data['PageRestrictions'] !== '' ) {
897 $pageRestrictions = array_map( function ( $text ) {
898 $title = Title::newFromText( $text );
899 // Use the link cache since the title has already been loaded when
900 // the field was validated.
901 $restriction = new PageRestriction( 0, $title->getArticleID() );
902 $restriction->setTitle( $title );
903 return $restriction;
904 }, explode( "\n", $data['PageRestrictions'] ) );
905 }
906 if ( $data['NamespaceRestrictions'] !== '' ) {
907 $namespaceRestrictions = array_map( function ( $id ) {
908 return new NamespaceRestriction( 0, $id );
909 }, explode( "\n", $data['NamespaceRestrictions'] ) );
910 }
911
912 $restrictions = ( array_merge( $pageRestrictions, $namespaceRestrictions ) );
913 $block->setRestrictions( $restrictions );
914 }
915
916 $priorBlock = null;
917 # Try to insert block. Is there a conflicting block?
918 $status = $block->insert();
919 if ( !$status ) {
920 # Indicates whether the user is confirming the block and is aware of
921 # the conflict (did not change the block target in the meantime)
922 $blockNotConfirmed = !$data['Confirm'] || ( array_key_exists( 'PreviousTarget', $data )
923 && $data['PreviousTarget'] !== $target );
924
925 # Special case for API - T34434
926 $reblockNotAllowed = ( array_key_exists( 'Reblock', $data ) && !$data['Reblock'] );
927
928 # Show form unless the user is already aware of this...
929 if ( $blockNotConfirmed || $reblockNotAllowed ) {
930 return [ [ 'ipb_already_blocked', $block->getTarget() ] ];
931 # Otherwise, try to update the block...
932 } else {
933 # This returns direct blocks before autoblocks/rangeblocks, since we should
934 # be sure the user is blocked by now it should work for our purposes
935 $currentBlock = DatabaseBlock::newFromTarget( $target );
936 if ( $block->equals( $currentBlock ) ) {
937 return [ [ 'ipb_already_blocked', $block->getTarget() ] ];
938 }
939 # If the name was hidden and the blocking user cannot hide
940 # names, then don't allow any block changes...
941 if ( $currentBlock->getHideName() && !$performer->isAllowed( 'hideuser' ) ) {
942 return [ 'cant-see-hidden-user' ];
943 }
944
945 $priorBlock = clone $currentBlock;
946 $currentBlock->isHardblock( $block->isHardblock() );
947 $currentBlock->isCreateAccountBlocked( $block->isCreateAccountBlocked() );
948 $currentBlock->setExpiry( $block->getExpiry() );
949 $currentBlock->isAutoblocking( $block->isAutoblocking() );
950 $currentBlock->setHideName( $block->getHideName() );
951 $currentBlock->isEmailBlocked( $block->isEmailBlocked() );
952 $currentBlock->isUsertalkEditAllowed( $block->isUsertalkEditAllowed() );
953 $currentBlock->setReason( $block->getReason() );
954
955 if ( $enablePartialBlocks ) {
956 // Maintain the sitewide status. If partial blocks is not enabled,
957 // saving the block will result in a sitewide block.
958 $currentBlock->isSitewide( $block->isSitewide() );
959
960 // Set the block id of the restrictions.
961 $blockRestrictionStore = MediaWikiServices::getInstance()->getBlockRestrictionStore();
962 $currentBlock->setRestrictions(
963 $blockRestrictionStore->setBlockId( $currentBlock->getId(), $restrictions )
964 );
965 }
966
967 $status = $currentBlock->update();
968 // TODO handle failure
969
970 $logaction = 'reblock';
971
972 # Unset _deleted fields if requested
973 if ( $currentBlock->getHideName() && !$data['HideUser'] ) {
974 RevisionDeleteUser::unsuppressUserName( $target, $userId );
975 }
976
977 # If hiding/unhiding a name, this should go in the private logs
978 if ( (bool)$currentBlock->getHideName() ) {
979 $data['HideUser'] = true;
980 }
981
982 $block = $currentBlock;
983 }
984 } else {
985 $logaction = 'block';
986 }
987
988 Hooks::run( 'BlockIpComplete', [ $block, $performer, $priorBlock ] );
989
990 # Set *_deleted fields if requested
991 if ( $data['HideUser'] ) {
992 RevisionDeleteUser::suppressUserName( $target, $userId );
993 }
994
995 # Can't watch a rangeblock
996 if ( $type != DatabaseBlock::TYPE_RANGE && $data['Watch'] ) {
997 WatchAction::doWatch(
998 Title::makeTitle( NS_USER, $target ),
999 $performer,
1000 User::IGNORE_USER_RIGHTS
1001 );
1002 }
1003
1004 # DatabaseBlock constructor sanitizes certain block options on insert
1005 $data['BlockEmail'] = $block->isEmailBlocked();
1006 $data['AutoBlock'] = $block->isAutoblocking();
1007
1008 # Prepare log parameters
1009 $logParams = [];
1010 $logParams['5::duration'] = $data['Expiry'];
1011 $logParams['6::flags'] = self::blockLogFlags( $data, $type );
1012 $logParams['sitewide'] = $block->isSitewide();
1013
1014 if ( $enablePartialBlocks && !$block->isSitewide() ) {
1015 if ( $data['PageRestrictions'] !== '' ) {
1016 $logParams['7::restrictions']['pages'] = explode( "\n", $data['PageRestrictions'] );
1017 }
1018
1019 if ( $data['NamespaceRestrictions'] !== '' ) {
1020 $logParams['7::restrictions']['namespaces'] = explode( "\n", $data['NamespaceRestrictions'] );
1021 }
1022 }
1023
1024 # Make log entry, if the name is hidden, put it in the suppression log
1025 $log_type = $data['HideUser'] ? 'suppress' : 'block';
1026 $logEntry = new ManualLogEntry( $log_type, $logaction );
1027 $logEntry->setTarget( Title::makeTitle( NS_USER, $target ) );
1028 $logEntry->setComment( $data['Reason'][0] );
1029 $logEntry->setPerformer( $performer );
1030 $logEntry->setParameters( $logParams );
1031 # Relate log ID to block ID (T27763)
1032 $logEntry->setRelations( [ 'ipb_id' => $block->getId() ] );
1033 $logId = $logEntry->insert();
1034
1035 if ( !empty( $data['Tags'] ) ) {
1036 $logEntry->addTags( $data['Tags'] );
1037 }
1038
1039 $logEntry->publish( $logId );
1040
1041 return true;
1042 }
1043
1044 /**
1045 * Get an array of suggested block durations from MediaWiki:Ipboptions
1046 * @todo FIXME: This uses a rather odd syntax for the options, should it be converted
1047 * to the standard "**<duration>|<displayname>" format?
1048 * @param Language|null $lang The language to get the durations in, or null to use
1049 * the wiki's content language
1050 * @param bool $includeOther Whether to include the 'other' option in the list of
1051 * suggestions
1052 * @return array
1053 */
1054 public static function getSuggestedDurations( Language $lang = null, $includeOther = true ) {
1055 $a = [];
1056 $msg = $lang === null
1057 ? wfMessage( 'ipboptions' )->inContentLanguage()->text()
1058 : wfMessage( 'ipboptions' )->inLanguage( $lang )->text();
1059
1060 if ( $msg == '-' ) {
1061 return [];
1062 }
1063
1064 foreach ( explode( ',', $msg ) as $option ) {
1065 if ( strpos( $option, ':' ) === false ) {
1066 $option = "$option:$option";
1067 }
1068
1069 list( $show, $value ) = explode( ':', $option );
1070 $a[$show] = $value;
1071 }
1072
1073 if ( $a && $includeOther ) {
1074 // if options exist, add other to the end instead of the begining (which
1075 // is what happens by default).
1076 $a[ wfMessage( 'ipbother' )->text() ] = 'other';
1077 }
1078
1079 return $a;
1080 }
1081
1082 /**
1083 * Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute
1084 * ("24 May 2034", etc), into an absolute timestamp we can put into the database.
1085 *
1086 * @todo strtotime() only accepts English strings. This means the expiry input
1087 * can only be specified in English.
1088 * @see https://www.php.net/manual/en/function.strtotime.php
1089 *
1090 * @param string $expiry Whatever was typed into the form
1091 * @return string|bool Timestamp or 'infinity' or false on error.
1092 */
1093 public static function parseExpiryInput( $expiry ) {
1094 if ( wfIsInfinity( $expiry ) ) {
1095 return 'infinity';
1096 }
1097
1098 $expiry = strtotime( $expiry );
1099
1100 if ( $expiry < 0 || $expiry === false ) {
1101 return false;
1102 }
1103
1104 return wfTimestamp( TS_MW, $expiry );
1105 }
1106
1107 /**
1108 * Can we do an email block?
1109 * @param User $user The sysop wanting to make a block
1110 * @return bool
1111 */
1112 public static function canBlockEmail( $user ) {
1113 global $wgEnableUserEmail, $wgSysopEmailBans;
1114
1115 return ( $wgEnableUserEmail && $wgSysopEmailBans && $user->isAllowed( 'blockemail' ) );
1116 }
1117
1118 /**
1119 * T17810: blocked admins should not be able to block/unblock
1120 * others, and probably shouldn't be able to unblock themselves
1121 * either.
1122 *
1123 * Exception: Users can block the user who blocked them, to reduce
1124 * advantage of a malicious account blocking all admins (T150826)
1125 *
1126 * @param User|int|string|null $target Target to block or unblock; could be a User object,
1127 * or a user ID or username, or null when the target is not known yet (e.g. when
1128 * displaying Special:Block)
1129 * @param User $performer User doing the request
1130 * @return bool|string True or error message key
1131 */
1132 public static function checkUnblockSelf( $target, User $performer ) {
1133 if ( is_int( $target ) ) {
1134 $target = User::newFromId( $target );
1135 } elseif ( is_string( $target ) ) {
1136 $target = User::newFromName( $target );
1137 }
1138 if ( $performer->getBlock() ) {
1139 if ( $target instanceof User && $target->getId() == $performer->getId() ) {
1140 # User is trying to unblock themselves
1141 if ( $performer->isAllowed( 'unblockself' ) ) {
1142 return true;
1143 # User blocked themselves and is now trying to reverse it
1144 } elseif ( $performer->blockedBy() === $performer->getName() ) {
1145 return true;
1146 } else {
1147 return 'ipbnounblockself';
1148 }
1149 } elseif (
1150 $target instanceof User &&
1151 $performer->getBlock() instanceof DatabaseBlock &&
1152 $performer->getBlock()->getBy() &&
1153 $performer->getBlock()->getBy() === $target->getId()
1154 ) {
1155 // Allow users to block the user that blocked them.
1156 // This is to prevent a situation where a malicious user
1157 // blocks all other users. This way, the non-malicious
1158 // user can block the malicious user back, resulting
1159 // in a stalemate.
1160 return true;
1161
1162 } else {
1163 # User is trying to block/unblock someone else
1164 return 'ipbblocked';
1165 }
1166 } else {
1167 return true;
1168 }
1169 }
1170
1171 /**
1172 * Return a comma-delimited list of "flags" to be passed to the log
1173 * reader for this block, to provide more information in the logs
1174 * @param array $data From HTMLForm data
1175 * @param int $type DatabaseBlock::TYPE_ constant (USER, RANGE, or IP)
1176 * @return string
1177 */
1178 protected static function blockLogFlags( array $data, $type ) {
1179 $config = RequestContext::getMain()->getConfig();
1180
1181 $blockAllowsUTEdit = $config->get( 'BlockAllowsUTEdit' );
1182
1183 $flags = [];
1184
1185 # when blocking a user the option 'anononly' is not available/has no effect
1186 # -> do not write this into log
1187 if ( !$data['HardBlock'] && $type != DatabaseBlock::TYPE_USER ) {
1188 // For grepping: message block-log-flags-anononly
1189 $flags[] = 'anononly';
1190 }
1191
1192 if ( $data['CreateAccount'] ) {
1193 // For grepping: message block-log-flags-nocreate
1194 $flags[] = 'nocreate';
1195 }
1196
1197 # Same as anononly, this is not displayed when blocking an IP address
1198 if ( !$data['AutoBlock'] && $type == DatabaseBlock::TYPE_USER ) {
1199 // For grepping: message block-log-flags-noautoblock
1200 $flags[] = 'noautoblock';
1201 }
1202
1203 if ( $data['DisableEmail'] ) {
1204 // For grepping: message block-log-flags-noemail
1205 $flags[] = 'noemail';
1206 }
1207
1208 if ( $blockAllowsUTEdit && $data['DisableUTEdit'] ) {
1209 // For grepping: message block-log-flags-nousertalk
1210 $flags[] = 'nousertalk';
1211 }
1212
1213 if ( $data['HideUser'] ) {
1214 // For grepping: message block-log-flags-hiddenname
1215 $flags[] = 'hiddenname';
1216 }
1217
1218 return implode( ',', $flags );
1219 }
1220
1221 /**
1222 * Process the form on POST submission.
1223 * @param array $data
1224 * @param HTMLForm|null $form
1225 * @return bool|array True for success, false for didn't-try, array of errors on failure
1226 */
1227 public function onSubmit( array $data, HTMLForm $form = null ) {
1228 // If "Editing" checkbox is unchecked, the block must be a partial block affecting
1229 // actions other than editing, and there must be no restrictions.
1230 if ( isset( $data['Editing'] ) && $data['Editing'] === false ) {
1231 $data['EditingRestriction'] = 'partial';
1232 $data['PageRestrictions'] = '';
1233 $data['NamespaceRestrictions'] = '';
1234 }
1235 return self::processForm( $data, $form->getContext() );
1236 }
1237
1238 /**
1239 * Do something exciting on successful processing of the form, most likely to show a
1240 * confirmation message
1241 */
1242 public function onSuccess() {
1243 $out = $this->getOutput();
1244 $out->setPageTitle( $this->msg( 'blockipsuccesssub' ) );
1245 $out->addWikiMsg( 'blockipsuccesstext', wfEscapeWikiText( $this->target ) );
1246 }
1247
1248 /**
1249 * Return an array of subpages beginning with $search that this special page will accept.
1250 *
1251 * @param string $search Prefix to search for
1252 * @param int $limit Maximum number of results to return (usually 10)
1253 * @param int $offset Number of results to skip (usually 0)
1254 * @return string[] Matching subpages
1255 */
1256 public function prefixSearchSubpages( $search, $limit, $offset ) {
1257 $user = User::newFromName( $search );
1258 if ( !$user ) {
1259 // No prefix suggestion for invalid user
1260 return [];
1261 }
1262 // Autocomplete subpage as user list - public to allow caching
1263 return UserNamePrefixSearch::search( 'public', $search, $limit, $offset );
1264 }
1265
1266 protected function getGroupName() {
1267 return 'users';
1268 }
1269 }