* More license declarations
[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-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 jabber_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 jabber_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                 return ; /** FIXME: Does jabber need to send something to maintain the protocol?  */
91                 
92         for (i=0; i<nContexts; i++) {
93                 if (cptr[i].logged_in) {
94                         if (
95                            (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))
96                            && (cptr[i].user.usernum != CC->user.usernum)
97                            ) {
98                                 jabber_roster_item(&cptr[i]);
99                         }
100                 }
101         }
102         free (cptr);
103         cprintf("</query>");
104 }
105
106
107 /*
108  * TODO: handle queries on some or all of these namespaces
109  *
110 xmpp_query_namespace(purple5b5c1e58, splorph.xand.com, http://jabber.org/protocol/disco#items:query)
111 xmpp_query_namespace(purple5b5c1e59, splorph.xand.com, http://jabber.org/protocol/disco#info:query)
112 xmpp_query_namespace(purple5b5c1e5a, , vcard-temp:query)
113  *
114  */
115
116 void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns) {
117
118         CtdlLogPrintf(CTDL_DEBUG, "xmpp_query_namespace(%s, %s, %s, %s)\n", iq_id, iq_from, iq_to, query_xmlns);
119
120         /*
121          * Beginning of query result.
122          */
123         cprintf("<iq type=\"result\" ");
124         if (!IsEmptyStr(iq_from)) {
125                 cprintf("to=\"%s\" ", iq_from);
126         }
127         cprintf("id=\"%s\">", iq_id);
128
129         /*
130          * Is this a query we know how to handle?
131          */
132
133         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
134                 jabber_iq_roster_query();
135         }
136
137         else if (!strcasecmp(query_xmlns, "jabber:iq:auth:query")) {
138                 cprintf("<query xmlns=\"jabber:iq:auth\">"
139                         "<username/><password/><resource/>"
140                         "</query>"
141                 );
142         }
143
144         /*
145          * End of query result.  If we didn't hit any known namespaces then we will
146          * have simply delivered an empty result stanza, which should be ok.
147          */
148         cprintf("</iq>");
149
150 }