5bfe7ae11641fd11ed2210ab2d311831432134a3
[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         int aide = (CC->user.axlevel >= 6);
85
86         cprintf("<query xmlns=\"jabber:iq:roster\">");
87
88         cptr = CtdlGetContextArray(&nContexts);
89         if (cptr) {
90                 for (i=0; i<nContexts; i++) {
91                         if (cptr[i].logged_in) {
92                                 if (
93                                         (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))
94                                         && (cptr[i].user.usernum != CC->user.usernum)
95                                 ) {
96                                         xmpp_roster_item(&cptr[i]);
97                                 }
98                         }
99                 }
100                 free (cptr);
101         }
102         cprintf("</query>");
103 }
104
105
106 /*
107  * TODO: handle queries on some or all of these namespaces
108  *
109 xmpp_query_namespace(purple5b5c1e58, splorph.xand.com, http://jabber.org/protocol/disco#items:query)
110 xmpp_query_namespace(purple5b5c1e59, splorph.xand.com, http://jabber.org/protocol/disco#info:query)
111 xmpp_query_namespace(purple5b5c1e5a, , vcard-temp:query)
112  *
113  */
114
115 void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns)
116 {
117         int supported_namespace = 0;
118
119         /* We need to know before we begin the response whether this is a supported namespace, so
120          * unfortunately all supported namespaces need to be defined here *and* down below where
121          * they are handled.
122          */
123         if (
124                 (!strcasecmp(query_xmlns, "jabber:iq:roster:query"))
125                 && (!strcasecmp(query_xmlns, "jabber:iq:auth:query"))
126         ) {
127                 supported_namespace = 1;
128         }
129
130         CtdlLogPrintf(CTDL_DEBUG, "xmpp_query_namespace(%s, %s, %s, %s)\n", iq_id, iq_from, iq_to, query_xmlns);
131
132         /*
133          * Beginning of query result.
134          */
135         if (supported_namespace) {
136                 cprintf("<iq type=\"result\" ");
137         }
138         else {
139                 cprintf("<iq type=\"error\" ");
140         }
141         if (!IsEmptyStr(iq_from)) {
142                 cprintf("to=\"%s\" ", iq_from);
143         }
144         cprintf("id=\"%s\">", iq_id);
145
146         /*
147          * Is this a query we know how to handle?
148          */
149
150         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
151                 xmpp_iq_roster_query();
152         }
153
154         else if (!strcasecmp(query_xmlns, "jabber:iq:auth:query")) {
155                 cprintf("<query xmlns=\"jabber:iq:auth\">"
156                         "<username/><password/><resource/>"
157                         "</query>"
158                 );
159         }
160
161         else {
162                 CtdlLogPrintf(CTDL_DEBUG, "Unknown namespace; returning <service-unavailable/>\n");
163                 cprintf("<error code=\"503\" type=\"cancel\">"
164                         "<service-unavailable xmlns=\"urn:ietf:params:xml:ns:xmpp-stanzas\"/>"
165                         "</error>"
166                 );
167         }
168
169         /*
170          * End of query result.  If we didn't hit any known namespaces then we should
171          * deliver a "service unavailable" error (see RFC3921 section 2.4 and 11.1.5.4)
172          */
173         cprintf("</iq>");
174 }