w/s changes.
[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 /**
25 * A special page that allows users with 'block' right to block users from
26 * editing pages and other actions
27 *
28 * @ingroup SpecialPage
29 */
30 class SpecialBlock extends SpecialPage {
31
32 /** The maximum number of edits a user can have and still be hidden
33 * TODO: config setting? */
34 const HIDEUSER_CONTRIBLIMIT = 1000;
35
36 /** @var User user to be blocked, as passed either by parameter (url?wpTarget=Foo)
37 * or as subpage (Special:Block/Foo) */
38 protected $target;
39
40 /// @var Block::TYPE_ constant
41 protected $type;
42
43 /// @var User|String the previous block target
44 protected $previousTarget;
45
46 /// @var Bool whether the previous submission of the form asked for HideUser
47 protected $requestedHideUser;
48
49 /// @var Bool
50 protected $alreadyBlocked;
51
52 /// @var Array
53 protected $preErrors = array();
54
55 public function __construct() {
56 parent::__construct( 'Block', 'block' );
57 }
58
59 public function execute( $par ) {
60 global $wgUser, $wgOut, $wgRequest;
61
62 # Can't block when the database is locked
63 if( wfReadOnly() ) {
64 $wgOut->readOnlyPage();
65 return;
66 }
67 # Permission check
68 if( !$this->userCanExecute( $wgUser ) ) {
69 $wgOut->permissionRequired( 'block' );
70 return;
71 }
72
73 # Extract variables from the request. Try not to get into a situation where we
74 # need to extract *every* variable from the form just for processing here, but
75 # there are legitimate uses for some variables
76 list( $this->target, $this->type ) = self::getTargetAndType( $par, $wgRequest );
77 if ( $this->target instanceof User ) {
78 # Set the 'relevant user' in the skin, so it displays links like Contributions,
79 # User logs, UserRights, etc.
80 $wgUser->getSkin()->setRelevantUser( $this->target );
81 }
82
83 list( $this->previousTarget, /*...*/ ) = Block::parseTarget( $wgRequest->getVal( 'wpPreviousTarget' ) );
84 $this->requestedHideUser = $wgRequest->getBool( 'wpHideUser' );
85
86 # bug 15810: blocked admins should have limited access here
87 $status = self::checkUnblockSelf( $this->target );
88 if ( $status !== true ) {
89 throw new ErrorPageError( 'badaccess', $status );
90 }
91
92 $wgOut->setPageTitle( wfMsg( 'blockip-title' ) );
93 $wgOut->addModules( 'mediawiki.special', 'mediawiki.special.block' );
94
95 $fields = self::getFormFields();
96 $this->maybeAlterFormDefaults( $fields );
97
98 $form = new HTMLForm( $fields, $this->getContext() );
99 $form->setWrapperLegend( wfMsg( 'blockip-legend' ) );
100 $form->setSubmitCallback( array( __CLASS__, 'processForm' ) );
101
102 $t = $this->alreadyBlocked
103 ? wfMsg( 'ipb-change-block' )
104 : wfMsg( 'ipbsubmit' );
105 $form->setSubmitText( $t );
106
107 $this->doPreText( $form );
108 $this->doHeadertext( $form );
109 $this->doPostText( $form );
110
111 if( $form->show() ){
112 $wgOut->setPageTitle( wfMsg( 'blockipsuccesssub' ) );
113 $wgOut->addWikiMsg( 'blockipsuccesstext', $this->target );
114 }
115 }
116
117 /**
118 * Get the HTMLForm descriptor array for the block form
119 * @return Array
120 */
121 protected static function getFormFields(){
122 global $wgUser, $wgBlockAllowsUTEdit;
123
124 $a = array(
125 'Target' => array(
126 'type' => 'text',
127 'label-message' => 'ipadressorusername',
128 'tabindex' => '1',
129 'id' => 'mw-bi-target',
130 'size' => '45',
131 'required' => true,
132 'validation-callback' => array( __CLASS__, 'validateTargetField' ),
133 ),
134 'Expiry' => array(
135 'type' => !count( self::getSuggestedDurations() ) ? 'text' : 'selectorother',
136 'label-message' => 'ipbexpiry',
137 'required' => true,
138 'tabindex' => '2',
139 'options' => self::getSuggestedDurations(),
140 'other' => wfMsg( 'ipbother' ),
141 ),
142 'Reason' => array(
143 'type' => 'selectandother',
144 'label-message' => 'ipbreason',
145 'options-message' => 'ipbreason-dropdown',
146 ),
147 'CreateAccount' => array(
148 'type' => 'check',
149 'label-message' => 'ipbcreateaccount',
150 'default' => true,
151 ),
152 );
153
154 if( self::canBlockEmail( $wgUser ) ) {
155 $a['DisableEmail'] = array(
156 'type' => 'check',
157 'label-message' => 'ipbemailban',
158 );
159 }
160
161 if( $wgBlockAllowsUTEdit ){
162 $a['DisableUTEdit'] = array(
163 'type' => 'check',
164 'label-message' => 'ipb-disableusertalk',
165 'default' => false,
166 );
167 }
168
169 $a['AutoBlock'] = array(
170 'type' => 'check',
171 'label-message' => 'ipbenableautoblock',
172 'default' => true,
173 );
174
175 # Allow some users to hide name from block log, blocklist and listusers
176 if( $wgUser->isAllowed( 'hideuser' ) ) {
177 $a['HideUser'] = array(
178 'type' => 'check',
179 'label-message' => 'ipbhidename',
180 'cssclass' => 'mw-block-hideuser',
181 );
182 }
183
184 # Watchlist their user page? (Only if user is logged in)
185 if( $wgUser->isLoggedIn() ) {
186 $a['Watch'] = array(
187 'type' => 'check',
188 'label-message' => 'ipbwatchuser',
189 );
190 }
191
192 $a['HardBlock'] = array(
193 'type' => 'check',
194 'label-message' => 'ipb-hardblock',
195 'default' => false,
196 );
197
198 # This is basically a copy of the Target field, but the user can't change it, so we
199 # can see if the warnings we maybe showed to the user before still apply
200 $a['PreviousTarget'] = array(
201 'type' => 'hidden',
202 'default' => false,
203 );
204
205 # We'll turn this into a checkbox if we need to
206 $a['Confirm'] = array(
207 'type' => 'hidden',
208 'default' => '',
209 'label-message' => 'ipb-confirm',
210 );
211
212 return $a;
213 }
214
215 /**
216 * If the user has already been blocked with similar settings, load that block
217 * and change the defaults for the form fields to match the existing settings.
218 * @param &$fields Array HTMLForm descriptor array
219 * @return Bool whether fields were altered (that is, whether the target is
220 * already blocked)
221 */
222 protected function maybeAlterFormDefaults( &$fields ){
223 global $wgRequest, $wgUser;
224
225 # This will be overwritten by request data
226 $fields['Target']['default'] = (string)$this->target;
227
228 # This won't be
229 $fields['PreviousTarget']['default'] = (string)$this->target;
230
231 $block = Block::newFromTarget( $this->target );
232
233 if( $block instanceof Block && !$block->mAuto # The block exists and isn't an autoblock
234 && ( $this->type != Block::TYPE_RANGE # The block isn't a rangeblock
235 || $block->getTarget() == $this->target ) # or if it is, the range is what we're about to block
236 )
237 {
238 $fields['HardBlock']['default'] = $block->isHardblock();
239 $fields['CreateAccount']['default'] = $block->prevents( 'createaccount' );
240 $fields['AutoBlock']['default'] = $block->isAutoblocking();
241 if( isset( $fields['DisableEmail'] ) ){
242 $fields['DisableEmail']['default'] = $block->prevents( 'sendemail' );
243 }
244 if( isset( $fields['HideUser'] ) ){
245 $fields['HideUser']['default'] = $block->mHideName;
246 }
247 if( isset( $fields['DisableUTEdit'] ) ){
248 $fields['DisableUTEdit']['default'] = $block->prevents( 'editownusertalk' );
249 }
250 $fields['Reason']['default'] = $block->mReason;
251
252 if( $wgRequest->wasPosted() ){
253 # Ok, so we got a POST submission asking us to reblock a user. So show the
254 # confirm checkbox; the user will only see it if they haven't previously
255 $fields['Confirm']['type'] = 'check';
256 } else {
257 # We got a target, but it wasn't a POST request, so the user must have gone
258 # to a link like [[Special:Block/User]]. We don't need to show the checkbox
259 # as long as they go ahead and block *that* user
260 $fields['Confirm']['default'] = 1;
261 }
262
263 if( $block->mExpiry == 'infinity' ) {
264 $fields['Expiry']['default'] = 'indefinite';
265 } else {
266 $fields['Expiry']['default'] = wfTimestamp( TS_RFC2822, $block->mExpiry );
267 }
268
269 $this->alreadyBlocked = true;
270 $this->preErrors[] = array( 'ipb-needreblock', (string)$block->getTarget() );
271 }
272
273 # We always need confirmation to do HideUser
274 if( $this->requestedHideUser ){
275 $fields['Confirm']['type'] = 'check';
276 unset( $fields['Confirm']['default'] );
277 $this->preErrors[] = 'ipb-confirmhideuser';
278 }
279
280 # Or if the user is trying to block themselves
281 if( (string)$this->target === $wgUser->getName() ){
282 $fields['Confirm']['type'] = 'check';
283 unset( $fields['Confirm']['default'] );
284 $this->preErrors[] = 'ipb-blockingself';
285 }
286 }
287
288 /**
289 * Add header elements like block log entries, etc.
290 * @param $form HTMLForm
291 * @return void
292 */
293 protected function doPreText( HTMLForm &$form ){
294 $form->addPreText( wfMsgExt( 'blockiptext', 'parse' ) );
295
296 $otherBlockMessages = array();
297 if( $this->target !== null ) {
298 # Get other blocks, i.e. from GlobalBlocking or TorBlock extension
299 wfRunHooks( 'OtherBlockLogLink', array( &$otherBlockMessages, $this->target ) );
300
301 if( count( $otherBlockMessages ) ) {
302 $s = Html::rawElement(
303 'h2',
304 array(),
305 wfMsgExt( 'ipb-otherblocks-header', 'parseinline', count( $otherBlockMessages ) )
306 ) . "\n";
307 $list = '';
308 foreach( $otherBlockMessages as $link ) {
309 $list .= Html::rawElement( 'li', array(), $link ) . "\n";
310 }
311 $s .= Html::rawElement(
312 'ul',
313 array( 'class' => 'mw-blockip-alreadyblocked' ),
314 $list
315 ) . "\n";
316 $form->addPreText( $s );
317 }
318 }
319 }
320
321 /**
322 * Add header text inside the form, just underneath where the errors would go
323 * @param $form HTMLForm
324 * @return void
325 */
326 protected function doHeaderText( HTMLForm &$form ){
327 global $wgRequest;
328 # Don't need to do anything if the form has been posted
329 if( !$wgRequest->wasPosted() && $this->preErrors ){
330 $s = HTMLForm::formatErrors( $this->preErrors );
331 if( $s ){
332 $form->addHeaderText( Html::rawElement(
333 'div',
334 array( 'class' => 'error' ),
335 $s
336 ) );
337 }
338 }
339 }
340
341 /**
342 * Add footer elements to the form
343 * @param $form HTMLForm
344 * @return void
345 */
346 protected function doPostText( HTMLForm &$form ){
347 global $wgUser, $wgLang;
348
349 $skin = $wgUser->getSkin();
350
351 # Link to the user's contributions, if applicable
352 if( $this->target instanceof User ){
353 $contribsPage = SpecialPage::getTitleFor( 'Contributions', $this->target->getName() );
354 $links[] = $skin->link(
355 $contribsPage,
356 wfMsgExt( 'ipb-blocklist-contribs', 'escape', $this->target->getName() )
357 );
358 }
359
360 # Link to unblock the specified user, or to a blank unblock form
361 if( $this->target instanceof User ) {
362 $message = wfMsgExt( 'ipb-unblock-addr', array( 'parseinline' ), $this->target->getName() );
363 $list = SpecialPage::getTitleFor( 'Unblock', $this->target->getName() );
364 } else {
365 $message = wfMsgExt( 'ipb-unblock', array( 'parseinline' ) );
366 $list = SpecialPage::getTitleFor( 'Unblock' );
367 }
368 $links[] = $skin->linkKnown( $list, $message, array() );
369
370 # Link to the block list
371 $links[] = $skin->linkKnown(
372 SpecialPage::getTitleFor( 'BlockList' ),
373 wfMsg( 'ipb-blocklist' )
374 );
375
376 # Link to edit the block dropdown reasons, if applicable
377 if ( $wgUser->isAllowed( 'editinterface' ) ) {
378 $links[] = $skin->link(
379 Title::makeTitle( NS_MEDIAWIKI, 'Ipbreason-dropdown' ),
380 wfMsgHtml( 'ipb-edit-dropdown' ),
381 array(),
382 array( 'action' => 'edit' )
383 );
384 }
385
386 $form->addPostText( Html::rawElement(
387 'p',
388 array( 'class' => 'mw-ipb-conveniencelinks' ),
389 $wgLang->pipeList( $links )
390 ) );
391
392 if( $this->target instanceof User ){
393 # Get relevant extracts from the block and suppression logs, if possible
394 $userpage = $this->target->getUserPage();
395 $out = '';
396
397 LogEventsList::showLogExtract(
398 $out,
399 'block',
400 $userpage->getPrefixedText(),
401 '',
402 array(
403 'lim' => 10,
404 'msgKey' => array( 'blocklog-showlog', $userpage->getText() ),
405 'showIfEmpty' => false
406 )
407 );
408 $form->addPostText( $out );
409
410 # Add suppression block entries if allowed
411 if( $wgUser->isAllowed( 'suppressionlog' ) ) {
412 LogEventsList::showLogExtract(
413 $out,
414 'suppress',
415 $userpage->getPrefixedText(),
416 '',
417 array(
418 'lim' => 10,
419 'conds' => array( 'log_action' => array( 'block', 'reblock', 'unblock' ) ),
420 'msgKey' => array( 'blocklog-showsuppresslog', $userpage->getText() ),
421 'showIfEmpty' => false
422 )
423 );
424 $form->addPostText( $out );
425 }
426 }
427 }
428
429 /**
430 * Determine the target of the block, and the type of target
431 * TODO: should be in Block.php?
432 * @param $par String subpage parameter passed to setup, or data value from
433 * the HTMLForm
434 * @param $request WebRequest optionally try and get data from a request too
435 * @return void
436 */
437 public static function getTargetAndType( $par, WebRequest $request = null ){
438 $i = 0;
439 $target = null;
440 while( true ){
441 switch( $i++ ){
442 case 0:
443 # The HTMLForm will check wpTarget first and only if it doesn't get
444 # a value use the default, which will be generated from the options
445 # below; so this has to have a higher precedence here than $par, or
446 # we could end up with different values in $this->target and the HTMLForm!
447 if( $request instanceof WebRequest ){
448 $target = $request->getText( 'wpTarget', null );
449 }
450 break;
451 case 1:
452 $target = $par;
453 break;
454 case 2:
455 if( $request instanceof WebRequest ){
456 $target = $request->getText( 'ip', null );
457 }
458 break;
459 case 3:
460 # B/C @since 1.18
461 if( $request instanceof WebRequest ){
462 $target = $request->getText( 'wpBlockAddress', null );
463 }
464 break;
465 case 4:
466 break 2;
467 }
468 list( $target, $type ) = Block::parseTarget( $target );
469 if( $type !== null ){
470 return array( $target, $type );
471 }
472 }
473 return array( null, null );
474 }
475
476 /**
477 * HTMLForm field validation-callback for Target field.
478 * @since 1.18
479 * @return Message
480 */
481 public static function validateTargetField( $value, $alldata = null ) {
482 global $wgBlockCIDRLimit;
483
484 list( $target, $type ) = self::getTargetAndType( $value );
485
486 if( $type == Block::TYPE_USER ){
487 # TODO: why do we not have a User->exists() method?
488 if( !$target->getId() ){
489 return wfMessage( 'nosuchusershort', $target->getName() );
490 }
491
492 $status = self::checkUnblockSelf( $target );
493 if ( $status !== true ) {
494 return wfMessage( 'badaccess', $status );
495 }
496
497 } elseif( $type == Block::TYPE_RANGE ){
498 list( $ip, $range ) = explode( '/', $target, 2 );
499
500 if( ( IP::isIPv4( $ip ) && $wgBlockCIDRLimit['IPv4'] == 32 )
501 || ( IP::isIPv6( $ip ) && $wgBlockCIDRLimit['IPV6'] == 128 ) )
502 {
503 # Range block effectively disabled
504 return wfMessage( 'range_block_disabled' );
505 }
506
507 if( ( IP::isIPv4( $ip ) && $range > 32 )
508 || ( IP::isIPv6( $ip ) && $range > 128 ) )
509 {
510 # Dodgy range
511 return wfMessage( 'ip_range_invalid' );
512 }
513
514 if( IP::isIPv4( $ip ) && $range < $wgBlockCIDRLimit['IPv4'] ) {
515 return wfMessage( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv4'] );
516 }
517
518 if( IP::isIPv6( $ip ) && $range < $wgBlockCIDRLimit['IPv6'] ) {
519 return wfMessage( 'ip_range_toolarge', $wgBlockCIDRLimit['IPv6'] );
520 }
521
522 } elseif( $type == Block::TYPE_IP ){
523 # All is well
524
525 } else {
526 return wfMessage( 'badipaddress' );
527 }
528
529 return true;
530 }
531
532 /**
533 * Given the form data, actually implement a block
534 * @param $data Array
535 * @return Bool|String
536 */
537 public static function processForm( array $data ){
538 global $wgUser, $wgBlockAllowsUTEdit;
539
540 // Handled by field validator callback
541 // self::validateTargetField( $data['Target'] );
542
543 # This might have been a hidden field or a checkbox, so interesting data
544 # can come from it
545 $data['Confirm'] = !in_array( $data['Confirm'], array( '', '0', null, false ), true );
546
547 list( $target, $type ) = self::getTargetAndType( $data['Target'] );
548 if( $type == Block::TYPE_USER ){
549 $user = $target;
550 $target = $user->getName();
551 $userId = $user->getId();
552
553 # Give admins a heads-up before they go and block themselves. Much messier
554 # to do this for IPs, but it's pretty unlikely they'd ever get the 'block'
555 # permission anyway, although the code does allow for it
556 if( $target === $wgUser->getName() && ( $data['PreviousTarget'] != $data['Target'] || !$data['Confirm'] ) )
557 {
558 return array( 'ipb-blockingself' );
559 }
560
561 } elseif( $type == Block::TYPE_RANGE ){
562 $userId = 0;
563
564 } elseif( $type == Block::TYPE_IP ){
565 $target = $target->getName();
566 $userId = 0;
567
568 } else {
569 # This should have been caught in the form field validation
570 return array( 'badipaddress' );
571 }
572
573 if( ( strlen( $data['Expiry'] ) == 0) || ( strlen( $data['Expiry'] ) > 50 )
574 || !self::parseExpiryInput( $data['Expiry'] ) )
575 {
576 return array( 'ipb_expiry_invalid' );
577 }
578
579 if( !isset( $data['DisableEmail'] ) ){
580 $data['DisableEmail'] = false;
581 }
582
583 # If the user has done the form 'properly', they won't even have been given the
584 # option to suppress-block unless they have the 'hideuser' permission
585 if( !isset( $data['HideUser'] ) ){
586 $data['HideUser'] = false;
587 }
588 if( $data['HideUser'] ) {
589 if( !$wgUser->isAllowed('hideuser') ){
590 # this codepath is unreachable except by a malicious user spoofing forms,
591 # or by race conditions (user has oversight and sysop, loads block form,
592 # and is de-oversighted before submission); so need to fail completely
593 # rather than just silently disable hiding
594 return array( 'badaccess-group0' );
595 }
596
597 # Recheck params here...
598 if( $type != Block::TYPE_USER ) {
599 $data['HideUser'] = false; # IP users should not be hidden
600
601 } elseif( !in_array( $data['Expiry'], array( 'infinite', 'infinity', 'indefinite' ) ) ) {
602 # Bad expiry.
603 return array( 'ipb_expiry_temp' );
604
605 } elseif( $user->getEditCount() > self::HIDEUSER_CONTRIBLIMIT ) {
606 # Typically, the user should have a handful of edits.
607 # Disallow hiding users with many edits for performance.
608 return array( 'ipb_hide_invalid' );
609
610 } elseif( !$data['Confirm'] ){
611 return array( 'ipb-confirmhideuser' );
612 }
613 }
614
615 # Create block object.
616 $block = new Block();
617 $block->setTarget( $target );
618 $block->setBlocker( $wgUser );
619 $block->mReason = $data['Reason'][0];
620 $block->mExpiry = self::parseExpiryInput( $data['Expiry'] );
621 $block->prevents( 'createaccount', $data['CreateAccount'] );
622 $block->prevents( 'editownusertalk', ( !$wgBlockAllowsUTEdit || $data['DisableUTEdit'] ) );
623 $block->prevents( 'sendemail', $data['DisableEmail'] );
624 $block->isHardblock( $data['HardBlock'] );
625 $block->isAutoblocking( $data['AutoBlock'] );
626 $block->mHideName = $data['HideUser'];
627
628 if( !wfRunHooks( 'BlockIp', array( &$block, &$wgUser ) ) ) {
629 return array( 'hookaborted' );
630 }
631
632 # Try to insert block. Is there a conflicting block?
633 $status = $block->insert();
634 if( !$status ) {
635 # Show form unless the user is already aware of this...
636 if( ( array_key_exists('PreviousTarget', $data ) && $data['PreviousTarget'] != htmlspecialchars( $block->getTarget() ) ) || !$data['Confirm'] ) {
637 return array( array( 'ipb_already_blocked', $block->getTarget() ) );
638 # Otherwise, try to update the block...
639 } else {
640 # This returns direct blocks before autoblocks/rangeblocks, since we should
641 # be sure the user is blocked by now it should work for our purposes
642 $currentBlock = Block::newFromTarget( $target );
643
644 if( $block->equals( $currentBlock ) ) {
645 return array( array( 'ipb_already_blocked', $block->getTarget() ) );
646 }
647
648 # If the name was hidden and the blocking user cannot hide
649 # names, then don't allow any block changes...
650 if( $currentBlock->mHideName && !$wgUser->isAllowed( 'hideuser' ) ) {
651 return array( 'cant-see-hidden-user' );
652 }
653
654 $currentBlock->delete();
655 $status = $block->insert();
656 $logaction = 'reblock';
657
658 # Unset _deleted fields if requested
659 if( $currentBlock->mHideName && !$data['HideUser'] ) {
660 RevisionDeleteUser::unsuppressUserName( $target, $userId );
661 }
662
663 # If hiding/unhiding a name, this should go in the private logs
664 if( (bool)$currentBlock->mHideName ){
665 $data['HideUser'] = true;
666 }
667 }
668 } else {
669 $logaction = 'block';
670 }
671
672 wfRunHooks( 'BlockIpComplete', array( $block, $wgUser ) );
673
674 # Set *_deleted fields if requested
675 if( $data['HideUser'] ) {
676 RevisionDeleteUser::suppressUserName( $target, $userId );
677 }
678
679 # Can't watch a rangeblock
680 if( $type != Block::TYPE_RANGE && $data['Watch'] ) {
681 $wgUser->addWatch( Title::makeTitle( NS_USER, $target ) );
682 }
683
684 # Block constructor sanitizes certain block options on insert
685 $data['BlockEmail'] = $block->prevents( 'sendemail' );
686 $data['AutoBlock'] = $block->isAutoblocking();
687
688 # Prepare log parameters
689 $logParams = array();
690 $logParams[] = $data['Expiry'];
691 $logParams[] = self::blockLogFlags( $data, $type );
692
693 # Make log entry, if the name is hidden, put it in the oversight log
694 $log_type = $data['HideUser'] ? 'suppress' : 'block';
695 $log = new LogPage( $log_type );
696 $log_id = $log->addEntry(
697 $logaction,
698 Title::makeTitle( NS_USER, $target ),
699 $data['Reason'][0],
700 $logParams
701 );
702 # Relate log ID to block IDs (bug 25763)
703 $blockIds = array_merge( array( $status['id'] ), $status['autoIds'] );
704 $log->addRelations( 'ipb_id', $blockIds, $log_id );
705
706 # Report to the user
707 return true;
708 }
709
710 /**
711 * Get an array of suggested block durations from MediaWiki:Ipboptions
712 * @todo FIXME: This uses a rather odd syntax for the options, should it be converted
713 * to the standard "**<duration>|<displayname>" format?
714 * @return Array
715 */
716 public static function getSuggestedDurations( $lang = null ){
717 $a = array();
718 $msg = $lang === null
719 ? wfMessage( 'ipboptions' )->inContentLanguage()->text()
720 : wfMessage( 'ipboptions' )->inLanguage( $lang )->text();
721
722 if( $msg == '-' ){
723 return array();
724 }
725
726 foreach( explode( ',', $msg ) as $option ) {
727 if( strpos( $option, ':' ) === false ){
728 $option = "$option:$option";
729 }
730 list( $show, $value ) = explode( ':', $option );
731 $a[htmlspecialchars( $show )] = htmlspecialchars( $value );
732 }
733 return $a;
734 }
735
736 /**
737 * Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute
738 * ("24 May 2034", etc), into an absolute timestamp we can put into the database.
739 * @param $expiry String: whatever was typed into the form
740 * @return String: timestamp or "infinity" string for the DB implementation
741 */
742 public static function parseExpiryInput( $expiry ) {
743 static $infinity;
744 if( $infinity == null ){
745 $infinity = wfGetDB( DB_SLAVE )->getInfinity();
746 }
747 if ( $expiry == 'infinite' || $expiry == 'indefinite' ) {
748 $expiry = $infinity;
749 } else {
750 $expiry = strtotime( $expiry );
751 if ( $expiry < 0 || $expiry === false ) {
752 return false;
753 }
754 $expiry = wfTimestamp( TS_MW, $expiry );
755 }
756 return $expiry;
757 }
758
759 /**
760 * Can we do an email block?
761 * @param $user User: the sysop wanting to make a block
762 * @return Boolean
763 */
764 public static function canBlockEmail( $user ) {
765 global $wgEnableUserEmail, $wgSysopEmailBans;
766 return ( $wgEnableUserEmail && $wgSysopEmailBans && $user->isAllowed( 'blockemail' ) );
767 }
768
769 /**
770 * bug 15810: blocked admins should not be able to block/unblock
771 * others, and probably shouldn't be able to unblock themselves
772 * either.
773 * @param $user User|Int|String
774 */
775 public static function checkUnblockSelf( $user ) {
776 global $wgUser;
777 if ( is_int( $user ) ) {
778 $user = User::newFromId( $user );
779 } elseif ( is_string( $user ) ) {
780 $user = User::newFromName( $user );
781 }
782 if( $wgUser->isBlocked() ){
783 if( $user instanceof User && $user->getId() == $wgUser->getId() ) {
784 # User is trying to unblock themselves
785 if ( $wgUser->isAllowed( 'unblockself' ) ) {
786 return true;
787 } else {
788 return 'ipbnounblockself';
789 }
790 } else {
791 # User is trying to block/unblock someone else
792 return 'ipbblocked';
793 }
794 } else {
795 return true;
796 }
797 }
798
799 /**
800 * Return a comma-delimited list of "flags" to be passed to the log
801 * reader for this block, to provide more information in the logs
802 * @param $data Array from HTMLForm data
803 * @param $type Block::TYPE_ constant
804 * @return array
805 */
806 protected static function blockLogFlags( array $data, $type ) {
807 global $wgBlockAllowsUTEdit;
808 $flags = array();
809
810 # when blocking a user the option 'anononly' is not available/has no effect -> do not write this into log
811 if( !$data['HardBlock'] && $type != Block::TYPE_USER ){
812 $flags[] = 'anononly';
813 }
814
815 if( $data['CreateAccount'] ){
816 $flags[] = 'nocreate';
817 }
818
819 # Same as anononly, this is not displayed when blocking an IP address
820 if( !$data['AutoBlock'] && $type != Block::TYPE_IP ){
821 $flags[] = 'noautoblock';
822 }
823
824 if( $data['DisableEmail'] ){
825 $flags[] = 'noemail';
826 }
827
828 if( $wgBlockAllowsUTEdit && $data['DisableUTEdit'] ){
829 $flags[] = 'nousertalk';
830 }
831
832 if( $data['HideUser'] ){
833 $flags[] = 'hiddenname';
834 }
835
836 return implode( ',', $flags );
837 }
838 }
839
840 # BC @since 1.18
841 class IPBlockForm extends SpecialBlock {}