wiki.techinc.nl/includes/UserTalkUpdate.php
Tim Starling ac549401d4 * Support for table name prefixes throughout the code. No support yet for converting static SQL, which also means no installation. But it has been tested by creating the tables in the ordinary way and then renaming them
* DB_WRITE now called DB_MASTER, DB_READ now called DB_SLAVE
* Converted to use SQL wrapper functions instead of direct SQL in various places
* Experimental method for preserving the chronological order of events when slave servers are used. Untested.
* Fixes to the new post-parse existence test feature
* Some.. other stuff
2004-07-18 08:48:43 +00:00

62 lines
1.6 KiB
PHP

<?php
# See deferred.doc
class UserTalkUpdate {
/* private */ var $mAction, $mNamespace, $mTitle;
function UserTalkUpdate( $action, $ns, $title )
{
$this->mAction = $action;
$this->mNamespace = $ns;
$this->mTitle = str_replace( "_", " ", $title );
}
function doUpdate()
{
global $wgUser, $wgLang, $wgMemc, $wgDBname;
$fname = "UserTalkUpdate::doUpdate";
# If namespace isn't User_talk:, do nothing.
if ( $this->mNamespace != Namespace::getTalk(
Namespace::getUser() ) ) {
return;
}
# If the user talk page is our own, clear the flag
# whether we are reading it or writing it.
if ( 0 == strcmp( $this->mTitle, $wgUser->getName() ) ) {
$wgUser->setNewtalk( 0 );
$wgUser->saveSettings();
} else {
# Not ours. If writing, mark it as modified.
$sql = false;
$dbw =& wfGetDB( DB_MASTER );
$user_newtalk = $dbw->tableName( 'user_newtalk' );
if ( 1 == $this->mAction ) {
$user = new User();
$user->setID(User::idFromName($this->mTitle));
if ($id=$user->getID()) {
$sql = "INSERT INTO $user_newtalk (user_id) values ({$id})";
$wgMemc->delete( "$wgDBname:user:id:$id" );
} else {
#anon
if(preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$this->mTitle)) { #real anon (user:xxx.xxx.xxx.xxx)
$sql = "INSERT INTO $user_newtalk (user_id,user_ip) values (0,\"{$this->mTitle}\")";
$wgMemc->delete( "$wgDBname:newtalk:ip:$this->mTitle" );
}
}
if($sql && !$user->getNewtalk()) { # only insert if real user and it's not already there
$dbw->query( $sql, $fname );
}
}
}
}
}
?>