* Disabled one query for now since index is still pending
[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'><strong>" .
255 Xml::checkLabel( wfMsg( 'ipbhidename' ),
256 'wpHideName', 'wpHideName', $this->BlockHideName,
257 array( 'tabindex' => '10' ) ) . "
258 </strong></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 ) {
398 if( !$userId ) {
399 // IP users should not be hidden
400 $this->BlockHideName = false;
401 } else if( $expiry !== 'infinity' ) {
402 // Bad expiry.
403 return array('ipb_expiry_temp');
404 } else if( User::edits($userId) > 3000 ) {
405 // Typically, the user should have a handful of edits.
406 // Disallow hiding users with many edits for performance.
407 return array('ipb_hide_invalid');
408 }
409 }
410
411 # Create block
412 # Note: for a user block, ipb_address is only for display purposes
413 $block = new Block( $this->BlockAddress, $userId, $wgUser->getId(),
414 $reasonstr, wfTimestampNow(), 0, $expiry, $this->BlockAnonOnly,
415 $this->BlockCreateAccount, $this->BlockEnableAutoblock, $this->BlockHideName,
416 $this->BlockEmail, isset( $this->BlockAllowUsertalk ) ? $this->BlockAllowUsertalk : $wgBlockAllowsUTEdit
417 );
418
419 # Should this be privately logged?
420 $suppressLog = (bool)$this->BlockHideName;
421 if ( wfRunHooks('BlockIp', array(&$block, &$wgUser)) ) {
422 # Try to insert block. Is there a conflicting block?
423 if ( !$block->insert() ) {
424 # Show form unless the user is already aware of this...
425 if ( !$this->BlockReblock ) {
426 return array( 'ipb_already_blocked' );
427 # Otherwise, try to update the block...
428 } else {
429 # This returns direct blocks before autoblocks/rangeblocks, since we should
430 # be sure the user is blocked by now it should work for our purposes
431 $currentBlock = Block::newFromDB( $this->BlockAddress, $userId );
432 if( $block->equals( $currentBlock ) ) {
433 return array( 'ipb_already_blocked' );
434 }
435 # If the name was hidden and the blocking user cannot hide
436 # names, then don't allow any block changes...
437 if( $currentBlock->mHideName && !$wgUser->isAllowed('hideuser') ) {
438 return array( 'hookaborted' );
439 }
440 $currentBlock->delete();
441 $block->insert();
442 # If hiding/unhiding a name, this should go in the private logs
443 $suppressLog = $suppressLog || (bool)$currentBlock->mHideName;
444 $log_action = 'reblock';
445 # Unset _deleted fields if requested
446 if( $currentBlock->mHideName && !$this->BlockHideName ) {
447 $this->unsuppressUserName( $this->BlockAddress, $userId );
448 }
449 }
450 } else {
451 $log_action = 'block';
452 }
453 wfRunHooks('BlockIpComplete', array($block, $wgUser));
454
455 # Set *_deleted fields if requested
456 if( $this->BlockHideName ) {
457 $this->suppressUserName( $this->BlockAddress, $userId );
458 }
459
460 if ( $this->BlockWatchUser &&
461 # Only show watch link when this is no range block
462 $block->mRangeStart == $block->mRangeEnd) {
463 $wgUser->addWatch ( Title::makeTitle( NS_USER, $this->BlockAddress ) );
464 }
465
466 # Block constructor sanitizes certain block options on insert
467 $this->BlockEmail = $block->mBlockEmail;
468 $this->BlockEnableAutoblock = $block->mEnableAutoblock;
469
470 # Prepare log parameters
471 $logParams = array();
472 $logParams[] = $expirestr;
473 $logParams[] = $this->blockLogFlags();
474
475 # Make log entry, if the name is hidden, put it in the oversight log
476 $log_type = $suppressLog ? 'suppress' : 'block';
477 $log = new LogPage( $log_type );
478 $log->addEntry( $log_action, Title::makeTitle( NS_USER, $this->BlockAddress ),
479 $reasonstr, $logParams );
480
481 # Report to the user
482 return array();
483 } else {
484 return array('hookaborted');
485 }
486 }
487
488 private function suppressUserName( $name, $userId ) {
489 $op = '|'; // bitwise OR
490 return $this->setUsernameBitfields( $name, $userId, $op );
491 }
492
493 private function unsuppressUserName( $name, $userId ) {
494 $op = '&'; // bitwise AND
495 return $this->setUsernameBitfields( $name, $userId, $op );
496 }
497
498 private function setUsernameBitfields( $name, $userId, $op ) {
499 if( $op !== '|' && $op !== '&' )
500 return false; // sanity check
501 $dbw = wfGetDB( DB_MASTER );
502 $delUser = Revision::DELETED_USER | Revision::DELETED_RESTRICTED;
503 # To suppress, we OR the current bitfields with Revision::DELETED_USER
504 # to put a 1 in the username *_deleted bit. To unsuppress we AND the
505 # current bitfields with the inverse of Revision::DELETED_USER. The
506 # username bit is made to 0 (x & 0 = 0), while others are unchanged (x & 1 = x).
507 # The same goes for the sysop-restricted *_deleted bit.
508 if( $op == '&' ) $delUser = "~{$delUser}";
509 # Hide name from live edits
510 $dbw->update( 'revision', array("rev_deleted = rev_deleted $op $delUser"),
511 array('rev_user' => $userId), __METHOD__ );
512 # Hide name from deleted edits
513 $dbw->update( 'archive', array("ar_deleted = ar_deleted $op $delUser"),
514 array('ar_user_text' => $userId), __METHOD__ );
515 # Hide name from logs
516 $dbw->update( 'logging', array("log_deleted = log_deleted $op $delUser"),
517 array('log_user' => $userId), __METHOD__ );
518 # Hide name from RC
519 $dbw->update( 'recentchanges', array("rc_deleted = rc_deleted $op $delUser"),
520 array('rc_user_text' => $name), __METHOD__ );
521 # Hide name from live images
522 $dbw->update( 'oldimage', array("oi_deleted = oi_deleted $op $delUser"),
523 array('oi_user_text' => $name), __METHOD__ );
524 # Hide name from deleted images
525 # WMF - schema change pending
526 # $dbw->update( 'filearchive', array("fa_deleted = fa_deleted $op $delUser"),
527 # array('fa_user_text' => $name), __METHOD__ );
528 # Done!
529 return true;
530 }
531
532 /**
533 * UI entry point for blocking
534 * Wraps around doBlock()
535 */
536 function doSubmit()
537 {
538 global $wgOut;
539 $retval = $this->doBlock();
540 if(empty($retval)) {
541 $titleObj = SpecialPage::getTitleFor( 'Blockip' );
542 $wgOut->redirect( $titleObj->getFullURL( 'action=success&ip=' .
543 urlencode( $this->BlockAddress ) ) );
544 return;
545 }
546 $this->showForm( $retval );
547 }
548
549 function showSuccess() {
550 global $wgOut;
551
552 $wgOut->setPagetitle( wfMsg( 'blockip' ) );
553 $wgOut->setSubtitle( wfMsg( 'blockipsuccesssub' ) );
554 $text = wfMsgExt( 'blockipsuccesstext', array( 'parse' ), $this->BlockAddress );
555 $wgOut->addHTML( $text );
556 }
557
558 function showLogFragment( $out, $title ) {
559 global $wgUser;
560 $out->addHTML( Xml::element( 'h2', NULL, LogPage::logName( 'block' ) ) );
561 $count = LogEventsList::showLogExtract( $out, 'block', $title->getPrefixedText(), '', 10 );
562 if($count > 10){
563 $out->addHTML( $wgUser->getSkin()->link(
564 SpecialPage::getTitleFor( 'Log' ),
565 wfMsgHtml( 'blocklog-fulllog' ),
566 array(),
567 array(
568 'type' => 'block',
569 'page' => $title->getPrefixedText() ) ) );
570 }
571 }
572
573 /**
574 * Return a comma-delimited list of "flags" to be passed to the log
575 * reader for this block, to provide more information in the logs
576 *
577 * @return array
578 */
579 private function blockLogFlags() {
580 global $wgBlockAllowsUTEdit;
581 $flags = array();
582 if( $this->BlockAnonOnly && IP::isIPAddress( $this->BlockAddress ) )
583 // when blocking a user the option 'anononly' is not available/has no effect -> do not write this into log
584 $flags[] = 'anononly';
585 if( $this->BlockCreateAccount )
586 $flags[] = 'nocreate';
587 if( !$this->BlockEnableAutoblock )
588 $flags[] = 'noautoblock';
589 if ( $this->BlockEmail )
590 $flags[] = 'noemail';
591 if ( !$this->BlockAllowUsertalk && $wgBlockAllowsUTEdit )
592 $flags[] = 'nousertalk';
593 if ( $this->BlockHideName )
594 $flags[] = 'hiddenname';
595 return implode( ',', $flags );
596 }
597
598 /**
599 * Builds unblock and block list links
600 *
601 * @return string
602 */
603 private function getConvenienceLinks() {
604 global $wgUser, $wgLang;
605 $skin = $wgUser->getSkin();
606 if( $this->BlockAddress )
607 $links[] = $this->getContribsLink( $skin );
608 $links[] = $this->getUnblockLink( $skin );
609 $links[] = $this->getBlockListLink( $skin );
610 $links[] = $skin->makeLink ( 'MediaWiki:Ipbreason-dropdown', wfMsgHtml( 'ipb-edit-dropdown' ) );
611 return '<p class="mw-ipb-conveniencelinks">' . $wgLang->pipeList( $links ) . '</p>';
612 }
613
614 /**
615 * Build a convenient link to a user or IP's contribs
616 * form
617 *
618 * @param $skin Skin to use
619 * @return string
620 */
621 private function getContribsLink( $skin ) {
622 $contribsPage = SpecialPage::getTitleFor( 'Contributions', $this->BlockAddress );
623 return $skin->link( $contribsPage, wfMsgHtml( 'ipb-blocklist-contribs', $this->BlockAddress ) );
624 }
625
626 /**
627 * Build a convenient link to unblock the given username or IP
628 * address, if available; otherwise link to a blank unblock
629 * form
630 *
631 * @param $skin Skin to use
632 * @return string
633 */
634 private function getUnblockLink( $skin ) {
635 $list = SpecialPage::getTitleFor( 'Ipblocklist' );
636 if( $this->BlockAddress ) {
637 $addr = htmlspecialchars( strtr( $this->BlockAddress, '_', ' ' ) );
638 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock-addr', $addr ),
639 'action=unblock&ip=' . urlencode( $this->BlockAddress ) );
640 } else {
641 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-unblock' ), 'action=unblock' );
642 }
643 }
644
645 /**
646 * Build a convenience link to the block list
647 *
648 * @param $skin Skin to use
649 * @return string
650 */
651 private function getBlockListLink( $skin ) {
652 $list = SpecialPage::getTitleFor( 'Ipblocklist' );
653 if( $this->BlockAddress ) {
654 $addr = htmlspecialchars( strtr( $this->BlockAddress, '_', ' ' ) );
655 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-blocklist-addr', $addr ),
656 'ip=' . urlencode( $this->BlockAddress ) );
657 } else {
658 return $skin->makeKnownLinkObj( $list, wfMsgHtml( 'ipb-blocklist' ) );
659 }
660 }
661
662 /**
663 * Block a list of selected users
664 * @param array $users
665 * @param string $reason
666 * @param string $tag replaces user pages
667 * @param string $talkTag replaces user talk pages
668 * @returns array, list of html-safe usernames
669 */
670 public static function doMassUserBlock( $users, $reason = '', $tag = '', $talkTag = '' ) {
671 global $wgUser;
672 $counter = $blockSize = 0;
673 $safeUsers = array();
674 $log = new LogPage( 'block' );
675 foreach( $users as $name ) {
676 # Enforce limits
677 $counter++;
678 $blockSize++;
679 # Lets not go *too* fast
680 if( $blockSize >= 20 ) {
681 $blockSize = 0;
682 wfWaitForSlaves( 5 );
683 }
684 $u = User::newFromName( $name, false );
685 // If user doesn't exist, it ought to be an IP then
686 if( is_null($u) || (!$u->getId() && !IP::isIPAddress( $u->getName() )) ) {
687 continue;
688 }
689 $userTitle = $u->getUserPage();
690 $userTalkTitle = $u->getTalkPage();
691 $userpage = new Article( $userTitle );
692 $usertalk = new Article( $userTalkTitle );
693 $safeUsers[] = '[[' . $userTitle->getPrefixedText() . '|' . $userTitle->getText() . ']]';
694 $expirestr = $u->getId() ? 'indefinite' : '1 week';
695 $expiry = Block::parseExpiryInput( $expirestr );
696 $anonOnly = IP::isIPAddress( $u->getName() ) ? 1 : 0;
697 // Create the block
698 $block = new Block( $u->getName(), // victim
699 $u->getId(), // uid
700 $wgUser->getId(), // blocker
701 $reason, // comment
702 wfTimestampNow(), // block time
703 0, // auto ?
704 $expiry, // duration
705 $anonOnly, // anononly?
706 1, // block account creation?
707 1, // autoblocking?
708 0, // suppress name?
709 0 // block from sending email?
710 );
711 $oldblock = Block::newFromDB( $u->getName(), $u->getId() );
712 if( !$oldblock ) {
713 $block->insert();
714 # Prepare log parameters
715 $logParams = array();
716 $logParams[] = $expirestr;
717 if( $anonOnly ) {
718 $logParams[] = 'anononly';
719 }
720 $logParams[] = 'nocreate';
721 # Add log entry
722 $log->addEntry( 'block', $userTitle, $reason, $logParams );
723 }
724 # Tag userpage! (check length to avoid mistakes)
725 if( strlen($tag) > 2 ) {
726 $userpage->doEdit( $tag, $reason, EDIT_MINOR );
727 }
728 if( strlen($talkTag) > 2 ) {
729 $usertalk->doEdit( $talkTag, $reason, EDIT_MINOR );
730 }
731 }
732 return $safeUsers;
733 }
734 }