changed file headers & added AUTHORS file
[PHP-P10.git] / ModCMD / ModCMD.class.php
index 026b8ae5deea020ab6ffc8c5ed1a56ba38ee64f8..82ee956c6637dce960e7e784540e357142973ba0 100644 (file)
@@ -1,22 +1,19 @@
 <?php
-/********************************* PHP-P10 ******************************
- *    P10 uplink class by pk910   (c)2011 pk910                         *
- ************************************************************************
- *                          Version 2 (OOP)                             *
+/******************************* PHP-P10 v2 *****************************
+ * Copyright (C) 2011  Philipp Kreil (pk910)                            *
  *                                                                      *
- * PHP-P10 is free software; you can redistribute it and/or modify      *
+ * This program is free software: you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
+ * the Free Software Foundation, either version 3 of the License, or    *
  * (at your option) any later version.                                  *
- *                                                                      *
+ *                                                                      * 
  * This program is distributed in the hope that it will be useful,      *
  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
  * GNU General Public License for more details.                         *
  *                                                                      *
  * You should have received a copy of the GNU General Public License    *
- * along with PHP-P10; if not, write to the Free Software Foundation,   *
- * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.       *
+ * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  *                                                                      *
  ************************************************************************
  * 
@@ -24,9 +21,6 @@
  *
  * shares the incoming events to all bot's that request them.
  *
- ************************************************************************
- * 
- * 
  */
 require_once("Binding.class.php");
  
@@ -40,11 +34,14 @@ define("BIND_QUIT", $bindid++);
 define("BIND_JOIN", $bindid++);
 define("BIND_PART", $bindid++);
 define("BIND_KICK", $bindid++);
+define("BIND_AWAY", $bindid++);
 define("BIND_CHANMODE", $bindid++);
 define("BIND_CHANMSG", $bindid++);
 define("BIND_PRIVMSG", $bindid++);
 define("BIND_CHANNOTICE", $bindid++);
 define("BIND_PRIVNOTICE", $bindid++);
+define("BIND_CTCP", $bindid++);
+define("BIND_CTCPREPLY", $bindid++);
 define("BIND_PREPARSE", $bindid++);
 define("BIND_UNKNOWNCMD", $bindid++);
 
@@ -101,24 +98,6 @@ class ModCMD implements EventHandler {
        /********************************************************************************************
         *                                       EVENT HANDLER                                      *
         ********************************************************************************************/
-       //All events trigger a binding. You may set the same binding for eg. CHANMODE and USERMODE (or some others)
-       //to get only one binding for both events... but i think that's senceless
-       const EVENT_NEWSERVER  = BIND_NEWSERVER;
-       const EVENT_SQUIT      = BIND_SQUIT;
-       const EVENT_CONNECT    = BIND_CONNECT;
-       const EVENT_NICK       = BIND_NICK;
-       const EVENT_USERMODE   = BIND_USERMODE;
-       const EVENT_QUIT       = BIND_QUIT;
-       const EVENT_JOIN       = BIND_JOIN;
-       const EVENT_PART       = BIND_PART;
-       const EVENT_KICK       = BIND_KICK;
-       const EVENT_CHANMODE   = BIND_CHANMODE;
-       const EVENT_CHANMSG    = BIND_CHANMSG;
-       const EVENT_PRIVMSG    = BIND_PRIVMSG;
-       const EVENT_CHANNOTICE = BIND_CHANNOTICE;
-       const EVENT_PRIVNOTICE = BIND_PRIVNOTICE;
-       const EVENT_PREPARSE   = BIND_PREPARSE;
-       const EVENT_UNKNOWNCMD = BIND_UNKNOWNCMD;
        
        private function event($type, $parameters) {
                if(array_key_exists($type, self::$bindings)) {
@@ -129,67 +108,87 @@ class ModCMD implements EventHandler {
        }
        
        public function event_newserver($server, $isBurst) {
-               $this->event(self::EVENT_NEWSERVER, array($server, $isBurst));
+               $this->event(BIND_NEWSERVER, array($server, $isBurst));
        }
        
        public function event_squit($server){
-               $this->event(self::EVENT_SQUIT, array($server));
+               $this->event(BIND_SQUIT, array($server));
        }
        
        public function event_connect($user, $isBurst) {
-               $this->event(self::EVENT_CONNECT, array($user, $isBurst));
+               $this->event(BIND_CONNECT, array($user, $isBurst));
        }
        
        public function event_nick($user, $newNick) {
-               $this->event(self::EVENT_NICK, array($user, $newNick));
+               $this->event(BIND_NICK, array($user, $newNick));
        }
        
        public function event_usermode($user, $modes) {
-               $this->event(self::EVENT_USERMODE, array($user, $modes));
+               $this->event(BIND_USERMODE, array($user, $modes));
        }
        
        public function event_quit($user, $reason) {
-               $this->event(self::EVENT_QUIT, array($user, $reason));
+               $this->event(BIND_QUIT, array($user, $reason));
        }
        
        public function event_join($user, $channel, $isBurst) {
-               $this->event(self::EVENT_JOIN, array($user, $channel, $isBurst));
+               $this->event(BIND_JOIN, array($user, $channel, $isBurst));
        }
        
        public function event_part($user, $channel, $reason) {
-               $this->event(self::EVENT_PART, array($user, $channel, $reason));
+               $this->event(BIND_PART, array($user, $channel, $reason));
        }
        
        public function event_kick($user, $target, $channel, $reason) {
-               $this->event(self::EVENT_KICK, array($user, $target, $channel, $reason));
+               $this->event(BIND_KICK, array($user, $target, $channel, $reason));
        }
        
        public function event_chanmode($user, $channel, $modes) {
-               $this->event(self::EVENT_CHANMODE, array($user, $channel, $modes));
+               $this->event(BIND_CHANMODE, array($user, $channel, $modes));
        }
        
        public function event_chanmessage($user, $channel, $message) {
-               $this->event(self::EVENT_CHANMSG, array($user, $channel, $message));
+               $this->event(BIND_CHANMSG, array($user, $channel, $message));
        }
        
        public function event_channotice($user, $channel, $message) {
-               $this->event(self::EVENT_CHANNOTICE, array($user, $channel, $message));
+               $this->event(BIND_CHANNOTICE, array($user, $channel, $message));
        }
        
-       public function event_privmessage($user, $channel, $message) {
-               $this->event(self::EVENT_PRIVMSG, array($user, $channel, $message));
+       public function event_privmessage($user, $target, $message) {
+               $this->event(BIND_PRIVMSG, array($user, $target, $message));
        }
        
-       public function event_privnotice($user, $channel, $message) {
-               $this->event(self::EVENT_PRIVNOTICE, array($user, $channel, $message));
+       public function event_privnotice($user, $target, $message) {
+               $this->event(BIND_PRIVNOTICE, array($user, $target, $message));
        }
        
        public function event_preparse($from, $command, $arguments) {
-               $this->event(self::EVENT_PREPARSE, array($from, $command, $arguments));
+               $this->event(BIND_PREPARSE, array($from, $command, $arguments));
        }
        
        public function event_unknown_cmd($from, $command, $arguments) {
-               $this->event(self::EVENT_UNKNOWNCMD, array($from, $command, $arguments));
+               $this->event(BIND_UNKNOWNCMD, array($from, $command, $arguments));
+       }
+       
+       public function event_chanctcp($user, $channel, $command, $text) {
+               $this->event(BIND_CTCP, array($user, $channel, $command, $text, true));
+       }
+       
+       public function event_chanctcpreply($user, $target, $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, $channel, $command, $text, false));
+       }
+       
+       public function event_privctcpreply($user, $target, $command, $text) {
+               $this->event(BIND_CTCPREPLY, array($user, $channel, $command, $text, false));
+       }
+       
+       public function event_away($user, $away) {
+               $this->event(BIND_AWAY, array($user, $away));
        }
        
 }