X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=ModCMD%2FModCMD.class.php;h=83106b4c06b5c8c5e314de9be925cad0b61de5ea;hp=f07e7b044ca44f373873f500939b7db743b22152;hb=29eef077dac1cafd25b8660d04dbbe634127d321;hpb=1f431a1b35909bbb709f6614899877b33428fe43 diff --git a/ModCMD/ModCMD.class.php b/ModCMD/ModCMD.class.php index f07e7b0..83106b4 100644 --- a/ModCMD/ModCMD.class.php +++ b/ModCMD/ModCMD.class.php @@ -1,12 +1,12 @@ . * * * ************************************************************************ - * + * * ModCMD/ModCMD.class.php * * shares the incoming events to all bot's that request them. * */ require_once("Binding.class.php"); - + $bindid = 1; define("BIND_NEWSERVER", $bindid++); define("BIND_SQUIT", $bindid++); @@ -45,36 +45,36 @@ define("BIND_CTCPREPLY", $bindid++); define("BIND_PREPARSE", $bindid++); define("BIND_UNKNOWNCMD", $bindid++); - + class ModCMD implements EventHandler { private static $eventHandler = null; private static $bindings = array(); - + public static function getEventHandler() { if(self::$eventHandler == null) { self::$eventHandler = new ModCMD(); } return self::$eventHandler; } - - public static function bind($bot, $type, $method) { + + public static function bind($bot, $type, $method, $filter = NULL) { if(is_a($bot, "Bot") && method_exists($bot, $method)) { if(array_key_exists($type, self::$bindings)) { foreach(self::$bindings[$type] as $binding) { - if($binding->match($bot, $method)) - return; + if($binding->match($bot, $method, $filter)) + return; } - } else - self::$bindings[$type] = array(); - self::$bindings[$type][] = new Binding($bot, $method); + } else + self::$bindings[$type] = array(); + self::$bindings[$type][] = new Binding($bot, $method, $filter); } } - - public static function unbind($bot, $type, $method) { + + public static function unbind($bot, $type, $method, $filter = NULL) { if(is_a($bot, "Bot")) { if(array_key_exists($type, self::$bindings)) { foreach(self::$bindings[$type] as $id => $binding) { - if($binding->match($bot, $method)) { + if($binding->match($bot, $method, $filter)) { unset(self::$bindings[$type][$id]); break; } @@ -82,115 +82,120 @@ class ModCMD implements EventHandler { } } } - + public static function unbindBot($bot) { if(is_a($bot, "Bot")) { foreach(self::$bindings as $type => $bindings) { foreach($bindings as $id => $binding) { - if($binding->match($bot, null)) { + if($binding->match($bot, null, null)) { unset(self::$bindings[$type][$id]); } } } } } - + /******************************************************************************************** * EVENT HANDLER * ********************************************************************************************/ - - private function event($type, $parameters) { + + private function event($type, $parameters, $matchings = array(null)) { if(array_key_exists($type, self::$bindings)) { foreach(self::$bindings[$type] as $binding) { + $match = false; + foreach($matchings as $matching) { + if(($match = $binding->match_filter($matching))) break; + } + if($match) $binding->trigger($parameters); } } } - + public function event_newserver($server, $isBurst) { $this->event(BIND_NEWSERVER, array($server, $isBurst)); } - + public function event_squit($server){ $this->event(BIND_SQUIT, array($server)); } - + public function event_connect($user, $isBurst) { $this->event(BIND_CONNECT, array($user, $isBurst)); } - + public function event_nick($user, $newNick) { $this->event(BIND_NICK, array($user, $newNick)); } - + public function event_usermode($user, $modes) { $this->event(BIND_USERMODE, array($user, $modes)); } - + public function event_quit($user, $reason) { $this->event(BIND_QUIT, array($user, $reason)); } - + public function event_join($user, $channel, $isBurst) { - $this->event(BIND_JOIN, array($user, $channel, $isBurst)); + $this->event(BIND_JOIN, array($user, $channel, $isBurst), array($user, $channel)); } - + public function event_part($user, $channel, $reason) { - $this->event(BIND_PART, array($user, $channel, $reason)); + $this->event(BIND_PART, array($user, $channel, $reason), array($user, $channel)); } - + public function event_kick($user, $target, $channel, $reason) { - $this->event(BIND_KICK, array($user, $target, $channel, $reason)); + $this->event(BIND_KICK, array($user, $target, $channel, $reason), array($user, $channel, $target)); } - + public function event_chanmode($user, $channel, $modes) { - $this->event(BIND_CHANMODE, array($user, $channel, $modes)); + $this->event(BIND_CHANMODE, array($user, $channel, $modes), array($user, $channel)); } - + public function event_chanmessage($user, $channel, $message) { - $this->event(BIND_CHANMSG, array($user, $channel, $message)); + $this->event(BIND_CHANMSG, array($user, $channel, $message), array($user, $channel)); } - + public function event_channotice($user, $channel, $message) { - $this->event(BIND_CHANNOTICE, array($user, $channel, $message)); + $this->event(BIND_CHANNOTICE, array($user, $channel, $message), array($user, $channel)); } - + public function event_privmessage($user, $target, $message) { - $this->event(BIND_PRIVMSG, array($user, $target, $message)); + $this->event(BIND_PRIVMSG, array($user, $target, $message), array($user, $target)); } - + public function event_privnotice($user, $target, $message) { - $this->event(BIND_PRIVNOTICE, array($user, $target, $message)); + $this->event(BIND_PRIVNOTICE, array($user, $target, $message), array($user, $target)); } - + public function event_preparse($from, $command, $arguments) { - $this->event(BIND_PREPARSE, array($from, $command, $arguments)); + $this->event(BIND_PREPARSE, array($from, $command, $arguments), array($command)); } - + public function event_unknown_cmd($from, $command, $arguments) { - $this->event(BIND_UNKNOWNCMD, array($from, $command, $arguments)); + $this->event(BIND_UNKNOWNCMD, array($from, $command, $arguments), array($command)); } - + public function event_chanctcp($user, $channel, $command, $text) { $this->event(BIND_CTCP, array($user, $channel, $command, $text, true)); } - + public function event_chanctcpreply($user, $channel, $command, $text) { $this->event(BIND_CTCPREPLY, array($user, $channel, $command, $text, true)); } - + public function event_privctcp($user, $target, $command, $text) { $this->event(BIND_CTCP, array($user, $target, $command, $text, false)); } - + public function event_privctcpreply($user, $target, $command, $text) { $this->event(BIND_CTCPREPLY, array($user, $target, $command, $text, false)); } - + public function event_away($user, $away) { $this->event(BIND_AWAY, array($user, $away)); } - + } ?> \ No newline at end of file