| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * StatusNet, the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @package   StatusNet | 
					
						
							|  |  |  |  * @author    Evan Prodromou <evan@status.net> | 
					
						
							|  |  |  |  * @copyright 2009 StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @link      http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  | require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.php'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Plugin to do realtime updates using Comet | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category Plugin | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @package  StatusNet | 
					
						
							|  |  |  |  * @author   Evan Prodromou <evan@status.net> | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 | 
					
						
							| 
									
										
										
										
											2009-08-25 18:29:56 -04:00
										 |  |  |  * @link     http://status.net/ | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  | class CometPlugin extends RealtimePlugin | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     public $server   = null; | 
					
						
							|  |  |  |     public $username = null; | 
					
						
							|  |  |  |     public $password = null; | 
					
						
							| 
									
										
										
										
											2009-07-15 15:31:42 -04:00
										 |  |  |     public $prefix   = null; | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     protected $bay   = null; | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-15 15:31:42 -04:00
										 |  |  |     function __construct($server=null, $username=null, $password=null, $prefix=null) | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-05-01 09:42:38 -07:00
										 |  |  |         $this->server   = $server; | 
					
						
							|  |  |  |         $this->username = $username; | 
					
						
							|  |  |  |         $this->password = $password; | 
					
						
							| 
									
										
										
										
											2009-07-15 15:31:42 -04:00
										 |  |  |         $this->prefix   = $prefix; | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         parent::__construct(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     function _getScripts() | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         $scripts = parent::_getScripts(); | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         $ours = array('jquery.comet.js', 'cometupdate.js'); | 
					
						
							| 
									
										
										
										
											2009-04-26 15:08:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         foreach ($ours as $script) { | 
					
						
							|  |  |  |             $scripts[] = common_path('plugins/Comet/'.$script); | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         return $scripts; | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     function _updateInitialize($timeline, $user_id) | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-07-15 15:31:42 -04:00
										 |  |  |         $script = parent::_updateInitialize($timeline, $user_id); | 
					
						
							|  |  |  |         return $script." CometUpdate.init(\"$this->server\", \"$timeline\", $user_id, \"$this->replyurl\", \"$this->favorurl\", \"$this->deleteurl\");";
 | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     function _connect() | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-07-15 15:31:42 -04:00
										 |  |  |         require_once INSTALLDIR.'/plugins/Comet/bayeux.class.inc.php'; | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         // Bayeux? Comet? Huh? These terms confuse me
 | 
					
						
							|  |  |  |         $this->bay = new Bayeux($this->server, $this->user, $this->password); | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     function _publish($timeline, $json) | 
					
						
							| 
									
										
										
										
											2009-04-26 18:00:06 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         $this->bay->publish($timeline, $json); | 
					
						
							| 
									
										
										
										
											2009-04-26 18:00:06 -04:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |     function _disconnect() | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-07-14 15:40:58 -04:00
										 |  |  |         unset($this->bay); | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-07-15 15:31:42 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function _pathToChannel($path) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (!empty($this->prefix)) { | 
					
						
							|  |  |  |             array_unshift($path, $this->prefix); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return '/' . implode('/', $path); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-04-25 14:20:24 -04:00
										 |  |  | } |