* More XMPP tweaks, none of which fixed our current batch of problems
authorArt Cancro <ajc@citadel.org>
Tue, 23 Feb 2010 05:17:04 +0000 (05:17 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 23 Feb 2010 05:17:04 +0000 (05:17 +0000)
citadel/modules/xmpp/serv_xmpp.c
citadel/modules/xmpp/serv_xmpp.h
citadel/modules/xmpp/xmpp_presence.c
citadel/modules/xmpp/xmpp_query_namespace.c

index 0ccf6861eb4b4e693d29cbda82c5a6dfa78ff453..b3cdab14ff87455203f189d6e7fb83af7c8e069e 100644 (file)
@@ -392,7 +392,8 @@ void xmpp_xml_end(void *data, const char *supplied_el) {
 
        else if (!strcasecmp(el, "stream")) {
                CtdlLogPrintf(CTDL_DEBUG, "XMPP client shut down their stream\n");
-               cprintf("<stream>\n");
+               xmpp_massacre_roster();
+               cprintf("</stream>\n");
                CC->kill_me = 1;
        }
 
index dedc599efc869f524fa056ec7494c453109167d0..901ad883e3b65a7d5e7168cb8813333c884c6fcd 100644 (file)
@@ -81,3 +81,4 @@ void xmpp_presence_notify(char *, int);
 void xmpp_roster_item(struct CitContext *);
 void xmpp_send_message(char *, char *);
 void xmpp_non_sasl_authenticate(char *, char *, char *, char *);
+void xmpp_massacre_roster(void);
index a60580fae4ff4d1d74f16b63f2048dd35f418125..9eaf88728e7eae30ed3dc4c67281d8da8fe68733 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Handle XMPP presence exchanges
  *
- * Copyright (c) 2007-2009 by Art Cancro
+ * Copyright (c) 2007-2010 by Art Cancro
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -70,16 +70,17 @@ void xmpp_wholist_presence_dump(void)
        int aide = (CC->user.axlevel >= 6);
 
        cptr = CtdlGetContextArray(&nContexts);
-       if (!cptr)
-               return ; /** FIXME: Does xmpp need to send something to maintain the protocol?  */
-               
+       if (!cptr) {
+               return;
+       }
+
        for (i=0; i<nContexts; i++) {
                if (cptr[i].logged_in) {
                        if (
                                (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))  /* aides see everyone */
                                && (cptr[i].user.usernum != CC->user.usernum)   /* don't show myself */
                                && (cptr[i].can_receive_im)                     /* IM-capable session */
-                          ) {
+                       ) {
                                cprintf("<presence type=\"available\" from=\"%s\"></presence>",
                                        cptr[i].cs_inet_email);
                        }
@@ -89,6 +90,28 @@ void xmpp_wholist_presence_dump(void)
 }
 
 
+/*
+ * Function to remove a buddy subscription and delete from the roster
+ * (used in several places)
+ */
+void xmpp_destroy_buddy(char *presence_jid) {
+       static int unsolicited_id = 1;
+
+       /* Transmit non-presence information */
+       cprintf("<presence type=\"unavailable\" from=\"%s\"></presence>", presence_jid);
+       cprintf("<presence type=\"unsubscribed\" from=\"%s\"></presence>", presence_jid);
+
+       /* Do an unsolicited roster update that deletes the contact. */
+       cprintf("<iq id=\"unbuddy_%x\" type=\"result\">", ++unsolicited_id);
+       cprintf("<query xmlns=\"jabber:iq:roster\">");
+       cprintf("<item jid=\"%s\" subscription=\"remove\">", presence_jid);
+       cprintf("<group>%s</group>", config.c_humannode);
+       cprintf("</item>");
+       cprintf("</query>"
+               "</iq>"
+       );
+}
+
 
 /*
  * When a user logs in or out of the local Citadel system, notify all XMPP sessions about it.
@@ -101,10 +124,12 @@ void xmpp_presence_notify(char *presence_jid, int event_type) {
        int aide = (CC->user.axlevel >= 6);
 
        if (IsEmptyStr(presence_jid)) return;
+       if (CC->kill_me) return;
 
        cptr = CtdlGetContextArray(&nContexts);
-       if (!cptr)
-               return ; /** FIXME: Does XMPP need to send something to maintain the protocol?  */
+       if (!cptr) {
+               return;
+       }
                
        /* Count the visible sessions for this user */
        for (i=0; i<nContexts; i++) {
@@ -147,18 +172,38 @@ void xmpp_presence_notify(char *presence_jid, int event_type) {
        if (visible_sessions == 0) {
                CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged out\n", CC->cs_pid, presence_jid);
 
-               /* Transmit non-presence information */
-               cprintf("<presence type=\"unavailable\" from=\"%s\"></presence>", presence_jid);
-               cprintf("<presence type=\"unsubscribed\" from=\"%s\"></presence>", presence_jid);
-
-               /* Do an unsolicited roster update that deletes the contact. */
-               cprintf("<iq id=\"unsolicited_%x\" type=\"result\">", ++unsolicited_id);
-               cprintf("<query xmlns=\"jabber:iq:roster\">");
-               cprintf("<item jid=\"%s\" subscription=\"remove\">", presence_jid);
-               cprintf("<group>%s</group>", config.c_humannode);
-               cprintf("</item>");
-               cprintf("</query>"
-                       "</iq>");
+               xmpp_destroy_buddy(presence_jid);
        }
        free(cptr);
 }
+
+
+
+/*
+ * Upon logout we make an attempt to delete the whole roster, in order to
+ * try to keep "ghost" buddies from remaining in the client-side roster.
+ */
+void xmpp_massacre_roster(void)
+{
+       struct CitContext *cptr;
+       int nContexts, i;
+       int aide = (CC->user.axlevel >= 6);
+
+       cptr = CtdlGetContextArray(&nContexts);
+       if (cptr) {
+               for (i=0; i<nContexts; i++) {
+                       if (cptr[i].logged_in) {
+                               if (
+                                       (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))
+                                       && (cptr[i].user.usernum != CC->user.usernum)
+                               ) {
+                                       xmpp_destroy_buddy(cptr[i].cs_inet_email);
+                               }
+                       }
+               }
+               free (cptr);
+       }
+}
+
+
+
index 6dad562b399ac1d16f642a00ff6d770ff7c8998c..42875074ee7c882766ffe7db4f80eee9ba7da640 100644 (file)
@@ -122,7 +122,7 @@ void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_x
         */
        if (
                (!strcasecmp(query_xmlns, "jabber:iq:roster:query"))
-               && (!strcasecmp(query_xmlns, "jabber:iq:auth:query"))
+               || (!strcasecmp(query_xmlns, "jabber:iq:auth:query"))
        ) {
                supported_namespace = 1;
        }