Deliver a reply to a Jabber 'roster' query.
authorArt Cancro <ajc@citadel.org>
Wed, 28 Nov 2007 16:26:21 +0000 (16:26 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 28 Nov 2007 16:26:21 +0000 (16:26 +0000)
citadel/modules/jabber/serv_xmpp.c
citadel/modules/jabber/serv_xmpp.h
citadel/modules/jabber/xmpp_query_namespace.c

index b22b551cc7aa128aab1d448da582e2b58e6abd1f..27c4f6a6015c9d8466d4da8736eec41849adb4c7 100644 (file)
@@ -128,6 +128,9 @@ void xmpp_xml_start(void *data, const char *supplied_el, const char **attr) {
                        else if (!strcasecmp(attr[i], "id")) {
                                safestrncpy(XMPP->iq_id, attr[i+1], sizeof XMPP->iq_id);
                        }
+                       else if (!strcasecmp(attr[i], "from")) {
+                               safestrncpy(XMPP->iq_from, attr[i+1], sizeof XMPP->iq_from);
+                       }
                        else if (!strcasecmp(attr[i], "to")) {
                                safestrncpy(XMPP->iq_to, attr[i+1], sizeof XMPP->iq_to);
                        }
@@ -179,7 +182,8 @@ void xmpp_xml_end(void *data, const char *supplied_el) {
                         * Query on a namespace
                         */
                        if (!IsEmptyStr(XMPP->iq_query_xmlns)) {
-                               xmpp_query_namespace(XMPP->iq_id, XMPP->iq_to, XMPP->iq_query_xmlns);
+                               xmpp_query_namespace(XMPP->iq_id, XMPP->iq_from,
+                                               XMPP->iq_to, XMPP->iq_query_xmlns);
                        }
 
                        /*
@@ -227,6 +231,7 @@ void xmpp_xml_end(void *data, const char *supplied_el) {
 
                /* Now clear these fields out so they don't get used by a future stanza */
                XMPP->iq_id[0] = 0;
+               XMPP->iq_from[0] = 0;
                XMPP->iq_to[0] = 0;
                XMPP->iq_type[0] = 0;
                XMPP->iq_client_resource[0] = 0;
index 33b1a74b655d6dfc846fd95131359c402479c4e0..0c97c0fbc5ef6bb05d9ff56bf89ab0ba56cba046 100644 (file)
@@ -11,9 +11,10 @@ struct citxmpp {                     /* Information about the current session */
        int chardata_alloc;
        char client_jid[256];           /* "full JID" of the client */
 
-       char iq_type[256];
-       char iq_id[256];                /* for <iq> stanzas */
-       char iq_to[256];                /* for <iq> stanzas */
+       char iq_type[256];              /* for <iq> stanzas */
+       char iq_id[256];
+       char iq_from[256];
+       char iq_to[256];
        char iq_client_resource[256];   /* resource name requested by the client */
        int iq_session;                 /* nonzero == client is requesting a session */
        char iq_query_xmlns[256];       /* Namespace of <query> */
@@ -28,4 +29,4 @@ void xmpp_greeting(void);
 void xmpp_command_loop(void);
 void xmpp_sasl_auth(char *, char *);
 void xmpp_output_auth_mechs(void);
-void xmpp_query_namespace(char *, char *, char *);
+void xmpp_query_namespace(char *, char *, char *, char *);
index bb5a5ab41bbfe4dd15fec60d2a527fcdce5173a1..5fd3e223e23c48582de9914da9471cc761e92c60 100644 (file)
 #include <expat.h>
 #include "serv_xmpp.h"
 
+
+/* 
+ * Return the results for a "jabber:iq:roster:query"
+ *
+ * Since we are not yet managing a roster, we simply return the entire wholist.
+ *
+ */
+void jabber_iq_roster_query(void)
+{
+       struct CitContext *cptr;
+       int aide = (CC->user.axlevel >= 6);
+
+       cprintf("<query xmlns=\"jabber:iq:roster\">");
+
+       for (cptr = ContextList; cptr != NULL; cptr = cptr->next) {
+
+               if (((cptr->cs_flags&CS_STEALTH)==0) || (aide)) {
+                       cprintf("<item jid=\"%s\" name=\"%s\" subscription=\"both\">",
+                               cptr->cs_inet_email,
+                               cptr->user.fullname
+                       );
+                       cprintf("<group>%s</group>", config.c_humannode);
+                       cprintf("</item>");
+               }
+       }
+
+/**** these remain here for documentation example only
+
+       cprintf("<item jid=\"romeo@example.net\" name=\"Romeo\" subscription=\"both\">");
+       cprintf("<group>Friends</group>");
+       cprintf("</item>");
+
+       cprintf("<item jid=\"mercutio@example.org\" name=\"Mercutio\" subscription=\"from\">");
+       cprintf("<group>Friends</group>");
+       cprintf("</item>");
+
+       cprintf("<item jid=\"benvolio@example.org\" name=\"Benvolio\" subscription=\"both\">");
+       cprintf("<group>Friends</group>");
+       cprintf("</item>");
+
+ ****/
+
+       cprintf("</query>");
+}
+
+
 /*
  * TODO: handle queries on some or all of these namespaces
-
+ *
 xmpp_query_namespace(purple5b5c1e58, splorph.xand.com, http://jabber.org/protocol/disco#items:query)
 xmpp_query_namespace(purple5b5c1e59, splorph.xand.com, http://jabber.org/protocol/disco#info:query)
 xmpp_query_namespace(purple5b5c1e5a, , vcard-temp:query)
 xmpp_query_namespace(purple5b5c1e5b, , jabber:iq:roster:query)
+ *
  */
 
-void xmpp_query_namespace(char *iq_id, char *iq_to, char *query_xmlns) {
+void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns) {
 
-       lprintf(CTDL_DEBUG, "\e[31mxmpp_query_namespace(%s, %s, %s)\e[0m\n", iq_id, iq_to, query_xmlns);
+       lprintf(CTDL_DEBUG, "\e[31mxmpp_query_namespace(%s, %s, %s, %s)\e[0m\n",
+               iq_id, iq_from, iq_to, query_xmlns);
+
+       /*
+        * Beginning of query result.
+        */
+       cprintf("<iq type=\"result\" ");
+       if (!IsEmptyStr(iq_from)) {
+               cprintf("to=\"%s\" ", iq_from);
+       }
+       cprintf("id=\"%s\">", iq_id);
+
+       /*
+        * Is this a query we know how to handle?
+        */
+       if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
+               jabber_iq_roster_query();
+       }
 
        /*
-        * Unknown query.  Return the XML equivalent of a blank stare (empty result)
+        * End of query result.  If we didn't hit any known namespaces then we will
+        * have simply delivered an empty result stanza, which should be ok.
         */
-       cprintf("<iq type=\"result\" id=\"%s\">", iq_id);
        cprintf("</iq>");
 
 }