* Fixed a multiselect bug in the mailbox view. Ctrl-click was selecting a message...
[citadel.git] / citadel / modules / extnotify / extnotify_main.c
blob06c6699c6af0701ad1c76228d6037d9c1f198927
1 /*
2 * \file extnotify_main.c
3 * @author Mathew McBride
5 * This module implements an external pager hook for when notifcation
6 * of a new email is wanted.
7 * Based on bits of serv_funambol
8 * Contact: <matt@mcbridematt.dhs.org> / <matt@comalies>
9 */
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>
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
32 #include <sys/wait.h>
33 #include <string.h>
34 #include <limits.h>
35 #include <sys/socket.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 "control.h"
43 #include "room_ops.h"
44 #include "user_ops.h"
45 #include "policy.h"
46 #include "database.h"
47 #include "msgbase.h"
48 #include "internet_addressing.h"
49 #include "domain.h"
50 #include "clientsocket.h"
51 #include "extnotify.h"
53 #include "ctdl_module.h"
55 /*! \brief Create the notify message queue. We use the exact same room
56 * as the Funambol module.
58 * Run at server startup, creates FNBL_QUEUE_ROOM if it doesn't exist
59 * and sets as system room.
61 void create_extnotify_queue(void) {
62 struct ctdlroom qrbuf;
64 create_room(FNBL_QUEUE_ROOM, 3, "", 0, 1, 0, VIEW_MAILBOX);
67 * Make sure it's set to be a "system room" so it doesn't show up
68 * in the <K>nown rooms list for Aides.
70 if (lgetroom(&qrbuf, FNBL_QUEUE_ROOM) == 0) {
71 qrbuf.QRflags2 |= QR2_SYSTEM;
72 lputroom(&qrbuf);
75 /*!
76 * \brief Run through the pager room queue
78 void do_extnotify_queue(void) {
79 static int doing_queue = 0;
82 * This is a simple concurrency check to make sure only one queue run
83 * is done at a time. We could do this with a mutex, but since we
84 * don't really require extremely fine granularity here, we'll do it
85 * with a static variable instead.
87 if (doing_queue) return;
88 doing_queue = 1;
91 * Go ahead and run the queue
93 CtdlLogPrintf(CTDL_DEBUG, "serv_extnotify: processing notify queue\n");
95 if (getroom(&CC->room, FNBL_QUEUE_ROOM) != 0) {
96 CtdlLogPrintf(CTDL_ERR, "Cannot find room <%s>\n", FNBL_QUEUE_ROOM);
97 return;
99 CtdlForEachMessage(MSGS_ALL, 0L, NULL,
100 SPOOLMIME, NULL, process_notify, NULL);
102 CtdlLogPrintf(CTDL_DEBUG, "serv_extnotify: queue run completed\n");
103 doing_queue = 0;
106 * \brief Process messages in the external notification queue
108 void process_notify(long msgnum, void *usrdata) {
109 struct CtdlMessage *msg;
110 msg = CtdlFetchMessage(msgnum, 1);
111 if ( msg->cm_fields['W'] == NULL) {
112 goto nuke;
115 long configMsgNum = extNotify_getConfigMessage(msg->cm_fields['W']);
116 char configMsg[SIZ];
118 extNotify_getPrefs(configMsgNum, &configMsg[0]);
120 /* Check to see if:
121 * 1. The user has configured paging / They have and disabled it
122 * AND 2. There is an external pager program
123 * 3. A Funambol server has been entered
126 if ((configMsgNum == -1) ||
127 ((strncasecmp(configMsg, "none", 4) == 0) &&
128 IsEmptyStr(config.c_pager_program) &&
129 IsEmptyStr(config.c_funambol_host))) {
130 CtdlLogPrintf(CTDL_DEBUG, "No external notifiers configured on system/user");
131 goto nuke;
133 // Can Funambol take the message?
134 int fnblAllowed = strncasecmp(configMsg, FUNAMBOL_CONFIG_TEXT, strlen(FUNAMBOL_CONFIG_TEXT));
135 int extPagerAllowed = strncasecmp(configMsg, PAGER_CONFIG_TEXT, strlen(PAGER_CONFIG_TEXT));
136 if (fnblAllowed == 0) {
137 notify_funambol_server(msg->cm_fields['W']);
138 } else if (extPagerAllowed == 0) {
139 char *number = strtok(configMsg, "textmessage\n");
140 int commandSiz = sizeof(config.c_pager_program) + strlen(number) + strlen(msg->cm_fields['W']) + 5;
141 char *command = malloc(commandSiz);
142 snprintf(command, commandSiz, "%s %s -u %s", config.c_pager_program, number, msg->cm_fields['W']);
143 system(command);
144 free(command);
146 nuke:
147 CtdlFreeMessage(msg);
148 memset(configMsg, 0, sizeof(configMsg));
149 long todelete[1];
150 todelete[0] = msgnum;
151 CtdlDeleteMessages(FNBL_QUEUE_ROOM, todelete, 1, "");
154 /*! \brief Checks to see what notification option the user has set
157 void extNotify_getPrefs(long configMsgNum, char *configMsg) {
158 // Do a simple string search to see if 'funambol' is selected as the
159 // type. This string would be at the very top of the message contents.
160 if (configMsgNum == -1) {
161 CtdlLogPrintf(CTDL_ERR, "extNotify_isAllowedByPrefs was passed a non-existant config message id\n");
162 return;
164 struct CtdlMessage *prefMsg;
165 prefMsg = CtdlFetchMessage(configMsgNum, 1);
166 strncpy(configMsg, prefMsg->cm_fields['M'], strlen(prefMsg->cm_fields['M']));
167 CtdlFreeMessage(prefMsg);
169 /*! \brief Get configuration message for pager/funambol system from the
170 * users "My Citadel Config" room
172 long extNotify_getConfigMessage(char *username) {
173 struct ctdlroom qrbuf; // scratch for room
174 struct ctdluser user; // ctdl user instance
175 char configRoomName[ROOMNAMELEN];
176 struct CtdlMessage *msg;
177 struct cdbdata *cdbfr;
178 long *msglist = NULL;
179 int num_msgs = 0;
180 long confMsgNum = -1;
181 // Get the user
182 getuser(&user, username);
184 MailboxName(configRoomName, sizeof configRoomName, &user, USERCONFIGROOM);
185 // Fill qrbuf
186 getroom(&qrbuf, configRoomName);
187 /* Do something really, really stoopid here. Raid the room on ourselves,
188 * loop through the messages manually and find it. I don't want
189 * to use a CtdlForEachMessage callback here, as we would be
190 * already in one */
191 cdbfr = cdb_fetch(CDB_MSGLISTS, &qrbuf.QRnumber, sizeof(long));
192 if (cdbfr != NULL) {
193 msglist = (long *) cdbfr->ptr;
194 cdbfr->ptr = NULL; /* CtdlForEachMessage() now owns this memory */
195 num_msgs = cdbfr->len / sizeof(long);
196 cdb_free(cdbfr);
197 } else {
198 CtdlLogPrintf(CTDL_DEBUG, "extNotify_getConfigMessage: No config messages found\n");
199 return -1; /* No messages at all? No further action. */
201 int a;
202 for (a = 0; a < num_msgs; ++a) {
203 msg = CtdlFetchMessage(msglist[a], 1);
204 if (msg != NULL) {
205 if (msg->cm_fields['U'] != NULL && strncasecmp(msg->cm_fields['U'], PAGER_CONFIG_MESSAGE,
206 strlen(PAGER_CONFIG_MESSAGE)) == 0) {
207 confMsgNum = msglist[a];
209 CtdlFreeMessage(msg);
212 return confMsgNum;
215 CTDL_MODULE_INIT(extnotify)
217 if (!threading)
219 create_extnotify_queue();
220 CtdlRegisterSessionHook(do_extnotify_queue, EVT_TIMER);
222 /* return our Subversion id for the Log */
223 return "$Id: $";