changed file headers & added AUTHORS file
[PHP-P10.git] / Bots / PHPGod.class.php
index 5fc4b873a81436721892bd1afb32a90b7f9d3f15..e0ffd726c1d373721886083c8ed77a04f268f762 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/>. *
  *                                                                      *
  ************************************************************************
  * 
@@ -28,7 +25,7 @@
 
 class {$_NAME} extends Bot {
        private $uplink;
-       private $php, $phpcache;
+       private $php, $phpcache = array();
        
        public function load($uplink, $old = false) {
                $this->uplink = $uplink;
@@ -53,7 +50,7 @@ class {$_NAME} extends Bot {
        }
        
        public function unload($rehash = false) {
-               foreach($this->phpcache as $id => &$php) {
+               foreach($this->phpcache as $id => $php) {
                        fclose($php['pipes'][1]);
                        fclose($php['pipes'][2]);
                        proc_terminate($php['proc'],9);
@@ -67,8 +64,8 @@ class {$_NAME} extends Bot {
        }
        
        public function loop() {
-               foreach($this->phpcache as $id => &$php) {
-                       if(!$this->checkstate(&$php)) {
+               foreach($this->phpcache as $id => $php) {
+                       if(!$this->checkstate($php)) {
                                unset($this->phpcache[$id]);
                        }
                }
@@ -82,7 +79,7 @@ class {$_NAME} extends Bot {
                        $opOnPHPChannel = ($privs & P10_Channel::USERPRIV_OPED);
                }
                if(!$user->getModes()->hasMode('o') && !$opOnPHPChannel) return 0;
-               $exp=explode(" ",$message);
+               $exp=explode(" ", $message, 2);
                switch (strtolower($exp[0])) {
                        case "~php":
                                if(count($this->phpcache) > 5) {
@@ -106,7 +103,7 @@ class {$_NAME} extends Bot {
        }
        
        function recive_quit($user, $reason) {
-               if($user === $this->modman) {
+               if($user === $this->php) {
                        $this->load($this->uplink);
                }
        }