summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-12-04 12:47:54 -0500
committerEvan Prodromou <evan@controlyourself.ca>2008-12-04 12:47:54 -0500
commit0a4905035a9aae78585b41021da311ca7ee5a7a7 (patch)
treecf08b33345897931aa97773ee94fce911d085d1b /scripts
parent5eb729b5d5ef3a6551fcb7a2b77340dc59d019e7 (diff)
new auto-reply regexp (thanks @lilyhill!)
darcs-hash:20081204174754-5ed1f-dcce210332c55a544c35d535c3f3008aa8c165d3.gz
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/xmppdaemon.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/scripts/xmppdaemon.php b/scripts/xmppdaemon.php
index 14c07f000..90506a0f4 100755
--- a/scripts/xmppdaemon.php
+++ b/scripts/xmppdaemon.php
@@ -67,9 +67,9 @@ class XMPPDaemon extends Daemon {
if (!$this->conn) {
return false;
}
-
+
$this->conn->setReconnectTimeout(600);
-
+
jabber_send_presence("Send me a message to post a notice", 'available',
NULL, 'available', 100);
return !$this->conn->isDisconnected();
@@ -78,14 +78,14 @@ class XMPPDaemon extends Daemon {
function name() {
return strtolower('xmppdaemon.'.$this->resource);
}
-
+
function run() {
if ($this->connect()) {
-
+
$this->conn->addEventHandler('message', 'handle_message', $this);
$this->conn->addEventHandler('presence', 'handle_presence', $this);
$this->conn->addEventHandler('reconnect', 'handle_reconnect', $this);
-
+
$this->conn->process();
}
}
@@ -94,7 +94,7 @@ class XMPPDaemon extends Daemon {
$this->conn->processUntil('session_start');
$this->conn->presence('Send me a message to post a notice', 'available', NULL, 'available', 100);
}
-
+
function get_user($from) {
$user = User::staticGet('jabber', jabber_normalize_jid($from));
return $user;
@@ -139,7 +139,7 @@ class XMPPDaemon extends Daemon {
return;
} else if ($this->is_direct($pl['body'])) {
preg_match_all('/d[\ ]*([a-z0-9]{1,64})/', $pl['body'], $to);
-
+
$to = preg_replace('/^d([\ ])*/', '', $to[0][0]);
$body = preg_replace('/d[\ ]*('. $to .')[\ ]*/', '', $pl['body']);
$this->add_direct($user, $body, $to, $from);
@@ -151,7 +151,7 @@ class XMPPDaemon extends Daemon {
}
$this->add_notice($user, $pl);
}
-
+
$user->free();
unset($user);
}
@@ -159,7 +159,7 @@ class XMPPDaemon extends Daemon {
function is_self($from) {
return preg_match('/^'.strtolower(jabber_daemon_address()).'/', strtolower($from));
}
-
+
function get_ofrom($pl) {
$xml = $pl['raw'];
$addresses = $xml->sub('addresses');
@@ -195,7 +195,7 @@ class XMPPDaemon extends Daemon {
}
function is_autoreply($txt) {
- if (preg_match('/[\[\(]?[Aa]uto-?[Rr]eply[\]\)]/', $txt)) {
+ if (preg_match('/[\[\(]?[Aa]uto[-\s]?[Rr]e(ply|sponse)[\]\)]/', $txt)) {
return true;
} else {
return false;
@@ -209,7 +209,7 @@ class XMPPDaemon extends Daemon {
return false;
}
}
-
+
function is_direct($txt) {
if (strtolower(substr($txt, 0, 2))=='d ') {
return true;
@@ -247,7 +247,7 @@ class XMPPDaemon extends Daemon {
$notice->free();
unset($notice);
}
-
+
function handle_presence(&$pl) {
$from = jabber_normalize_jid($pl['from']);
switch ($pl['type']) {