* I think this cleans up the remaining XMPP bugs. We now see the correct number...
authorArt Cancro <ajc@citadel.org>
Mon, 10 May 2010 21:22:05 +0000 (21:22 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 10 May 2010 21:22:05 +0000 (21:22 +0000)
citadel/modules/xmpp/serv_xmpp.c
citadel/modules/xmpp/xmpp_presence.c
citadel/modules/xmpp/xmpp_query_namespace.c

index e92d7ddc5f0ef7e2bdc96c6f629a567f1684cb19..8c7297350b2cb976ac8f66e10c553ed23595a68f 100644 (file)
@@ -498,7 +498,6 @@ void xmpp_command_loop(void) {
  * Async loop for XMPP sessions (handles the transmission of unsolicited stanzas)
  */
 void xmpp_async_loop(void) {
-       CtdlLogPrintf(CTDL_DEBUG, "\033[35m xmpp_async_loop() IS BEING CALLED!! \033[0m\n");
        xmpp_process_events();
        xmpp_output_incoming_messages();
 }
index 557361169af18a751b9d7bdf96bd50ffb6e79724..5dadfe38ed60837b926fcfca6e54f2b177edbb95 100644 (file)
@@ -30,6 +30,7 @@
 #include <pwd.h>
 #include <errno.h>
 #include <sys/types.h>
+#include <assert.h>
 
 #if TIME_WITH_SYS_TIME
 # include <sys/time.h>
@@ -127,7 +128,6 @@ void xmpp_destroy_buddy(char *presence_jid) {
        if (!XMPP) return;
        if (!XMPP->client_jid) return;
 
-       CtdlLogPrintf(CTDL_DEBUG, "\033[31mdestroy_buddy(%s)\033[0m\n", presence_jid);
        /* Transmit non-presence information */
        cprintf("<presence type=\"unavailable\" from=\"%s\" to=\"%s\"></presence>",
                presence_jid, XMPP->client_jid
@@ -162,6 +162,7 @@ void xmpp_presence_notify(char *presence_jid, int event_type) {
        static int unsolicited_id;
        int visible_sessions = 0;
        int nContexts, i;
+       int which_cptr_is_relevant = (-1);
 
        if (IsEmptyStr(presence_jid)) return;
        if (CC->kill_me) return;
@@ -173,8 +174,11 @@ void xmpp_presence_notify(char *presence_jid, int event_type) {
 
        /* Count the visible sessions for this user */
        for (i=0; i<nContexts; i++) {
-               if (xmpp_is_visible(CC, &cptr[i])) {
+               if ( (!strcasecmp(cptr[i].cs_inet_email, presence_jid))
+                  && (xmpp_is_visible(&cptr[i], CC))
+               )  {
                        ++visible_sessions;
+                       which_cptr_is_relevant = i;
                }
        }
 
@@ -183,31 +187,26 @@ void xmpp_presence_notify(char *presence_jid, int event_type) {
 
        if ( (event_type == XMPP_EVT_LOGIN) && (visible_sessions == 1) ) {
 
-               CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged in\n", CC->cs_pid, presence_jid);
+               CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged in\n",
+                       CC->cs_pid, presence_jid);
 
                /* Do an unsolicited roster update that adds a new contact. */
-               for (i=0; i<nContexts; i++) {
-                       if (xmpp_is_visible(CC, &cptr[i])) {
-                               if (!strcasecmp(cptr[i].cs_inet_email, presence_jid)) {
-                                       cprintf("<iq id=\"unsolicited_%x\" type=\"result\">",
-                                               ++unsolicited_id);
-                                       cprintf("<query xmlns=\"jabber:iq:roster\">");
-                                       xmpp_roster_item(&cptr[i]);
-                                       cprintf("</query>"
-                                               "</iq>");
-                               }
-                       }
-               }
+               assert(which_cptr_is_relevant >= 0);
+               cprintf("<iq id=\"unsolicited_%x\" type=\"result\">", ++unsolicited_id);
+               cprintf("<query xmlns=\"jabber:iq:roster\">");
+               xmpp_roster_item(&cptr[which_cptr_is_relevant]);
+               cprintf("</query></iq>");
 
                /* Transmit presence information */
                xmpp_indicate_presence(presence_jid);
        }
 
        if (visible_sessions == 0) {
-               CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged out\n", CC->cs_pid, presence_jid);
-
+               CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged out\n",
+                       CC->cs_pid, presence_jid);
                xmpp_destroy_buddy(presence_jid);
        }
+
        free(cptr);
 }
 
index 5f6465778a1e8d1a8c2ede551ca1bc1619838ef6..720233e03c9f091d181642c945671c8526639dfd 100644 (file)
@@ -62,7 +62,6 @@
  * Output a single roster item, for roster queries or pushes
  */
 void xmpp_roster_item(struct CitContext *cptr) {
-       CtdlLogPrintf(CTDL_DEBUG, "\033[32mxmpp_roster_item(%s)\033[0m\n", cptr->cs_inet_email);
        cprintf("<item jid=\"%s\" name=\"%s\" subscription=\"both\">",
                cptr->cs_inet_email,
                cptr->user.fullname
@@ -83,8 +82,6 @@ void xmpp_iq_roster_query(void)
        struct CitContext *cptr;
        int nContexts, i;
 
-       CtdlLogPrintf(CTDL_DEBUG, "\033[36m ROSTER QUERY !! \033[0m\n");
-
        cprintf("<query xmlns=\"jabber:iq:roster\">");
        cptr = CtdlGetContextArray(&nContexts);
        if (cptr) {