]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Extended Phergie_Bot to allow Statusnet to be the driver
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Fri, 9 Jul 2010 11:04:45 +0000 (04:04 -0700)
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Fri, 9 Jul 2010 11:04:45 +0000 (04:04 -0700)
plugins/Irc/extlib/phergie/Phergie/ExtendedBot.php [new file with mode: 0644]

diff --git a/plugins/Irc/extlib/phergie/Phergie/ExtendedBot.php b/plugins/Irc/extlib/phergie/Phergie/ExtendedBot.php
new file mode 100644 (file)
index 0000000..b063d6f
--- /dev/null
@@ -0,0 +1,50 @@
+<?php\r
+/**\r
+ * StatusNet - the distributed open-source microblogging tool\r
+ *\r
+ * This program is free software: you can redistribute it and/or modify\r
+ * it under the terms of the GNU Affero General Public License as published by\r
+ * the Free Software Foundation, either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU Affero General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU Affero General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
+ *\r
+ * Extends the bot class (Phergie_Bot) to allow connection and access to\r
+ * sockets and to allow StatusNet to 'drive' the bot\r
+ *\r
+ * @category  Phergie\r
+ * @package   Phergie_Extended_Bot\r
+ * @author    Luke Fitzgerald <lw.fitzgerald@googlemail.com\r
+ * @copyright 2010 StatusNet, Inc.\r
+ * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0\r
+ * @link      http://status.net/\r
+ */\r
+class Phergie_Extended_Bot extends Phergie_Bot {\r
+    /**\r
+    * Set up bot and connect to servers\r
+    *\r
+    * @return void\r
+    */\r
+    public function connect() {\r
+        $ui = $this->getUi();\r
+        $ui->setEnabled($this->getConfig('ui.enabled'));\r
+\r
+        $this->loadPlugins();\r
+        $this->loadConnections();\r
+    }\r
+\r
+    /**\r
+    * Get the sockets used by the bot\r
+    *\r
+    * @return array Array of socket resources\r
+    */\r
+    public function getSockets() {\r
+        return $this->getDriver()->getSockets();\r
+    }\r
+}
\ No newline at end of file