X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ModCMD%2FBinding.class.php;h=ed980c0219e8997b1388e80e1b1eca17a174ad16;hb=56db0f2b9479259c23ef03661d10ab8b18c5ea41;hp=dfb247ffb7d4731626c9ce9b76cf5995b4967209;hpb=a53ed534c0e521ae169634f38f391b5bf7ca21b3;p=PHP-P10.git diff --git a/ModCMD/Binding.class.php b/ModCMD/Binding.class.php index dfb247f..ed980c0 100644 --- a/ModCMD/Binding.class.php +++ b/ModCMD/Binding.class.php @@ -1,22 +1,19 @@ . * * * ************************************************************************ * @@ -24,17 +21,36 @@ * * a single Binding... * - ************************************************************************ - * - * */ class Binding { + private $bot; + private $method; + private $filter; + + public function __construct($bot, $method, $filter) { + $this->bot = $bot; + $this->method = $method; + $this->filter = $filter; + } + + public function trigger($params) { + call_user_func_array(array($this->bot, $this->method), $params); + } - public function trigger() { - + public function match($bot, $method, $filter) { + return ($bot === $this->bot && (!$method || strtolower($this->method) == strtolower($method)) && (!$filter || $this->match_filter($filter, false))); } + public function match_filter($filter, $preg = true) { + if(!$this->filter) return true; + if(is_object($filter) || is_object($this->filter)) { + return $filter === $this->filter; + } else if($preg && is_string($filter && is_string($this->filter))) { + return preg_match($this->filter, $filter); + } else + return $filter == $this->filter; + } } ?> \ No newline at end of file