98f62285a1216989c3090a6e7ffcaee99f3e87a9
[citadel.git] / citadel / modules / jabber / xmpp_query_namespace.c
1 /*
2  * $Id$ 
3  *
4  * Handle <iq> <get> <query> type situations (namespace queries)
5  *
6  * Copyright (c) 2007 by Art Cancro
7  * This code is released under the terms of the GNU General Public License.
8  *
9  */
10
11 #include "sysdep.h"
12 #include <stdlib.h>
13 #include <unistd.h>
14 #include <stdio.h>
15 #include <fcntl.h>
16 #include <signal.h>
17 #include <pwd.h>
18 #include <errno.h>
19 #include <sys/types.h>
20
21 #if TIME_WITH_SYS_TIME
22 # include <sys/time.h>
23 # include <time.h>
24 #else
25 # if HAVE_SYS_TIME_H
26 #  include <sys/time.h>
27 # else
28 #  include <time.h>
29 # endif
30 #endif
31
32 #include <sys/wait.h>
33 #include <string.h>
34 #include <limits.h>
35 #include <ctype.h>
36 #include <libcitadel.h>
37 #include "citadel.h"
38 #include "server.h"
39 #include "citserver.h"
40 #include "support.h"
41 #include "config.h"
42 #include "internet_addressing.h"
43 #include "md5.h"
44 #include "ctdl_module.h"
45
46 #ifdef HAVE_EXPAT
47 #include <expat.h>
48 #include "serv_xmpp.h"
49
50
51 /*
52  * Output a single roster item, for roster queries or pushes
53  */
54 void jabber_roster_item(struct CitContext *cptr) {
55         cprintf("<item jid=\"%s\" name=\"%s\" subscription=\"both\">",
56                 cptr->cs_inet_email,
57                 cptr->user.fullname
58         );
59         cprintf("<group>%s</group>", config.c_humannode);
60         cprintf("</item>");
61 }
62
63 /* 
64  * Return the results for a "jabber:iq:roster:query"
65  *
66  * Since we are not yet managing a roster, we simply return the entire wholist
67  * (minus any entries for this user -- don't tell me about myself)
68  *
69  */
70 void jabber_iq_roster_query(void)
71 {
72         struct CitContext *cptr;
73         int nContexts, i;
74         int aide = (CC->user.axlevel >= 6);
75
76         cprintf("<query xmlns=\"jabber:iq:roster\">");
77
78         cptr = CtdlGetContextArray(&nContexts);
79         if (!cptr)
80                 return ; /** FIXME: Does jabber need to send something to maintain the protocol?  */
81                 
82         for (i=0; i<nContexts; i++) {
83                 if (cptr[i].logged_in) {
84                         if (
85                            (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))
86                            && (cptr[i].user.usernum != CC->user.usernum)
87                            ) {
88                                 jabber_roster_item(&cptr[i]);
89                         }
90                 }
91         }
92         free (cptr);
93         cprintf("</query>");
94 }
95
96
97 /*
98  * TODO: handle queries on some or all of these namespaces
99  *
100 xmpp_query_namespace(purple5b5c1e58, splorph.xand.com, http://jabber.org/protocol/disco#items:query)
101 xmpp_query_namespace(purple5b5c1e59, splorph.xand.com, http://jabber.org/protocol/disco#info:query)
102 xmpp_query_namespace(purple5b5c1e5a, , vcard-temp:query)
103  *
104  */
105
106 void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns) {
107
108         lprintf(CTDL_DEBUG, "xmpp_query_namespace(%s, %s, %s, %s)\n", iq_id, iq_from, iq_to, query_xmlns);
109
110         /*
111          * Beginning of query result.
112          */
113         cprintf("<iq type=\"result\" ");
114         if (!IsEmptyStr(iq_from)) {
115                 cprintf("to=\"%s\" ", iq_from);
116         }
117         cprintf("id=\"%s\">", iq_id);
118
119         /*
120          * Is this a query we know how to handle?
121          */
122
123         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
124                 jabber_iq_roster_query();
125         }
126
127         else if (!strcasecmp(query_xmlns, "jabber:iq:auth:query")) {
128                 cprintf("<query xmlns=\"jabber:iq:auth\">"
129                         "<username/><password/><resource/>"
130                         "</query>"
131                 );
132         }
133
134         /*
135          * End of query result.  If we didn't hit any known namespaces then we will
136          * have simply delivered an empty result stanza, which should be ok.
137          */
138         cprintf("</iq>");
139
140 }
141
142 #endif  /* HAVE_EXPAT */