5 /* private */ var $mId, $mName, $mPassword, $mEmail, $mNewtalk;
6 /* private */ var $mRights, $mOptions;
7 /* private */ var $mDataLoaded, $mNewpassword;
8 /* private */ var $mSkin;
9 /* private */ var $mBlockedby, $mBlockreason;
10 /* private */ var $mTouched;
11 /* private */ var $mCookiePassword;
15 $this->loadDefaults();
18 # Static factory method
20 function newFromName( $name )
24 # Clean up name according to title rules
26 $t = Title
::newFromText( $name );
27 $u->setName( $t->getText() );
31 /* static */ function whoIs( $id )
33 return wfGetSQL( "user", "user_name", "user_id=$id" );
36 /* static */ function idFromName( $name )
38 $nt = Title
::newFromText( $name );
39 $sql = "SELECT user_id FROM user WHERE user_name='" .
40 wfStrencode( $nt->getText() ) . "'";
41 $res = wfQuery( $sql, "User::idFromName" );
43 if ( 0 == wfNumRows( $res ) ) { return 0; }
45 $s = wfFetchObject( $res );
50 # does the string match an anonymous user IP address?
51 /* static */ function isIP( $name ) {
52 return preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$name);
56 /* static */ function randomPassword()
58 $pwchars = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz";
59 $l = strlen( $pwchars ) - 1;
62 $np = $pwchars{mt_rand( 0, $l )} . $pwchars{mt_rand( 0, $l )} .
63 $pwchars{mt_rand( 0, $l )} . chr( mt_rand(48, 57) ) .
64 $pwchars{mt_rand( 0, $l )} . $pwchars{mt_rand( 0, $l )} .
65 $pwchars{mt_rand( 0, $l )};
69 function loadDefaults()
72 global $wgNamespacesToBeSearchedDefault;
74 $this->mId
= $this->mNewtalk
= 0;
75 $this->mName
= getenv( "REMOTE_ADDR" );
77 $this->mPassword
= $this->mNewpassword
= "";
78 $this->mRights
= array();
79 $defOpt = $wgLang->getDefaultUserOptions() ;
80 foreach ( $defOpt as $oname => $val ) {
81 $this->mOptions
[$oname] = $val;
83 foreach ($wgNamespacesToBeSearchedDefault as $nsnum => $val) {
84 $this->mOptions
["searchNs".$nsnum] = $val;
86 unset( $this->mSkin
);
87 $this->mDataLoaded
= false;
88 $this->mBlockedby
= -1; # Unset
89 $this->mTouched
= '0'; # Allow any pages to be cached
90 $this->cookiePassword
= "";
93 /* private */ function getBlockedStatus()
95 if ( -1 != $this->mBlockedby
) { return; }
98 if ( $ban->load( getenv( "REMOTE_ADDR" ), $this->mId
) ) {
99 $this->mBlockedby
= 0;
103 $this->mBlockedby
= $ban->by
;
104 $this->mBlockreason
= $ban->reason
;
109 $this->getBlockedStatus();
110 if ( 0 == $this->mBlockedby
) { return false; }
114 function blockedBy() {
115 $this->getBlockedStatus();
116 return $this->mBlockedby
;
119 function blockedFor() {
120 $this->getBlockedStatus();
121 return $this->mBlockreason
;
124 /* static */ function loadFromSession()
126 global $HTTP_COOKIE_VARS, $wsUserID, $wsUserName, $wsUserPassword;
127 global $wgMemc, $wgDBname;
129 if ( isset( $wsUserID ) ) {
130 if ( 0 != $wsUserID ) {
135 } else if ( isset( $HTTP_COOKIE_VARS["wcUserID"] ) ) {
136 $sId = $HTTP_COOKIE_VARS["wcUserID"];
141 if ( isset( $wsUserName ) ) {
142 $sName = $wsUserName;
143 } else if ( isset( $HTTP_COOKIE_VARS["wcUserName"] ) ) {
144 $sName = $HTTP_COOKIE_VARS["wcUserName"];
145 $wsUserName = $sName;
150 $passwordCorrect = FALSE;
151 $user = $wgMemc->get( $key = "$wgDBname:user:id:$sId" );
152 if($makenew = !$user) {
153 wfDebug( "User::loadFromSession() unable to load from memcached\n" );
156 $user->loadFromDatabase();
158 wfDebug( "User::loadFromSession() got from cache!\n" );
161 if ( isset( $wsUserPassword ) ) {
162 $passwordCorrect = $wsUserPassword == $user->mPassword
;
163 } else if ( isset( $HTTP_COOKIE_VARS["wcUserPassword"] ) ) {
164 $user->mCookiePassword
= $HTTP_COOKIE_VARS["wcUserPassword"];
165 $wsUserPassword = $user->addSalt( $user->mCookiePassword
);
166 $passwordCorrect = $wsUserPassword == $user->mPassword
;
168 return new User(); # Can't log in from session
171 if ( ( $sName == $user->mName
) && $passwordCorrect ) {
173 if($wgMemc->set( $key, $user ))
174 wfDebug( "User::loadFromSession() successfully saved user\n" );
176 wfDebug( "User::loadFromSession() unable to save to memcached\n" );
178 $user->spreadBlock();
181 return new User(); # Can't log in from session
184 function loadFromDatabase()
186 if ( $this->mDataLoaded
) { return; }
187 # check in separate table if there are changes to the talk page
188 $this->mNewtalk
=0; # reset talk page status
190 $sql = "SELECT 1 FROM user_newtalk WHERE user_id={$this->mId}";
191 $res = wfQuery ($sql, "User::loadFromDatabase" );
193 if (wfNumRows($res)>0) {
196 wfFreeResult( $res );
198 global $wgDBname, $wgMemc;
199 $key = "$wgDBname:newtalk:ip:{$this->mName}";
200 $newtalk = $wgMemc->get( $key );
201 if($newtalk === false) {
202 $sql = "SELECT 1 FROM user_newtalk WHERE user_ip='{$this->mName}'";
203 $res = wfQuery ($sql, "User::loadFromDatabase" );
205 $this->mNewtalk
= (wfNumRows($res)>0) ?
1 : 0;
206 wfFreeResult( $res );
208 $wgMemc->set( $key, $this->mNewtalk
, time() ); // + 1800 );
210 $this->mNewtalk
= $newtalk ?
1 : 0;
214 $this->mDataLoaded
= true;
216 } # the following stuff is for non-anonymous users only
218 $sql = "SELECT user_name,user_password,user_newpassword,user_email," .
219 "user_options,user_rights,user_touched FROM user WHERE user_id=" .
221 $res = wfQuery( $sql, "User::loadFromDatabase" );
223 if ( wfNumRows( $res ) > 0 ) {
224 $s = wfFetchObject( $res );
225 $this->mName
= $s->user_name
;
226 $this->mEmail
= $s->user_email
;
227 $this->mPassword
= $s->user_password
;
228 $this->mNewpassword
= $s->user_newpassword
;
229 $this->decodeOptions( $s->user_options
);
230 $this->mRights
= explode( ",", strtolower( $s->user_rights
) );
231 $this->mTouched
= $s->user_touched
;
234 wfFreeResult( $res );
235 $this->mDataLoaded
= true;
238 function getID() { return $this->mId
; }
239 function setID( $v ) {
241 $this->mDataLoaded
= false;
245 $this->loadFromDatabase();
249 function setName( $str )
251 $this->loadFromDatabase();
255 function getNewtalk()
257 $this->loadFromDatabase();
258 return ( 0 != $this->mNewtalk
);
261 function setNewtalk( $val )
263 $this->loadFromDatabase();
264 $this->mNewtalk
= $val;
265 $this->invalidateCache();
268 function invalidateCache() {
269 $this->loadFromDatabase();
270 $this->mTouched
= wfTimestampNow();
271 # Don't forget to save the options after this or
272 # it won't take effect!
275 function validateCache( $timestamp ) {
276 $this->loadFromDatabase();
277 return ($timestamp >= $this->mTouched
);
280 function getPassword()
282 $this->loadFromDatabase();
283 return $this->mPassword
;
286 function getNewpassword()
288 $this->loadFromDatabase();
289 return $this->mNewpassword
;
292 function addSalt( $p )
294 global $wgPasswordSalt;
296 return md5( "{$this->mId}-{$p}" );
301 function encryptPassword( $p )
303 return $this->addSalt( md5( $p ) );
306 function setPassword( $str )
308 $this->loadFromDatabase();
309 $this->setCookiePassword( $str );
310 $this->mPassword
= $this->encryptPassword( $str );
311 $this->mNewpassword
= "";
314 function setCookiePassword( $str )
316 $this->loadFromDatabase();
317 $this->mCookiePassword
= md5( $str );
320 function setNewpassword( $str )
322 $this->loadFromDatabase();
323 $this->mNewpassword
= $this->encryptPassword( $str );
328 $this->loadFromDatabase();
329 return $this->mEmail
;
332 function setEmail( $str )
334 $this->loadFromDatabase();
335 $this->mEmail
= $str;
338 function getOption( $oname )
340 $this->loadFromDatabase();
341 if ( array_key_exists( $oname, $this->mOptions
) ) {
342 return $this->mOptions
[$oname];
348 function setOption( $oname, $val )
350 $this->loadFromDatabase();
351 $this->mOptions
[$oname] = $val;
352 $this->invalidateCache();
357 $this->loadFromDatabase();
358 return $this->mRights
;
361 function addRight( $rname )
363 $this->loadFromDatabase();
364 array_push( $this->mRights
, $rname );
365 $this->invalidateCache();
370 $this->loadFromDatabase();
371 if ( 0 == $this->mId
) { return false; }
373 return in_array( "sysop", $this->mRights
);
376 function isDeveloper()
378 $this->loadFromDatabase();
379 if ( 0 == $this->mId
) { return false; }
381 return in_array( "developer", $this->mRights
);
386 $this->loadFromDatabase();
387 if ( 0 == $this->mId
) { return false; }
389 return in_array( "bot", $this->mRights
);
394 if ( ! isset( $this->mSkin
) ) {
395 $skinNames = Skin
::getSkinNames();
396 $s = $this->getOption( "skin" );
397 if ( "" == $s ) { $s = 0; }
399 if ( $s >= count( $skinNames ) ) { $sn = "SkinStandard"; }
400 else $sn = "Skin" . $skinNames[$s];
401 $this->mSkin
= new $sn;
406 function isWatched( $title )
408 # Note - $title should be a Title _object_
409 # Pages and their talk pages are considered equivalent for watching;
410 # remember that talk namespaces are numbered as page namespace+1.
412 $sql = "SELECT 1 FROM watchlist
413 WHERE wl_user={$this->mId} AND
414 wl_namespace = " . ($title->getNamespace() & ~
1) . " AND
415 wl_title='" . wfStrencode( $title->getDBkey() ) . "'";
416 $res = wfQuery( $sql );
417 return (wfNumRows( $res ) > 0);
423 function addWatch( $title )
426 # REPLACE instead of INSERT because occasionally someone
427 # accidentally reloads a watch-add operation.
428 $sql = "REPLACE INTO watchlist (wl_user, wl_namespace,wl_title)
429 VALUES ({$this->mId}," . (($title->getNamespace() |
1) - 1) .
430 ",'" . wfStrencode( $title->getDBkey() ) . "')";
432 $this->invalidateCache();
436 function removeWatch( $title )
439 $sql = "DELETE FROM watchlist WHERE wl_user={$this->mId} AND
440 wl_namespace=" . (($title->getNamespace() |
1) - 1) .
441 " AND wl_title='" . wfStrencode( $title->getDBkey() ) . "'";
443 $this->invalidateCache();
448 /* private */ function encodeOptions()
451 foreach ( $this->mOptions
as $oname => $oval ) {
452 array_push( $a, "{$oname}={$oval}" );
454 $s = implode( "\n", $a );
455 return wfStrencode( $s );
458 /* private */ function decodeOptions( $str )
460 $a = explode( "\n", $str );
461 foreach ( $a as $s ) {
462 if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
463 $this->mOptions
[$m[1]] = $m[2];
468 function setCookies()
470 global $wsUserID, $wsUserName, $wsUserPassword;
471 global $wgCookieExpiration;
472 if ( 0 == $this->mId
) return;
473 $this->loadFromDatabase();
474 $exp = time() +
$wgCookieExpiration;
476 $wsUserID = $this->mId
;
477 setcookie( "wcUserID", $this->mId
, $exp, "/" );
479 $wsUserName = $this->mName
;
480 setcookie( "wcUserName", $this->mName
, $exp, "/" );
482 $wsUserPassword = $this->mPassword
;
483 if ( 1 == $this->getOption( "rememberpassword" ) ) {
484 setcookie( "wcUserPassword", $this->mCookiePassword
, $exp, "/" );
486 setcookie( "wcUserPassword", "", time() - 3600 );
497 setcookie( "wcUserID", "", time() - 3600 );
498 setcookie( "wcUserPassword", "", time() - 3600 );
501 function saveSettings()
503 global $wgMemc, $wgDBname;
505 if ( ! $this->mNewtalk
) {
507 $sql="DELETE FROM user_newtalk WHERE user_id={$this->mId}";
508 wfQuery ($sql,"User::saveSettings");
510 $sql="DELETE FROM user_newtalk WHERE user_ip='{$this->mName}'";
511 wfQuery ($sql,"User::saveSettings");
512 $wgMemc->delete( "$wgDBname:newtalk:ip:{$this->mName}" );
515 if ( 0 == $this->mId
) { return; }
517 $sql = "UPDATE user SET " .
518 "user_name= '" . wfStrencode( $this->mName
) . "', " .
519 "user_password= '" . wfStrencode( $this->mPassword
) . "', " .
520 "user_newpassword= '" . wfStrencode( $this->mNewpassword
) . "', " .
521 "user_email= '" . wfStrencode( $this->mEmail
) . "', " .
522 "user_options= '" . $this->encodeOptions() . "', " .
523 "user_rights= '" . wfStrencode( implode( ",", $this->mRights
) ) . "', " .
524 "user_touched= '" . wfStrencode( $this->mTouched
) .
525 "' WHERE user_id={$this->mId}";
526 wfQuery( $sql, "User::saveSettings" );
527 #$wgMemc->replace( "$wgDBname:user:id:$this->mId", $this );
528 $wgMemc->delete( "$wgDBname:user:id:$this->mId" );
531 # Checks if a user with the given name exists
536 $s = trim( $this->mName
);
537 if ( 0 == strcmp( "", $s ) ) return 0;
539 $sql = "SELECT user_id FROM user WHERE user_name='" .
540 wfStrencode( $s ) . "'";
541 $res = wfQuery( $sql, "User::idForName" );
542 if ( 0 == wfNumRows( $res ) ) { return 0; }
544 $s = wfFetchObject( $res );
545 if ( "" == $s ) return 0;
547 $gotid = $s->user_id
;
548 wfFreeResult( $res );
552 function addToDatabase()
554 $sql = "INSERT INTO user (user_name,user_password,user_newpassword," .
555 "user_email, user_rights, user_options) " .
556 " VALUES ('" . wfStrencode( $this->mName
) . "', '" .
557 wfStrencode( $this->mPassword
) . "', '" .
558 wfStrencode( $this->mNewpassword
) . "', '" .
559 wfStrencode( $this->mEmail
) . "', '" .
560 wfStrencode( implode( ",", $this->mRights
) ) . "', '" .
561 $this->encodeOptions() . "')";
562 wfQuery( $sql, "User::addToDatabase" );
563 $this->mId
= $this->idForName();
566 function spreadBlock()
568 # If the (non-anonymous) user is blocked, this function will block any IP address
569 # that they successfully log on from.
570 $fname = "User::spreadBlock";
572 wfDebug( "User:spreadBlock()\n" );
573 if ( $this->mId
== 0 ) {
577 $userblock = Block
::newFromDB( "", $this->mId
);
578 if ( !$userblock->isValid() ) {
582 # Check if this IP address is already blocked
583 $addr = getenv( "REMOTE_ADDR" );
584 $ipblock = Block
::newFromDB( $addr );
585 if ( $ipblock->isValid() ) {
586 # Just update the timestamp
587 $ipblock->updateTimestamp();
591 # Make a new ban object with the desired properties
592 wfDebug( "Autoblocking {$this->mUserName}@{$addr}\n" );
593 $ipblock->mAddress
= $addr;
595 $ipblock->mBy
= $userblock->mBy
;
596 $ipblock->mReason
= str_replace( "$1", $this->getName(), wfMsg( "autoblocker" ) );
597 $ipblock->mReason
= str_replace( "$2", $userblock->mReason
, $ipblock->mReason
);
598 $ipblock->mTimestamp
= wfTimestampNow();