39006a0b70f235a0af6ea1fae5c99db7ab6e1e09
[citadel.git] / citadel / modules / listdeliver / serv_listdeliver.c
1 /*
2  * This module delivers messages to mailing lists.
3  *
4  * Copyright (c) 2002-2021 by the citadel.org team
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  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <fcntl.h>
20 #include <ctype.h>
21 #include <signal.h>
22 #include <pwd.h>
23 #include <errno.h>
24 #include <sys/types.h>
25 #include <dirent.h>
26 #include <time.h>
27 #include <sys/wait.h>
28 #include <string.h>
29 #include <limits.h>
30 #include <libcitadel.h>
31 #include "citadel.h"
32 #include "server.h"
33 #include "citserver.h"
34 #include "support.h"
35 #include "config.h"
36 #include "user_ops.h"
37 #include "database.h"
38 #include "msgbase.h"
39 #include "internet_addressing.h"
40 #include "clientsocket.h"
41 #include "ctdl_module.h"
42
43 int doing_listdeliver = 0;
44
45
46 // data passed back and forth between listdeliver_do_msg() and listdeliver_sweep_room()
47 struct lddata {
48         long msgnum;            // number of most recent message processed
49         char *netconf;          // netconfig for this room (contains the recipients)
50 };
51
52
53
54 void listdeliver_do_msg(long msgnum, void *userdata) {
55         struct lddata *ld = (struct lddata *) userdata;
56         if (!ld) return;
57         char buf[SIZ];
58
59         ld->msgnum = msgnum;
60         if (msgnum <= 0) return;
61
62         struct CtdlMessage *TheMessage = CtdlFetchMessage(msgnum, 1);
63         if (!TheMessage) return;
64
65         char *recipients = malloc(strlen(ld->netconf));
66         if (recipients) {
67                 recipients[0] = 0;
68
69                 int config_lines = num_tokens(ld->netconf, '\n');
70                 for (int i=0; i<config_lines; ++i) {
71                         extract_token(buf, ld->netconf, i, '\n', sizeof buf);
72                         if (!strncasecmp(buf, "listrecp|", 9)) {
73                                 if (recipients[0] != 0) {
74                                         strcat(recipients, ",");
75                                 }
76                                 strcat(recipients, &buf[9]);
77                         }
78                         if (!strncasecmp(buf, "digestrecp|", 11)) {
79                                 if (recipients[0] != 0) {
80                                         strcat(recipients, ",");
81                                 }
82                                 strcat(recipients, &buf[11]);
83                         }
84                 }
85                 syslog(LOG_DEBUG, "\033[33m%s\033[0m", recipients);
86                 free(recipients);
87         }
88         CM_Free(TheMessage);
89 }
90
91
92 void listdeliver_sweep_room(struct ctdlroom *qrbuf, void *data) {
93         char *netconfig = NULL;
94         long lastsent = 0;
95         char buf[SIZ];
96         int config_lines;
97         int i;
98         int number_of_messages_processed = 0;
99         int number_of_recipients = 0;
100         struct lddata ld;
101
102         if (CtdlGetRoom(&CC->room, qrbuf->QRname)) {
103                 syslog(LOG_DEBUG, "listdeliver: no room <%s>", qrbuf->QRname);
104                 return;
105         }
106
107         netconfig = LoadRoomNetConfigFile(qrbuf->QRnumber);
108         if (!netconfig) {
109                 return;                         // no netconfig, no processing, no problem
110         }
111
112         config_lines = num_tokens(netconfig, '\n');
113         for (i=0; i<config_lines; ++i) {
114                 extract_token(buf, netconfig, i, '\n', sizeof buf);
115
116                 if (!strncasecmp(buf, "lastsent|", 9)) {
117                         lastsent = atol(&buf[9]);
118                 }
119                 else if ( (!strncasecmp(buf, "listrecp|", 9)) || (!strncasecmp(buf, "digestrecp|", 11)) ) {
120                         ++number_of_recipients;
121                 }
122         }
123
124         if (number_of_recipients > 0) {
125                 syslog(LOG_DEBUG, "listdeliver: processing new messages in <%s> for <%d> recipients", qrbuf->QRname, number_of_recipients);
126                 ld.netconf = netconfig;
127                 number_of_messages_processed = CtdlForEachMessage(MSGS_GT, lastsent, NULL, NULL, NULL, listdeliver_do_msg, &ld);
128                 syslog(LOG_DEBUG, "listdeliver: processed %d messages", number_of_messages_processed);
129         
130                 if (number_of_messages_processed > 0) {
131                         syslog(LOG_DEBUG, "listdeliver: new lastsent is %ld", ld.msgnum);
132
133                         // FIXME write lastsent back to netconfig
134                         syslog(LOG_DEBUG, "\033[31mBEFORE:<%s>\033[0m", netconfig);
135                         syslog(LOG_DEBUG, "\033[32mAFTER:<%s>\033[0m", netconfig);
136
137
138
139
140
141                 }
142         }
143
144         free(netconfig);
145 }
146
147
148
149 void listdeliver_sweep(void) {
150         static time_t last_run = 0L;
151
152         /*
153          * Run mailing list delivery no more frequently than once every 15 minutes (we should make this configurable)
154          */
155         if ( (time(NULL) - last_run) < 900 ) {
156                 return;
157         }
158
159         /*
160          * This is a simple concurrency check to make sure only one listdeliver
161          * run is done at a time.  We could do this with a mutex, but since we
162          * don't really require extremely fine granularity here, we'll do it
163          * with a static variable instead.
164          */
165         if (doing_listdeliver) return;
166         doing_listdeliver = 1;
167
168         /*
169          * Go through each room looking for mailing lists to process
170          */
171         syslog(LOG_DEBUG, "listdeliver: sweep started");
172         CtdlForEachRoom(listdeliver_sweep_room, NULL);
173         syslog(LOG_DEBUG, "listdeliver: ended");
174         last_run = time(NULL);
175         doing_listdeliver = 0;
176
177         //exit(0);
178 }
179
180
181
182 /*
183  * Module entry point
184  */
185 CTDL_MODULE_INIT(listdeliver)
186 {
187         if (!threading)
188         {
189                 CtdlRegisterSessionHook(listdeliver_sweep, EVT_TIMER, PRIO_AGGR + 50);
190         }
191         
192         /* return our module name for the log */
193         return "listsub";
194 }