* use eUsrAxlvl all over the place
[citadel.git] / citadel / modules / xmpp / xmpp_presence.c
1 /*
2  * $Id$ 
3  *
4  * Handle XMPP presence exchanges
5  *
6  * Copyright (c) 2007-2010 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
24 #include "sysdep.h"
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <stdio.h>
28 #include <fcntl.h>
29 #include <signal.h>
30 #include <pwd.h>
31 #include <errno.h>
32 #include <sys/types.h>
33
34 #if TIME_WITH_SYS_TIME
35 # include <sys/time.h>
36 # include <time.h>
37 #else
38 # if HAVE_SYS_TIME_H
39 #  include <sys/time.h>
40 # else
41 #  include <time.h>
42 # endif
43 #endif
44
45 #include <sys/wait.h>
46 #include <string.h>
47 #include <limits.h>
48 #include <ctype.h>
49 #include <expat.h>
50 #include <libcitadel.h>
51 #include "citadel.h"
52 #include "server.h"
53 #include "citserver.h"
54 #include "support.h"
55 #include "config.h"
56 #include "internet_addressing.h"
57 #include "md5.h"
58 #include "ctdl_module.h"
59 #include "serv_xmpp.h"
60
61
62
63 /* 
64  * Indicate the presence of another user to the client
65  * (used in several places)
66  */
67 void xmpp_indicate_presence(char *presence_jid)
68 {
69         cprintf("<presence from=\"%s\" to=\"%s\"></presence>",
70                 presence_jid,
71                 XMPP->client_jid
72         );
73 }
74
75
76 /* 
77  * Initial dump of the entire wholist
78  */
79 void xmpp_wholist_presence_dump(void)
80 {
81         struct CitContext *cptr = NULL;
82         int nContexts, i;
83         
84         int aide = (CC->user.axlevel >= AxAideU);
85
86         cptr = CtdlGetContextArray(&nContexts);
87         if (!cptr) {
88                 return;
89         }
90
91         for (i=0; i<nContexts; i++) {
92                 if (cptr[i].logged_in) {
93                         if (
94                                 (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))  /* aides see everyone */
95                                 && (cptr[i].user.usernum != CC->user.usernum)   /* don't show myself */
96                                 && (cptr[i].can_receive_im)                     /* IM-capable session */
97                         ) {
98                                 xmpp_indicate_presence(cptr[i].cs_inet_email);
99                         }
100                 }
101         }
102         free(cptr);
103 }
104
105
106 /*
107  * Function to remove a buddy subscription and delete from the roster
108  * (used in several places)
109  */
110 void xmpp_destroy_buddy(char *presence_jid) {
111         static int unsolicited_id = 1;
112
113         /* Transmit non-presence information */
114         cprintf("<presence type=\"unavailable\" from=\"%s\" to=\"%s\"></presence>",
115                 presence_jid, XMPP->client_jid
116         );
117         cprintf("<presence type=\"unsubscribed\" from=\"%s\" to=\"%s\"></presence>",
118                 presence_jid, XMPP->client_jid
119         );
120         // FIXME ... we should implement xmpp_indicate_nonpresence so we can use it elsewhere
121
122         /* Do an unsolicited roster update that deletes the contact. */
123         cprintf("<iq from=\"%s\" to=\"%s\" id=\"unbuddy_%x\" type=\"result\">",
124                 CC->cs_inet_email,
125                 XMPP->client_jid,
126                 ++unsolicited_id
127         );
128         cprintf("<query xmlns=\"jabber:iq:roster\">");
129         cprintf("<item jid=\"%s\" subscription=\"remove\">", presence_jid);
130         cprintf("<group>%s</group>", config.c_humannode);
131         cprintf("</item>");
132         cprintf("</query>"
133                 "</iq>"
134         );
135 }
136
137
138 /*
139  * When a user logs in or out of the local Citadel system, notify all XMPP sessions about it.
140  */
141 void xmpp_presence_notify(char *presence_jid, int event_type) {
142         struct CitContext *cptr;
143         static int unsolicited_id;
144         int visible_sessions = 0;
145         int nContexts, i;
146         int aide = (CC->user.axlevel >= AxAideU);
147
148         if (IsEmptyStr(presence_jid)) return;
149         if (CC->kill_me) return;
150
151         cptr = CtdlGetContextArray(&nContexts);
152         if (!cptr) {
153                 return;
154         }
155                 
156         /* Count the visible sessions for this user */
157         for (i=0; i<nContexts; i++) {
158                 if (cptr[i].logged_in) {
159                         if (
160                                 (!strcasecmp(cptr[i].cs_inet_email, presence_jid)) 
161                                 && (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))
162                                 && (cptr[i].can_receive_im)
163                         ) {
164                                 ++visible_sessions;
165                         }
166                 }
167         }
168
169         CtdlLogPrintf(CTDL_DEBUG, "%d sessions for <%s> are now visible to session %d\n",
170                 visible_sessions, presence_jid, CC->cs_pid);
171
172         if ( (event_type == XMPP_EVT_LOGIN) && (visible_sessions == 1) ) {
173
174                 CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged in\n", CC->cs_pid, presence_jid);
175
176                 /* Do an unsolicited roster update that adds a new contact. */
177                 for (i=0; i<nContexts; i++) {
178                         if (cptr[i].logged_in) {
179                                 if (!strcasecmp(cptr[i].cs_inet_email, presence_jid)) {
180                                         cprintf("<iq id=\"unsolicited_%x\" type=\"result\">",
181                                                 ++unsolicited_id);
182                                         cprintf("<query xmlns=\"jabber:iq:roster\">");
183                                         xmpp_roster_item(&cptr[i]);
184                                         cprintf("</query>"
185                                                 "</iq>");
186                                 }
187                         }
188                 }
189
190                 /* Transmit presence information */
191                 xmpp_indicate_presence(presence_jid);
192         }
193
194         if (visible_sessions == 0) {
195                 CtdlLogPrintf(CTDL_DEBUG, "Telling session %d that <%s> logged out\n", CC->cs_pid, presence_jid);
196
197                 xmpp_destroy_buddy(presence_jid);
198         }
199         free(cptr);
200 }
201
202
203
204 /*
205  * Upon logout we make an attempt to delete the whole roster, in order to
206  * try to keep "ghost" buddies from remaining in the client-side roster.
207  */
208 void xmpp_massacre_roster(void)
209 {
210         struct CitContext *cptr;
211         int nContexts, i;
212         int aide = (CC->user.axlevel >= AxAideU);
213
214         cptr = CtdlGetContextArray(&nContexts);
215         if (cptr) {
216                 for (i=0; i<nContexts; i++) {
217                         if (cptr[i].logged_in) {
218                                 if (
219                                         (((cptr[i].cs_flags&CS_STEALTH)==0) || (aide))
220                                         && (cptr[i].user.usernum != CC->user.usernum)
221                                 ) {
222                                         xmpp_destroy_buddy(cptr[i].cs_inet_email);
223                                 }
224                         }
225                 }
226                 free (cptr);
227         }
228 }
229
230
231