8b8b43f6b8d87706edfed58238c8ccf426660946
[citadel.git] / citadel / modules / xmpp / xmpp_messages.c
1 /*
2  * Handle messages sent and received using XMPP (Jabber) protocol
3  *
4  * Copyright (c) 2007-2010 by Art Cancro
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 3.
8  * 
9  * 
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * 
17  * 
18  * 
19  *
20  */
21
22 #include "sysdep.h"
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <stdio.h>
26 #include <fcntl.h>
27 #include <signal.h>
28 #include <pwd.h>
29 #include <errno.h>
30 #include <sys/types.h>
31
32 #if TIME_WITH_SYS_TIME
33 # include <sys/time.h>
34 # include <time.h>
35 #else
36 # if HAVE_SYS_TIME_H
37 #  include <sys/time.h>
38 # else
39 #  include <time.h>
40 # endif
41 #endif
42
43 #include <sys/wait.h>
44 #include <string.h>
45 #include <limits.h>
46 #include <ctype.h>
47 #include <expat.h>
48 #include <libcitadel.h>
49 #include "citadel.h"
50 #include "server.h"
51 #include "citserver.h"
52 #include "support.h"
53 #include "config.h"
54 #include "internet_addressing.h"
55 #include "md5.h"
56 #include "ctdl_module.h"
57 #include "serv_xmpp.h"
58
59
60 /*
61  * This function is called by the XMPP service's async loop.
62  * If the client session has instant messages waiting, it outputs
63  * unsolicited XML stanzas containing them.
64  */
65 void xmpp_output_incoming_messages(void) {
66
67         struct ExpressMessage *ptr;
68         char xmlbuf1[4096];
69         char xmlbuf2[4096];
70
71         while (CC->FirstExpressMessage != NULL) {
72
73                 begin_critical_section(S_SESSION_TABLE);
74                 ptr = CC->FirstExpressMessage;
75                 CC->FirstExpressMessage = CC->FirstExpressMessage->next;
76                 end_critical_section(S_SESSION_TABLE);
77
78                 cprintf("<message to=\"%s\" from=\"%s\" type=\"chat\">",
79                         xmlesc(xmlbuf1, XMPP->client_jid, sizeof xmlbuf1),
80                         xmlesc(xmlbuf2, ptr->sender_email, sizeof xmlbuf2)
81                 );
82                 if (ptr->text != NULL) {
83                         striplt(ptr->text);
84                         cprintf("<body>%s</body>", xmlesc(xmlbuf1, ptr->text, sizeof xmlbuf1));
85                         free(ptr->text);
86                 }
87                 cprintf("</message>");
88                 free(ptr);
89         }
90 }
91
92 /*
93  * Client is sending a message.
94  */
95 void xmpp_send_message(char *message_to, char *message_body) {
96         char *recp = NULL;
97         struct CitContext *cptr;
98
99         if (message_body == NULL) return;
100         if (message_to == NULL) return;
101         if (IsEmptyStr(message_to)) return;
102         if (!CC->logged_in) return;
103
104         for (cptr = ContextList; cptr != NULL; cptr = cptr->next) {
105                 if (    (cptr->logged_in)
106                         && (cptr->can_receive_im)
107                         && (!strcasecmp(cptr->cs_inet_email, message_to))
108                 ) {
109                         recp = cptr->user.fullname;
110                 }
111         }
112
113         if (recp) {
114                 PerformXmsgHooks(CC->user.fullname, CC->cs_inet_email, recp, message_body);
115         }
116
117         free(XMPP->message_body);
118         XMPP->message_body = NULL;
119         XMPP->message_to[0] = 0;
120         time(&CC->lastidle);
121 }
122