2003-04-14 23:10:40 +00:00
|
|
|
<?
|
|
|
|
|
# See user.doc
|
|
|
|
|
|
|
|
|
|
class User {
|
|
|
|
|
/* private */ var $mId, $mName, $mPassword, $mEmail, $mNewtalk;
|
|
|
|
|
/* private */ var $mRights, $mOptions;
|
|
|
|
|
/* private */ var $mDataLoaded, $mNewpassword;
|
|
|
|
|
/* private */ var $mSkin;
|
|
|
|
|
/* private */ var $mBlockedby, $mBlockreason;
|
|
|
|
|
/* private */ var $mTouched;
|
2003-04-16 07:30:52 +00:00
|
|
|
/* private */ var $mCookiePassword;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
function User()
|
|
|
|
|
{
|
|
|
|
|
$this->loadDefaults();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Static factory method
|
|
|
|
|
#
|
|
|
|
|
function newFromName( $name )
|
|
|
|
|
{
|
|
|
|
|
$u = new User();
|
|
|
|
|
|
|
|
|
|
# Clean up name according to title rules
|
|
|
|
|
|
|
|
|
|
$t = Title::newFromText( $name );
|
|
|
|
|
$u->setName( $t->getText() );
|
|
|
|
|
return $u;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* static */ function whoIs( $id )
|
|
|
|
|
{
|
|
|
|
|
return wfGetSQL( "user", "user_name", "user_id=$id" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* static */ function idFromName( $name )
|
|
|
|
|
{
|
|
|
|
|
$nt = Title::newFromText( $name );
|
|
|
|
|
$sql = "SELECT user_id FROM user WHERE user_name='" .
|
|
|
|
|
wfStrencode( $nt->getText() ) . "'";
|
|
|
|
|
$res = wfQuery( $sql, "User::idFromName" );
|
|
|
|
|
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) { return 0; }
|
|
|
|
|
else {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
return $s->user_id;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
# does the string match an anonymous user IP address?
|
|
|
|
|
/* static */ function isIP( $name ) {
|
|
|
|
|
return preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$name);
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
/* static */ function randomPassword()
|
|
|
|
|
{
|
|
|
|
|
$pwchars = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghjkmnpqrstuvwxyz";
|
|
|
|
|
$l = strlen( $pwchars ) - 1;
|
|
|
|
|
|
|
|
|
|
wfSeedRandom();
|
|
|
|
|
$np = $pwchars{mt_rand( 0, $l )} . $pwchars{mt_rand( 0, $l )} .
|
|
|
|
|
$pwchars{mt_rand( 0, $l )} . chr( mt_rand(48, 57) ) .
|
|
|
|
|
$pwchars{mt_rand( 0, $l )} . $pwchars{mt_rand( 0, $l )} .
|
|
|
|
|
$pwchars{mt_rand( 0, $l )};
|
|
|
|
|
return $np;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function loadDefaults()
|
|
|
|
|
{
|
|
|
|
|
global $wgLang ;
|
2003-07-01 08:27:32 +00:00
|
|
|
global $wgNamespacesToBeSearchedDefault;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$this->mId = $this->mNewtalk = 0;
|
|
|
|
|
$this->mName = getenv( "REMOTE_ADDR" );
|
|
|
|
|
$this->mEmail = "";
|
|
|
|
|
$this->mPassword = $this->mNewpassword = "";
|
|
|
|
|
$this->mRights = array();
|
|
|
|
|
$defOpt = $wgLang->getDefaultUserOptions() ;
|
|
|
|
|
foreach ( $defOpt as $oname => $val ) {
|
|
|
|
|
$this->mOptions[$oname] = $val;
|
|
|
|
|
}
|
2003-07-01 08:27:32 +00:00
|
|
|
foreach ($wgNamespacesToBeSearchedDefault as $nsnum => $val) {
|
|
|
|
|
$this->mOptions["searchNs".$nsnum] = $val;
|
|
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
unset( $this->mSkin );
|
|
|
|
|
$this->mDataLoaded = false;
|
|
|
|
|
$this->mBlockedby = -1; # Unset
|
|
|
|
|
$this->mTouched = '0'; # Allow any pages to be cached
|
2003-04-16 07:30:52 +00:00
|
|
|
$this->cookiePassword = "";
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */ function getBlockedStatus()
|
|
|
|
|
{
|
|
|
|
|
if ( -1 != $this->mBlockedby ) { return; }
|
|
|
|
|
|
2003-09-07 13:56:25 +00:00
|
|
|
$block = new Block();
|
|
|
|
|
if ( !$block->load( getenv( "REMOTE_ADDR" ), $this->mId ) ) {
|
|
|
|
|
wfDebug( getenv( "REMOTE_ADDR" ) ." is not blocked\n" );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mBlockedby = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2003-09-01 13:13:56 +00:00
|
|
|
|
2003-09-07 13:56:25 +00:00
|
|
|
$this->mBlockedby = $block->mBy;
|
|
|
|
|
$this->mBlockreason = $block->mReason;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isBlocked()
|
|
|
|
|
{
|
|
|
|
|
$this->getBlockedStatus();
|
|
|
|
|
if ( 0 == $this->mBlockedby ) { return false; }
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function blockedBy() {
|
|
|
|
|
$this->getBlockedStatus();
|
|
|
|
|
return $this->mBlockedby;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function blockedFor() {
|
|
|
|
|
$this->getBlockedStatus();
|
|
|
|
|
return $this->mBlockreason;
|
|
|
|
|
}
|
|
|
|
|
|
2003-08-11 13:53:20 +00:00
|
|
|
/* static */ function loadFromSession()
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
|
|
|
|
global $HTTP_COOKIE_VARS, $wsUserID, $wsUserName, $wsUserPassword;
|
2003-08-11 13:53:20 +00:00
|
|
|
global $wgMemc, $wgDBname;
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
if ( isset( $wsUserID ) ) {
|
|
|
|
|
if ( 0 != $wsUserID ) {
|
|
|
|
|
$sId = $wsUserID;
|
|
|
|
|
} else {
|
2003-08-11 13:53:20 +00:00
|
|
|
return new User();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
} else if ( isset( $HTTP_COOKIE_VARS["wcUserID"] ) ) {
|
|
|
|
|
$sId = $HTTP_COOKIE_VARS["wcUserID"];
|
|
|
|
|
$wsUserID = $sId;
|
|
|
|
|
} else {
|
2003-08-11 13:53:20 +00:00
|
|
|
return new User();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
if ( isset( $wsUserName ) ) {
|
|
|
|
|
$sName = $wsUserName;
|
|
|
|
|
} else if ( isset( $HTTP_COOKIE_VARS["wcUserName"] ) ) {
|
|
|
|
|
$sName = $HTTP_COOKIE_VARS["wcUserName"];
|
|
|
|
|
$wsUserName = $sName;
|
|
|
|
|
} else {
|
2003-08-11 13:53:20 +00:00
|
|
|
return new User();
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
|
|
|
|
$passwordCorrect = FALSE;
|
2003-08-13 12:26:06 +00:00
|
|
|
$user = $wgMemc->get( $key = "$wgDBname:user:id:$sId" );
|
2003-08-11 13:53:20 +00:00
|
|
|
if($makenew = !$user) {
|
|
|
|
|
wfDebug( "User::loadFromSession() unable to load from memcached\n" );
|
|
|
|
|
$user = new User();
|
|
|
|
|
$user->mId = $sId;
|
|
|
|
|
$user->loadFromDatabase();
|
|
|
|
|
} else {
|
|
|
|
|
wfDebug( "User::loadFromSession() got from cache!\n" );
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
if ( isset( $wsUserPassword ) ) {
|
2003-08-11 13:53:20 +00:00
|
|
|
$passwordCorrect = $wsUserPassword == $user->mPassword;
|
2003-04-14 23:10:40 +00:00
|
|
|
} else if ( isset( $HTTP_COOKIE_VARS["wcUserPassword"] ) ) {
|
2003-08-11 13:53:20 +00:00
|
|
|
$user->mCookiePassword = $HTTP_COOKIE_VARS["wcUserPassword"];
|
|
|
|
|
$wsUserPassword = $user->addSalt( $user->mCookiePassword );
|
|
|
|
|
$passwordCorrect = $wsUserPassword == $user->mPassword;
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
2003-08-11 13:53:20 +00:00
|
|
|
return new User(); # Can't log in from session
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
2003-08-11 13:53:20 +00:00
|
|
|
if ( ( $sName == $user->mName ) && $passwordCorrect ) {
|
|
|
|
|
if($makenew) {
|
|
|
|
|
if($wgMemc->set( $key, $user ))
|
|
|
|
|
wfDebug( "User::loadFromSession() successfully saved user\n" );
|
|
|
|
|
else
|
|
|
|
|
wfDebug( "User::loadFromSession() unable to save to memcached\n" );
|
|
|
|
|
}
|
2003-08-31 14:30:24 +00:00
|
|
|
$user->spreadBlock();
|
2003-08-11 13:53:20 +00:00
|
|
|
return $user;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-08-11 13:53:20 +00:00
|
|
|
return new User(); # Can't log in from session
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function loadFromDatabase()
|
|
|
|
|
{
|
2003-04-16 07:30:52 +00:00
|
|
|
if ( $this->mDataLoaded ) { return; }
|
2003-04-14 23:10:40 +00:00
|
|
|
# check in separate table if there are changes to the talk page
|
|
|
|
|
$this->mNewtalk=0; # reset talk page status
|
2003-04-16 07:30:52 +00:00
|
|
|
if($this->mId) {
|
|
|
|
|
$sql = "SELECT 1 FROM user_newtalk WHERE user_id={$this->mId}";
|
2003-04-14 23:10:40 +00:00
|
|
|
$res = wfQuery ($sql, "User::loadFromDatabase" );
|
|
|
|
|
|
2003-04-16 07:30:52 +00:00
|
|
|
if (wfNumRows($res)>0) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mNewtalk= 1;
|
|
|
|
|
}
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
} else {
|
2003-08-13 12:26:06 +00:00
|
|
|
global $wgDBname, $wgMemc;
|
|
|
|
|
$key = "$wgDBname:newtalk:ip:{$this->mName}";
|
|
|
|
|
$newtalk = $wgMemc->get( $key );
|
|
|
|
|
if($newtalk === false) {
|
|
|
|
|
$sql = "SELECT 1 FROM user_newtalk WHERE user_ip='{$this->mName}'";
|
|
|
|
|
$res = wfQuery ($sql, "User::loadFromDatabase" );
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-08-13 12:26:06 +00:00
|
|
|
$this->mNewtalk = (wfNumRows($res)>0) ? 1 : 0;
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
|
|
|
|
|
$wgMemc->set( $key, $this->mNewtalk, time() ); // + 1800 );
|
|
|
|
|
} else {
|
|
|
|
|
$this->mNewtalk = $newtalk ? 1 : 0;
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(!$this->mId) {
|
|
|
|
|
$this->mDataLoaded = true;
|
|
|
|
|
return;
|
|
|
|
|
} # the following stuff is for non-anonymous users only
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
$sql = "SELECT user_name,user_password,user_newpassword,user_email," .
|
|
|
|
|
"user_options,user_rights,user_touched FROM user WHERE user_id=" .
|
|
|
|
|
"{$this->mId}";
|
|
|
|
|
$res = wfQuery( $sql, "User::loadFromDatabase" );
|
|
|
|
|
|
|
|
|
|
if ( wfNumRows( $res ) > 0 ) {
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
$this->mName = $s->user_name;
|
|
|
|
|
$this->mEmail = $s->user_email;
|
|
|
|
|
$this->mPassword = $s->user_password;
|
|
|
|
|
$this->mNewpassword = $s->user_newpassword;
|
|
|
|
|
$this->decodeOptions( $s->user_options );
|
|
|
|
|
$this->mRights = explode( ",", strtolower( $s->user_rights ) );
|
|
|
|
|
$this->mTouched = $s->user_touched;
|
2003-04-16 07:30:52 +00:00
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
wfFreeResult( $res );
|
|
|
|
|
$this->mDataLoaded = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getID() { return $this->mId; }
|
|
|
|
|
function setID( $v ) {
|
|
|
|
|
$this->mId = $v;
|
|
|
|
|
$this->mDataLoaded = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getName() {
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return $this->mName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setName( $str )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$this->mName = $str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNewtalk()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return ( 0 != $this->mNewtalk );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setNewtalk( $val )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$this->mNewtalk = $val;
|
|
|
|
|
$this->invalidateCache();
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function invalidateCache() {
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$this->mTouched = wfTimestampNow();
|
|
|
|
|
# Don't forget to save the options after this or
|
|
|
|
|
# it won't take effect!
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function validateCache( $timestamp ) {
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return ($timestamp >= $this->mTouched);
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function getPassword()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return $this->mPassword;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getNewpassword()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return $this->mNewpassword;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-16 07:30:52 +00:00
|
|
|
function addSalt( $p )
|
2003-04-14 23:10:40 +00:00
|
|
|
{
|
2003-08-08 03:10:55 +00:00
|
|
|
global $wgPasswordSalt;
|
|
|
|
|
if($wgPasswordSalt)
|
|
|
|
|
return md5( "{$this->mId}-{$p}" );
|
|
|
|
|
else
|
|
|
|
|
return $p;
|
2003-04-16 07:30:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function encryptPassword( $p )
|
|
|
|
|
{
|
2003-04-30 21:52:53 +00:00
|
|
|
return $this->addSalt( md5( $p ) );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setPassword( $str )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
2003-04-16 07:30:52 +00:00
|
|
|
$this->setCookiePassword( $str );
|
2003-04-30 21:52:53 +00:00
|
|
|
$this->mPassword = $this->encryptPassword( $str );
|
2003-04-14 23:10:40 +00:00
|
|
|
$this->mNewpassword = "";
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-16 07:30:52 +00:00
|
|
|
function setCookiePassword( $str )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$this->mCookiePassword = md5( $str );
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function setNewpassword( $str )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
2003-04-30 21:52:53 +00:00
|
|
|
$this->mNewpassword = $this->encryptPassword( $str );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getEmail()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return $this->mEmail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setEmail( $str )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$this->mEmail = $str;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getOption( $oname )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
if ( array_key_exists( $oname, $this->mOptions ) ) {
|
|
|
|
|
return $this->mOptions[$oname];
|
|
|
|
|
} else {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setOption( $oname, $val )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$this->mOptions[$oname] = $val;
|
|
|
|
|
$this->invalidateCache();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRights()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
return $this->mRights;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-30 21:52:53 +00:00
|
|
|
function addRight( $rname )
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
array_push( $this->mRights, $rname );
|
|
|
|
|
$this->invalidateCache();
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function isSysop()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
if ( 0 == $this->mId ) { return false; }
|
|
|
|
|
|
|
|
|
|
return in_array( "sysop", $this->mRights );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isDeveloper()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
if ( 0 == $this->mId ) { return false; }
|
|
|
|
|
|
|
|
|
|
return in_array( "developer", $this->mRights );
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function isBot()
|
|
|
|
|
{
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
if ( 0 == $this->mId ) { return false; }
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
return in_array( "bot", $this->mRights );
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
function &getSkin()
|
|
|
|
|
{
|
|
|
|
|
if ( ! isset( $this->mSkin ) ) {
|
|
|
|
|
$skinNames = Skin::getSkinNames();
|
|
|
|
|
$s = $this->getOption( "skin" );
|
|
|
|
|
if ( "" == $s ) { $s = 0; }
|
|
|
|
|
|
|
|
|
|
if ( $s >= count( $skinNames ) ) { $sn = "SkinStandard"; }
|
|
|
|
|
else $sn = "Skin" . $skinNames[$s];
|
|
|
|
|
$this->mSkin = new $sn;
|
|
|
|
|
}
|
|
|
|
|
return $this->mSkin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function isWatched( $title )
|
|
|
|
|
{
|
|
|
|
|
# Note - $title should be a Title _object_
|
|
|
|
|
# Pages and their talk pages are considered equivalent for watching;
|
|
|
|
|
# remember that talk namespaces are numbered as page namespace+1.
|
|
|
|
|
if( $this->mId ) {
|
|
|
|
|
$sql = "SELECT 1 FROM watchlist
|
|
|
|
|
WHERE wl_user={$this->mId} AND
|
|
|
|
|
wl_namespace = " . ($title->getNamespace() & ~1) . " AND
|
|
|
|
|
wl_title='" . wfStrencode( $title->getDBkey() ) . "'";
|
|
|
|
|
$res = wfQuery( $sql );
|
|
|
|
|
return (wfNumRows( $res ) > 0);
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addWatch( $title )
|
|
|
|
|
{
|
|
|
|
|
if( $this->mId ) {
|
|
|
|
|
# REPLACE instead of INSERT because occasionally someone
|
|
|
|
|
# accidentally reloads a watch-add operation.
|
|
|
|
|
$sql = "REPLACE INTO watchlist (wl_user, wl_namespace,wl_title)
|
|
|
|
|
VALUES ({$this->mId}," . (($title->getNamespace() | 1) - 1) .
|
|
|
|
|
",'" . wfStrencode( $title->getDBkey() ) . "')";
|
|
|
|
|
wfQuery( $sql );
|
|
|
|
|
$this->invalidateCache();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function removeWatch( $title )
|
|
|
|
|
{
|
|
|
|
|
if( $this->mId ) {
|
|
|
|
|
$sql = "DELETE FROM watchlist WHERE wl_user={$this->mId} AND
|
|
|
|
|
wl_namespace=" . (($title->getNamespace() | 1) - 1) .
|
|
|
|
|
" AND wl_title='" . wfStrencode( $title->getDBkey() ) . "'";
|
|
|
|
|
wfQuery( $sql );
|
|
|
|
|
$this->invalidateCache();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* private */ function encodeOptions()
|
|
|
|
|
{
|
|
|
|
|
$a = array();
|
|
|
|
|
foreach ( $this->mOptions as $oname => $oval ) {
|
|
|
|
|
array_push( $a, "{$oname}={$oval}" );
|
|
|
|
|
}
|
|
|
|
|
$s = implode( "\n", $a );
|
|
|
|
|
return wfStrencode( $s );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* private */ function decodeOptions( $str )
|
|
|
|
|
{
|
|
|
|
|
$a = explode( "\n", $str );
|
|
|
|
|
foreach ( $a as $s ) {
|
|
|
|
|
if ( preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
|
|
|
|
|
$this->mOptions[$m[1]] = $m[2];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function setCookies()
|
|
|
|
|
{
|
|
|
|
|
global $wsUserID, $wsUserName, $wsUserPassword;
|
|
|
|
|
global $wgCookieExpiration;
|
|
|
|
|
if ( 0 == $this->mId ) return;
|
|
|
|
|
$this->loadFromDatabase();
|
|
|
|
|
$exp = time() + $wgCookieExpiration;
|
|
|
|
|
|
|
|
|
|
$wsUserID = $this->mId;
|
|
|
|
|
setcookie( "wcUserID", $this->mId, $exp, "/" );
|
|
|
|
|
|
|
|
|
|
$wsUserName = $this->mName;
|
|
|
|
|
setcookie( "wcUserName", $this->mName, $exp, "/" );
|
|
|
|
|
|
|
|
|
|
$wsUserPassword = $this->mPassword;
|
|
|
|
|
if ( 1 == $this->getOption( "rememberpassword" ) ) {
|
2003-04-16 07:30:52 +00:00
|
|
|
setcookie( "wcUserPassword", $this->mCookiePassword, $exp, "/" );
|
2003-04-14 23:10:40 +00:00
|
|
|
} else {
|
|
|
|
|
setcookie( "wcUserPassword", "", time() - 3600 );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function logout()
|
|
|
|
|
{
|
|
|
|
|
global $wsUserID;
|
|
|
|
|
$this->mId = 0;
|
|
|
|
|
|
|
|
|
|
$wsUserID = 0;
|
|
|
|
|
|
|
|
|
|
setcookie( "wcUserID", "", time() - 3600 );
|
|
|
|
|
setcookie( "wcUserPassword", "", time() - 3600 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function saveSettings()
|
|
|
|
|
{
|
2003-08-11 13:53:20 +00:00
|
|
|
global $wgMemc, $wgDBname;
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-30 21:52:53 +00:00
|
|
|
if ( ! $this->mNewtalk ) {
|
|
|
|
|
if( $this->mId ) {
|
2003-04-14 23:10:40 +00:00
|
|
|
$sql="DELETE FROM user_newtalk WHERE user_id={$this->mId}";
|
|
|
|
|
wfQuery ($sql,"User::saveSettings");
|
|
|
|
|
} else {
|
|
|
|
|
$sql="DELETE FROM user_newtalk WHERE user_ip='{$this->mName}'";
|
|
|
|
|
wfQuery ($sql,"User::saveSettings");
|
2003-08-13 12:26:06 +00:00
|
|
|
$wgMemc->delete( "$wgDBname:newtalk:ip:{$this->mName}" );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
if ( 0 == $this->mId ) { return; }
|
2003-04-14 23:10:40 +00:00
|
|
|
|
|
|
|
|
$sql = "UPDATE user SET " .
|
|
|
|
|
"user_name= '" . wfStrencode( $this->mName ) . "', " .
|
|
|
|
|
"user_password= '" . wfStrencode( $this->mPassword ) . "', " .
|
|
|
|
|
"user_newpassword= '" . wfStrencode( $this->mNewpassword ) . "', " .
|
|
|
|
|
"user_email= '" . wfStrencode( $this->mEmail ) . "', " .
|
|
|
|
|
"user_options= '" . $this->encodeOptions() . "', " .
|
2003-09-01 13:13:56 +00:00
|
|
|
"user_rights= '" . wfStrencode( implode( ",", $this->mRights ) ) . "', " .
|
2003-04-14 23:10:40 +00:00
|
|
|
"user_touched= '" . wfStrencode( $this->mTouched ) .
|
|
|
|
|
"' WHERE user_id={$this->mId}";
|
|
|
|
|
wfQuery( $sql, "User::saveSettings" );
|
2003-08-13 12:26:06 +00:00
|
|
|
#$wgMemc->replace( "$wgDBname:user:id:$this->mId", $this );
|
|
|
|
|
$wgMemc->delete( "$wgDBname:user:id:$this->mId" );
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Checks if a user with the given name exists
|
|
|
|
|
#
|
|
|
|
|
function idForName()
|
|
|
|
|
{
|
|
|
|
|
$gotid = 0;
|
|
|
|
|
$s = trim( $this->mName );
|
|
|
|
|
if ( 0 == strcmp( "", $s ) ) return 0;
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT user_id FROM user WHERE user_name='" .
|
|
|
|
|
wfStrencode( $s ) . "'";
|
|
|
|
|
$res = wfQuery( $sql, "User::idForName" );
|
|
|
|
|
if ( 0 == wfNumRows( $res ) ) { return 0; }
|
|
|
|
|
|
|
|
|
|
$s = wfFetchObject( $res );
|
|
|
|
|
if ( "" == $s ) return 0;
|
|
|
|
|
|
|
|
|
|
$gotid = $s->user_id;
|
|
|
|
|
wfFreeResult( $res );
|
|
|
|
|
return $gotid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addToDatabase()
|
|
|
|
|
{
|
|
|
|
|
$sql = "INSERT INTO user (user_name,user_password,user_newpassword," .
|
|
|
|
|
"user_email, user_rights, user_options) " .
|
|
|
|
|
" VALUES ('" . wfStrencode( $this->mName ) . "', '" .
|
|
|
|
|
wfStrencode( $this->mPassword ) . "', '" .
|
|
|
|
|
wfStrencode( $this->mNewpassword ) . "', '" .
|
|
|
|
|
wfStrencode( $this->mEmail ) . "', '" .
|
|
|
|
|
wfStrencode( implode( ",", $this->mRights ) ) . "', '" .
|
|
|
|
|
$this->encodeOptions() . "')";
|
|
|
|
|
wfQuery( $sql, "User::addToDatabase" );
|
|
|
|
|
$this->mId = $this->idForName();
|
|
|
|
|
}
|
2003-08-31 14:30:24 +00:00
|
|
|
|
|
|
|
|
function spreadBlock()
|
|
|
|
|
{
|
|
|
|
|
# If the (non-anonymous) user is blocked, this function will block any IP address
|
|
|
|
|
# that they successfully log on from.
|
|
|
|
|
$fname = "User::spreadBlock";
|
|
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
wfDebug( "User:spreadBlock()\n" );
|
|
|
|
|
if ( $this->mId == 0 ) {
|
2003-08-31 14:30:24 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-01 13:13:56 +00:00
|
|
|
$userblock = Block::newFromDB( "", $this->mId );
|
|
|
|
|
if ( !$userblock->isValid() ) {
|
2003-08-31 14:30:24 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Check if this IP address is already blocked
|
|
|
|
|
$addr = getenv( "REMOTE_ADDR" );
|
2003-09-01 13:13:56 +00:00
|
|
|
$ipblock = Block::newFromDB( $addr );
|
|
|
|
|
if ( $ipblock->isValid() ) {
|
|
|
|
|
# Just update the timestamp
|
|
|
|
|
$ipblock->updateTimestamp();
|
2003-08-31 14:30:24 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-07 13:56:25 +00:00
|
|
|
# Make a new block object with the desired properties
|
2003-09-01 13:13:56 +00:00
|
|
|
wfDebug( "Autoblocking {$this->mUserName}@{$addr}\n" );
|
|
|
|
|
$ipblock->mAddress = $addr;
|
|
|
|
|
$ipblock->mUser = 0;
|
|
|
|
|
$ipblock->mBy = $userblock->mBy;
|
|
|
|
|
$ipblock->mReason = str_replace( "$1", $this->getName(), wfMsg( "autoblocker" ) );
|
|
|
|
|
$ipblock->mReason = str_replace( "$2", $userblock->mReason, $ipblock->mReason );
|
|
|
|
|
$ipblock->mTimestamp = wfTimestampNow();
|
2003-09-07 13:56:25 +00:00
|
|
|
$ipblock->mAuto = 1;
|
2003-09-01 13:13:56 +00:00
|
|
|
|
|
|
|
|
# Insert it
|
|
|
|
|
$ipblock->insert();
|
|
|
|
|
|
2003-08-31 14:30:24 +00:00
|
|
|
}
|
2003-04-14 23:10:40 +00:00
|
|
|
}
|
2003-04-16 07:30:52 +00:00
|
|
|
|
2003-04-14 23:10:40 +00:00
|
|
|
?>
|