2008-06-26 16:03:36 +01:00
|
|
|
#!/usr/bin/env php
|
2008-06-23 03:27:10 +01:00
|
|
|
<?php
|
|
|
|
/*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-06-23 03:27:10 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2008-08-13 16:46:03 +01:00
|
|
|
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
|
2008-08-27 15:23:36 +01:00
|
|
|
|
2010-02-16 17:01:59 +00:00
|
|
|
$shortoptions = 'fi::a';
|
|
|
|
$longoptions = array('id::', 'foreground', 'all');
|
2009-06-23 01:07:14 +01:00
|
|
|
|
|
|
|
$helptext = <<<END_OF_XMPP_HELP
|
|
|
|
Daemon script for receiving new notices from Jabber users.
|
2009-06-20 22:58:47 +01:00
|
|
|
|
2009-06-25 03:31:12 +01:00
|
|
|
-i --id Identity (default none)
|
2010-02-16 17:01:59 +00:00
|
|
|
-a --all Handle XMPP for all local sites
|
|
|
|
(requires Stomp queue handler, status_network setup)
|
2009-06-28 21:13:08 +01:00
|
|
|
-f --foreground Stay in the foreground (default background)
|
2009-06-20 22:58:47 +01:00
|
|
|
|
2009-06-23 01:07:14 +01:00
|
|
|
END_OF_XMPP_HELP;
|
2008-06-23 03:27:10 +01:00
|
|
|
|
2009-06-23 01:07:14 +01:00
|
|
|
require_once INSTALLDIR.'/scripts/commandline.inc';
|
|
|
|
|
|
|
|
require_once INSTALLDIR . '/lib/jabber.php';
|
2008-08-27 21:54:07 +01:00
|
|
|
|
2010-01-22 00:42:50 +00:00
|
|
|
class XMPPDaemon extends SpawningDaemon
|
2008-12-23 19:49:23 +00:00
|
|
|
{
|
2010-02-16 17:01:59 +00:00
|
|
|
protected $allsites = false;
|
|
|
|
|
|
|
|
function __construct($id=null, $daemonize=true, $threads=1, $allsites=false)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2010-01-22 00:42:50 +00:00
|
|
|
if ($threads != 1) {
|
|
|
|
// This should never happen. :)
|
|
|
|
throw new Exception("XMPPDaemon can must run single-threaded");
|
2009-07-09 14:31:10 +01:00
|
|
|
}
|
2010-01-22 00:42:50 +00:00
|
|
|
parent::__construct($id, $daemonize, $threads);
|
2010-02-16 17:01:59 +00:00
|
|
|
$this->allsites = $allsites;
|
2009-07-09 14:31:10 +01:00
|
|
|
}
|
|
|
|
|
2010-01-22 00:42:50 +00:00
|
|
|
function runThread()
|
2009-07-09 14:31:10 +01:00
|
|
|
{
|
2010-01-22 00:42:50 +00:00
|
|
|
common_log(LOG_INFO, 'Waiting to listen to XMPP and queues');
|
2009-07-09 14:31:10 +01:00
|
|
|
|
2010-03-10 19:54:00 +00:00
|
|
|
$master = new XmppMaster($this->get_id(), $this->processManager());
|
2010-02-16 17:01:59 +00:00
|
|
|
$master->init($this->allsites);
|
2010-01-22 00:42:50 +00:00
|
|
|
$master->service();
|
2009-07-09 14:31:10 +01:00
|
|
|
|
2010-01-22 00:42:50 +00:00
|
|
|
common_log(LOG_INFO, 'terminating normally');
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2010-01-26 19:49:49 +00:00
|
|
|
return $master->respawn ? self::EXIT_RESTART : self::EXIT_SHUTDOWN;
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
|
2010-01-22 00:42:50 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
|
2010-01-22 00:42:50 +00:00
|
|
|
class XmppMaster extends IoMaster
|
|
|
|
{
|
2010-03-10 19:54:00 +00:00
|
|
|
protected $processManager;
|
|
|
|
|
|
|
|
function __construct($id, $processManager)
|
|
|
|
{
|
|
|
|
parent::__construct($id);
|
|
|
|
$this->processManager = $processManager;
|
|
|
|
}
|
|
|
|
|
2010-01-22 00:42:50 +00:00
|
|
|
/**
|
|
|
|
* Initialize IoManagers for the currently configured site
|
|
|
|
* which are appropriate to this instance.
|
|
|
|
*/
|
|
|
|
function initManagers()
|
|
|
|
{
|
2010-02-16 17:01:59 +00:00
|
|
|
if (common_config('xmpp', 'enabled')) {
|
|
|
|
$qm = QueueManager::get();
|
|
|
|
$qm->setActiveGroup('xmpp');
|
|
|
|
$this->instantiate($qm);
|
|
|
|
$this->instantiate(XmppManager::get());
|
2010-03-10 19:54:00 +00:00
|
|
|
$this->instantiate($this->processManager);
|
2010-02-16 17:01:59 +00:00
|
|
|
}
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-06-23 03:27:10 +01:00
|
|
|
}
|
|
|
|
|
2009-04-16 21:07:59 +01:00
|
|
|
// Abort immediately if xmpp is not enabled, otherwise the daemon chews up
|
|
|
|
// lots of CPU trying to connect to unconfigured servers
|
2010-02-16 17:01:59 +00:00
|
|
|
// @fixme do this check after we've run through the site list so we
|
|
|
|
// don't have to find an XMPP site to start up when using --all mode.
|
2009-04-16 21:07:59 +01:00
|
|
|
if (common_config('xmpp','enabled')==false) {
|
|
|
|
print "Aborting daemon - xmpp is disabled\n";
|
2010-03-18 18:08:27 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (version_compare(PHP_VERSION, '5.2.6', '<')) {
|
|
|
|
$arch = php_uname('m');
|
|
|
|
if ($arch == 'x86_64' || $arch == 'amd64') {
|
|
|
|
print "Aborting daemon - 64-bit PHP prior to 5.2.6 has known bugs in stream_select; you are running " . PHP_VERSION . " on $arch.\n";
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-04-16 21:07:59 +01:00
|
|
|
}
|
|
|
|
|
2009-06-28 21:13:08 +01:00
|
|
|
if (have_option('i', 'id')) {
|
|
|
|
$id = get_option_value('i', 'id');
|
2009-06-23 01:07:14 +01:00
|
|
|
} else if (count($args) > 0) {
|
2009-06-25 03:31:12 +01:00
|
|
|
$id = $args[0];
|
2009-06-23 01:07:14 +01:00
|
|
|
} else {
|
2009-06-25 03:31:12 +01:00
|
|
|
$id = null;
|
2009-06-23 01:07:14 +01:00
|
|
|
}
|
2008-06-26 16:03:36 +01:00
|
|
|
|
2009-06-28 21:13:08 +01:00
|
|
|
$foreground = have_option('f', 'foreground');
|
2010-02-16 17:01:59 +00:00
|
|
|
$all = have_option('a') || have_option('--all');
|
2009-06-28 21:13:08 +01:00
|
|
|
|
2010-02-16 17:01:59 +00:00
|
|
|
$daemon = new XMPPDaemon($id, !$foreground, 1, $all);
|
2008-06-23 03:27:10 +01:00
|
|
|
|
2008-09-16 22:08:13 +01:00
|
|
|
$daemon->runOnce();
|