. * * @category Plugin * @package Laconica * @author Evan Prodromou * @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 Comet * * @category Plugin * @package Laconica * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://laconi.ca/ */ class CometPlugin extends RealtimePlugin { public $server = null; public $username = null; public $password = null; protected $bay = null; function __construct($server=null, $username=null, $password=null) { $this->server = $server; $this->username = $username; $this->password = $password; parent::__construct(); } function _getScripts() { $scripts = parent::_getScripts(); $ours = array('jquery.comet.js', 'cometupdate.js'); foreach ($ours as $script) { $scripts[] = common_path('plugins/Comet/'.$script); } return $scripts; } function _updateInitialize($timeline, $user_id) { return "CometUpdate.init(\"$this->server\", \"$timeline\", $user_id, \"$this->replyurl\", \"$this->favorurl\", \"$this->deleteurl\");"; } function _connect() { // Bayeux? Comet? Huh? These terms confuse me $this->bay = new Bayeux($this->server, $this->user, $this->password); } function _publish($timeline, $json) { $this->bay->publish($timeline, $json); } function _disconnect() { unset($this->bay); } }