X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=Uplink%2FUplink.class.php;h=1e8aca09411a00d1a2fc22e112e2fdc578127a18;hb=f59524d54130db4250bbfa46e75300af76d02b92;hp=d7d40fa86b3e4100ee10a4a42f4bf4907e111c89;hpb=412e324075de1312fbc5f49b735180b46cdff82c;p=PHP-P10.git diff --git a/Uplink/Uplink.class.php b/Uplink/Uplink.class.php index d7d40fa..1e8aca0 100644 --- a/Uplink/Uplink.class.php +++ b/Uplink/Uplink.class.php @@ -142,6 +142,15 @@ class Uplink { } } + public function shutdown() { + if($this->client->connected()) { + if(($this->flags & self::FLAG_P10SESSION)) { + $this->send("SQ", "Shutdown requested."); + } + $this->client->disconnect(); + } + } + public function setUplinkHost($host, $port, $ssl = false, $bind = null) { $this->setSetting("host", $host); $this->setSetting("port", $port); @@ -267,6 +276,13 @@ class Uplink { case "W": $this->recv_whois($from, $arguments); break; + case "A": + $this->recv_away($from, $arguments); + break; + case "M": + case "OM": + $this->recv_mode($from, $arguments); + break; //default default: //unknown cmd @@ -347,6 +363,7 @@ class Uplink { private function recv_ping($from, $args) { $this->send("Z", $args[0]); //simply PONG + P10_Channel::recheckAllChannels(); } private function recv_nick($from, $args) { @@ -534,7 +551,7 @@ class Uplink { return; } if($this->eventHandler) { - if($args[0] == "#") { + if($args[0][0] == "#") { $channel = P10_Channel::getChannelByName($args[0]); if($channel == null) $channel = new P10_Channel($args[0]); @@ -557,7 +574,7 @@ class Uplink { return; } if($this->eventHandler) { - if($args[0] == "#") { + if($args[0][0] == "#") { $channel = P10_Channel::getChannelByName($args[0]); if($channel == null) $channel = new P10_Channel($args[0]); @@ -623,28 +640,67 @@ class Uplink { if($channels != "") { $this->send("319", $from, $nick, $channels); } - if($fromUser->getModes()->hasMode("o") || $from == $user->getNumeric() || !$this->getSetting("his_name")) { - $this->send("312", $from, $nick, $user->getServer()->getName(), $user->getServer()->getDescription()); - } else { - $this->send("312", $from, $nick, $this->getSetting("his_name"), $this->getSetting("his_desc")); - } - if($modes->hasMode("o") && (!$modes->hasMode("H") || $fromUser->getModes()->hasMode("o"))) { - if($modes->hasMode("S")) { - if($modes->hasMode("D")) - $this->send("313", $from, $nick, "is a Network Service"); - else - $this->send("313", $from, $nick, "is an illegal Network Service - HACKER!"); - } else - $this->send("313", $from, $nick, "is an IRC Operator"); - } - if(($auth = $modes->hasMode("r"))) { - $this->send("330", $from, $nick, $auth); - } + } + if($fromUser->getModes()->hasMode("o") || $from == $user->getNumeric() || !$this->getSetting("his_name")) { + $this->send("312", $from, $nick, $user->getServer()->getName(), $user->getServer()->getDescription()); + } else { + $this->send("312", $from, $nick, $this->getSetting("his_name"), $this->getSetting("his_desc")); + } + if($modes->hasMode("o") && (!$modes->hasMode("H") || $fromUser->getModes()->hasMode("o"))) { + if($modes->hasMode("S")) { + if($modes->hasMode("D")) + $this->send("313", $from, $nick, "is a Network Service"); + else + $this->send("313", $from, $nick, "is an illegal Network Service - HACKER!"); + } else + $this->send("313", $from, $nick, "is an IRC Operator"); + } + if(($auth = $modes->hasMode("r"))) { + $this->send("330", $from, $nick, $auth); } } $this->send("318", $from, $args[1]); } + private function recv_away($from, $args) { + $user = P10_User::getUserByNum($from); + if($user == null) { + trigger_error("Server tries to send an away command from an user that does not exist or was not found on recv_away.", E_USER_ERROR); + return; + } + if(count($args) > 0) { + $user->setAway($args[0]); + } else { + $user->setAway(null); + } + } + + private function recv_mode($from, $args) { + $user = P10_User::getUserByNum($from); + if($user == null) { + trigger_error("Server tries to send a modechange from an user that does not exist or was not found on recv_mode.", E_USER_ERROR); + return; + } + $modes = implode(" ",array_slice($args,1)); + if($args[0][0] == "#") { + $channel = P10_Channel::getChannelByName($args[0]); + if($channel == null) + $channel = new P10_Channel($args[0]); + $channel->getModes()->setModes($modes); + if($this->eventHandler) + $this->eventHandler->event_chanmode($user, $channel, $modes); + } else { + $targetUser = P10_User::getUserByNum($args[0]); + if($targetUser == null) { + trigger_error("Server tries to send a mode to an user that does not exist or was not found on recv_mode.", E_USER_ERROR); + return; + } + $targetUser->getModes()->setModes($modes); + if($this->eventHandler) + $this->eventHandler->event_usermode($targetUser, $modes); + } + } + /******************************************************************************************** * SERVER FUNCTIONS * ********************************************************************************************/ @@ -674,7 +730,7 @@ class Uplink { $local_users = true; $sorted_users[$strPrivs][] = $user; } - if(!$local_users && !$channel->getModes()->hasMode("z")) continue; + if(!$local_users) continue; $userStr = ""; foreach($sorted_users['-'] as $user) { if($userStr != "") $userStr.=","; @@ -728,6 +784,7 @@ class Uplink { $numeric = substr($this->server->getNumeric(),0,2).Numerics::intToNum($this->last_local_numeric, 3); } $this->last_local_numeric++; + $modes = new P10_UserModeSet($modes); $user = new P10_User($nick, $numeric, $this->server, time(), $ident, $host, $ip, $realname, $modes); if(($this->flags & self::FLAG_CONNECTED)) { $ip = Numerics::numericFromIP($user->getIP()); @@ -756,7 +813,7 @@ class Uplink { } } - public function join($user, $chanName) { + public function join($user, $chanName, $privs = 0) { if(!is_a($user, "P10_User") || !($user->getServer() === $this->server)) return ERR_INVALID_USER; if($chanName[0] != "#") @@ -767,6 +824,15 @@ class Uplink { $channel->joinUser($user); if(($this->flags & self::FLAG_CONNECTED)) $this->send("J", $user->getNumeric(), $chanName, time(), 0); + if($privs != 0) { + $channel->setUserPrivs($user, $privs); + if(($this->flags & self::FLAG_CONNECTED)) { + $modestr = "+".(($privs & P10_Channel::USERPRIV_OPED) ? "o" : "").(($privs & P10_Channel::USERPRIV_VOICE) ? "v" : ""); + $modestr .= (($privs & P10_Channel::USERPRIV_OPED) ? " ".$user->getNumeric() : ""); + $modestr .= (($privs & P10_Channel::USERPRIV_VOICE) ? " ".$user->getNumeric() : ""); + $this->send("OM", $user->getNumeric(), $chanName, $modestr); + } + } if($this->eventHandler) $this->eventHandler->event_join($user, $channel, false); } @@ -889,7 +955,7 @@ class Uplink { $channel = P10_Channel::getChannelByName($targetStr); if($channel == null) $channel = new P10_Channel($targetStr); - $modes = $channel->getModes()->setModes($modes); + $modes = $channel->getModes()->setModes($modes, true); if(($this->flags & self::FLAG_CONNECTED)) $this->send(($force ? "OM" : "M"), $user->getNumeric(), $targetStr, $modes); if($this->eventHandler) @@ -898,7 +964,7 @@ class Uplink { $targetUser = P10_User::getUserByNum($targetStr); if($targetUser->getServer() === $this->server) { //just do it :D - $modes = $targetUser->getModes()->setModes($modes); + $modes = $targetUser->getModes()->setModes($modes, true); if(($this->flags & self::FLAG_CONNECTED)) $this->send("M", $targetUser->getNumeric(), $targetUser->getNick(), $modes); if($this->eventHandler)