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