summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-23 03:29:26 +0100
committerEvan Prodromou <evan@controlyourself.ca>2009-01-23 03:29:26 +0100
commit4bd3eae79dec8fb99602a7a1aef0e96c17972778 (patch)
treeb0d543cc60fab98c0829b00433ef806bfda0528f /lib
parentba3b82c5638ba01fa0da6c9025ba2a4b852e66af (diff)
Make sure group messages go out over Jabber
Diffstat (limited to 'lib')
-rw-r--r--lib/jabber.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/jabber.php b/lib/jabber.php
index 099ded9eb..c33722ea5 100644
--- a/lib/jabber.php
+++ b/lib/jabber.php
@@ -395,6 +395,27 @@ function jabber_broadcast_notice($notice)
}
}
+ // Now, get users who have it in their inbox because of groups
+
+ $user = new User();
+ $user->query('SELECT user.id, user.jabber ' .
+ 'FROM user JOIN notice_inbox ' .
+ 'ON user.id = notice_inbox.user_id ' .
+ 'WHERE notice_inbox.notice_id = ' . $notice->id . ' ' .
+ 'AND notice_inbox.source = 2 ');
+
+ while ($user->fetch()) {
+ if (!array_key_exists($user->id, $sent_to)) {
+ common_log(LOG_INFO,
+ 'Sending notice ' . $notice->id . ' to ' . $user->jabber,
+ __FILE__);
+ $conn->message($user->jabber, $msg, 'chat', null, $entry);
+ // To keep the incoming queue from filling up,
+ // we service it after each send.
+ $conn->processTime(0);
+ }
+ }
+
$user->free();
return true;