Slight fix for r47781: remove useless if($index) conditional: $index is always set...
[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 # Only show watch link when this is no range block
433 $block->mRangeStart == $block->mRangeEnd) {
434 $wgUser->addWatch ( Title::makeTitle( NS_USER, $this->BlockAddress ) );
435 }
436
437 # Block constructor sanitizes certain block options on insert
438 $this->BlockEmail = $block->mBlockEmail;
439 $this->BlockEnableAutoblock = $block->mEnableAutoblock;
440
441 # Prepare log parameters
442 $logParams = array();
443 $logParams[] = $expirestr;
444 $logParams[] = $this->blockLogFlags();
445
446 # Make log entry, if the name is hidden, put it in the oversight log
447 $log_type = ($this->BlockHideName) ? 'suppress' : 'block';
448 $log = new LogPage( $log_type );
449 $log->addEntry( $log_action, Title::makeTitle( NS_USER, $this->BlockAddress ),
450 $reasonstr, $logParams );
451
452 # Report to the user
453 return array();
454 }
455 else
456 return array('hookaborted');
457 }
458
459 /**
460 * UI entry point for blocking
461 * Wraps around doBlock()
462 */
463 function doSubmit()
464 {
465 global $wgOut;
466 $retval = $this->doBlock();
467 if(empty($retval)) {
468 $titleObj = SpecialPage::getTitleFor( 'Blockip' );
469 $wgOut->redirect( $titleObj->getFullURL( 'action=success&ip=' .
470 urlencode( $this->BlockAddress ) ) );
471 return;
472 }
473 $this->showForm( $retval );
474 }
475
476 function showSuccess() {
477 global $wgOut;
478
479 $wgOut->setPagetitle( wfMsg( 'blockip' ) );
480 $wgOut->setSubtitle( wfMsg( 'blockipsuccesssub' ) );
481 $text = wfMsgExt( 'blockipsuccesstext', array( 'parse' ), $this->BlockAddress );
482 $wgOut->addHTML( $text );
483 }
484
485 function showLogFragment( $out, $title ) {
486 global $wgUser;
487 $out->addHTML( Xml::element( 'h2', NULL, LogPage::logName( 'block' ) ) );
488 $count = LogEventsList::showLogExtract( $out, 'block', $title->getPrefixedText(), '', 10 );
489 if($count > 10){
490 $out->addHTML( $wgUser->getSkin()->link(
491 SpecialPage::getTitleFor( 'Log' ),
492 wfMsgHtml( 'blocklog-fulllog' ),
493 array(),
494 array(
495 'type' => 'block',
496 'page' => $title->getPrefixedText() ) ) );
497 }
498 }
499
500 /**
501 * Return a comma-delimited list of "flags" to be passed to the log
502 * reader for this block, to provide more information in the logs
503 *
504 * @return array
505 */
506 private function blockLogFlags() {
507 global $wgBlockAllowsUTEdit;
508 $flags = array();
509 if( $this->BlockAnonOnly && IP::isIPAddress( $this->BlockAddress ) )
510 // when blocking a user the option 'anononly' is not available/has no effect -> do not write this into log
511 $flags[] = 'anononly';
512 if( $this->BlockCreateAccount )
513 $flags[] = 'nocreate';
514 if( !$this->BlockEnableAutoblock )
515 $flags[] = 'noautoblock';
516 if ( $this->BlockEmail )
517 $flags[] = 'noemail';
518 if ( !$this->BlockAllowUsertalk && $wgBlockAllowsUTEdit )
519 $flags[] = 'nousertalk';
520 return implode( ',', $flags );
521 }
522
523 /**
524 * Builds unblock and block list links
525 *
526 * @return string
527 */
528 private function getConvenienceLinks() {
529 global $wgUser, $wgLang;
530 $skin = $wgUser->getSkin();
531 if( $this->BlockAddress )
532 $links[] = $this->getContribsLink( $skin );
533 $links[] = $this->getUnblockLink( $skin );
534 $links[] = $this->getBlockListLink( $skin );
535 $links[] = $skin->makeLink ( 'MediaWiki:Ipbreason-dropdown', wfMsgHtml( 'ipb-edit-dropdown' ) );
536 return '<p class="mw-ipb-conveniencelinks">' . $wgLang->pipeList( $links ) . '</p>';
537 }
538
539 /**
540 * Build a convenient link to a user or IP's contribs
541 * form
542 *
543 * @param $skin Skin to use
544 * @return string
545 */
546 private function getContribsLink( $skin ) {
547 $contribsPage = SpecialPage::getTitleFor( 'Contributions', $this->BlockAddress );
548 return $skin->link( $contribsPage, wfMsgHtml( 'ipb-blocklist-contribs', $this->BlockAddress ) );
549 }
550
551 /**
552 * Build a convenient link to unblock the given username or IP
553 * address, if available; otherwise link to a blank unblock
554 * form
555 *
556 * @param $skin Skin to use
557 * @return string
558 */
559 private function getUnblockLink( $skin ) {
560 $list = SpecialPage::getTitleFor( 'Ipblocklist' );
561 if( $this->BlockAddress ) {
562 $addr = htmlspecialchars( strtr( $this->BlockAddress, '_', ' ' ) );
563 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock-addr', $addr ),
564 'action=unblock&ip=' . urlencode( $this->BlockAddress ) );
565 } else {
566 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock' ), 'action=unblock' );
567 }
568 }
569
570 /**
571 * Build a convenience link to the block list
572 *
573 * @param $skin Skin to use
574 * @return string
575 */
576 private function getBlockListLink( $skin ) {
577 $list = SpecialPage::getTitleFor( 'Ipblocklist' );
578 if( $this->BlockAddress ) {
579 $addr = htmlspecialchars( strtr( $this->BlockAddress, '_', ' ' ) );
580 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-blocklist-addr', $addr ),
581 'ip=' . urlencode( $this->BlockAddress ) );
582 } else {
583 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-blocklist' ) );
584 }
585 }
586
587 /**
588 * Block a list of selected users
589 * @param array $users
590 * @param string $reason
591 * @param string $tag replaces user pages
592 * @param string $talkTag replaces user talk pages
593 * @returns array, list of html-safe usernames
594 */
595 public static function doMassUserBlock( $users, $reason = '', $tag = '', $talkTag = '' ) {
596 global $wgUser;
597 $counter = $blockSize = 0;
598 $safeUsers = array();
599 $log = new LogPage( 'block' );
600 foreach( $users as $name ) {
601 # Enforce limits
602 $counter++;
603 $blockSize++;
604 # Lets not go *too* fast
605 if( $blockSize >= 20 ) {
606 $blockSize = 0;
607 wfWaitForSlaves( 5 );
608 }
609 $u = User::newFromName( $name, false );
610 // If user doesn't exist, it ought to be an IP then
611 if( is_null($u) || (!$u->getId() && !IP::isIPAddress( $u->getName() )) ) {
612 continue;
613 }
614 $userTitle = $u->getUserPage();
615 $userTalkTitle = $u->getTalkPage();
616 $userpage = new Article( $userTitle );
617 $usertalk = new Article( $userTalkTitle );
618 $safeUsers[] = '[[' . $userTitle->getPrefixedText() . '|' . $userTitle->getText() . ']]';
619 $expirestr = $u->getId() ? 'indefinite' : '1 week';
620 $expiry = Block::parseExpiryInput( $expirestr );
621 $anonOnly = IP::isIPAddress( $u->getName() ) ? 1 : 0;
622 // Create the block
623 $block = new Block( $u->getName(), // victim
624 $u->getId(), // uid
625 $wgUser->getId(), // blocker
626 $reason, // comment
627 wfTimestampNow(), // block time
628 0, // auto ?
629 $expiry, // duration
630 $anonOnly, // anononly?
631 1, // block account creation?
632 1, // autoblocking?
633 0, // suppress name?
634 0 // block from sending email?
635 );
636 $oldblock = Block::newFromDB( $u->getName(), $u->getId() );
637 if( !$oldblock ) {
638 $block->insert();
639 # Prepare log parameters
640 $logParams = array();
641 $logParams[] = $expirestr;
642 if( $anonOnly ) {
643 $logParams[] = 'anononly';
644 }
645 $logParams[] = 'nocreate';
646 # Add log entry
647 $log->addEntry( 'block', $userTitle, $reason, $logParams );
648 }
649 # Tag userpage! (check length to avoid mistakes)
650 if( strlen($tag) > 2 ) {
651 $userpage->doEdit( $tag, $reason, EDIT_MINOR );
652 }
653 if( strlen($talkTag) > 2 ) {
654 $usertalk->doEdit( $talkTag, $reason, EDIT_MINOR );
655 }
656 }
657 return $safeUsers;
658 }
659 }