]> code.citadel.org Git - citadel.git/blob - citadel/serv_network.c
* Added a little more mailing list code to serv_network.c
[citadel.git] / citadel / serv_network.c
1 /*
2  * $Id$ 
3  *
4  * This module will eventually replace netproc and some of its utilities.
5  * Copyright (C) 2000 by Art Cancro and others.
6  * This code is released under the terms of the GNU General Public License.
7  *
8  */
9
10
11 /* FIXME
12
13 there's stuff in here that makes the assumption that /tmp is on the same
14 filesystem as Citadel, and makes calls to link() on that basis.  fix this.
15
16 */
17
18 #include "sysdep.h"
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <stdio.h>
22 #include <fcntl.h>
23 #include <signal.h>
24 #include <pwd.h>
25 #include <errno.h>
26 #include <sys/types.h>
27 #include <sys/time.h>
28 #include <sys/wait.h>
29 #include <string.h>
30 #include <limits.h>
31 #include "citadel.h"
32 #include "server.h"
33 #include <time.h>
34 #include "sysdep_decls.h"
35 #include "citserver.h"
36 #include "support.h"
37 #include "config.h"
38 #include "dynloader.h"
39 #include "room_ops.h"
40 #include "user_ops.h"
41 #include "policy.h"
42 #include "database.h"
43 #include "msgbase.h"
44 #include "tools.h"
45 #include "internet_addressing.h"
46 #include "serv_network.h"
47
48
49 void cmd_gnet(char *argbuf) {
50         char filename[256];
51         char buf[256];
52         FILE *fp;
53
54         if (CtdlAccessCheck(ac_room_aide)) return;
55         assoc_file_name(filename, &CC->quickroom, "netconfigs");
56         cprintf("%d Network settings for room #%ld <%s>\n",
57                 LISTING_FOLLOWS,
58                 CC->quickroom.QRnumber, CC->quickroom.QRname);
59
60         fp = fopen(filename, "r");
61         if (fp != NULL) {
62                 while (fgets(buf, sizeof buf, fp) != NULL) {
63                         buf[strlen(buf)-1] = 0;
64                         cprintf("%s\n", buf);
65                 }
66                 fclose(fp);
67         }
68
69         cprintf("000\n");
70 }
71
72
73 void cmd_snet(char *argbuf) {
74         char tempfilename[256];
75         char filename[256];
76         char buf[256];
77         FILE *fp;
78
79         if (CtdlAccessCheck(ac_room_aide)) return;
80         safestrncpy(tempfilename, tmpnam(NULL), sizeof tempfilename);
81         assoc_file_name(filename, &CC->quickroom, "netconfigs");
82
83         fp = fopen(tempfilename, "w");
84         if (fp == NULL) {
85                 cprintf("%d Cannot open %s: %s\n",
86                         ERROR+INTERNAL_ERROR,
87                         tempfilename,
88                         strerror(errno));
89         }
90
91         cprintf("%d %s\n", SEND_LISTING, tempfilename);
92         while (client_gets(buf), strcmp(buf, "000")) {
93                 fprintf(fp, "%s\n", buf);
94         }
95         fclose(fp);
96
97         /* Now that we've got the whole file, put it in place */
98         unlink(filename);
99         link(tempfilename, filename);
100         unlink(tempfilename);
101 }
102
103
104
105 /*
106  * Spools out one message from the list.
107  */
108 void network_spool_msg(long msgnum, void *userdata) {
109         struct SpoolControl *sc;
110         struct namelist *nptr;
111         int err;
112
113         sc = (struct SpoolControl *)userdata;
114
115         /* If no recipients, bail out now.
116          * (May need to tweak this when we add other types of targets)
117          */
118         if (sc->listrecps == NULL) return;
119         
120         /* First, copy it to the spoolout room */
121         err = CtdlSaveMsgPointerInRoom(SMTP_SPOOLOUT_ROOM, msgnum, 0);
122         if (err != 0) return;
123
124         /* FIXME generate delivery instructions for each recipient */
125         for (nptr = sc->listrecps; nptr != NULL; nptr = nptr->next) {
126         }
127
128         /* FIXME save delivery instructions in spoolout room */
129
130         /* FIXME update lastseen */
131
132 }
133
134
135
136
137 /*
138  * Batch up and send all outbound traffic from the current room
139  */
140 void network_spoolout_current_room(void) {
141         char filename[256];
142         char buf[256];
143         char instr[256];
144         FILE *fp;
145         struct SpoolControl sc;
146         /* struct namelist *digestrecps = NULL; */
147         struct namelist *nptr;
148
149         memset(&sc, 0, sizeof(struct SpoolControl));
150         assoc_file_name(filename, &CC->quickroom, "netconfigs");
151
152         fp = fopen(filename, "r");
153         if (fp == NULL) {
154                 lprintf(7, "Outbound batch processing skipped for <%s>\n",
155                         CC->quickroom.QRname);
156                 return;
157         }
158
159         lprintf(5, "Outbound batch processing started for <%s>\n",
160                 CC->quickroom.QRname);
161
162         while (fgets(buf, sizeof buf, fp) != NULL) {
163                 buf[strlen(buf)-1] = 0;
164
165                 extract(instr, buf, 0);
166                 if (!strcasecmp(instr, "lastsent")) {
167                         sc.lastsent = extract_long(buf, 1);
168                 }
169                 else if (!strcasecmp(instr, "listrecp")) {
170                         nptr = (struct namelist *)
171                                 mallok(sizeof(struct namelist));
172                         nptr->next = sc.listrecps;
173                         extract(nptr->name, buf, 1);
174                         sc.listrecps = nptr;
175                 }
176
177
178         }
179         fclose(fp);
180
181
182
183         /* Do something useful */
184         CtdlForEachMessage(MSGS_ALL, 0L, (-63), NULL, NULL, network_spool_msg, &sc);
185
186
187
188         /* Now rewrite the config file */
189         fp = fopen(filename, "w");
190         if (fp == NULL) {
191                 lprintf(1, "ERROR: cannot open %s: %s\n", filename, strerror(errno));
192         }
193         else {
194                 fprintf(fp, "lastsent|%ld\n", sc.lastsent);
195
196                 /* Write out the listrecps while freeing from memory at the
197                  * same time.  Am I clever or what?  :)
198                  */
199                 while (sc.listrecps != NULL) {
200                         fprintf(fp, "listrecp|%s\n", sc.listrecps->name);
201                         nptr = sc.listrecps->next;
202                         phree(sc.listrecps);
203                         sc.listrecps = nptr;
204                 }
205
206                 fclose(fp);
207         }
208
209         lprintf(5, "Outbound batch processing finished for <%s>\n",
210                 CC->quickroom.QRname);
211 }
212
213
214
215 /* FIXME temporary server command for batch send */
216 void cmd_batc(char *argbuf) {
217         if (CtdlAccessCheck(ac_aide)) return;
218
219         network_spoolout_current_room();
220
221         cprintf("%d FIXME cmd_batc() ok\n", OK);
222 }
223
224
225
226 char *Dynamic_Module_Init(void)
227 {
228         CtdlRegisterProtoHook(cmd_gnet, "GNET", "Get network config");
229         CtdlRegisterProtoHook(cmd_snet, "SNET", "Get network config");
230
231         /* FIXME
232            temporary server command for batch send
233          */
234         CtdlRegisterProtoHook(cmd_batc, "BATC", "send out batch (temp)");
235
236         return "$Id$";
237 }