diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-26 11:03:36 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-26 11:03:36 -0400 |
commit | d195c49d96314fc3a597d04fbc7d279c307a9311 (patch) | |
tree | 0f747bab4b4c443e50149afda3bf11433709e465 /xmppdaemon.php | |
parent | 69107377605f64537dd6021c9256500982cafb9c (diff) |
use jabber.php more from xmppdaemon
darcs-hash:20080626150336-34904-bfa5ec8740ba1edf60c34e1ef6aafdfd73fc99a2.gz
Diffstat (limited to 'xmppdaemon.php')
-rwxr-xr-x[-rw-r--r--] | xmppdaemon.php | 40 |
1 files changed, 19 insertions, 21 deletions
diff --git a/xmppdaemon.php b/xmppdaemon.php index ac3ab8aca..c8204ba0e 100644..100755 --- a/xmppdaemon.php +++ b/xmppdaemon.php @@ -1,3 +1,4 @@ +#!/usr/bin/env php <?php /* * Laconica - a distributed open-source microblogging tool @@ -32,8 +33,7 @@ require_once(INSTALLDIR . '/lib/jabber.php'); class XMPPDaemon { function XMPPDaemon($resource=NULL) { - static $attrs = array('server', 'port', 'user', 'password', - 'resource', 'host'); + static $attrs = array('server', 'port', 'user', 'password', 'host'); foreach ($attrs as $attr) { @@ -42,12 +42,20 @@ class XMPPDaemon { if ($resource) { $this->resource = $resource; + } else { + $this->resource = common_config('xmpp', 'resource') . 'daemon'; } + + $this->log(LOG_INFO, "{$this->user}@{$this->server}/{$this->resource}"); } function connect() { - $this->conn = jabber_connect($this->resource, - "Send me a message to post a notice"); + $connect_to = ($this->host) ? $this->host : $this->server; + + $this->log(LOG_INFO, "Connecting to $connect_to on port $this->port"); + + $this->conn = jabber_connect($this->resource); + if (!$this->conn) { return false; } @@ -189,30 +197,20 @@ class XMPPDaemon { } function subscribed($to) { - $this->special_presence('subscribed', $to); + jabber_special_presence('subscribed', $to); } - function special_presence($type, $to=NULL, $show=NULL, $status=NULL) { - $to = htmlspecialchars($to); - $status = htmlspecialchars($status); - $out = "<presence"; - if($to) $out .= " to='$to'"; - if($type) $out .= " type='$type'"; - if($show == 'available' and !$status) { - $out .= "/>"; - } else { - $out .= ">"; - if($show && ($show != 'available')) $out .= "<show>$show</show>"; - if($status) $out .= "<status>$status</status>"; - $out .= "</presence>"; - } - $this->conn->send($out); + function set_status($status) { + jabber_send_presence($status); } } -$daemon = new XMPPDaemon(); +$resource = ($argc > 1) ? $argv[1] : NULL; + +$daemon = new XMPPDaemon($resource); if ($daemon->connect()) { + $daemon->set_status("Send me a message to post a notice"); $daemon->handle(); } ?> |