summaryrefslogtreecommitdiff
path: root/plugins/Meteor
diff options
context:
space:
mode:
authorJeffery To <jeffery.to@gmail.com>2009-07-17 16:54:46 +0800
committerJeffery To <jeffery.to@gmail.com>2009-07-17 16:54:46 +0800
commit1aea5989776e75f3b7af236049d511a28c3f1ff7 (patch)
treefbf355767238df2dbdebf086fa2c9e5f51f7dbed /plugins/Meteor
parent5015505f16c9ce412e6f5535f80188f33d24c4ea (diff)
parentc32e494c0c480e30317b0f0a8dcae7103c4ff89e (diff)
Merge branch '0.9.x' into private-rss
Diffstat (limited to 'plugins/Meteor')
-rw-r--r--plugins/Meteor/MeteorPlugin.php120
-rw-r--r--plugins/Meteor/README27
-rw-r--r--plugins/Meteor/meteorupdater.js21
3 files changed, 168 insertions, 0 deletions
diff --git a/plugins/Meteor/MeteorPlugin.php b/plugins/Meteor/MeteorPlugin.php
new file mode 100644
index 000000000..d54d565bd
--- /dev/null
+++ b/plugins/Meteor/MeteorPlugin.php
@@ -0,0 +1,120 @@
+<?php
+/**
+ * Laconica, the distributed open-source microblogging tool
+ *
+ * Plugin to do "real time" updates using Comet/Bayeux
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * 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 Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category Plugin
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @copyright 2009 Control Yourself, Inc.
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ */
+
+if (!defined('LACONICA')) {
+ exit(1);
+}
+
+require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.php';
+
+/**
+ * Plugin to do realtime updates using Meteor
+ *
+ * @category Plugin
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
+ * @link http://laconi.ca/
+ */
+
+class MeteorPlugin extends RealtimePlugin
+{
+ public $webserver = null;
+ public $webport = null;
+ public $controlport = null;
+ public $controlserver = null;
+ public $channelbase = null;
+ protected $_socket = null;
+
+ function __construct($webserver=null, $webport=4670, $controlport=4671, $controlserver=null, $channelbase='')
+ {
+ global $config;
+
+ $this->webserver = (empty($webserver)) ? $config['site']['server'] : $webserver;
+ $this->webport = $webport;
+ $this->controlport = $controlport;
+ $this->controlserver = (empty($controlserver)) ? $webserver : $controlserver;
+ $this->channelbase = $channelbase;
+
+ parent::__construct();
+ }
+
+ function _getScripts()
+ {
+ $scripts = parent::_getScripts();
+ $scripts[] = 'http://'.$this->webserver.(($this->webport == 80) ? '':':'.$this->webport).'/meteor.js';
+ $scripts[] = common_path('plugins/Meteor/meteorupdater.js');
+ return $scripts;
+ }
+
+ function _updateInitialize($timeline, $user_id)
+ {
+ $script = parent::_updateInitialize($timeline, $user_id);
+ return $script." MeteorUpdater.init(\"$this->webserver\", $this->webport, \"{$timeline}\");";
+ }
+
+ function _connect()
+ {
+ $controlserver = (empty($this->controlserver)) ? $this->webserver : $this->controlserver;
+ // May throw an exception.
+ $this->_socket = stream_socket_client("tcp://{$controlserver}:{$this->controlport}");
+ if (!$this->_socket) {
+ throw new Exception("Couldn't connect to {$controlserver} on {$this->controlport}");
+ }
+ }
+
+ function _publish($channel, $message)
+ {
+ $message = json_encode($message);
+ $message = addslashes($message);
+ $cmd = "ADDMESSAGE $channel $message\n";
+ $cnt = fwrite($this->_socket, $cmd);
+ $result = fgets($this->_socket);
+ if (preg_match('/^ERR (.*)$/', $result, $matches)) {
+ throw new Exception('Error adding meteor message "'.$matches[1].'"');
+ }
+ // TODO: parse and deal with result
+ }
+
+ function _disconnect()
+ {
+ $cnt = fwrite($this->_socket, "QUIT\n");
+ @fclose($this->_socket);
+ }
+
+ // Meteord flips out with default '/' separator
+
+ function _pathToChannel($path)
+ {
+ if (!empty($this->channelbase)) {
+ array_unshift($path, $this->channelbase);
+ }
+ return implode('-', $path);
+ }
+}
diff --git a/plugins/Meteor/README b/plugins/Meteor/README
new file mode 100644
index 000000000..22f548462
--- /dev/null
+++ b/plugins/Meteor/README
@@ -0,0 +1,27 @@
+This is a plugin to automatically load notices in the browser no
+matter who creates them -- the kind of thing we see with
+search.twitter.com, rejaw.com, or FriendFeed's "real time" news.
+
+It requires a meteor server.
+
+ http://meteorserver.org/
+
+Note that the controller interface needs to be accessible by the Web
+server, and the subscriber interface needs to be accessible by your
+Web users. You MUST firewall the controller interface from users;
+otherwise anyone will be able to push any message to your subscribers.
+Not good!
+
+You can enable the plugin with this line in config.php:
+
+addPlugin('Meteor', array('webserver' => 'meteor server address'));
+
+Available parameters:
+
+* webserver: Web server address. Defaults to site server.
+* webport: port to connect to for Web access. Defaults to 4670.
+* controlserver: Control server address. Defaults to webserver.
+* controlport: port to connect to for control. Defaults to 4671.
+* channelbase: a base string to use for channels. Good if you have
+ multiple sites using the same meteor server.
+
diff --git a/plugins/Meteor/meteorupdater.js b/plugins/Meteor/meteorupdater.js
new file mode 100644
index 000000000..2e688336f
--- /dev/null
+++ b/plugins/Meteor/meteorupdater.js
@@ -0,0 +1,21 @@
+// update the local timeline from a Meteor server
+//
+
+var MeteorUpdater = function()
+{
+ return {
+
+ init: function(server, port, timeline)
+ {
+ Meteor.callbacks["process"] = function(data) {
+ RealtimeUpdate.receive(JSON.parse(data));
+ };
+
+ Meteor.host = server;
+ Meteor.port = port;
+ Meteor.joinChannel(timeline, 0);
+ Meteor.connect();
+ }
+ }
+}();
+