Initial revision
[lhc/web/wiklou.git] / includes / UserTalkUpdate.php
1 <?
2 # See deferred.doc
3
4 class UserTalkUpdate {
5
6 /* private */ var $mAction, $mNamespace, $mTitle;
7
8 function UserTalkUpdate( $action, $ns, $title )
9 {
10 $this->mAction = $action;
11 $this->mNamespace = $ns;
12 $this->mTitle = str_replace( "_", " ", $title );
13 }
14
15 function doUpdate()
16 {
17
18 global $wgUser, $wgLang;
19 $fname = "UserTalkUpdate::doUpdate";
20
21 # If namespace isn't User_talk:, do nothing.
22
23 if ( $this->mNamespace != Namespace::getTalk(
24 Namespace::getUser() ) ) {
25 return;
26 }
27 # If the user talk page is our own, clear the flag
28 # whether we are reading it or writing it.
29 if ( 0 == strcmp( $this->mTitle, $wgUser->getName() ) ) {
30
31 $wgUser->setNewtalk( 0 );
32 $wgUser->saveSettings();
33
34 } else {
35 # Not ours. If writing, mark it as modified.
36
37 if ( 1 == $this->mAction ) {
38 $user = new User();
39 $user->setID(User::idFromName($this->mTitle));
40 if ($id=$user->getID()) {
41 $sql = "INSERT INTO user_newtalk (user_id) values ({$id})";
42
43 } else { #anon
44
45 if(preg_match("/^\d{1,3}\.\d{1,3}.\d{1,3}\.\d{1,3}$/",$this->mTitle)) { #real anon (user:xxx.xxx.xxx.xxx)
46
47 $sql = "INSERT INTO user_newtalk (user_id,user_ip) values (0,\"{$this->mTitle}\")";
48
49 }
50
51 }
52
53 if($sql && !$user->getNewtalk()) { # only insert if real user and it's not already there
54 wfQuery( $sql, $fname );
55 }
56 }
57 }
58
59
60 }
61 }
62
63 ?>