summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-15 15:05:19 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-15 15:05:19 -0400
commit3f59000e73f8e80d833963445e7581c3a21f0dc7 (patch)
tree86c2312b0cc4450ba85b27bd044c2dee18d2845a
parent7ad21d3cc1e4761e385a24df73ac4943242ce4f0 (diff)
work around probs with XMPPHP library
darcs-hash:20080715190519-84dde-766a45bc05fff8682843323145c1bd2460f8c308.gz
-rw-r--r--lib/jabber.php43
1 files changed, 23 insertions, 20 deletions
diff --git a/lib/jabber.php b/lib/jabber.php
index 79325eb19..bd04edc63 100644
--- a/lib/jabber.php
+++ b/lib/jabber.php
@@ -21,6 +21,27 @@ if (!defined('LACONICA')) { exit(1); }
require_once('XMPPHP/XMPP.php');
+# XXX: something of a hack to work around problems with the XMPPHP lib
+
+class Laconica_XMPP extends XMPPHP_XMPP {
+
+ function messageplus($to, $body, $type = 'chat', $subject = null, $payload = null) {
+ $to = htmlspecialchars($to);
+ $body = htmlspecialchars($body);
+ $subject = htmlspecialchars($subject);
+
+ $jid = jabber_daemon_address();
+
+ $out = "<message from='$jid' to='$to' type='$type'>";
+ if($subject) $out .= "<subject>$subject</subject>";
+ $out .= "<body>$body</body>";
+ if($payload) $out .= $payload;
+ $out .= "</message>";
+
+ $this->send($out);
+ }
+}
+
function jabber_valid_base_jid($jid) {
# Cheap but effective
return Validate::email($jid);
@@ -44,7 +65,7 @@ function jabber_daemon_address() {
function jabber_connect($resource=NULL) {
static $conn = NULL;
if (!$conn) {
- $conn = new XMPPHP_XMPP(common_config('xmpp', 'host') ?
+ $conn = new Laconica_XMPP(common_config('xmpp', 'host') ?
common_config('xmpp', 'host') :
common_config('xmpp', 'server'),
common_config('xmpp', 'port'),
@@ -86,28 +107,10 @@ function jabber_send_notice($to, $notice) {
}
$msg = jabber_format_notice($profile, $notice);
$entry = jabber_format_entry($profile, $notice);
- $stanza = jabber_make_stanza($to, $msg, 'chat', NULL, $entry);
- common_log(LOG_DEBUG, 'full stanza = ' . $stanza, __FILE__);
- $conn->send($stanza);
+ $conn->messageplus($to, $msg, 'chat', NULL, $entry);
return true;
}
-function jabber_make_stanza($to, $body, $type = 'chat', $subject = null, $payload = null) {
- $to = htmlspecialchars($to);
- $body = htmlspecialchars($body);
- $subject = htmlspecialchars($subject);
-
- $jid = jabber_daemon_address();
-
- $out = "<message from='$jid' to='$to' type='$type'>";
- if($subject) $out .= "<subject>$subject</subject>";
- $out .= "<body>$body</body>";
- if($payload) $out .= $payload;
- $out .= "</message>";
-
- return $out;
-}
-
# Extra stuff defined by Twitter, needed by twitter clients
function jabber_format_entry($profile, $notice) {