E_STRICT
[lhc/web/wiklou.git] / includes / specials / SpecialBlockip.php
1 <?php
2 /**
3 * Constructor for Special:Blockip page
4 *
5 * @file
6 * @ingroup SpecialPage
7 */
8
9 /**
10 * Constructor
11 */
12 function wfSpecialBlockip( $par ) {
13 global $wgUser, $wgOut, $wgRequest;
14
15 # Can't block when the database is locked
16 if( wfReadOnly() ) {
17 $wgOut->readOnlyPage();
18 return;
19 }
20
21 # Permission check
22 if( !$wgUser->isAllowed( 'block' ) ) {
23 $wgOut->permissionRequired( 'block' );
24 return;
25 }
26
27 $ipb = new IPBlockForm( $par );
28
29 $action = $wgRequest->getVal( 'action' );
30 if ( 'success' == $action ) {
31 $ipb->showSuccess();
32 } else if ( $wgRequest->wasPosted() && 'submit' == $action &&
33 $wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) ) ) {
34 $ipb->doSubmit();
35 } else {
36 $ipb->showForm( '' );
37 }
38 }
39
40 /**
41 * Form object for the Special:Blockip page.
42 *
43 * @ingroup SpecialPage
44 */
45 class IPBlockForm {
46 var $BlockAddress, $BlockExpiry, $BlockReason;
47 # var $BlockEmail;
48
49 function IPBlockForm( $par ) {
50 global $wgRequest, $wgUser, $wgBlockAllowsUTEdit;
51
52 $this->BlockAddress = $wgRequest->getVal( 'wpBlockAddress', $wgRequest->getVal( 'ip', $par ) );
53 $this->BlockAddress = strtr( $this->BlockAddress, '_', ' ' );
54 $this->BlockReason = $wgRequest->getText( 'wpBlockReason' );
55 $this->BlockReasonList = $wgRequest->getText( 'wpBlockReasonList' );
56 $this->BlockExpiry = $wgRequest->getVal( 'wpBlockExpiry', wfMsg('ipbotheroption') );
57 $this->BlockOther = $wgRequest->getVal( 'wpBlockOther', '' );
58
59 # Unchecked checkboxes are not included in the form data at all, so having one
60 # that is true by default is a bit tricky
61 $byDefault = !$wgRequest->wasPosted();
62 $this->BlockAnonOnly = $wgRequest->getBool( 'wpAnonOnly', $byDefault );
63 $this->BlockCreateAccount = $wgRequest->getBool( 'wpCreateAccount', $byDefault );
64 $this->BlockEnableAutoblock = $wgRequest->getBool( 'wpEnableAutoblock', $byDefault );
65 $this->BlockEmail = $wgRequest->getBool( 'wpEmailBan', false );
66 $this->BlockWatchUser = $wgRequest->getBool( 'wpWatchUser', false );
67 # Re-check user's rights to hide names, very serious, defaults to 0
68 $this->BlockHideName = ( $wgRequest->getBool( 'wpHideName', 0 ) && $wgUser->isAllowed( 'hideuser' ) ) ? 1 : 0;
69 $this->BlockAllowUsertalk = ( $wgRequest->getBool( 'wpAllowUsertalk', $byDefault ) && $wgBlockAllowsUTEdit );
70 $this->BlockReblock = $wgRequest->getBool( 'wpChangeBlock', false );
71 }
72
73 function showForm( $err ) {
74 global $wgOut, $wgUser, $wgSysopUserBans;
75
76 $wgOut->setPagetitle( wfMsg( 'blockip' ) );
77 $wgOut->addWikiMsg( 'blockiptext' );
78
79 if($wgSysopUserBans) {
80 $mIpaddress = Xml::label( wfMsg( 'ipadressorusername' ), 'mw-bi-target' );
81 } else {
82 $mIpaddress = Xml::label( wfMsg( 'ipaddress' ), 'mw-bi-target' );
83 }
84 $mIpbexpiry = Xml::label( wfMsg( 'ipbexpiry' ), 'wpBlockExpiry' );
85 $mIpbother = Xml::label( wfMsg( 'ipbother' ), 'mw-bi-other' );
86 $mIpbreasonother = Xml::label( wfMsg( 'ipbreason' ), 'wpBlockReasonList' );
87 $mIpbreason = Xml::label( wfMsg( 'ipbotherreason' ), 'mw-bi-reason' );
88
89 $titleObj = SpecialPage::getTitleFor( 'Blockip' );
90 $user = User::newFromName( $this->BlockAddress );
91
92 $alreadyBlocked = false;
93 if ( $err && $err[0] != 'ipb_already_blocked' ) {
94 $key = array_shift($err);
95 $msg = wfMsgReal($key, $err);
96 $wgOut->setSubtitle( wfMsgHtml( 'formerror' ) );
97 $wgOut->addHTML( Xml::tags( 'p', array( 'class' => 'error' ), $msg ) );
98 } elseif ( $this->BlockAddress ) {
99 $userId = 0;
100 if ( is_object( $user ) )
101 $userId = $user->getId();
102 $currentBlock = Block::newFromDB( $this->BlockAddress, $userId );
103 if ( !is_null($currentBlock) && !$currentBlock->mAuto && # The block exists and isn't an autoblock
104 ( $currentBlock->mRangeStart == $currentBlock->mRangeEnd || # The block isn't a rangeblock
105 # or if it is, the range is what we're about to block
106 ( $currentBlock->mAddress == $this->BlockAddress ) ) ) {
107 $wgOut->addWikiMsg( 'ipb-needreblock', $this->BlockAddress );
108 $alreadyBlocked = true;
109 # Set the block form settings to the existing block
110 $this->BlockAnonOnly = $currentBlock->mAnonOnly;
111 $this->BlockCreateAccount = $currentBlock->mCreateAccount;
112 $this->BlockEnableAutoblock = $currentBlock->mEnableAutoblock;
113 $this->BlockEmail = $currentBlock->mBlockEmail;
114 $this->BlockHideName = $currentBlock->mHideName;
115 $this->BlockAllowUsertalk = $currentBlock->mAllowUsertalk;
116 if( $currentBlock->mExpiry == 'infinity' ) {
117 $this->BlockOther = 'indefinite';
118 } else {
119 $this->BlockOther = wfTimestamp( TS_ISO_8601, $currentBlock->mExpiry );
120 }
121 $this->BlockReason = $currentBlock->mReason;
122 }
123 }
124
125 $scBlockExpiryOptions = wfMsgForContent( 'ipboptions' );
126
127 $showblockoptions = $scBlockExpiryOptions != '-';
128 if (!$showblockoptions)
129 $mIpbother = $mIpbexpiry;
130
131 $blockExpiryFormOptions = Xml::option( wfMsg( 'ipbotheroption' ), 'other' );
132 foreach (explode(',', $scBlockExpiryOptions) as $option) {
133 if ( strpos($option, ":") === false ) $option = "$option:$option";
134 list($show, $value) = explode(":", $option);
135 $show = htmlspecialchars($show);
136 $value = htmlspecialchars($value);
137 $blockExpiryFormOptions .= Xml::option( $show, $value, $this->BlockExpiry === $value ? true : false ) . "\n";
138 }
139
140 $reasonDropDown = Xml::listDropDown( 'wpBlockReasonList',
141 wfMsgForContent( 'ipbreason-dropdown' ),
142 wfMsgForContent( 'ipbreasonotherlist' ), $this->BlockReasonList, 'wpBlockDropDown', 4 );
143
144 global $wgStylePath, $wgStyleVersion;
145 $wgOut->addHTML(
146 Xml::tags( 'script', array( 'type' => 'text/javascript', 'src' => "$wgStylePath/common/block.js?$wgStyleVersion" ), '' ) .
147 Xml::openElement( 'form', array( 'method' => 'post', 'action' => $titleObj->getLocalURL( "action=submit" ), 'id' => 'blockip' ) ) .
148 Xml::openElement( 'fieldset' ) .
149 Xml::element( 'legend', null, wfMsg( 'blockip-legend' ) ) .
150 Xml::openElement( 'table', array ( 'border' => '0', 'id' => 'mw-blockip-table' ) ) .
151 "<tr>
152 <td class='mw-label'>
153 {$mIpaddress}
154 </td>
155 <td class='mw-input'>" .
156 Xml::input( 'wpBlockAddress', 45, $this->BlockAddress,
157 array(
158 'tabindex' => '1',
159 'id' => 'mw-bi-target',
160 'onchange' => 'updateBlockOptions()' ) ). "
161 </td>
162 </tr>
163 <tr>"
164 );
165 if ( $showblockoptions ) {
166 $wgOut->addHTML("
167 <td class='mw-label'>
168 {$mIpbexpiry}
169 </td>
170 <td class='mw-input'>" .
171 Xml::tags( 'select',
172 array(
173 'id' => 'wpBlockExpiry',
174 'name' => 'wpBlockExpiry',
175 'onchange' => 'considerChangingExpiryFocus()',
176 'tabindex' => '2' ),
177 $blockExpiryFormOptions ) .
178 "</td>"
179 );
180 }
181 $wgOut->addHTML("
182 </tr>
183 <tr id='wpBlockOther'>
184 <td class='mw-label'>
185 {$mIpbother}
186 </td>
187 <td class='mw-input'>" .
188 Xml::input( 'wpBlockOther', 45, $this->BlockOther,
189 array( 'tabindex' => '3', 'id' => 'mw-bi-other' ) ) . "
190 </td>
191 </tr>
192 <tr>
193 <td class='mw-label'>
194 {$mIpbreasonother}
195 </td>
196 <td class='mw-input'>
197 {$reasonDropDown}
198 </td>
199 </tr>
200 <tr id=\"wpBlockReason\">
201 <td class='mw-label'>
202 {$mIpbreason}
203 </td>
204 <td class='mw-input'>" .
205 Xml::input( 'wpBlockReason', 45, $this->BlockReason,
206 array( 'tabindex' => '5', 'id' => 'mw-bi-reason', 'maxlength'=> '200' ) ) . "
207 </td>
208 </tr>
209 <tr id='wpAnonOnlyRow'>
210 <td>&nbsp;</td>
211 <td class='mw-input'>" .
212 Xml::checkLabel( wfMsg( 'ipbanononly' ),
213 'wpAnonOnly', 'wpAnonOnly', $this->BlockAnonOnly,
214 array( 'tabindex' => '6' ) ) . "
215 </td>
216 </tr>
217 <tr id='wpCreateAccountRow'>
218 <td>&nbsp;</td>
219 <td class='mw-input'>" .
220 Xml::checkLabel( wfMsg( 'ipbcreateaccount' ),
221 'wpCreateAccount', 'wpCreateAccount', $this->BlockCreateAccount,
222 array( 'tabindex' => '7' ) ) . "
223 </td>
224 </tr>
225 <tr id='wpEnableAutoblockRow'>
226 <td>&nbsp;</td>
227 <td class='mw-input'>" .
228 Xml::checkLabel( wfMsg( 'ipbenableautoblock' ),
229 'wpEnableAutoblock', 'wpEnableAutoblock', $this->BlockEnableAutoblock,
230 array( 'tabindex' => '8' ) ) . "
231 </td>
232 </tr>"
233 );
234
235 global $wgSysopEmailBans, $wgBlockAllowsUTEdit;
236 if ( $wgSysopEmailBans && $wgUser->isAllowed( 'blockemail' ) ) {
237 $wgOut->addHTML("
238 <tr id='wpEnableEmailBan'>
239 <td>&nbsp;</td>
240 <td class='mw-input'>" .
241 Xml::checkLabel( wfMsg( 'ipbemailban' ),
242 'wpEmailBan', 'wpEmailBan', $this->BlockEmail,
243 array( 'tabindex' => '9' )) . "
244 </td>
245 </tr>"
246 );
247 }
248
249 // Allow some users to hide name from block log, blocklist and listusers
250 if ( $wgUser->isAllowed( 'hideuser' ) ) {
251 $wgOut->addHTML("
252 <tr id='wpEnableHideUser'>
253 <td>&nbsp;</td>
254 <td class='mw-input'>" .
255 Xml::checkLabel( wfMsg( 'ipbhidename' ),
256 'wpHideName', 'wpHideName', $this->BlockHideName,
257 array( 'tabindex' => '10' ) ) . "
258 </td>
259 </tr>"
260 );
261 }
262
263 # Watchlist their user page?
264 $wgOut->addHTML("
265 <tr id='wpEnableWatchUser'>
266 <td>&nbsp;</td>
267 <td class='mw-input'>" .
268 Xml::checkLabel( wfMsg( 'ipbwatchuser' ),
269 'wpWatchUser', 'wpWatchUser', $this->BlockWatchUser,
270 array( 'tabindex' => '11' ) ) . "
271 </td>
272 </tr>"
273 );
274 if( $wgBlockAllowsUTEdit ){
275 $wgOut->addHTML("
276 <tr id='wpAllowUsertalkRow'>
277 <td>&nbsp;</td>
278 <td class='mw-input'>" .
279 Xml::checkLabel( wfMsg( 'ipballowusertalk' ),
280 'wpAllowUsertalk', 'wpAllowUsertalk', $this->BlockAllowUsertalk,
281 array( 'tabindex' => '12' ) ) . "
282 </td>
283 </tr>"
284 );
285 }
286
287 $wgOut->addHTML("
288 <tr>
289 <td style='padding-top: 1em'>&nbsp;</td>
290 <td class='mw-submit' style='padding-top: 1em'>" .
291 Xml::submitButton( wfMsg( $alreadyBlocked ? 'ipb-change-block' : 'ipbsubmit' ),
292 array( 'name' => 'wpBlock', 'tabindex' => '13', 'accesskey' => 's' ) ) . "
293 </td>
294 </tr>" .
295 Xml::closeElement( 'table' ) .
296 Xml::hidden( 'wpEditToken', $wgUser->editToken() ) .
297 ( $alreadyBlocked ? Xml::hidden( 'wpChangeBlock', 1 ) : "" ) .
298 Xml::closeElement( 'fieldset' ) .
299 Xml::closeElement( 'form' ) .
300 Xml::tags( 'script', array( 'type' => 'text/javascript' ), 'updateBlockOptions()' ) . "\n"
301 );
302
303 $wgOut->addHTML( $this->getConvenienceLinks() );
304
305 if( is_object( $user ) ) {
306 $this->showLogFragment( $wgOut, $user->getUserPage() );
307 } elseif( preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/', $this->BlockAddress ) ) {
308 $this->showLogFragment( $wgOut, Title::makeTitle( NS_USER, $this->BlockAddress ) );
309 } elseif( preg_match( '/^\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}/', $this->BlockAddress ) ) {
310 $this->showLogFragment( $wgOut, Title::makeTitle( NS_USER, $this->BlockAddress ) );
311 }
312 }
313
314 /**
315 * Backend block code.
316 * $userID and $expiry will be filled accordingly
317 * @return array(message key, arguments) on failure, empty array on success
318 */
319 function doBlock( &$userId = null, &$expiry = null ) {
320 global $wgUser, $wgSysopUserBans, $wgSysopRangeBans, $wgBlockAllowsUTEdit;
321
322 $userId = 0;
323 # Expand valid IPv6 addresses, usernames are left as is
324 $this->BlockAddress = IP::sanitizeIP( $this->BlockAddress );
325 # isIPv4() and IPv6() are used for final validation
326 $rxIP4 = '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';
327 $rxIP6 = '\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}:\w{1,4}';
328 $rxIP = "($rxIP4|$rxIP6)";
329
330 # Check for invalid specifications
331 if ( !preg_match( "/^$rxIP$/", $this->BlockAddress ) ) {
332 $matches = array();
333 if ( preg_match( "/^($rxIP4)\\/(\\d{1,2})$/", $this->BlockAddress, $matches ) ) {
334 # IPv4
335 if ( $wgSysopRangeBans ) {
336 if ( !IP::isIPv4( $this->BlockAddress ) || $matches[2] < 16 || $matches[2] > 32 ) {
337 return array('ip_range_invalid');
338 }
339 $this->BlockAddress = Block::normaliseRange( $this->BlockAddress );
340 } else {
341 # Range block illegal
342 return array('range_block_disabled');
343 }
344 } else if ( preg_match( "/^($rxIP6)\\/(\\d{1,3})$/", $this->BlockAddress, $matches ) ) {
345 # IPv6
346 if ( $wgSysopRangeBans ) {
347 if ( !IP::isIPv6( $this->BlockAddress ) || $matches[2] < 64 || $matches[2] > 128 ) {
348 return array('ip_range_invalid');
349 }
350 $this->BlockAddress = Block::normaliseRange( $this->BlockAddress );
351 } else {
352 # Range block illegal
353 return array('range_block_disabled');
354 }
355 } else {
356 # Username block
357 if ( $wgSysopUserBans ) {
358 $user = User::newFromName( $this->BlockAddress );
359 if( !is_null( $user ) && $user->getId() ) {
360 # Use canonical name
361 $userId = $user->getId();
362 $this->BlockAddress = $user->getName();
363 } else {
364 return array('nosuchusershort', htmlspecialchars( $user ? $user->getName() : $this->BlockAddress ) );
365 }
366 } else {
367 return array('badipaddress');
368 }
369 }
370 }
371
372 if ( $wgUser->isBlocked() && ( $wgUser->getId() !== $userId ) ) {
373 return array( 'cant-block-while-blocked' );
374 }
375
376 $reasonstr = $this->BlockReasonList;
377 if ( $reasonstr != 'other' && $this->BlockReason != '' ) {
378 // Entry from drop down menu + additional comment
379 $reasonstr .= wfMsgForContent( 'colon-separator' ) . $this->BlockReason;
380 } elseif ( $reasonstr == 'other' ) {
381 $reasonstr = $this->BlockReason;
382 }
383
384 $expirestr = $this->BlockExpiry;
385 if( $expirestr == 'other' )
386 $expirestr = $this->BlockOther;
387
388 if ( ( strlen( $expirestr ) == 0) || ( strlen( $expirestr ) > 50) ) {
389 return array('ipb_expiry_invalid');
390 }
391
392 if ( false === ($expiry = Block::parseExpiryInput( $expirestr )) ) {
393 // Bad expiry.
394 return array('ipb_expiry_invalid');
395 }
396
397 if( $this->BlockHideName && $expiry != 'infinity' ) {
398 // Bad expiry.
399 return array('ipb_expiry_temp');
400 }
401
402 # Create block
403 # Note: for a user block, ipb_address is only for display purposes
404 $block = new Block( $this->BlockAddress, $userId, $wgUser->getId(),
405 $reasonstr, wfTimestampNow(), 0, $expiry, $this->BlockAnonOnly,
406 $this->BlockCreateAccount, $this->BlockEnableAutoblock, $this->BlockHideName,
407 $this->BlockEmail, isset( $this->BlockAllowUsertalk ) ? $this->BlockAllowUsertalk : $wgBlockAllowsUTEdit
408 );
409
410 if ( wfRunHooks('BlockIp', array(&$block, &$wgUser)) ) {
411
412 if ( !$block->insert() ) {
413 if ( !$this->BlockReblock ) {
414 return array( 'ipb_already_blocked' );
415 } else {
416 # This returns direct blocks before autoblocks/rangeblocks, since we should
417 # be sure the user is blocked by now it should work for our purposes
418 $currentBlock = Block::newFromDB( $this->BlockAddress, $userId );
419 if( $block->equals( $currentBlock ) ) {
420 return array( 'ipb_already_blocked' );
421 }
422 $currentBlock->delete();
423 $block->insert();
424 $log_action = 'reblock';
425 }
426 } else {
427 $log_action = 'block';
428 }
429 wfRunHooks('BlockIpComplete', array($block, $wgUser));
430
431 if ( $this->BlockWatchUser ) {
432 $wgUser->addWatch ( Title::makeTitle( NS_USER, $this->BlockAddress ) );
433 }
434
435 # Block constructor sanitizes certain block options on insert
436 $this->BlockEmail = $block->mBlockEmail;
437 $this->BlockEnableAutoblock = $block->mEnableAutoblock;
438
439 # Prepare log parameters
440 $logParams = array();
441 $logParams[] = $expirestr;
442 $logParams[] = $this->blockLogFlags();
443
444 # Make log entry, if the name is hidden, put it in the oversight log
445 $log_type = ($this->BlockHideName) ? 'suppress' : 'block';
446 $log = new LogPage( $log_type );
447 $log->addEntry( $log_action, Title::makeTitle( NS_USER, $this->BlockAddress ),
448 $reasonstr, $logParams );
449
450 # Report to the user
451 return array();
452 }
453 else
454 return array('hookaborted');
455 }
456
457 /**
458 * UI entry point for blocking
459 * Wraps around doBlock()
460 */
461 function doSubmit()
462 {
463 global $wgOut;
464 $retval = $this->doBlock();
465 if(empty($retval)) {
466 $titleObj = SpecialPage::getTitleFor( 'Blockip' );
467 $wgOut->redirect( $titleObj->getFullURL( 'action=success&ip=' .
468 urlencode( $this->BlockAddress ) ) );
469 return;
470 }
471 $this->showForm( $retval );
472 }
473
474 function showSuccess() {
475 global $wgOut;
476
477 $wgOut->setPagetitle( wfMsg( 'blockip' ) );
478 $wgOut->setSubtitle( wfMsg( 'blockipsuccesssub' ) );
479 $text = wfMsgExt( 'blockipsuccesstext', array( 'parse' ), $this->BlockAddress );
480 $wgOut->addHTML( $text );
481 }
482
483 function showLogFragment( $out, $title ) {
484 global $wgUser;
485 $out->addHTML( Xml::element( 'h2', NULL, LogPage::logName( 'block' ) ) );
486 $count = LogEventsList::showLogExtract( $out, 'block', $title->getPrefixedText(), '', 10 );
487 if($count > 10){
488 $out->addHTML( $wgUser->getSkin()->link(
489 SpecialPage::getTitleFor( 'Log' ),
490 wfMsgHtml( 'blocklog-fulllog' ),
491 array(),
492 array(
493 'type' => 'block',
494 'page' => $title->getPrefixedText() ) ) );
495 }
496 }
497
498 /**
499 * Return a comma-delimited list of "flags" to be passed to the log
500 * reader for this block, to provide more information in the logs
501 *
502 * @return array
503 */
504 private function blockLogFlags() {
505 global $wgBlockAllowsUTEdit;
506 $flags = array();
507 if( $this->BlockAnonOnly && IP::isIPAddress( $this->BlockAddress ) )
508 // when blocking a user the option 'anononly' is not available/has no effect -> do not write this into log
509 $flags[] = 'anononly';
510 if( $this->BlockCreateAccount )
511 $flags[] = 'nocreate';
512 if( !$this->BlockEnableAutoblock )
513 $flags[] = 'noautoblock';
514 if ( $this->BlockEmail )
515 $flags[] = 'noemail';
516 if ( !$this->BlockAllowUsertalk && $wgBlockAllowsUTEdit )
517 $flags[] = 'nousertalk';
518 return implode( ',', $flags );
519 }
520
521 /**
522 * Builds unblock and block list links
523 *
524 * @return string
525 */
526 private function getConvenienceLinks() {
527 global $wgUser;
528 $skin = $wgUser->getSkin();
529 if( $this->BlockAddress )
530 $links[] = $this->getContribsLink( $skin );
531 $links[] = $this->getUnblockLink( $skin );
532 $links[] = $this->getBlockListLink( $skin );
533 $links[] = $skin->makeLink ( 'MediaWiki:Ipbreason-dropdown', wfMsgHtml( 'ipb-edit-dropdown' ) );
534 return '<p class="mw-ipb-conveniencelinks">' . implode( ' | ', $links ) . '</p>';
535 }
536
537 /**
538 * Build a convenient link to a user or IP's contribs
539 * form
540 *
541 * @param $skin Skin to use
542 * @return string
543 */
544 private function getContribsLink( $skin ) {
545 $contribsPage = SpecialPage::getTitleFor( 'Contributions', $this->BlockAddress );
546 return $skin->link( $contribsPage, wfMsgHtml( 'ipb-blocklist-contribs', $this->BlockAddress ) );
547 }
548
549 /**
550 * Build a convenient link to unblock the given username or IP
551 * address, if available; otherwise link to a blank unblock
552 * form
553 *
554 * @param $skin Skin to use
555 * @return string
556 */
557 private function getUnblockLink( $skin ) {
558 $list = SpecialPage::getTitleFor( 'Ipblocklist' );
559 if( $this->BlockAddress ) {
560 $addr = htmlspecialchars( strtr( $this->BlockAddress, '_', ' ' ) );
561 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock-addr', $addr ),
562 'action=unblock&ip=' . urlencode( $this->BlockAddress ) );
563 } else {
564 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock' ), 'action=unblock' );
565 }
566 }
567
568 /**
569 * Build a convenience link to the block list
570 *
571 * @param $skin Skin to use
572 * @return string
573 */
574 private function getBlockListLink( $skin ) {
575 $list = SpecialPage::getTitleFor( 'Ipblocklist' );
576 if( $this->BlockAddress ) {
577 $addr = htmlspecialchars( strtr( $this->BlockAddress, '_', ' ' ) );
578 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-blocklist-addr', $addr ),
579 'ip=' . urlencode( $this->BlockAddress ) );
580 } else {
581 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-blocklist' ) );
582 }
583 }
584
585 /**
586 * Block a list of selected users
587 * @param array $users
588 * @param string $reason
589 * @param string $tag replaces user pages
590 * @param string $talkTag replaces user talk pages
591 * @returns array, list of html-safe usernames
592 */
593 public static function doMassUserBlock( $users, $reason = '', $tag = '', $talkTag = '' ) {
594 global $wgUser;
595 $counter = $blockSize = 0;
596 $safeUsers = array();
597 $log = new LogPage( 'block' );
598 foreach( $users as $name ) {
599 # Enforce limits
600 $counter++;
601 $blockSize++;
602 # Lets not go *too* fast
603 if( $blockSize >= 20 ) {
604 $blockSize = 0;
605 wfWaitForSlaves( 5 );
606 }
607 $u = User::newFromName( $name, false );
608 // If user doesn't exist, it ought to be an IP then
609 if( is_null($u) || (!$u->getId() && !IP::isIPAddress( $u->getName() )) ) {
610 continue;
611 }
612 $userTitle = $u->getUserPage();
613 $userTalkTitle = $u->getTalkPage();
614 $userpage = new Article( $userTitle );
615 $usertalk = new Article( $userTalkTitle );
616 $safeUsers[] = '[[' . $userTitle->getPrefixedText() . '|' . $userTitle->getText() . ']]';
617 $expirestr = $u->getId() ? 'indefinite' : '1 week';
618 $expiry = Block::parseExpiryInput( $expirestr );
619 $anonOnly = IP::isIPAddress( $u->getName() ) ? 1 : 0;
620 // Create the block
621 $block = new Block( $u->getName(), // victim
622 $u->getId(), // uid
623 $wgUser->getId(), // blocker
624 $reason, // comment
625 wfTimestampNow(), // block time
626 0, // auto ?
627 $expiry, // duration
628 $anonOnly, // anononly?
629 1, // block account creation?
630 1, // autoblocking?
631 0, // suppress name?
632 0 // block from sending email?
633 );
634 $oldblock = Block::newFromDB( $u->getName(), $u->getId() );
635 if( !$oldblock ) {
636 $block->insert();
637 # Prepare log parameters
638 $logParams = array();
639 $logParams[] = $expirestr;
640 if( $anonOnly ) {
641 $logParams[] = 'anononly';
642 }
643 $logParams[] = 'nocreate';
644 # Add log entry
645 $log->addEntry( 'block', $userTitle, $reason, $logParams );
646 }
647 # Tag userpage! (check length to avoid mistakes)
648 if( strlen($tag) > 2 ) {
649 $userpage->doEdit( $tag, $reason, EDIT_MINOR );
650 }
651 if( strlen($talkTag) > 2 ) {
652 $usertalk->doEdit( $talkTag, $reason, EDIT_MINOR );
653 }
654 }
655 return $safeUsers;
656 }
657 }