Block.php fixes: Always store mExpiry as a TS_MW or "infinity". Convert as appropriate.
[lhc/web/wiklou.git] / includes / Block.php
1 <?php
2 /**
3 * Blocks and bans object
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 */
22 class Block {
23 /* public*/ var $mReason, $mTimestamp, $mAuto, $mExpiry, $mHideName;
24
25 protected
26 $mId,
27 $mFromMaster,
28
29 $mBlockEmail,
30 $mDisableUsertalk,
31 $mCreateAccount;
32
33 /// @var User|String
34 protected $target;
35
36 /// @var Block::TYPE_ constant. Can only be USER, IP or RANGE internally
37 protected $type;
38
39 /// @var User
40 protected $blocker;
41
42 /// @var Bool
43 protected $isHardblock = true;
44
45 /// @var Bool
46 protected $isAutoblocking = true;
47
48 # TYPE constants
49 const TYPE_USER = 1;
50 const TYPE_IP = 2;
51 const TYPE_RANGE = 3;
52 const TYPE_AUTO = 4;
53 const TYPE_ID = 5;
54
55 /**
56 * Constructor
57 * @todo FIXME: Don't know what the best format to have for this constructor is, but fourteen
58 * optional parameters certainly isn't it.
59 */
60 function __construct( $address = '', $user = 0, $by = 0, $reason = '',
61 $timestamp = 0, $auto = 0, $expiry = '', $anonOnly = 0, $createAccount = 0, $enableAutoblock = 0,
62 $hideName = 0, $blockEmail = 0, $allowUsertalk = 0 )
63 {
64 if( $timestamp === 0 ){
65 $timestamp = wfTimestampNow();
66 }
67
68 if( count( func_get_args() ) > 0 ){
69 # Soon... :D
70 # wfDeprecated( __METHOD__ . " with arguments" );
71 }
72
73 $this->setTarget( $address );
74 $this->setBlocker( User::newFromID( $by ) );
75 $this->mReason = $reason;
76 $this->mTimestamp = wfTimestamp( TS_MW, $timestamp );
77 $this->mAuto = $auto;
78 $this->isHardblock( !$anonOnly );
79 $this->prevents( 'createaccount', $createAccount );
80 if ( $expiry == 'infinity' || $expiry == Block::infinity() ) {
81 $this->mExpiry = 'infinity';
82 } else {
83 $this->mExpiry = wfTimestamp( TS_MW, $expiry );
84 }
85 $this->isAutoblocking( $enableAutoblock );
86 $this->mHideName = $hideName;
87 $this->prevents( 'sendemail', $blockEmail );
88 $this->prevents( 'editownusertalk', !$allowUsertalk );
89
90 $this->mFromMaster = false;
91 }
92
93 /**
94 * Load a block from the database, using either the IP address or
95 * user ID. Tries the user ID first, and if that doesn't work, tries
96 * the address.
97 *
98 * @param $address String: IP address of user/anon
99 * @param $user Integer: user id of user
100 * @return Block Object
101 * @deprecated since 1.18
102 */
103 public static function newFromDB( $address, $user = 0 ) {
104 return self::newFromTarget( User::whoIs( $user ), $address );
105 }
106
107 /**
108 * Load a blocked user from their block id.
109 *
110 * @param $id Integer: Block id to search for
111 * @return Block object or null
112 */
113 public static function newFromID( $id ) {
114 $dbr = wfGetDB( DB_SLAVE );
115 $res = $dbr->selectRow(
116 'ipblocks',
117 '*',
118 array( 'ipb_id' => $id ),
119 __METHOD__
120 );
121 if ( $res ) {
122 return Block::newFromRow( $res );
123 } else {
124 return null;
125 }
126 }
127
128 /**
129 * Check if two blocks are effectively equal. Doesn't check irrelevant things like
130 * the blocking user or the block timestamp, only things which affect the blocked user *
131 *
132 * @param $block Block
133 *
134 * @return bool
135 */
136 public function equals( Block $block ) {
137 return (
138 (string)$this->target == (string)$block->target
139 && $this->type == $block->type
140 && $this->mAuto == $block->mAuto
141 && $this->isHardblock() == $block->isHardblock()
142 && $this->prevents( 'createaccount' ) == $block->prevents( 'createaccount' )
143 && $this->mExpiry == $block->mExpiry
144 && $this->isAutoblocking() == $block->isAutoblocking()
145 && $this->mHideName == $block->mHideName
146 && $this->prevents( 'sendemail' ) == $block->prevents( 'sendemail' )
147 && $this->prevents( 'editownusertalk' ) == $block->prevents( 'editownusertalk' )
148 && $this->mReason == $block->mReason
149 );
150 }
151
152 /**
153 * Clear all member variables in the current object. Does not clear
154 * the block from the DB.
155 * @deprecated since 1.18
156 */
157 public function clear() {
158 # Noop
159 }
160
161 /**
162 * Get a block from the DB, with either the given address or the given username
163 *
164 * @param $address string The IP address of the user, or blank to skip IP blocks
165 * @param $user int The user ID, or zero for anonymous users
166 * @return Boolean: the user is blocked from editing
167 * @deprecated since 1.18
168 */
169 public function load( $address = '', $user = 0 ) {
170 wfDeprecated( __METHOD__ );
171 if( $user ){
172 $username = User::whoIs( $user );
173 $block = self::newFromTarget( $username, $address );
174 } else {
175 $block = self::newFromTarget( null, $address );
176 }
177
178 if( $block instanceof Block ){
179 # This is mildly evil, but hey, it's B/C :D
180 foreach( $block as $variable => $value ){
181 $this->$variable = $value;
182 }
183 return true;
184 } else {
185 return false;
186 }
187 }
188
189 /**
190 * Load a block from the database which affects the already-set $this->target:
191 * 1) A block directly on the given user or IP
192 * 2) A rangeblock encompasing the given IP (smallest first)
193 * 3) An autoblock on the given IP
194 * @param $vagueTarget User|String also search for blocks affecting this target. Doesn't
195 * make any sense to use TYPE_AUTO / TYPE_ID here. Leave blank to skip IP lookups.
196 * @return Bool whether a relevant block was found
197 */
198 protected function newLoad( $vagueTarget = null ) {
199 $db = wfGetDB( $this->mFromMaster ? DB_MASTER : DB_SLAVE );
200
201 if( $this->type !== null ){
202 $conds = array(
203 'ipb_address' => array( (string)$this->target ),
204 );
205 } else {
206 $conds = array( 'ipb_address' => array() );
207 }
208
209 # Be aware that the != '' check is explicit, since empty values will be
210 # passed by some callers (bug 29116)
211 if( $vagueTarget != ''){
212 list( $target, $type ) = self::parseTarget( $vagueTarget );
213 switch( $type ) {
214 case self::TYPE_USER:
215 # Slightly wierd, but who are we to argue?
216 $conds['ipb_address'][] = (string)$target;
217 break;
218
219 case self::TYPE_IP:
220 $conds['ipb_address'][] = (string)$target;
221 $conds[] = self::getRangeCond( IP::toHex( $target ) );
222 $conds = $db->makeList( $conds, LIST_OR );
223 break;
224
225 case self::TYPE_RANGE:
226 list( $start, $end ) = IP::parseRange( $target );
227 $conds['ipb_address'][] = (string)$target;
228 $conds[] = self::getRangeCond( $start, $end );
229 $conds = $db->makeList( $conds, LIST_OR );
230 break;
231
232 default:
233 throw new MWException( "Tried to load block with invalid type" );
234 }
235 }
236
237 $res = $db->select( 'ipblocks', '*', $conds, __METHOD__ );
238
239 # This result could contain a block on the user, a block on the IP, and a russian-doll
240 # set of rangeblocks. We want to choose the most specific one, so keep a leader board.
241 $bestRow = null;
242
243 # Lower will be better
244 $bestBlockScore = 100;
245
246 # This is begging for $this = $bestBlock, but that's not allowed in PHP :(
247 $bestBlockPreventsEdit = null;
248
249 foreach( $res as $row ){
250 $block = Block::newFromRow( $row );
251
252 # Don't use expired blocks
253 if( $block->deleteIfExpired() ){
254 continue;
255 }
256
257 # Don't use anon only blocks on users
258 if( $this->type == self::TYPE_USER && !$block->isHardblock() ){
259 continue;
260 }
261
262 if( $block->getType() == self::TYPE_RANGE ){
263 # This is the number of bits that are allowed to vary in the block, give
264 # or take some floating point errors
265 $end = wfBaseconvert( $block->getRangeEnd(), 16, 10 );
266 $start = wfBaseconvert( $block->getRangeStart(), 16, 10 );
267 $size = log( $end - $start + 1, 2 );
268
269 # This has the nice property that a /32 block is ranked equally with a
270 # single-IP block, which is exactly what it is...
271 $score = self::TYPE_RANGE - 1 + ( $size / 128 );
272
273 } else {
274 $score = $block->getType();
275 }
276
277 if( $score < $bestBlockScore ){
278 $bestBlockScore = $score;
279 $bestRow = $row;
280 $bestBlockPreventsEdit = $block->prevents( 'edit' );
281 }
282 }
283
284 if( $bestRow !== null ){
285 $this->initFromRow( $bestRow );
286 $this->prevents( 'edit', $bestBlockPreventsEdit );
287 return true;
288 } else {
289 return false;
290 }
291 }
292
293 /**
294 * Get a set of SQL conditions which will select rangeblocks encompasing a given range
295 * @param $start String Hexadecimal IP representation
296 * @param $end String Hexadecimal IP represenation, or null to use $start = $end
297 * @return String
298 */
299 public static function getRangeCond( $start, $end = null ) {
300 if ( $end === null ) {
301 $end = $start;
302 }
303 # Per bug 14634, we want to include relevant active rangeblocks; for
304 # rangeblocks, we want to include larger ranges which enclose the given
305 # range. We know that all blocks must be smaller than $wgBlockCIDRLimit,
306 # so we can improve performance by filtering on a LIKE clause
307 $chunk = self::getIpFragment( $start );
308 $dbr = wfGetDB( DB_SLAVE );
309 $like = $dbr->buildLike( $chunk, $dbr->anyString() );
310
311 # Fairly hard to make a malicious SQL statement out of hex characters,
312 # but stranger things have happened...
313 $safeStart = $dbr->addQuotes( $start );
314 $safeEnd = $dbr->addQuotes( $end );
315
316 return $dbr->makeList(
317 array(
318 "ipb_range_start $like",
319 "ipb_range_start <= $safeStart",
320 "ipb_range_end >= $safeEnd",
321 ),
322 LIST_AND
323 );
324 }
325
326 /**
327 * Get the component of an IP address which is certain to be the same between an IP
328 * address and a rangeblock containing that IP address.
329 * @param $hex String Hexadecimal IP representation
330 * @return String
331 */
332 protected static function getIpFragment( $hex ) {
333 global $wgBlockCIDRLimit;
334 if ( substr( $hex, 0, 3 ) == 'v6-' ) {
335 return 'v6-' . substr( substr( $hex, 3 ), 0, floor( $wgBlockCIDRLimit['IPv6'] / 4 ) );
336 } else {
337 return substr( $hex, 0, floor( $wgBlockCIDRLimit['IPv4'] / 4 ) );
338 }
339 }
340
341 /**
342 * Given a database row from the ipblocks table, initialize
343 * member variables
344 * @param $row ResultWrapper: a row from the ipblocks table
345 */
346 protected function initFromRow( $row ) {
347 $this->setTarget( $row->ipb_address );
348 $this->setBlocker( User::newFromId( $row->ipb_by ) );
349
350 $this->mReason = $row->ipb_reason;
351 $this->mTimestamp = wfTimestamp( TS_MW, $row->ipb_timestamp );
352 $this->mAuto = $row->ipb_auto;
353 $this->mHideName = $row->ipb_deleted;
354 $this->mId = $row->ipb_id;
355
356 // I wish I didn't have to do this
357 $db = wfGetDB( DB_SLAVE );
358 if ( $row->ipb_expiry == $db->getInfinity() ) {
359 $this->mExpiry = 'infinity';
360 } else {
361 $this->mExpiry = wfTimestamp( TS_MW, $row->ipb_expiry );
362 }
363
364 $this->isHardblock( !$row->ipb_anon_only );
365 $this->isAutoblocking( $row->ipb_enable_autoblock );
366
367 $this->prevents( 'createaccount', $row->ipb_create_account );
368 $this->prevents( 'sendemail', $row->ipb_block_email );
369 $this->prevents( 'editownusertalk', !$row->ipb_allow_usertalk );
370 }
371
372 /**
373 * Create a new Block object from a database row
374 * @param $row ResultWrapper row from the ipblocks table
375 * @return Block
376 */
377 public static function newFromRow( $row ){
378 $block = new Block;
379 $block->initFromRow( $row );
380 return $block;
381 }
382
383 /**
384 * Delete the row from the IP blocks table.
385 *
386 * @return Boolean
387 */
388 public function delete() {
389 if ( wfReadOnly() ) {
390 return false;
391 }
392
393 if ( !$this->getId() ) {
394 throw new MWException( "Block::delete() requires that the mId member be filled\n" );
395 }
396
397 $dbw = wfGetDB( DB_MASTER );
398 $dbw->delete( 'ipblocks', array( 'ipb_id' => $this->getId() ), __METHOD__ );
399
400 return $dbw->affectedRows() > 0;
401 }
402
403 /**
404 * Insert a block into the block table. Will fail if there is a conflicting
405 * block (same name and options) already in the database.
406 *
407 * @param $dbw DatabaseBase if you have one available
408 * @return mixed: false on failure, assoc array on success:
409 * ('id' => block ID, 'autoIds' => array of autoblock IDs)
410 */
411 public function insert( $dbw = null ) {
412 wfDebug( "Block::insert; timestamp {$this->mTimestamp}\n" );
413
414 if ( $dbw === null ) {
415 $dbw = wfGetDB( DB_MASTER );
416 }
417
418 # Don't collide with expired blocks
419 Block::purgeExpired();
420
421 $ipb_id = $dbw->nextSequenceValue( 'ipblocks_ipb_id_seq' );
422 $dbw->insert(
423 'ipblocks',
424 $this->getDatabaseArray(),
425 __METHOD__,
426 array( 'IGNORE' )
427 );
428 $affected = $dbw->affectedRows();
429 $this->mId = $dbw->insertId();
430
431 if ( $affected ) {
432 $auto_ipd_ids = $this->doRetroactiveAutoblock();
433 return array( 'id' => $this->mId, 'autoIds' => $auto_ipd_ids );
434 }
435
436 return false;
437 }
438
439 /**
440 * Update a block in the DB with new parameters.
441 * The ID field needs to be loaded first.
442 *
443 * @return Int number of affected rows, which should probably be 1 or something's
444 * gone slightly awry
445 */
446 public function update() {
447 wfDebug( "Block::update; timestamp {$this->mTimestamp}\n" );
448 $dbw = wfGetDB( DB_MASTER );
449
450 $dbw->update(
451 'ipblocks',
452 $this->getDatabaseArray( $dbw ),
453 array( 'ipb_id' => $this->getId() ),
454 __METHOD__
455 );
456
457 return $dbw->affectedRows();
458 }
459
460 /**
461 * Get an array suitable for passing to $dbw->insert() or $dbw->update()
462 * @param $db DatabaseBase
463 * @return Array
464 */
465 protected function getDatabaseArray( $db = null ){
466 if( !$db ){
467 $db = wfGetDB( DB_SLAVE );
468 }
469 $expiry = $db->encodeExpiry( $this->mExpiry );
470
471 $a = array(
472 'ipb_address' => (string)$this->target,
473 'ipb_user' => $this->target instanceof User ? $this->target->getID() : 0,
474 'ipb_by' => $this->getBlocker()->getId(),
475 'ipb_by_text' => $this->getBlocker()->getName(),
476 'ipb_reason' => $this->mReason,
477 'ipb_timestamp' => $db->timestamp( $this->mTimestamp ),
478 'ipb_auto' => $this->mAuto,
479 'ipb_anon_only' => !$this->isHardblock(),
480 'ipb_create_account' => $this->prevents( 'createaccount' ),
481 'ipb_enable_autoblock' => $this->isAutoblocking(),
482 'ipb_expiry' => $expiry,
483 'ipb_range_start' => $this->getRangeStart(),
484 'ipb_range_end' => $this->getRangeEnd(),
485 'ipb_deleted' => intval( $this->mHideName ), // typecast required for SQLite
486 'ipb_block_email' => $this->prevents( 'sendemail' ),
487 'ipb_allow_usertalk' => !$this->prevents( 'editownusertalk' )
488 );
489
490 return $a;
491 }
492
493 /**
494 * Retroactively autoblocks the last IP used by the user (if it is a user)
495 * blocked by this Block.
496 *
497 * @return Array: block IDs of retroactive autoblocks made
498 */
499 protected function doRetroactiveAutoblock() {
500 $blockIds = array();
501 # If autoblock is enabled, autoblock the LAST IP(s) used
502 if ( $this->isAutoblocking() && $this->getType() == self::TYPE_USER ) {
503 wfDebug( "Doing retroactive autoblocks for " . $this->getTarget() . "\n" );
504
505 $continue = wfRunHooks(
506 'PerformRetroactiveAutoblock', array( $this, &$blockIds ) );
507
508 if ( $continue ) {
509 self::defaultRetroactiveAutoblock( $this, $blockIds );
510 }
511 }
512 return $blockIds;
513 }
514
515 /**
516 * Retroactively autoblocks the last IP used by the user (if it is a user)
517 * blocked by this Block. This will use the recentchanges table.
518 *
519 * @param Block $block
520 * @param Array &$blockIds
521 * @return Array: block IDs of retroactive autoblocks made
522 */
523 protected static function defaultRetroactiveAutoblock( Block $block, array &$blockIds ) {
524 $dbr = wfGetDB( DB_SLAVE );
525
526 $options = array( 'ORDER BY' => 'rc_timestamp DESC' );
527 $conds = array( 'rc_user_text' => (string)$block->getTarget() );
528
529 // Just the last IP used.
530 $options['LIMIT'] = 1;
531
532 $res = $dbr->select( 'recentchanges', array( 'rc_ip' ), $conds,
533 __METHOD__ , $options );
534
535 if ( !$dbr->numRows( $res ) ) {
536 # No results, don't autoblock anything
537 wfDebug( "No IP found to retroactively autoblock\n" );
538 } else {
539 foreach ( $res as $row ) {
540 if ( $row->rc_ip ) {
541 $id = $block->doAutoblock( $row->rc_ip );
542 if ( $id ) $blockIds[] = $id;
543 }
544 }
545 }
546 }
547
548 /**
549 * Checks whether a given IP is on the autoblock whitelist.
550 * TODO: this probably belongs somewhere else, but not sure where...
551 *
552 * @param $ip String: The IP to check
553 * @return Boolean
554 */
555 public static function isWhitelistedFromAutoblocks( $ip ) {
556 global $wgMemc;
557
558 // Try to get the autoblock_whitelist from the cache, as it's faster
559 // than getting the msg raw and explode()'ing it.
560 $key = wfMemcKey( 'ipb', 'autoblock', 'whitelist' );
561 $lines = $wgMemc->get( $key );
562 if ( !$lines ) {
563 $lines = explode( "\n", wfMsgForContentNoTrans( 'autoblock_whitelist' ) );
564 $wgMemc->set( $key, $lines, 3600 * 24 );
565 }
566
567 wfDebug( "Checking the autoblock whitelist..\n" );
568
569 foreach ( $lines as $line ) {
570 # List items only
571 if ( substr( $line, 0, 1 ) !== '*' ) {
572 continue;
573 }
574
575 $wlEntry = substr( $line, 1 );
576 $wlEntry = trim( $wlEntry );
577
578 wfDebug( "Checking $ip against $wlEntry..." );
579
580 # Is the IP in this range?
581 if ( IP::isInRange( $ip, $wlEntry ) ) {
582 wfDebug( " IP $ip matches $wlEntry, not autoblocking\n" );
583 return true;
584 } else {
585 wfDebug( " No match\n" );
586 }
587 }
588
589 return false;
590 }
591
592 /**
593 * Autoblocks the given IP, referring to this Block.
594 *
595 * @param $autoblockIP String: the IP to autoblock.
596 * @return mixed: block ID if an autoblock was inserted, false if not.
597 */
598 public function doAutoblock( $autoblockIP ) {
599 # If autoblocks are disabled, go away.
600 if ( !$this->isAutoblocking() ) {
601 return false;
602 }
603
604 # Check for presence on the autoblock whitelist.
605 if ( self::isWhitelistedFromAutoblocks( $autoblockIP ) ) {
606 return false;
607 }
608
609 # Allow hooks to cancel the autoblock.
610 if ( !wfRunHooks( 'AbortAutoblock', array( $autoblockIP, &$this ) ) ) {
611 wfDebug( "Autoblock aborted by hook.\n" );
612 return false;
613 }
614
615 # It's okay to autoblock. Go ahead and insert/update the block...
616
617 # Do not add a *new* block if the IP is already blocked.
618 $ipblock = Block::newFromTarget( $autoblockIP );
619 if ( $ipblock ) {
620 # Check if the block is an autoblock and would exceed the user block
621 # if renewed. If so, do nothing, otherwise prolong the block time...
622 if ( $ipblock->mAuto && // @TODO: why not compare $ipblock->mExpiry?
623 $this->mExpiry > Block::getAutoblockExpiry( $ipblock->mTimestamp )
624 ) {
625 # Reset block timestamp to now and its expiry to
626 # $wgAutoblockExpiry in the future
627 $ipblock->updateTimestamp();
628 }
629 return false;
630 }
631
632 # Make a new block object with the desired properties.
633 $autoblock = new Block;
634 wfDebug( "Autoblocking {$this->getTarget()}@" . $autoblockIP . "\n" );
635 $autoblock->setTarget( $autoblockIP );
636 $autoblock->setBlocker( $this->getBlocker() );
637 $autoblock->mReason = wfMsgForContent( 'autoblocker', $this->getTarget(), $this->mReason );
638 $timestamp = wfTimestampNow();
639 $autoblock->mTimestamp = $timestamp;
640 $autoblock->mAuto = 1;
641 $autoblock->prevents( 'createaccount', $this->prevents( 'createaccount' ) );
642 # Continue suppressing the name if needed
643 $autoblock->mHideName = $this->mHideName;
644 $autoblock->prevents( 'editownusertalk', $this->prevents( 'editownusertalk' ) );
645
646 $dbr = wfGetDB( DB_SLAVE );
647 if ( $this->mExpiry == $dbr->getInfinity() ) {
648 # Original block was indefinite, start an autoblock now
649 $autoblock->mExpiry = Block::getAutoblockExpiry( $timestamp );
650 } else {
651 # If the user is already blocked with an expiry date, we don't
652 # want to pile on top of that.
653 $autoblock->mExpiry = min( $this->mExpiry, Block::getAutoblockExpiry( $timestamp ) );
654 }
655
656 # Insert the block...
657 $status = $autoblock->insert();
658 return $status
659 ? $status['id']
660 : false;
661 }
662
663 /**
664 * Check if a block has expired. Delete it if it is.
665 * @return Boolean
666 */
667 public function deleteIfExpired() {
668 wfProfileIn( __METHOD__ );
669
670 if ( $this->isExpired() ) {
671 wfDebug( "Block::deleteIfExpired() -- deleting\n" );
672 $this->delete();
673 $retVal = true;
674 } else {
675 wfDebug( "Block::deleteIfExpired() -- not expired\n" );
676 $retVal = false;
677 }
678
679 wfProfileOut( __METHOD__ );
680 return $retVal;
681 }
682
683 /**
684 * Has the block expired?
685 * @return Boolean
686 */
687 public function isExpired() {
688 $timestamp = wfTimestampNow();
689 wfDebug( "Block::isExpired() checking current " . $timestamp . " vs $this->mExpiry\n" );
690
691 if ( !$this->mExpiry ) {
692 return false;
693 } else {
694 return $timestamp > $this->mExpiry;
695 }
696 }
697
698 /**
699 * Is the block address valid (i.e. not a null string?)
700 * @return Boolean
701 */
702 public function isValid() {
703 return $this->getTarget() != null;
704 }
705
706 /**
707 * Update the timestamp on autoblocks.
708 */
709 public function updateTimestamp() {
710 if ( $this->mAuto ) {
711 $this->mTimestamp = wfTimestamp();
712 $this->mExpiry = Block::getAutoblockExpiry( $this->mTimestamp );
713
714 $dbw = wfGetDB( DB_MASTER );
715 $dbw->update( 'ipblocks',
716 array( /* SET */
717 'ipb_timestamp' => $dbw->timestamp( $this->mTimestamp ),
718 'ipb_expiry' => $dbw->timestamp( $this->mExpiry ),
719 ),
720 array( /* WHERE */
721 'ipb_address' => (string)$this->getTarget()
722 ),
723 __METHOD__
724 );
725 }
726 }
727
728 /**
729 * Get the IP address at the start of the range in Hex form
730 * @return String IP in Hex form
731 */
732 public function getRangeStart() {
733 switch( $this->type ) {
734 case self::TYPE_USER:
735 return '';
736 case self::TYPE_IP:
737 return IP::toHex( $this->target );
738 case self::TYPE_RANGE:
739 list( $start, /*...*/ ) = IP::parseRange( $this->target );
740 return $start;
741 default: throw new MWException( "Block with invalid type" );
742 }
743 }
744
745 /**
746 * Get the IP address at the start of the range in Hex form
747 * @return String IP in Hex form
748 */
749 public function getRangeEnd() {
750 switch( $this->type ) {
751 case self::TYPE_USER:
752 return '';
753 case self::TYPE_IP:
754 return IP::toHex( $this->target );
755 case self::TYPE_RANGE:
756 list( /*...*/, $end ) = IP::parseRange( $this->target );
757 return $end;
758 default: throw new MWException( "Block with invalid type" );
759 }
760 }
761
762 /**
763 * Get the user id of the blocking sysop
764 *
765 * @return Integer
766 */
767 public function getBy() {
768 return $this->getBlocker() instanceof User
769 ? $this->getBlocker()->getId()
770 : 0;
771 }
772
773 /**
774 * Get the username of the blocking sysop
775 *
776 * @return String
777 */
778 public function getByName() {
779 return $this->getBlocker() instanceof User
780 ? $this->getBlocker()->getName()
781 : null;
782 }
783
784 /**
785 * Get the block ID
786 * @return int
787 */
788 public function getId() {
789 return $this->mId;
790 }
791
792 /**
793 * Get/set the SELECT ... FOR UPDATE flag
794 * @deprecated since 1.18
795 *
796 * @param $x Bool
797 */
798 public function forUpdate( $x = null ) {
799 # noop
800 }
801
802 /**
803 * Get/set a flag determining whether the master is used for reads
804 *
805 * @param $x Bool
806 * @return Bool
807 */
808 public function fromMaster( $x = null ) {
809 return wfSetVar( $this->mFromMaster, $x );
810 }
811
812 /**
813 * Get/set whether the Block is a hardblock (affects logged-in users on a given IP/range
814 * @param $x Bool
815 * @return Bool
816 */
817 public function isHardblock( $x = null ) {
818 wfSetVar( $this->isHardblock, $x );
819
820 # You can't *not* hardblock a user
821 return $this->getType() == self::TYPE_USER
822 ? true
823 : $this->isHardblock;
824 }
825
826 public function isAutoblocking( $x = null ) {
827 wfSetVar( $this->isAutoblocking, $x );
828
829 # You can't put an autoblock on an IP or range as we don't have any history to
830 # look over to get more IPs from
831 return $this->getType() == self::TYPE_USER
832 ? $this->isAutoblocking
833 : false;
834 }
835
836 /**
837 * Get/set whether the Block prevents a given action
838 * @param $action String
839 * @param $x Bool
840 * @return Bool
841 */
842 public function prevents( $action, $x = null ) {
843 switch( $action ) {
844 case 'edit':
845 # For now... <evil laugh>
846 return true;
847
848 case 'createaccount':
849 return wfSetVar( $this->mCreateAccount, $x );
850
851 case 'sendemail':
852 return wfSetVar( $this->mBlockEmail, $x );
853
854 case 'editownusertalk':
855 return wfSetVar( $this->mDisableUsertalk, $x );
856
857 default:
858 return null;
859 }
860 }
861
862 /**
863 * Get the block name, but with autoblocked IPs hidden as per standard privacy policy
864 * @return String, text is escaped
865 */
866 public function getRedactedName() {
867 if ( $this->mAuto ) {
868 return Html::rawElement(
869 'span',
870 array( 'class' => 'mw-autoblockid' ),
871 wfMessage( 'autoblockid', $this->mId )
872 );
873 } else {
874 return htmlspecialchars( $this->getTarget() );
875 }
876 }
877
878 /**
879 * Encode expiry for DB
880 *
881 * @param $expiry String: timestamp for expiry, or
882 * @param $db Database object
883 * @return String
884 * @deprecated since 1.18; use $dbw->encodeExpiry() instead
885 */
886 public static function encodeExpiry( $expiry, $db ) {
887 return $db->encodeExpiry( $expiry );
888 }
889
890 /**
891 * Decode expiry which has come from the DB
892 *
893 * @param $expiry String: Database expiry format
894 * @param $timestampType Int Requested timestamp format
895 * @return String
896 * @deprecated since 1.18; use $wgLang->decodeExpiry() instead
897 */
898 public static function decodeExpiry( $expiry, $timestampType = TS_MW ) {
899 global $wgContLang;
900 return $wgContLang->formatExpiry( $expiry, $timestampType );
901 }
902
903 /**
904 * Get a timestamp of the expiry for autoblocks
905 *
906 * @param $timestamp String|Int
907 * @return String
908 */
909 public static function getAutoblockExpiry( $timestamp ) {
910 global $wgAutoblockExpiry;
911
912 return wfTimestamp( TS_MW, wfTimestamp( TS_UNIX, $timestamp ) + $wgAutoblockExpiry );
913 }
914
915 /**
916 * Gets rid of uneeded numbers in quad-dotted/octet IP strings
917 * For example, 127.111.113.151/24 -> 127.111.113.0/24
918 * @param $range String: IP address to normalize
919 * @return string
920 * @deprecated since 1.18, call IP::sanitizeRange() directly
921 */
922 public static function normaliseRange( $range ) {
923 return IP::sanitizeRange( $range );
924 }
925
926 /**
927 * Purge expired blocks from the ipblocks table
928 */
929 public static function purgeExpired() {
930 $dbw = wfGetDB( DB_MASTER );
931 $dbw->delete( 'ipblocks', array( 'ipb_expiry < ' . $dbw->addQuotes( $dbw->timestamp() ) ), __METHOD__ );
932 }
933
934 /**
935 * Get a value to insert into expiry field of the database when infinite expiry
936 * is desired
937 * @deprecated since 1.18, call $dbr->getInfinity() directly
938 * @return String
939 */
940 public static function infinity() {
941 return wfGetDB( DB_SLAVE )->getInfinity();
942 }
943
944 /**
945 * Convert a DB-encoded expiry into a real string that humans can read.
946 *
947 * @param $encoded_expiry String: Database encoded expiry time
948 * @return Html-escaped String
949 * @deprecated since 1.18; use $wgLang->formatExpiry() instead
950 */
951 public static function formatExpiry( $encoded_expiry ) {
952 global $wgContLang;
953 static $msg = null;
954
955 if ( is_null( $msg ) ) {
956 $msg = array();
957 $keys = array( 'infiniteblock', 'expiringblock' );
958
959 foreach ( $keys as $key ) {
960 $msg[$key] = wfMsgHtml( $key );
961 }
962 }
963
964 $expiry = $wgContLang->formatExpiry( $encoded_expiry, TS_MW );
965 if ( $expiry == wfGetDB( DB_SLAVE )->getInfinity() ) {
966 $expirystr = $msg['infiniteblock'];
967 } else {
968 global $wgLang;
969 $expiredatestr = htmlspecialchars( $wgLang->date( $expiry, true ) );
970 $expiretimestr = htmlspecialchars( $wgLang->time( $expiry, true ) );
971 $expirystr = wfMsgReplaceArgs( $msg['expiringblock'], array( $expiredatestr, $expiretimestr ) );
972 }
973
974 return $expirystr;
975 }
976
977 /**
978 * Convert a submitted expiry time, which may be relative ("2 weeks", etc) or absolute
979 * ("24 May 2034"), into an absolute timestamp we can put into the database.
980 * @param $expiry String: whatever was typed into the form
981 * @return String: timestamp or "infinity" string for th DB implementation
982 * @deprecated since 1.18 moved to SpecialBlock::parseExpiryInput()
983 */
984 public static function parseExpiryInput( $expiry ) {
985 wfDeprecated( __METHOD__ );
986 return SpecialBlock::parseExpiryInput( $expiry );
987 }
988
989 /**
990 * Given a target and the target's type, get an existing Block object if possible.
991 * @param $specificTarget String|User|Int a block target, which may be one of several types:
992 * * A user to block, in which case $target will be a User
993 * * An IP to block, in which case $target will be a User generated by using
994 * User::newFromName( $ip, false ) to turn off name validation
995 * * An IP range, in which case $target will be a String "123.123.123.123/18" etc
996 * * The ID of an existing block, in the format "#12345" (since pure numbers are valid
997 * usernames
998 * Calling this with a user, IP address or range will not select autoblocks, and will
999 * only select a block where the targets match exactly (so looking for blocks on
1000 * 1.2.3.4 will not select 1.2.0.0/16 or even 1.2.3.4/32)
1001 * @param $vagueTarget String|User|Int as above, but we will search for *any* block which
1002 * affects that target (so for an IP address, get ranges containing that IP; and also
1003 * get any relevant autoblocks). Leave empty or blank to skip IP-based lookups.
1004 * @param $fromMaster Bool whether to use the DB_MASTER database
1005 * @return Block|null (null if no relevant block could be found). The target and type
1006 * of the returned Block will refer to the actual block which was found, which might
1007 * not be the same as the target you gave if you used $vagueTarget!
1008 */
1009 public static function newFromTarget( $specificTarget, $vagueTarget = null, $fromMaster = false ) {
1010
1011 list( $target, $type ) = self::parseTarget( $specificTarget );
1012 if( $type == Block::TYPE_ID || $type == Block::TYPE_AUTO ){
1013 return Block::newFromID( $target );
1014
1015 } elseif( $target === null && $vagueTarget == '' ){
1016 # We're not going to find anything useful here
1017 # Be aware that the == '' check is explicit, since empty values will be
1018 # passed by some callers (bug 29116)
1019 return null;
1020
1021 } elseif( in_array( $type, array( Block::TYPE_USER, Block::TYPE_IP, Block::TYPE_RANGE, null ) ) ) {
1022 $block = new Block();
1023 $block->fromMaster( $fromMaster );
1024
1025 if( $type !== null ){
1026 $block->setTarget( $target );
1027 }
1028
1029 if( $block->newLoad( $vagueTarget ) ){
1030 return $block;
1031 } else {
1032 return null;
1033 }
1034 } else {
1035 return null;
1036 }
1037 }
1038
1039 /**
1040 * From an existing Block, get the target and the type of target. Note that it is
1041 * always safe to treat the target as a string; for User objects this will return
1042 * User::__toString() which in turn gives User::getName().
1043 *
1044 * @param $target String|Int|User
1045 * @return array( User|String, Block::TYPE_ constant )
1046 */
1047 public static function parseTarget( $target ) {
1048 $target = trim( $target );
1049
1050 # We may have been through this before
1051 if( $target instanceof User ){
1052 if( IP::isValid( $target->getName() ) ){
1053 return array( $target, self::TYPE_IP );
1054 } else {
1055 return array( $target, self::TYPE_USER );
1056 }
1057 } elseif( $target === null ){
1058 return array( null, null );
1059 }
1060
1061 # Consider the possibility that this is not a username at all
1062 # but actually an old subpage (bug #29797)
1063 if( strpos( $target, '/' ) !== false ){
1064 # An old subpage, drill down to the user behind it
1065 $parts = explode( '/', $target );
1066 $target = $parts[0];
1067 }
1068
1069 $userObj = User::newFromName( $target );
1070 if ( $userObj instanceof User ) {
1071 # Note that since numbers are valid usernames, a $target of "12345" will be
1072 # considered a User. If you want to pass a block ID, prepend a hash "#12345",
1073 # since hash characters are not valid in usernames or titles generally.
1074 return array( $userObj, Block::TYPE_USER );
1075
1076 } elseif ( IP::isValid( $target ) ) {
1077 # We can still create a User if it's an IP address, but we need to turn
1078 # off validation checking (which would exclude IP addresses)
1079 return array(
1080 User::newFromName( IP::sanitizeIP( $target ), false ),
1081 Block::TYPE_IP
1082 );
1083
1084 } elseif ( IP::isValidBlock( $target ) ) {
1085 # Can't create a User from an IP range
1086 return array( IP::sanitizeRange( $target ), Block::TYPE_RANGE );
1087
1088 } elseif ( preg_match( '/^#\d+$/', $target ) ) {
1089 # Autoblock reference in the form "#12345"
1090 return array( substr( $target, 1 ), Block::TYPE_AUTO );
1091
1092 } else {
1093 # WTF?
1094 return array( null, null );
1095 }
1096 }
1097
1098 /**
1099 * Get the type of target for this particular block
1100 * @return Block::TYPE_ constant, will never be TYPE_ID
1101 */
1102 public function getType() {
1103 return $this->mAuto
1104 ? self::TYPE_AUTO
1105 : $this->type;
1106 }
1107
1108 /**
1109 * Get the target and target type for this particular Block. Note that for autoblocks,
1110 * this returns the unredacted name; frontend functions need to call $block->getRedactedName()
1111 * in this situation.
1112 * @return array( User|String, Block::TYPE_ constant )
1113 * @todo FIXME: This should be an integral part of the Block member variables
1114 */
1115 public function getTargetAndType() {
1116 return array( $this->getTarget(), $this->getType() );
1117 }
1118
1119 /**
1120 * Get the target for this particular Block. Note that for autoblocks,
1121 * this returns the unredacted name; frontend functions need to call $block->getRedactedName()
1122 * in this situation.
1123 * @return User|String
1124 */
1125 public function getTarget() {
1126 return $this->target;
1127 }
1128
1129 /**
1130 * Set the target for this block, and update $this->type accordingly
1131 * @param $target Mixed
1132 */
1133 public function setTarget( $target ){
1134 list( $this->target, $this->type ) = self::parseTarget( $target );
1135 }
1136
1137 /**
1138 * Get the user who implemented this block
1139 * @return User
1140 */
1141 public function getBlocker(){
1142 return $this->blocker;
1143 }
1144
1145 /**
1146 * Set the user who implemented (or will implement) this block
1147 * @param $user User
1148 */
1149 public function setBlocker( User $user ){
1150 $this->blocker = $user;
1151 }
1152 }