forked from GNUsocial/gnu-social
public queue handler and xmpp confirm handler service their message queues
darcs-hash:20080830172217-84dde-b5501719421b84ea1ee8346cf8a5ad170fd1db88.gz
This commit is contained in:
parent
e4d42b2355
commit
4173b5ce51
@ -42,6 +42,7 @@ class PublicQueueHandler extends QueueHandler {
|
|||||||
function start() {
|
function start() {
|
||||||
# Low priority; we don't want to receive messages
|
# Low priority; we don't want to receive messages
|
||||||
$this->conn = jabber_connect($this->_id, NULL, -1);
|
$this->conn = jabber_connect($this->_id, NULL, -1);
|
||||||
|
$this->conn->addEventHandler('message', 'forward_message', $this);
|
||||||
return !is_null($this->conn);
|
return !is_null($this->conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -49,7 +50,45 @@ class PublicQueueHandler extends QueueHandler {
|
|||||||
return jabber_public_notice($notice);
|
return jabber_public_notice($notice);
|
||||||
}
|
}
|
||||||
|
|
||||||
function finish() {
|
function idle() {
|
||||||
|
$this->log(LOG_DEBUG, 'Checking the incoming message queue.');
|
||||||
|
# Process the queue for a second
|
||||||
|
if ($this->conn->readyToProcess()) {
|
||||||
|
$this->log(LOG_DEBUG, 'Something in the incoming message queue; processing it.');
|
||||||
|
$this->conn->processTime(1);
|
||||||
|
$this->log(LOG_DEBUG, 'Done processing incoming message queue.');
|
||||||
|
} else {
|
||||||
|
$this->log(LOG_DEBUG, 'Nothing in the incoming message queue; skipping it.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function forward_message(&$pl) {
|
||||||
|
if ($pl['type'] != 'chat') {
|
||||||
|
$this->log(LOG_DEBUG, 'Ignoring message of type ' . $pl['type'] . ' from ' . $pl['from']);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$listener = $this->listener();
|
||||||
|
if (strtolower($listener) == strtolower($pl['from'])) {
|
||||||
|
$this->log(LOG_WARNING, 'Ignoring loop message.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$this->log(LOG_INFO, 'Forwarding message from ' . $pl['from'] . ' to ' . $listener);
|
||||||
|
$this->conn->message($this->listener(), $pl['body'], 'chat', NULL, $this->ofrom($pl['from']));
|
||||||
|
}
|
||||||
|
|
||||||
|
function ofrom($from) {
|
||||||
|
$address = "<addresses xmlns='http://jabber.org/protocol/address'>\n";
|
||||||
|
$address .= "<address type='ofrom' jid='$from' />\n";
|
||||||
|
$address .= "</addresses>\n";
|
||||||
|
return $address;
|
||||||
|
}
|
||||||
|
|
||||||
|
function listener() {
|
||||||
|
if (common_config('xmpp', 'listener')) {
|
||||||
|
return common_config('xmpp', 'listener');
|
||||||
|
} else {
|
||||||
|
return jabber_daemon_address() . '/' . common_config('xmpp','resource') . '-listener';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,6 +48,7 @@ class XmppConfirmHandler {
|
|||||||
function start() {
|
function start() {
|
||||||
# Low priority; we don't want to receive messages
|
# Low priority; we don't want to receive messages
|
||||||
$this->conn = jabber_connect($this->_id, NULL, -1);
|
$this->conn = jabber_connect($this->_id, NULL, -1);
|
||||||
|
$this->conn->addEventHandler('message', 'forward_message', $this);
|
||||||
return !is_null($this->conn);
|
return !is_null($this->conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,8 +82,15 @@ class XmppConfirmHandler {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$this->idle();
|
||||||
} else {
|
} else {
|
||||||
# $this->clear_old_confirm_claims();
|
# $this->clear_old_confirm_claims();
|
||||||
|
$start = microtime();
|
||||||
|
$this->idle();
|
||||||
|
$used = microtime() - $start;
|
||||||
|
if ($used < 10000000) {
|
||||||
|
usleep(10000000 - $used);
|
||||||
|
}
|
||||||
sleep(10);
|
sleep(10);
|
||||||
}
|
}
|
||||||
} while (true);
|
} while (true);
|
||||||
@ -124,6 +132,47 @@ class XmppConfirmHandler {
|
|||||||
function log($level, $msg) {
|
function log($level, $msg) {
|
||||||
common_log($level, 'XmppConfirmHandler ('. $this->_id .'): '.$msg);
|
common_log($level, 'XmppConfirmHandler ('. $this->_id .'): '.$msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function idle() {
|
||||||
|
$this->log(LOG_DEBUG, 'Checking the incoming message queue.');
|
||||||
|
# Process the queue for a second
|
||||||
|
if ($this->conn->readyToProcess()) {
|
||||||
|
$this->log(LOG_DEBUG, 'Something in the incoming message queue; processing it.');
|
||||||
|
$this->conn->processTime(1);
|
||||||
|
$this->log(LOG_DEBUG, 'Done processing incoming message queue.');
|
||||||
|
} else {
|
||||||
|
$this->log(LOG_DEBUG, 'Nothing in the incoming message queue; skipping it.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function forward_message(&$pl) {
|
||||||
|
if ($pl['type'] != 'chat') {
|
||||||
|
$this->log(LOG_DEBUG, 'Ignoring message of type ' . $pl['type'] . ' from ' . $pl['from']);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$listener = $this->listener();
|
||||||
|
if (strtolower($listener) == strtolower($pl['from'])) {
|
||||||
|
$this->log(LOG_WARNING, 'Ignoring loop message.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$this->log(LOG_INFO, 'Forwarding message from ' . $pl['from'] . ' to ' . $listener);
|
||||||
|
$this->conn->message($this->listener(), $pl['body'], 'chat', NULL, $this->ofrom($pl['from']));
|
||||||
|
}
|
||||||
|
|
||||||
|
function ofrom($from) {
|
||||||
|
$address = "<addresses xmlns='http://jabber.org/protocol/address'>\n";
|
||||||
|
$address .= "<address type='ofrom' jid='$from' />\n";
|
||||||
|
$address .= "</addresses>\n";
|
||||||
|
return $address;
|
||||||
|
}
|
||||||
|
|
||||||
|
function listener() {
|
||||||
|
if (common_config('xmpp', 'listener')) {
|
||||||
|
return common_config('xmpp', 'listener');
|
||||||
|
} else {
|
||||||
|
return jabber_daemon_address() . '/' . common_config('xmpp','resource') . '-listener';
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mb_internal_encoding('UTF-8');
|
mb_internal_encoding('UTF-8');
|
||||||
|
Loading…
Reference in New Issue
Block a user