XMPP: Cleanup
[citadel.git] / citadel / modules / xmpp / xmpp_query_namespace.c
1 /*
2  * Handle <iq> <get> <query> type situations (namespace queries)
3  *
4  * Copyright (c) 2007-2009 by Art Cancro
5  *
6  *  This program is open source software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License version 3.
8  *  
9  *  
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  
17  *  
18  *  
19  */
20
21 #include "sysdep.h"
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <stdio.h>
25 #include <fcntl.h>
26 #include <signal.h>
27 #include <pwd.h>
28 #include <errno.h>
29 #include <sys/types.h>
30
31 #if TIME_WITH_SYS_TIME
32 # include <sys/time.h>
33 # include <time.h>
34 #else
35 # if HAVE_SYS_TIME_H
36 #  include <sys/time.h>
37 # else
38 #  include <time.h>
39 # endif
40 #endif
41
42 #include <sys/wait.h>
43 #include <string.h>
44 #include <limits.h>
45 #include <ctype.h>
46 #include <expat.h>
47 #include <libcitadel.h>
48 #include "citadel.h"
49 #include "server.h"
50 #include "citserver.h"
51 #include "support.h"
52 #include "config.h"
53 #include "internet_addressing.h"
54 #include "md5.h"
55 #include "ctdl_module.h"
56 #include "serv_xmpp.h"
57
58
59 /*
60  * Output a single roster item, for roster queries or pushes
61  */
62 void xmpp_roster_item(struct CitContext *cptr)
63 {
64
65         XPUT("<item subscription=\"both\" jid=\"");
66         XPutProp(cptr->cs_inet_email, strlen(cptr->cs_inet_email));
67         XPUT("\" name=\"");
68         XPutProp(cptr->user.fullname, strlen(cptr->user.fullname));
69         XPUT("\">"
70              "<group>");
71         XPutBody(CFG_KEY(c_humannode));
72         XPUT("</group>"
73              "</item>");
74 }
75
76 /* 
77  * Return the results for a "jabber:iq:roster:query"
78  *
79  * Since we are not yet managing a roster, we simply return the entire wholist
80  * (minus any entries for this user -- don't tell me about myself)
81  *
82  */
83 void xmpp_iq_roster_query(void)
84 {
85         struct CitContext *cptr;
86         int nContexts, i;
87
88         XPUT("<query xmlns=\"jabber:iq:roster\">");
89         cptr = CtdlGetContextArray(&nContexts);
90         if (cptr) {
91                 for (i=0; i<nContexts; i++) {
92                         if (xmpp_is_visible(&cptr[i], CC)) {
93                                 XMPP_syslog(LOG_DEBUG, "Rosterizing %s\n", cptr[i].user.fullname);
94                                 xmpp_roster_item(&cptr[i]);
95                         }
96                 }
97                 free (cptr);
98         }
99         XPUT("</query>");
100 }
101
102
103 /*
104  * TODO: handle queries on some or all of these namespaces
105  *
106 xmpp_query_namespace(purple5b5c1e58, splorph.xand.com, http://jabber.org/protocol/disco#items:query)
107 xmpp_query_namespace(purple5b5c1e59, splorph.xand.com, http://jabber.org/protocol/disco#info:query)
108 xmpp_query_namespace(purple5b5c1e5a, , vcard-temp:query)
109  *
110  */
111
112 void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns)
113 {
114         int supported_namespace = 0;
115         int roster_query = 0;
116
117         /* We need to know before we begin the response whether this is a supported namespace, so
118          * unfortunately all supported namespaces need to be defined here *and* down below where
119          * they are handled.
120          */
121         if (
122                 (!strcasecmp(query_xmlns, "jabber:iq:roster:query"))
123                 || (!strcasecmp(query_xmlns, "jabber:iq:auth:query"))
124         ) {
125                 supported_namespace = 1;
126         }
127
128         XMPP_syslog(LOG_DEBUG, "xmpp_query_namespace(%s, %s, %s, %s)\n", iq_id, iq_from, iq_to, query_xmlns);
129
130         /*
131          * Beginning of query result.
132          */
133         if (supported_namespace) {
134                 XPUT("<iq type=\"result\" ");
135         }
136         else {
137                  XPUT("<iq type=\"error\" ");
138         }
139         if (!IsEmptyStr(iq_from)) {
140                 XPUT("to=\"");
141                 XPutProp(iq_from, strlen(iq_from));
142                 XPUT("\" ");
143         }
144         XPUT("id=\"");
145         XPutProp(iq_id, strlen(iq_id));
146         XPUT("\">");
147
148         /*
149          * Is this a query we know how to handle?
150          */
151
152         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
153                 roster_query = 1;
154                 xmpp_iq_roster_query();
155         }
156
157         else if (!strcasecmp(query_xmlns, "jabber:iq:auth:query")) {
158                 XPUT("<query xmlns=\"jabber:iq:auth\">"
159                      "<username/><password/><resource/>"
160                      "</query>"
161                 );
162         }
163
164         /*
165          * If we didn't hit any known query namespaces then we should deliver a
166          * "service unavailable" error (see RFC3921 section 2.4 and 11.1.5.4)
167          */
168
169         else {
170                 XMPP_syslog(LOG_DEBUG,
171                             "Unknown query namespace '%s' - returning <service-unavailable/>\n",
172                             query_xmlns
173                 );
174                 XPUT("<error code=\"503\" type=\"cancel\">"
175                      "<service-unavailable xmlns=\"urn:ietf:params:xml:ns:xmpp-stanzas\"/>"
176                      "</error>"
177                 );
178         }
179
180         XPUT("</iq>");
181
182         /* If we told the client who is on the roster, we also need to tell the client
183          * who is *not* on the roster.  (It's down here because we can't do it in the same
184          * stanza; this will be an unsolicited push.)
185          */
186         if (roster_query) {
187                 xmpp_delete_old_buddies_who_no_longer_exist_from_the_client_roster();
188         }
189 }