]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Added Statusnet Driver to give access to sockets and send method
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Fri, 9 Jul 2010 10:19:18 +0000 (03:19 -0700)
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>
Fri, 9 Jul 2010 10:19:18 +0000 (03:19 -0700)
plugins/Irc/extlib/phergie/Phergie/Driver/Statusnet.php [new file with mode: 0644]

diff --git a/plugins/Irc/extlib/phergie/Phergie/Driver/Statusnet.php b/plugins/Irc/extlib/phergie/Phergie/Driver/Statusnet.php
new file mode 100644 (file)
index 0000000..e1e51a0
--- /dev/null
@@ -0,0 +1,53 @@
+<?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
+ * Calls the given Statusnet IM architecture enqueuing method to enqueue\r
+ * a new incoming message\r
+ *\r
+ * @category  Phergie\r
+ * @package   Phergie_Driver_Statusnet\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
+\r
+class Phergie_Driver_Statusnet extends Phergie_Driver_Streams {\r
+    /**\r
+     * Handles construction of command strings and their transmission to the\r
+     * server.\r
+     *\r
+     * @param string       $command Command to send\r
+     * @param string|array $args    Optional string or array of sequential\r
+     *        arguments\r
+     *\r
+     * @return string Command string that was sent\r
+     * @throws Phergie_Driver_Exception\r
+     */\r
+    public function send($command, $args = '') {\r
+        return parent::send($command, $args);\r
+    }\r
+\r
+    /**\r
+    * Returns the array of sockets\r
+    *\r
+    * @return array Array of socket resources\r
+    */\r
+    public function getSockets() {\r
+        return $this->sockets;\r
+    }\r
+}
\ No newline at end of file