2009-07-10 17:57:38 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:29:56 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-07-10 17:57:38 +01:00
|
|
|
*
|
2011-07-13 18:54:39 +01:00
|
|
|
* Plugin to do "real time" updates using Meteor
|
2009-07-10 17:57:38 +01:00
|
|
|
*
|
|
|
|
* 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 23:29:56 +01:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2009-07-10 17:57:38 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:29:56 +01:00
|
|
|
* @link http://status.net/
|
2009-07-10 17:57:38 +01:00
|
|
|
*/
|
|
|
|
|
2014-02-23 23:59:29 +00:00
|
|
|
if (!defined('GNUSOCIAL') && !defined('STATUSNET')) {
|
2009-07-10 17:57:38 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2014-02-27 22:30:35 +00:00
|
|
|
require_once INSTALLDIR.'/plugins/Realtime/RealtimePlugin.php';
|
|
|
|
|
2009-07-10 17:57:38 +01:00
|
|
|
/**
|
2009-07-14 22:06:29 +01:00
|
|
|
* Plugin to do realtime updates using Meteor
|
2009-07-10 17:57:38 +01:00
|
|
|
*
|
|
|
|
* @category Plugin
|
2009-08-25 23:29:56 +01:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-07-10 17:57:38 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:29:56 +01:00
|
|
|
* @link http://status.net/
|
2009-07-10 17:57:38 +01:00
|
|
|
*/
|
2009-07-14 22:06:29 +01:00
|
|
|
class MeteorPlugin extends RealtimePlugin
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
2009-07-11 21:23:37 +01:00
|
|
|
public $webserver = null;
|
|
|
|
public $webport = null;
|
|
|
|
public $controlport = null;
|
|
|
|
public $controlserver = null;
|
|
|
|
public $channelbase = null;
|
2011-07-13 21:55:28 +01:00
|
|
|
public $protocol = null;
|
2010-06-04 01:41:26 +01:00
|
|
|
public $persistent = true;
|
2009-07-11 21:23:37 +01:00
|
|
|
protected $_socket = null;
|
2009-07-10 17:57:38 +01:00
|
|
|
|
2011-07-13 21:55:28 +01:00
|
|
|
function __construct($webserver=null, $webport=4670, $controlport=4671, $controlserver=null, $channelbase='', $protocol='http')
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
|
|
|
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;
|
2011-07-13 21:55:28 +01:00
|
|
|
$this->protocol = $protocol;
|
|
|
|
|
2009-07-10 17:57:38 +01:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2010-04-06 22:07:46 +01:00
|
|
|
/**
|
|
|
|
* Pull settings from config file/database if set.
|
|
|
|
*/
|
|
|
|
function initialize()
|
|
|
|
{
|
|
|
|
$settings = array('webserver',
|
|
|
|
'webport',
|
|
|
|
'controlport',
|
|
|
|
'controlserver',
|
2011-07-13 21:55:28 +01:00
|
|
|
'channelbase',
|
|
|
|
'protocol');
|
2010-04-06 22:07:46 +01:00
|
|
|
foreach ($settings as $name) {
|
|
|
|
$val = common_config('meteor', $name);
|
|
|
|
if ($val !== false) {
|
|
|
|
$this->$name = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent::initialize();
|
|
|
|
}
|
|
|
|
|
2009-07-14 22:06:29 +01:00
|
|
|
function _getScripts()
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
2009-07-14 22:06:29 +01:00
|
|
|
$scripts = parent::_getScripts();
|
2011-07-13 21:55:28 +01:00
|
|
|
if ($this->protocol == 'https') {
|
|
|
|
$scripts[] = 'https://'.$this->webserver.(($this->webport == 443) ? '':':'.$this->webport).'/meteor.js';
|
|
|
|
} else {
|
|
|
|
$scripts[] = 'http://'.$this->webserver.(($this->webport == 80) ? '':':'.$this->webport).'/meteor.js';
|
|
|
|
}
|
2014-02-23 23:59:29 +00:00
|
|
|
$scripts[] = $this->path('js/meteorupdater.js');
|
2009-07-14 22:06:29 +01:00
|
|
|
return $scripts;
|
2009-07-10 17:57:38 +01:00
|
|
|
}
|
|
|
|
|
2009-07-14 22:06:29 +01:00
|
|
|
function _updateInitialize($timeline, $user_id)
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
2009-07-14 22:06:29 +01:00
|
|
|
$script = parent::_updateInitialize($timeline, $user_id);
|
2014-08-18 20:59:25 +01:00
|
|
|
$ours = sprintf("MeteorUpdater.init(%s, %s, %s, %s);",
|
2014-08-24 12:33:52 +01:00
|
|
|
json_encode($this->webserver),
|
|
|
|
json_encode($this->webport),
|
|
|
|
json_encode($this->protocol),
|
|
|
|
json_encode($timeline));
|
2011-08-02 18:49:27 +01:00
|
|
|
return $script." ".$ours;
|
2009-07-10 17:57:38 +01:00
|
|
|
}
|
|
|
|
|
2009-07-14 22:06:29 +01:00
|
|
|
function _connect()
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
2009-07-11 21:23:37 +01:00
|
|
|
$controlserver = (empty($this->controlserver)) ? $this->webserver : $this->controlserver;
|
2010-06-04 01:41:26 +01:00
|
|
|
|
|
|
|
$errno = $errstr = null;
|
|
|
|
$timeout = 5;
|
|
|
|
$flags = STREAM_CLIENT_CONNECT;
|
|
|
|
if ($this->persistent) $flags |= STREAM_CLIENT_PERSISTENT;
|
|
|
|
|
2009-07-10 17:57:38 +01:00
|
|
|
// May throw an exception.
|
2010-06-04 01:41:26 +01:00
|
|
|
$this->_socket = stream_socket_client("tcp://{$controlserver}:{$this->controlport}", $errno, $errstr, $timeout, $flags);
|
2009-07-10 17:57:38 +01:00
|
|
|
if (!$this->_socket) {
|
2010-09-20 20:12:07 +01:00
|
|
|
// TRANS: Exception. %1$s is the control server, %2$s is the control port.
|
2011-04-25 18:12:26 +01:00
|
|
|
throw new Exception(sprintf(_m('Could not connect to %1$s on %2$s.'),$controlserver,$this->controlport));
|
2009-07-10 17:57:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-14 22:06:29 +01:00
|
|
|
function _publish($channel, $message)
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
2009-07-14 22:06:29 +01:00
|
|
|
$message = json_encode($message);
|
2009-07-13 08:15:12 +01:00
|
|
|
$message = addslashes($message);
|
2009-07-15 20:31:06 +01:00
|
|
|
$cmd = "ADDMESSAGE $channel $message\n";
|
2009-07-11 21:23:37 +01:00
|
|
|
$cnt = fwrite($this->_socket, $cmd);
|
2009-07-10 17:57:38 +01:00
|
|
|
$result = fgets($this->_socket);
|
2009-07-11 21:23:37 +01:00
|
|
|
if (preg_match('/^ERR (.*)$/', $result, $matches)) {
|
2010-09-20 20:12:07 +01:00
|
|
|
// TRANS: Exception. %s is the Meteor message that could not be added.
|
2011-04-25 18:12:26 +01:00
|
|
|
throw new Exception(sprintf(_m('Error adding meteor message "%s".'),$matches[1]));
|
2009-07-11 21:23:37 +01:00
|
|
|
}
|
2009-07-10 17:57:38 +01:00
|
|
|
// TODO: parse and deal with result
|
|
|
|
}
|
|
|
|
|
2009-07-14 22:06:29 +01:00
|
|
|
function _disconnect()
|
2009-07-10 17:57:38 +01:00
|
|
|
{
|
2010-06-04 01:41:26 +01:00
|
|
|
if (!$this->persistent) {
|
|
|
|
$cnt = fwrite($this->_socket, "QUIT\n");
|
|
|
|
@fclose($this->_socket);
|
|
|
|
}
|
2009-07-10 17:57:38 +01:00
|
|
|
}
|
2009-07-15 20:31:06 +01:00
|
|
|
|
|
|
|
// Meteord flips out with default '/' separator
|
|
|
|
|
|
|
|
function _pathToChannel($path)
|
|
|
|
{
|
|
|
|
if (!empty($this->channelbase)) {
|
|
|
|
array_unshift($path, $this->channelbase);
|
|
|
|
}
|
|
|
|
return implode('-', $path);
|
|
|
|
}
|
2010-09-20 20:12:07 +01:00
|
|
|
|
2015-06-06 21:04:01 +01:00
|
|
|
function onPluginVersion(array &$versions)
|
2010-09-20 20:12:07 +01:00
|
|
|
{
|
|
|
|
$versions[] = array('name' => 'Meteor',
|
2013-11-01 12:51:41 +00:00
|
|
|
'version' => GNUSOCIAL_VERSION,
|
2010-09-20 20:12:07 +01:00
|
|
|
'author' => 'Evan Prodromou',
|
2016-01-22 16:38:42 +00:00
|
|
|
'homepage' => 'https://git.gnu.io/gnu/gnu-social/tree/master/plugins/Meteor',
|
2010-09-20 20:12:07 +01:00
|
|
|
'rawdescription' =>
|
2011-04-25 18:12:26 +01:00
|
|
|
// TRANS: Plugin description.
|
2011-07-13 18:54:39 +01:00
|
|
|
_m('Plugin to do "real time" updates using Meteor.'));
|
2010-09-20 20:12:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
2009-07-10 17:57:38 +01:00
|
|
|
}
|