Audit tweaks: extra post checks, markup fixes.
[lhc/web/wiklou.git] / includes / User.php
1 <?php
2 /**
3 * See user.doc
4 *
5 * @package MediaWiki
6 */
7
8 /**
9 *
10 */
11 require_once( 'WatchedItem.php' );
12 require_once( 'Group.php' );
13
14 # Number of characters in user_token field
15 define( 'USER_TOKEN_LENGTH', 32 );
16
17 /**
18 *
19 * @package MediaWiki
20 */
21 class User {
22 /**#@+
23 * @access private
24 */
25 var $mId, $mName, $mPassword, $mEmail, $mNewtalk;
26 var $mEmailAuthenticationtimestamp;
27 var $mRights, $mOptions;
28 var $mDataLoaded, $mNewpassword;
29 var $mSkin;
30 var $mBlockedby, $mBlockreason;
31 var $mTouched;
32 var $mToken;
33 var $mRealName;
34 var $mHash;
35 /** Array of group id the user belong to */
36 var $mGroups;
37 /**#@-*/
38
39 /** Construct using User:loadDefaults() */
40 function User() {
41 $this->loadDefaults();
42 }
43
44 /**
45 * Static factory method
46 * @static
47 * @param string $name Username, validated by Title:newFromText()
48 */
49 function newFromName( $name ) {
50 $u = new User();
51
52 # Clean up name according to title rules
53
54 $t = Title::newFromText( $name );
55 if( is_null( $t ) ) {
56 return NULL;
57 } else {
58 $u->setName( $t->getText() );
59 $u->setId( $u->idFromName( $t->getText() ) );
60 return $u;
61 }
62 }
63
64 /**
65 * Get username given an id.
66 * @param integer $id Database user id
67 * @return string Nickname of a user
68 * @static
69 */
70 function whoIs( $id ) {
71 $dbr =& wfGetDB( DB_SLAVE );
72 return $dbr->selectField( 'user', 'user_name', array( 'user_id' => $id ) );
73 }
74
75 /**
76 * Get real username given an id.
77 * @param integer $id Database user id
78 * @return string Realname of a user
79 * @static
80 */
81 function whoIsReal( $id ) {
82 $dbr =& wfGetDB( DB_SLAVE );
83 return $dbr->selectField( 'user', 'user_real_name', array( 'user_id' => $id ) );
84 }
85
86 /**
87 * Get database id given a user name
88 * @param string $name Nickname of a user
89 * @return integer|null Database user id (null: if non existent
90 * @static
91 */
92 function idFromName( $name ) {
93 $fname = "User::idFromName";
94
95 $nt = Title::newFromText( $name );
96 if( is_null( $nt ) ) {
97 # Illegal name
98 return null;
99 }
100 $dbr =& wfGetDB( DB_SLAVE );
101 $s = $dbr->selectRow( 'user', array( 'user_id' ), array( 'user_name' => $nt->getText() ), $fname );
102
103 if ( $s === false ) {
104 return 0;
105 } else {
106 return $s->user_id;
107 }
108 }
109
110 /**
111 * does the string match an anonymous user IP address?
112 * @param string $name Nickname of a user
113 * @static
114 */
115 function isIP( $name ) {
116 return preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$name);
117 }
118
119 /**
120 * does the string match roughly an email address ?
121 * @param string $addr email address
122 * @static
123 */
124 function isValidEmailAddr ( $addr ) {
125 return preg_match( '/^([a-z0-9_.-]+([a-z0-9_.-]+)*\@[a-z0-9_-]+([a-z0-9_.-]+)*([a-z.]{2,})+)$/', strtolower($addr));
126 }
127
128 /**
129 * probably return a random password
130 * @return string probably a random password
131 * @static
132 * @todo Check what is doing really [AV]
133 */
134 function randomPassword() {
135 $pwchars = 'ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz';
136 $l = strlen( $pwchars ) - 1;
137
138 $np = $pwchars{mt_rand( 0, $l )} . $pwchars{mt_rand( 0, $l )} .
139 $pwchars{mt_rand( 0, $l )} . chr( mt_rand(48, 57) ) .
140 $pwchars{mt_rand( 0, $l )} . $pwchars{mt_rand( 0, $l )} .
141 $pwchars{mt_rand( 0, $l )};
142 return $np;
143 }
144
145 /**
146 * Set properties to default
147 * Used at construction. It will load per language default settings only
148 * if we have an available language object.
149 */
150 function loadDefaults() {
151 static $n=0;
152 $n++;
153 $fname = 'User::loadDefaults' . $n;
154 wfProfileIn( $fname );
155
156 global $wgContLang, $wgIP, $wgDBname;
157 global $wgNamespacesToBeSearchedDefault;
158
159 $this->mId = 0;
160 $this->mNewtalk = -1;
161 $this->mName = $wgIP;
162 $this->mRealName = $this->mEmail = '';
163 $this->mEmailAuthenticationtimestamp = 0;
164 $this->mPassword = $this->mNewpassword = '';
165 $this->mRights = array();
166 $this->mGroups = array();
167 // Getting user defaults only if we have an available language
168 if( isset( $wgContLang ) ) {
169 $this->loadDefaultFromLanguage();
170 }
171
172 foreach( $wgNamespacesToBeSearchedDefault as $nsnum => $val ) {
173 $this->mOptions['searchNs'.$nsnum] = $val;
174 }
175 unset( $this->mSkin );
176 $this->mDataLoaded = false;
177 $this->mBlockedby = -1; # Unset
178 $this->setToken(); # Random
179 $this->mHash = false;
180
181 if ( isset( $_COOKIE[$wgDBname.'LoggedOut'] ) ) {
182 $this->mTouched = wfTimestamp( TS_MW, $_COOKIE[$wgDBname.'LoggedOut'] );
183 }
184 else {
185 $this->mTouched = '0'; # Allow any pages to be cached
186 }
187
188 wfProfileOut( $fname );
189 }
190
191 /**
192 * Used to load user options from a language.
193 * This is not in loadDefault() cause we sometime create user before having
194 * a language object.
195 */
196 function loadDefaultFromLanguage(){
197 $this->mOptions = User::getDefaultOptions();
198 }
199
200 /**
201 * Combine the language default options with any site-specific options
202 * and add the default language variants.
203 *
204 * @return array
205 * @static
206 * @access private
207 */
208 function getDefaultOptions() {
209 /**
210 * Site defaults will override the global/language defaults
211 */
212 global $wgContLang, $wgDefaultUserOptions;
213 $defOpt = $wgDefaultUserOptions + $wgContLang->getDefaultUserOptions();
214
215 /**
216 * default language setting
217 */
218 $variant = $wgContLang->getPreferredVariant();
219 $defOpt['variant'] = $variant;
220 $defOpt['language'] = $variant;
221
222 return $defOpt;
223 }
224
225 /**
226 * Get a given default option value.
227 *
228 * @param string $opt
229 * @return string
230 * @static
231 * @access public
232 */
233 function getDefaultOption( $opt ) {
234 $defOpts = User::getDefaultOptions();
235 if( isset( $defOpts[$opt] ) ) {
236 return $defOpts[$opt];
237 } else {
238 return '';
239 }
240 }
241
242 /**
243 * Get blocking information
244 * @access private
245 * @param bool $bFromSlave Specify whether to check slave or master. To improve performance,
246 * non-critical checks are done against slaves. Check when actually saving should be done against
247 * master.
248 *
249 * Note that even if $bFromSlave is false, the check is done first against slave, then master.
250 * The logic is that if blocked on slave, we'll assume it's either blocked on master or
251 * just slightly outta sync and soon corrected - safer to block slightly more that less.
252 * And it's cheaper to check slave first, then master if needed, than master always.
253 */
254 function getBlockedStatus( $bFromSlave = false ) {
255 global $wgIP, $wgBlockCache, $wgProxyList;
256
257 if ( -1 != $this->mBlockedby ) { return; }
258
259 $this->mBlockedby = 0;
260
261 # User blocking
262 if ( $this->mId ) {
263 $block = new Block();
264 $block->forUpdate( $bFromSlave );
265 if ( $block->load( $wgIP , $this->mId ) ) {
266 $this->mBlockedby = $block->mBy;
267 $this->mBlockreason = $block->mReason;
268 }
269 }
270
271 # IP/range blocking
272 if ( !$this->mBlockedby ) {
273 # Check first against slave, and optionally from master.
274 $block = $wgBlockCache->get( $wgIP, true );
275 if ( !$block && !$bFromSlave )
276 {
277 # Not blocked: check against master, to make sure.
278 $wgBlockCache->clearLocal( );
279 $block = $wgBlockCache->get( $wgIP, false );
280 }
281 if ( $block !== false ) {
282 $this->mBlockedby = $block->mBy;
283 $this->mBlockreason = $block->mReason;
284 }
285 }
286
287 # Proxy blocking
288 if ( !$this->mBlockedby ) {
289 if ( array_key_exists( $wgIP, $wgProxyList ) ) {
290 $this->mBlockedby = wfMsg( 'proxyblocker' );
291 $this->mBlockreason = wfMsg( 'proxyblockreason' );
292 }
293 }
294 }
295
296 /**
297 * Check if user is blocked
298 * @return bool True if blocked, false otherwise
299 */
300 function isBlocked( $bFromSlave = false ) {
301 $this->getBlockedStatus( $bFromSlave );
302 if ( 0 === $this->mBlockedby ) { return false; }
303 return true;
304 }
305
306 /**
307 * Get name of blocker
308 * @return string name of blocker
309 */
310 function blockedBy() {
311 $this->getBlockedStatus();
312 return $this->mBlockedby;
313 }
314
315 /**
316 * Get blocking reason
317 * @return string Blocking reason
318 */
319 function blockedFor() {
320 $this->getBlockedStatus();
321 return $this->mBlockreason;
322 }
323
324 /**
325 * Initialise php session
326 */
327 function SetupSession() {
328 global $wgSessionsInMemcached, $wgCookiePath, $wgCookieDomain;
329 if( $wgSessionsInMemcached ) {
330 require_once( 'MemcachedSessions.php' );
331 } elseif( 'files' != ini_get( 'session.save_handler' ) ) {
332 # If it's left on 'user' or another setting from another
333 # application, it will end up failing. Try to recover.
334 ini_set ( 'session.save_handler', 'files' );
335 }
336 session_set_cookie_params( 0, $wgCookiePath, $wgCookieDomain );
337 session_cache_limiter( 'private, must-revalidate' );
338 @session_start();
339 }
340
341 /**
342 * Read datas from session
343 * @static
344 */
345 function loadFromSession() {
346 global $wgMemc, $wgDBname;
347
348 if ( isset( $_SESSION['wsUserID'] ) ) {
349 if ( 0 != $_SESSION['wsUserID'] ) {
350 $sId = $_SESSION['wsUserID'];
351 } else {
352 return new User();
353 }
354 } else if ( isset( $_COOKIE["{$wgDBname}UserID"] ) ) {
355 $sId = IntVal( $_COOKIE["{$wgDBname}UserID"] );
356 $_SESSION['wsUserID'] = $sId;
357 } else {
358 return new User();
359 }
360 if ( isset( $_SESSION['wsUserName'] ) ) {
361 $sName = $_SESSION['wsUserName'];
362 } else if ( isset( $_COOKIE["{$wgDBname}UserName"] ) ) {
363 $sName = $_COOKIE["{$wgDBname}UserName"];
364 $_SESSION['wsUserName'] = $sName;
365 } else {
366 return new User();
367 }
368
369 $passwordCorrect = FALSE;
370 $user = $wgMemc->get( $key = "$wgDBname:user:id:$sId" );
371 if($makenew = !$user) {
372 wfDebug( "User::loadFromSession() unable to load from memcached\n" );
373 $user = new User();
374 $user->mId = $sId;
375 $user->loadFromDatabase();
376 } else {
377 wfDebug( "User::loadFromSession() got from cache!\n" );
378 }
379
380 if ( isset( $_SESSION['wsToken'] ) ) {
381 $passwordCorrect = $_SESSION['wsToken'] == $user->mToken;
382 } else if ( isset( $_COOKIE["{$wgDBname}Token"] ) ) {
383 $passwordCorrect = $user->mToken == $_COOKIE["{$wgDBname}Token"];
384 } else {
385 return new User(); # Can't log in from session
386 }
387
388 if ( ( $sName == $user->mName ) && $passwordCorrect ) {
389 if($makenew) {
390 if($wgMemc->set( $key, $user ))
391 wfDebug( "User::loadFromSession() successfully saved user\n" );
392 else
393 wfDebug( "User::loadFromSession() unable to save to memcached\n" );
394 }
395 $user->spreadBlock();
396 return $user;
397 }
398 return new User(); # Can't log in from session
399 }
400
401 /**
402 * Load a user from the database
403 */
404 function loadFromDatabase() {
405 global $wgCommandLineMode, $wgAnonGroupId, $wgLoggedInGroupId;
406 $fname = "User::loadFromDatabase";
407
408 # Counter-intuitive, breaks various things, use User::setLoaded() if you want to suppress
409 # loading in a command line script, don't assume all command line scripts need it like this
410 #if ( $this->mDataLoaded || $wgCommandLineMode ) {
411 if ( $this->mDataLoaded ) {
412 return;
413 }
414
415 # Paranoia
416 $this->mId = IntVal( $this->mId );
417
418 /** Anonymous user */
419 if(!$this->mId) {
420 /** Get rights */
421 $anong = Group::newFromId($wgAnonGroupId);
422 if (!$anong)
423 wfDebugDieBacktrace("Please update your database schema "
424 ."and populate initial group data from "
425 ."maintenance/archives patches");
426 $anong->loadFromDatabase();
427 $this->mRights = explode(',', $anong->getRights());
428 $this->mDataLoaded = true;
429 return;
430 } # the following stuff is for non-anonymous users only
431
432 $dbr =& wfGetDB( DB_SLAVE );
433 $s = $dbr->selectRow( 'user', array( 'user_name','user_password','user_newpassword','user_email',
434 'user_emailauthenticationtimestamp',
435 'user_real_name','user_options','user_touched', 'user_token' ),
436 array( 'user_id' => $this->mId ), $fname );
437
438 if ( $s !== false ) {
439 $this->mName = $s->user_name;
440 $this->mEmail = $s->user_email;
441 $this->mEmailAuthenticationtimestamp = wfTimestamp(TS_MW,$s->user_emailauthenticationtimestamp);
442 $this->mRealName = $s->user_real_name;
443 $this->mPassword = $s->user_password;
444 $this->mNewpassword = $s->user_newpassword;
445 $this->decodeOptions( $s->user_options );
446 $this->mTouched = wfTimestamp(TS_MW,$s->user_touched);
447 $this->mToken = $s->user_token;
448
449 // Get groups id
450 $res = $dbr->select( 'user_groups', array( 'ug_group' ), array( 'ug_user' => $this->mId ) );
451
452 while($group = $dbr->fetchRow($res)) {
453 $this->mGroups[] = $group[0];
454 }
455
456 // add the default group for logged in user
457 $this->mGroups[] = $wgLoggedInGroupId;
458
459 $this->mRights = array();
460 // now we merge groups rights to get this user rights
461 foreach($this->mGroups as $aGroupId) {
462 $g = Group::newFromId($aGroupId);
463 $g->loadFromDatabase();
464 $this->mRights = array_merge($this->mRights, explode(',', $g->getRights()));
465 }
466
467 // array merge duplicate rights which are part of several groups
468 $this->mRights = array_unique($this->mRights);
469
470 $dbr->freeResult($res);
471 }
472
473 $this->mDataLoaded = true;
474 }
475
476 function getID() { return $this->mId; }
477 function setID( $v ) {
478 $this->mId = $v;
479 $this->mDataLoaded = false;
480 }
481
482 function getName() {
483 $this->loadFromDatabase();
484 return $this->mName;
485 }
486
487 function setName( $str ) {
488 $this->loadFromDatabase();
489 $this->mName = $str;
490 }
491
492
493 /**
494 * Return the title dbkey form of the name, for eg user pages.
495 * @return string
496 * @access public
497 */
498 function getTitleKey() {
499 return str_replace( ' ', '_', $this->getName() );
500 }
501
502 function getNewtalk() {
503 $fname = 'User::getNewtalk';
504 $this->loadFromDatabase();
505
506 # Load the newtalk status if it is unloaded (mNewtalk=-1)
507 if( $this->mNewtalk == -1 ) {
508 $this->mNewtalk = 0; # reset talk page status
509
510 # Check memcached separately for anons, who have no
511 # entire User object stored in there.
512 if( !$this->mId ) {
513 global $wgDBname, $wgMemc;
514 $key = "$wgDBname:newtalk:ip:{$this->mName}";
515 $newtalk = $wgMemc->get( $key );
516 if( is_integer( $newtalk ) ) {
517 $this->mNewtalk = $newtalk ? 1 : 0;
518 return (bool)$this->mNewtalk;
519 }
520 }
521
522 $dbr =& wfGetDB( DB_SLAVE );
523 $res = $dbr->select( 'watchlist',
524 array( 'wl_user' ),
525 array( 'wl_title' => $this->getTitleKey(),
526 'wl_namespace' => NS_USER_TALK,
527 'wl_user' => $this->mId,
528 'wl_notificationtimestamp != 0' ),
529 'User::getNewtalk' );
530 if( $dbr->numRows($res) > 0 ) {
531 $this->mNewtalk = 1;
532 }
533 $dbr->freeResult( $res );
534
535 if( !$this->mId ) {
536 $wgMemc->set( $key, $this->mNewtalk, time() ); // + 1800 );
537 }
538 }
539
540 return ( 0 != $this->mNewtalk );
541 }
542
543 function setNewtalk( $val ) {
544 $this->loadFromDatabase();
545 $this->mNewtalk = $val;
546 $this->invalidateCache();
547 }
548
549 function invalidateCache() {
550 $this->loadFromDatabase();
551 $this->mTouched = wfTimestampNow();
552 # Don't forget to save the options after this or
553 # it won't take effect!
554 }
555
556 function validateCache( $timestamp ) {
557 $this->loadFromDatabase();
558 return ($timestamp >= $this->mTouched);
559 }
560
561 /**
562 * Salt a password.
563 * Will only be salted if $wgPasswordSalt is true
564 * @param string Password.
565 * @return string Salted password or clear password.
566 */
567 function addSalt( $p ) {
568 global $wgPasswordSalt;
569 if($wgPasswordSalt)
570 return md5( "{$this->mId}-{$p}" );
571 else
572 return $p;
573 }
574
575 /**
576 * Encrypt a password.
577 * It can eventuall salt a password @see User::addSalt()
578 * @param string $p clear Password.
579 * @param string Encrypted password.
580 */
581 function encryptPassword( $p ) {
582 return $this->addSalt( md5( $p ) );
583 }
584
585 # Set the password and reset the random token
586 function setPassword( $str ) {
587 $this->loadFromDatabase();
588 $this->setToken();
589 $this->mPassword = $this->encryptPassword( $str );
590 $this->mNewpassword = '';
591 }
592
593 # Set the random token (used for persistent authentication)
594 function setToken( $token = false ) {
595 if ( !$token ) {
596 $this->mToken = '';
597 # Take random data from PRNG
598 # This is reasonably secure if the PRNG has been seeded correctly
599 for ($i = 0; $i<USER_TOKEN_LENGTH / 4; $i++) {
600 $this->mToken .= sprintf( "%04X", mt_rand( 0, 65535 ) );
601 }
602 } else {
603 $this->mToken = $token;
604 }
605 }
606
607
608 function setCookiePassword( $str ) {
609 $this->loadFromDatabase();
610 $this->mCookiePassword = md5( $str );
611 }
612
613 function setNewpassword( $str ) {
614 $this->loadFromDatabase();
615 $this->mNewpassword = $this->encryptPassword( $str );
616 }
617
618 function getEmail() {
619 $this->loadFromDatabase();
620 return $this->mEmail;
621 }
622
623 function getEmailAuthenticationtimestamp() {
624 $this->loadFromDatabase();
625 return $this->mEmailAuthenticationtimestamp;
626 }
627
628 function setEmail( $str ) {
629 $this->loadFromDatabase();
630 $this->mEmail = $str;
631 }
632
633 function getRealName() {
634 $this->loadFromDatabase();
635 return $this->mRealName;
636 }
637
638 function setRealName( $str ) {
639 $this->loadFromDatabase();
640 $this->mRealName = $str;
641 }
642
643 function getOption( $oname ) {
644 $this->loadFromDatabase();
645 if ( array_key_exists( $oname, $this->mOptions ) ) {
646 return $this->mOptions[$oname];
647 } else {
648 return '';
649 }
650 }
651
652 function setOption( $oname, $val ) {
653 $this->loadFromDatabase();
654 if ( $oname == 'skin' ) {
655 # Clear cached skin, so the new one displays immediately in Special:Preferences
656 unset( $this->mSkin );
657 }
658 $this->mOptions[$oname] = $val;
659 $this->invalidateCache();
660 }
661
662 function getRights() {
663 $this->loadFromDatabase();
664 return $this->mRights;
665 }
666
667 function addRight( $rname ) {
668 $this->loadFromDatabase();
669 array_push( $this->mRights, $rname );
670 $this->invalidateCache();
671 }
672
673 function getGroups() {
674 $this->loadFromDatabase();
675 return $this->mGroups;
676 }
677
678 function setGroups($groups) {
679 $this->loadFromDatabase();
680 $this->mGroups = $groups;
681 $this->invalidateCache();
682 }
683
684 /**
685 * Check if a user is sysop
686 * Die with backtrace. Use User:isAllowed() instead.
687 * @deprecated
688 */
689 function isSysop() {
690 /**
691 $this->loadFromDatabase();
692 if ( 0 == $this->mId ) { return false; }
693
694 return in_array( 'sysop', $this->mRights );
695 */
696 wfDebugDieBacktrace("User::isSysop() is deprecated. Use User::isAllowed() instead");
697 }
698
699 /** @deprecated */
700 function isDeveloper() {
701 /**
702 $this->loadFromDatabase();
703 if ( 0 == $this->mId ) { return false; }
704
705 return in_array( 'developer', $this->mRights );
706 */
707 wfDebugDieBacktrace("User::isDeveloper() is deprecated. Use User::isAllowed() instead");
708 }
709
710 /** @deprecated */
711 function isBureaucrat() {
712 /**
713 $this->loadFromDatabase();
714 if ( 0 == $this->mId ) { return false; }
715
716 return in_array( 'bureaucrat', $this->mRights );
717 */
718 wfDebugDieBacktrace("User::isBureaucrat() is deprecated. Use User::isAllowed() instead");
719 }
720
721 /**
722 * Whether the user is a bot
723 * @todo need to be migrated to the new user level management sytem
724 */
725 function isBot() {
726 $this->loadFromDatabase();
727
728 # Why was this here? I need a UID=0 conversion script [TS]
729 # if ( 0 == $this->mId ) { return false; }
730
731 return in_array( 'bot', $this->mRights );
732 }
733
734 /**
735 * Check if user is allowed to access a feature / make an action
736 * @param string $action Action to be checked (see $wgAvailableRights in Defines.php for possible actions).
737 * @return boolean True: action is allowed, False: action should not be allowed
738 */
739 function isAllowed($action='') {
740 $this->loadFromDatabase();
741 return in_array( $action , $this->mRights );
742 }
743
744 /**
745 * Load a skin if it doesn't exist or return it
746 * @todo FIXME : need to check the old failback system [AV]
747 */
748 function &getSkin() {
749 global $IP;
750 if ( ! isset( $this->mSkin ) ) {
751 $fname = 'User::getSkin';
752 wfProfileIn( $fname );
753
754 # get all skin names available
755 $skinNames = Skin::getSkinNames();
756
757 # get the user skin
758 $userSkin = $this->getOption( 'skin' );
759 if ( $userSkin == '' ) { $userSkin = 'standard'; }
760
761 if ( !isset( $skinNames[$userSkin] ) ) {
762 # in case the user skin could not be found find a replacement
763 $fallback = array(
764 0 => 'Standard',
765 1 => 'Nostalgia',
766 2 => 'CologneBlue');
767 # if phptal is enabled we should have monobook skin that
768 # superseed the good old SkinStandard.
769 if ( isset( $skinNames['monobook'] ) ) {
770 $fallback[0] = 'MonoBook';
771 }
772
773 if(is_numeric($userSkin) && isset( $fallback[$userSkin]) ){
774 $sn = $fallback[$userSkin];
775 } else {
776 $sn = 'Standard';
777 }
778 } else {
779 # The user skin is available
780 $sn = $skinNames[$userSkin];
781 }
782
783 # Grab the skin class and initialise it. Each skin checks for PHPTal
784 # and will not load if it's not enabled.
785 require_once( $IP.'/skins/'.$sn.'.php' );
786
787 # Check if we got if not failback to default skin
788 $className = 'Skin'.$sn;
789 if( !class_exists( $className ) ) {
790 # DO NOT die if the class isn't found. This breaks maintenance
791 # scripts and can cause a user account to be unrecoverable
792 # except by SQL manipulation if a previously valid skin name
793 # is no longer valid.
794 $className = 'SkinStandard';
795 require_once( $IP.'/skins/Standard.php' );
796 }
797 $this->mSkin =& new $className;
798 wfProfileOut( $fname );
799 }
800 return $this->mSkin;
801 }
802
803 /**#@+
804 * @param string $title Article title to look at
805 */
806
807 /**
808 * Check watched status of an article
809 * @return bool True if article is watched
810 */
811 function isWatched( $title ) {
812 $wl = WatchedItem::fromUserTitle( $this, $title );
813 return $wl->isWatched();
814 }
815
816 /**
817 * Watch an article
818 */
819 function addWatch( $title ) {
820 $wl = WatchedItem::fromUserTitle( $this, $title );
821 $wl->addWatch();
822 $this->invalidateCache();
823 }
824
825 /**
826 * Stop watching an article
827 */
828 function removeWatch( $title ) {
829 $wl = WatchedItem::fromUserTitle( $this, $title );
830 $wl->removeWatch();
831 $this->invalidateCache();
832 }
833
834 /**
835 * Clear the user's notification timestamp for the given title.
836 * If e-notif e-mails are on, they will receive notification mails on
837 * the next change of the page if it's watched etc.
838 */
839 function clearNotification( $title ) {
840 $userid = $this->getId();
841 if ($userid==0)
842 return;
843 $dbw =& wfGetDB( DB_MASTER );
844 $success = $dbw->update( 'watchlist',
845 array( /* SET */
846 'wl_notificationtimestamp' => $dbw->timestamp(0)
847 ), array( /* WHERE */
848 'wl_title' => $title->getDBkey(),
849 'wl_namespace' => $title->getNamespace(),
850 'wl_user' => $this->getId()
851 ), 'User::clearLastVisited'
852 );
853 }
854
855 /**#@-*/
856
857 /**
858 * Resets all of the given user's page-change notification timestamps.
859 * If e-notif e-mails are on, they will receive notification mails on
860 * the next change of any watched page.
861 *
862 * @param int $currentUser user ID number
863 * @access public
864 */
865 function clearAllNotifications( $currentUser ) {
866 if( $currentUser != 0 ) {
867
868 $dbw =& wfGetDB( DB_MASTER );
869 $success = $dbw->update( 'watchlist',
870 array( /* SET */
871 'wl_notificationtimestamp' => 0
872 ), array( /* WHERE */
873 'wl_user' => $currentUser
874 ), 'UserMailer::clearAll'
875 );
876
877 # we also need to clear here the "you have new message" notification for the own user_talk page
878 # This is cleared one page view later in Article::viewUpdates();
879 }
880 }
881
882 /**
883 * @access private
884 * @return string Encoding options
885 */
886 function encodeOptions() {
887 $a = array();
888 foreach ( $this->mOptions as $oname => $oval ) {
889 array_push( $a, $oname.'='.$oval );
890 }
891 $s = implode( "\n", $a );
892 return $s;
893 }
894
895 /**
896 * @access private
897 */
898 function decodeOptions( $str ) {
899 $a = explode( "\n", $str );
900 foreach ( $a as $s ) {
901 if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
902 $this->mOptions[$m[1]] = $m[2];
903 }
904 }
905 }
906
907 function setCookies() {
908 global $wgCookieExpiration, $wgCookiePath, $wgCookieDomain, $wgDBname;
909 if ( 0 == $this->mId ) return;
910 $this->loadFromDatabase();
911 $exp = time() + $wgCookieExpiration;
912
913 $_SESSION['wsUserID'] = $this->mId;
914 setcookie( $wgDBname.'UserID', $this->mId, $exp, $wgCookiePath, $wgCookieDomain );
915
916 $_SESSION['wsUserName'] = $this->mName;
917 setcookie( $wgDBname.'UserName', $this->mName, $exp, $wgCookiePath, $wgCookieDomain );
918
919 $_SESSION['wsToken'] = $this->mToken;
920 if ( 1 == $this->getOption( 'rememberpassword' ) ) {
921 setcookie( $wgDBname.'Token', $this->mToken, $exp, $wgCookiePath, $wgCookieDomain );
922 } else {
923 setcookie( $wgDBname.'Token', '', time() - 3600 );
924 }
925 }
926
927 /**
928 * Logout user
929 * It will clean the session cookie
930 */
931 function logout() {
932 global $wgCookiePath, $wgCookieDomain, $wgDBname, $wgIP;
933 $this->loadDefaults();
934 $this->setLoaded( true );
935
936 $_SESSION['wsUserID'] = 0;
937
938 setcookie( $wgDBname.'UserID', '', time() - 3600, $wgCookiePath, $wgCookieDomain );
939 setcookie( $wgDBname.'Token', '', time() - 3600, $wgCookiePath, $wgCookieDomain );
940
941 # Remember when user logged out, to prevent seeing cached pages
942 setcookie( $wgDBname.'LoggedOut', wfTimestampNow(), time() + 86400, $wgCookiePath, $wgCookieDomain );
943 }
944
945 /**
946 * Save object settings into database
947 */
948 function saveSettings() {
949 global $wgMemc, $wgDBname;
950 $fname = 'User::saveSettings';
951
952 $dbw =& wfGetDB( DB_MASTER );
953 if ( ! $this->getNewtalk() ) {
954 # Delete the watchlist entry for user_talk page X watched by user X
955 $dbw->delete( 'watchlist',
956 array( 'wl_user' => $this->mId,
957 'wl_title' => $this->getTitleKey(),
958 'wl_namespace' => NS_USER_TALK ),
959 $fname );
960 if( !$this->mId ) {
961 # Anon users have a separate memcache space for newtalk
962 # since they don't store their own info. Trim...
963 $wgMemc->delete( "$wgDBname:newtalk:ip:{$this->mName}" );
964 }
965 }
966
967 if ( 0 == $this->mId ) { return; }
968
969 $dbw->update( 'user',
970 array( /* SET */
971 'user_name' => $this->mName,
972 'user_password' => $this->mPassword,
973 'user_newpassword' => $this->mNewpassword,
974 'user_real_name' => $this->mRealName,
975 'user_email' => $this->mEmail,
976 'user_emailauthenticationtimestamp' => $dbw->timestamp($this->mEmailAuthenticationtimestamp),
977 'user_options' => $this->encodeOptions(),
978 'user_touched' => $dbw->timestamp($this->mTouched),
979 'user_token' => $this->mToken
980 ), array( /* WHERE */
981 'user_id' => $this->mId
982 ), $fname
983 );
984 $dbw->set( 'user_rights', 'ur_rights', implode( ',', $this->mRights ),
985 'ur_user='. $this->mId, $fname );
986 $wgMemc->delete( "$wgDBname:user:id:$this->mId" );
987
988 // delete old groups
989 $dbw->delete( 'user_groups', array( 'ug_user' => $this->mId), $fname);
990
991 // save new ones
992 foreach ($this->mGroups as $group) {
993 $dbw->replace( 'user_groups',
994 array(array('ug_user','ug_group')),
995 array(
996 'ug_user' => $this->mId,
997 'ug_group' => $group
998 ), $fname
999 );
1000 }
1001 }
1002
1003
1004 /**
1005 * Checks if a user with the given name exists, returns the ID
1006 */
1007 function idForName() {
1008 $fname = 'User::idForName';
1009
1010 $gotid = 0;
1011 $s = trim( $this->mName );
1012 if ( 0 == strcmp( '', $s ) ) return 0;
1013
1014 $dbr =& wfGetDB( DB_SLAVE );
1015 $id = $dbr->selectField( 'user', 'user_id', array( 'user_name' => $s ), $fname );
1016 if ( $id === false ) {
1017 $id = 0;
1018 }
1019 return $id;
1020 }
1021
1022 /**
1023 * Add user object to the database
1024 */
1025 function addToDatabase() {
1026 $fname = 'User::addToDatabase';
1027 $dbw =& wfGetDB( DB_MASTER );
1028 $seqVal = $dbw->nextSequenceValue( 'user_user_id_seq' );
1029 $dbw->insert( 'user',
1030 array(
1031 'user_id' => $seqVal,
1032 'user_name' => $this->mName,
1033 'user_password' => $this->mPassword,
1034 'user_newpassword' => $this->mNewpassword,
1035 'user_email' => $this->mEmail,
1036 'user_emailauthenticationtimestamp' => $dbw->timestamp($this->mEmailAuthenticationtimestamp),
1037 'user_real_name' => $this->mRealName,
1038 'user_options' => $this->encodeOptions(),
1039 'user_token' => $this->mToken
1040 ), $fname
1041 );
1042 $this->mId = $dbw->insertId();
1043 $dbw->insert( 'user_rights',
1044 array(
1045 'ur_user' => $this->mId,
1046 'ur_rights' => implode( ',', $this->mRights )
1047 ), $fname
1048 );
1049
1050 foreach ($this->mGroups as $group) {
1051 $dbw->insert( 'user_groups',
1052 array(
1053 'ug_user' => $this->mId,
1054 'ug_group' => $group
1055 ), $fname
1056 );
1057 }
1058 }
1059
1060 function spreadBlock() {
1061 global $wgIP;
1062 # If the (non-anonymous) user is blocked, this function will block any IP address
1063 # that they successfully log on from.
1064 $fname = 'User::spreadBlock';
1065
1066 wfDebug( "User:spreadBlock()\n" );
1067 if ( $this->mId == 0 ) {
1068 return;
1069 }
1070
1071 $userblock = Block::newFromDB( '', $this->mId );
1072 if ( !$userblock->isValid() ) {
1073 return;
1074 }
1075
1076 # Check if this IP address is already blocked
1077 $ipblock = Block::newFromDB( $wgIP );
1078 if ( $ipblock->isValid() ) {
1079 # Just update the timestamp
1080 $ipblock->updateTimestamp();
1081 return;
1082 }
1083
1084 # Make a new block object with the desired properties
1085 wfDebug( "Autoblocking {$this->mName}@{$wgIP}\n" );
1086 $ipblock->mAddress = $wgIP;
1087 $ipblock->mUser = 0;
1088 $ipblock->mBy = $userblock->mBy;
1089 $ipblock->mReason = wfMsg( 'autoblocker', $this->getName(), $userblock->mReason );
1090 $ipblock->mTimestamp = wfTimestampNow();
1091 $ipblock->mAuto = 1;
1092 # If the user is already blocked with an expiry date, we don't
1093 # want to pile on top of that!
1094 if($userblock->mExpiry) {
1095 $ipblock->mExpiry = min ( $userblock->mExpiry, Block::getAutoblockExpiry( $ipblock->mTimestamp ));
1096 } else {
1097 $ipblock->mExpiry = Block::getAutoblockExpiry( $ipblock->mTimestamp );
1098 }
1099
1100 # Insert it
1101 $ipblock->insert();
1102
1103 }
1104
1105 function getPageRenderingHash() {
1106 global $wgContLang;
1107 if( $this->mHash ){
1108 return $this->mHash;
1109 }
1110
1111 // stubthreshold is only included below for completeness,
1112 // it will always be 0 when this function is called by parsercache.
1113
1114 $confstr = $this->getOption( 'math' );
1115 $confstr .= '!' . $this->getOption( 'highlightbroken' );
1116 $confstr .= '!' . $this->getOption( 'stubthreshold' );
1117 $confstr .= '!' . $this->getOption( 'editsection' );
1118 $confstr .= '!' . $this->getOption( 'editsectiononrightclick' );
1119 $confstr .= '!' . $this->getOption( 'showtoc' );
1120 $confstr .= '!' . $this->getOption( 'date' );
1121 $confstr .= '!' . $this->getOption( 'numberheadings' );
1122 $confstr .= '!' . $this->getOption( 'language' );
1123 // add in language specific options, if any
1124 $extra = $wgContLang->getExtraHashOptions();
1125 $confstr .= $extra;
1126
1127 $this->mHash = $confstr;
1128 return $confstr ;
1129 }
1130
1131 function isAllowedToCreateAccount() {
1132 global $wgWhitelistAccount;
1133 $allowed = false;
1134
1135 if (!$wgWhitelistAccount) { return 1; }; // default behaviour
1136 foreach ($wgWhitelistAccount as $right => $ok) {
1137 $userHasRight = (!strcmp($right, 'user') || in_array($right, $this->getRights()));
1138 $allowed |= ($ok && $userHasRight);
1139 }
1140 return $allowed;
1141 }
1142
1143 /**
1144 * Set mDataLoaded, return previous value
1145 * Use this to prevent DB access in command-line scripts or similar situations
1146 */
1147 function setLoaded( $loaded ) {
1148 return wfSetVar( $this->mDataLoaded, $loaded );
1149 }
1150
1151 function getUserPage() {
1152 return Title::makeTitle( NS_USER, $this->mName );
1153 }
1154
1155 /**
1156 * @static
1157 */
1158 function getMaxID() {
1159 $dbr =& wfGetDB( DB_SLAVE );
1160 return $dbr->selectField( 'user', 'max(user_id)', false );
1161 }
1162
1163 /**
1164 * Determine whether the user is a newbie. Newbies are either
1165 * anonymous IPs, or the 1% most recently created accounts.
1166 * Bots and sysops are excluded.
1167 * @return bool True if it is a newbie.
1168 */
1169 function isNewbie() {
1170 return $this->mId > User::getMaxID() * 0.99 && !$this->isSysop() && !$this->isBot() || $this->getID() == 0;
1171 }
1172
1173 /**
1174 * Check to see if the given clear-text password is one of the accepted passwords
1175 * @param string $password User password.
1176 * @return bool True if the given password is correct otherwise False.
1177 */
1178 function checkPassword( $password ) {
1179 global $wgAuth;
1180 $this->loadFromDatabase();
1181
1182 if( $wgAuth->authenticate( $this->getName(), $password ) ) {
1183 return true;
1184 } elseif( $wgAuth->strict() ) {
1185 /* Auth plugin doesn't allow local authentication */
1186 return false;
1187 }
1188 $ep = $this->encryptPassword( $password );
1189 if ( 0 == strcmp( $ep, $this->mPassword ) ) {
1190 return true;
1191 } elseif ( ($this->mNewpassword != '') && (0 == strcmp( $ep, $this->mNewpassword )) ) {
1192 $this->mEmailAuthenticationtimestamp = wfTimestampNow();
1193 $this->mNewpassword = ''; # use the temporary one-time password only once: clear it now !
1194 $this->saveSettings();
1195 return true;
1196 } elseif ( function_exists( 'iconv' ) ) {
1197 # Some wikis were converted from ISO 8859-1 to UTF-8, the passwords can't be converted
1198 # Check for this with iconv
1199 $cp1252hash = $this->encryptPassword( iconv( 'UTF-8', 'WINDOWS-1252', $password ) );
1200 if ( 0 == strcmp( $cp1252hash, $this->mPassword ) ) {
1201 return true;
1202 }
1203 }
1204 return false;
1205 }
1206
1207 /**
1208 * Initialize (if necessary) and return a session token value
1209 * which can be used in edit forms to show that the user's
1210 * login credentials aren't being hijacked with a foreign form
1211 * submission.
1212 *
1213 * @param mixed $salt - Optional function-specific data for hash.
1214 * Use a string or an array of strings.
1215 * @return string
1216 * @access public
1217 */
1218 function editToken( $salt = '' ) {
1219 if( !isset( $_SESSION['wsEditToken'] ) ) {
1220 $token = dechex( mt_rand() ) . dechex( mt_rand() );
1221 $_SESSION['wsEditToken'] = $token;
1222 } else {
1223 $token = $_SESSION['wsEditToken'];
1224 }
1225 if( is_array( $salt ) ) {
1226 $salt = implode( '|', $salt );
1227 }
1228 return md5( $token . $salt );
1229 }
1230
1231 /**
1232 * Check given value against the token value stored in the session.
1233 * A match should confirm that the form was submitted from the
1234 * user's own login session, not a form submission from a third-party
1235 * site.
1236 *
1237 * @param string $val - the input value to compare
1238 * @param string $salt - Optional function-specific data for hash
1239 * @return bool
1240 * @access public
1241 */
1242 function matchEditToken( $val, $salt = '' ) {
1243 return ( $val == $this->editToken( $salt ) );
1244 }
1245 }
1246
1247 ?>