5f4de4aca0d0c01ae168569fa484cc38747f2919
[citadel.git] / citadel / serv_vandelay.c
1 /*
2  * $Id$
3  *
4  * This is the "Art Vandelay" module.  It is an importer/exporter.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <pwd.h>
15 #include <errno.h>
16 #include <sys/types.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #include <sys/wait.h>
30 #include <string.h>
31 #include <ctype.h>
32 #include <limits.h>
33 #include "citadel.h"
34 #include "server.h"
35 #include "sysdep_decls.h"
36 #include "citserver.h"
37 #include "support.h"
38 #include "config.h"
39 #include "serv_extensions.h"
40 #include "database.h"
41 #include "msgbase.h"
42 #include "tools.h"
43 #include "user_ops.h"
44 #include "room_ops.h"
45 #include "control.h"
46
47 #define END_OF_MESSAGE  "---eom---dbd---"
48
49 char artv_tempfilename1[PATH_MAX];
50 char artv_tempfilename2[PATH_MAX];
51 FILE *artv_global_message_list;
52
53 void artv_export_users_backend(struct ctdluser *usbuf, void *data) {
54         cprintf("user\n");
55         cprintf("%d\n", usbuf->version);
56         cprintf("%ld\n", (long)usbuf->uid);
57         cprintf("%s\n", usbuf->password);
58         cprintf("%u\n", usbuf->flags);
59         cprintf("%ld\n", usbuf->timescalled);
60         cprintf("%ld\n", usbuf->posted);
61         cprintf("%d\n", usbuf->axlevel);
62         cprintf("%ld\n", usbuf->usernum);
63         cprintf("%ld\n", (long)usbuf->lastcall);
64         cprintf("%d\n", usbuf->USuserpurge);
65         cprintf("%s\n", usbuf->fullname);
66         cprintf("%d\n", usbuf->USscreenwidth);
67         cprintf("%d\n", usbuf->USscreenheight);
68 }
69
70
71 void artv_export_users(void) {
72         ForEachUser(artv_export_users_backend, NULL);
73 }
74
75
76 void artv_export_room_msg(long msgnum, void *userdata) {
77         cprintf("%ld\n", msgnum);
78         fprintf(artv_global_message_list, "%ld\n", msgnum);
79 }
80
81
82 void artv_export_rooms_backend(struct ctdlroom *qrbuf, void *data) {
83         cprintf("room\n");
84         cprintf("%s\n", qrbuf->QRname);
85         cprintf("%s\n", qrbuf->QRpasswd);
86         cprintf("%ld\n", qrbuf->QRroomaide);
87         cprintf("%ld\n", qrbuf->QRhighest);
88         cprintf("%ld\n", (long)qrbuf->QRgen);
89         cprintf("%u\n", qrbuf->QRflags);
90         cprintf("%s\n", qrbuf->QRdirname);
91         cprintf("%ld\n", qrbuf->QRinfo);
92         cprintf("%d\n", qrbuf->QRfloor);
93         cprintf("%ld\n", (long)qrbuf->QRmtime);
94         cprintf("%d\n", qrbuf->QRep.expire_mode);
95         cprintf("%d\n", qrbuf->QRep.expire_value);
96         cprintf("%ld\n", qrbuf->QRnumber);
97         cprintf("%d\n", qrbuf->QRorder);
98         cprintf("%u\n", qrbuf->QRflags2);
99         cprintf("%d\n", qrbuf->QRdefaultview);
100
101         getroom(&CC->room, qrbuf->QRname);
102         /* format of message list export is all message numbers output
103          * one per line terminated by a 0.
104          */
105         CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL,
106                 artv_export_room_msg, NULL);
107         cprintf("0\n");
108
109 }
110
111
112
113 void artv_export_rooms(void) {
114         char cmd[SIZ];
115         artv_global_message_list = fopen(artv_tempfilename1, "w");
116         if (artv_global_message_list != NULL) {
117                 ForEachRoom(artv_export_rooms_backend, NULL);
118                 fclose(artv_global_message_list);
119         }
120
121         /*
122          * Process the 'global' message list.  (Sort it and remove dups.
123          * Dups are ok because a message may be in more than one room, but
124          * this will be handled by exporting the reference count, not by
125          * exporting the message multiple times.)
126          */
127         snprintf(cmd, sizeof cmd, "sort <%s >%s", artv_tempfilename1, artv_tempfilename2);
128         system(cmd);
129         snprintf(cmd, sizeof cmd, "uniq <%s >%s", artv_tempfilename2, artv_tempfilename1);
130         system(cmd);
131 }
132
133
134 void artv_export_floors(void) {
135         struct floor flbuf;
136         int i;
137
138         for (i=0; i < MAXFLOORS; ++i) {
139                 cprintf("floor\n");
140                 cprintf("%d\n", i);
141                 getfloor(&flbuf, i);
142                 cprintf("%u\n", flbuf.f_flags);
143                 cprintf("%s\n", flbuf.f_name);
144                 cprintf("%d\n", flbuf.f_ref_count);
145                 cprintf("%d\n", flbuf.f_ep.expire_mode);
146                 cprintf("%d\n", flbuf.f_ep.expire_value);
147         }
148 }
149
150
151
152
153
154 /* 
155  *  Traverse the visits file...
156  */
157 void artv_export_visits(void) {
158         struct visit vbuf;
159         struct cdbdata *cdbv;
160
161         cdb_rewind(CDB_VISIT);
162
163         while (cdbv = cdb_next_item(CDB_VISIT), cdbv != NULL) {
164                 memset(&vbuf, 0, sizeof(struct visit));
165                 memcpy(&vbuf, cdbv->ptr,
166                        ((cdbv->len > sizeof(struct visit)) ?
167                         sizeof(struct visit) : cdbv->len));
168                 cdb_free(cdbv);
169
170                 cprintf("visit\n");
171                 cprintf("%ld\n", vbuf.v_roomnum);
172                 cprintf("%ld\n", vbuf.v_roomgen);
173                 cprintf("%ld\n", vbuf.v_usernum);
174
175                 if (strlen(vbuf.v_seen) > 0) {
176                         cprintf("%s\n", vbuf.v_seen);
177                 }
178                 else {
179                         cprintf("%ld\n", vbuf.v_lastseen);
180                 }
181
182                 cprintf("%s\n", vbuf.v_answered);
183                 cprintf("%u\n", vbuf.v_flags);
184                 cprintf("%d\n", vbuf.v_view);
185         }
186 }
187
188
189 void artv_export_message(long msgnum) {
190         struct MetaData smi;
191         struct CtdlMessage *msg;
192         struct ser_ret smr;
193         FILE *fp;
194         char buf[SIZ];
195         char tempfile[SIZ];
196
197         msg = CtdlFetchMessage(msgnum, 1);
198         if (msg == NULL) return;        /* fail silently */
199
200         cprintf("message\n");
201         GetMetaData(&smi, msgnum);
202         cprintf("%ld\n", msgnum);
203         cprintf("%d\n", smi.meta_refcount);
204         cprintf("%s\n", smi.meta_content_type);
205
206         serialize_message(&smr, msg);
207         CtdlFreeMessage(msg);
208
209         /* write it in base64 */
210         strcpy(tempfile, tmpnam(NULL));
211         snprintf(buf, sizeof buf, "./base64 -e >%s", tempfile);
212         fp = popen(buf, "w");
213         fwrite(smr.ser, smr.len, 1, fp);
214         pclose(fp);
215
216         free(smr.ser);
217
218         fp = fopen(tempfile, "r");
219         unlink(tempfile);
220         if (fp != NULL) {
221                 while (fgets(buf, sizeof(buf), fp) != NULL) {
222                         buf[strlen(buf)-1] = 0;
223                         cprintf("%s\n", buf);
224                 }
225                 fclose(fp);
226         }
227         cprintf("%s\n", END_OF_MESSAGE);
228 }
229
230
231
232 void artv_export_messages(void) {
233         char buf[SIZ];
234         long msgnum;
235         int count = 0;
236
237         artv_global_message_list = fopen(artv_tempfilename1, "r");
238         if (artv_global_message_list != NULL) {
239                 lprintf(CTDL_INFO, "Opened %s\n", artv_tempfilename1);
240                 while (fgets(buf, sizeof(buf),
241                       artv_global_message_list) != NULL) {
242                         msgnum = atol(buf);
243                         if (msgnum > 0L) {
244                                 artv_export_message(msgnum);
245                                 ++count;
246                         }
247                 }
248                 fclose(artv_global_message_list);
249         }
250         lprintf(CTDL_INFO, "Exported %d messages.\n", count);
251 }
252
253
254
255
256 void artv_do_export(void) {
257         cprintf("%d Exporting all Citadel databases.\n", LISTING_FOLLOWS);
258
259         cprintf("version\n%d\n", REV_LEVEL);
260
261         /* export the config file */
262         cprintf("config\n");
263         cprintf("%s\n", config.c_nodename);
264         cprintf("%s\n", config.c_fqdn);
265         cprintf("%s\n", config.c_humannode);
266         cprintf("%s\n", config.c_phonenum);
267         cprintf("%ld\n", (long)config.c_ctdluid);
268         cprintf("%d\n", config.c_creataide);
269         cprintf("%d\n", config.c_sleeping);
270         cprintf("%d\n", config.c_initax);
271         cprintf("%d\n", config.c_regiscall);
272         cprintf("%d\n", config.c_twitdetect);
273         cprintf("%s\n", config.c_twitroom);
274         cprintf("%s\n", config.c_moreprompt);
275         cprintf("%d\n", config.c_restrict);
276         cprintf("%s\n", config.c_site_location);
277         cprintf("%s\n", config.c_sysadm);
278         cprintf("%d\n", config.c_setup_level);
279         cprintf("%d\n", config.c_maxsessions);
280         cprintf("%d\n", config.c_port_number);
281         cprintf("%d\n", config.c_ep.expire_mode);
282         cprintf("%d\n", config.c_ep.expire_value);
283         cprintf("%d\n", config.c_userpurge);
284         cprintf("%d\n", config.c_roompurge);
285         cprintf("%s\n", config.c_logpages);
286         cprintf("%d\n", config.c_createax);
287         cprintf("%ld\n", config.c_maxmsglen);
288         cprintf("%d\n", config.c_min_workers);
289         cprintf("%d\n", config.c_max_workers);
290         cprintf("%d\n", config.c_pop3_port);
291         cprintf("%d\n", config.c_smtp_port);
292         cprintf("%d\n", config.c_purge_hour);
293         cprintf("%d\n", config.c_mbxep.expire_mode);
294         cprintf("%d\n", config.c_mbxep.expire_value);
295         cprintf("%s\n", config.c_ldap_host);
296         cprintf("%d\n", config.c_ldap_port);
297         cprintf("%s\n", config.c_ldap_base_dn);
298         cprintf("%s\n", config.c_ldap_bind_dn);
299         cprintf("%s\n", config.c_ldap_bind_pw);
300         cprintf("%s\n", config.c_ip_addr);
301         cprintf("%d\n", config.c_msa_port);
302         cprintf("%d\n", config.c_imaps_port);
303         cprintf("%d\n", config.c_pop3s_port);
304         cprintf("%d\n", config.c_smtps_port);
305         cprintf("%d\n", config.c_rfc822_strict_from);
306         cprintf("%d\n", config.c_aide_zap);
307         cprintf("%d\n", config.c_imap_port);
308         cprintf("%ld\n", config.c_net_freq);
309         cprintf("%d\n", config.c_disable_newu);
310         cprintf("%s\n", config.c_baseroom);
311         cprintf("%s\n", config.c_aideroom);
312         cprintf("%d\n", config.c_auto_cull);
313         cprintf("%d\n", config.c_instant_expunge);
314         cprintf("%d\n", config.c_allow_spoofing);
315
316         /* Export the control file */
317         get_control();
318         cprintf("control\n");
319         cprintf("%ld\n", CitControl.MMhighest);
320         cprintf("%u\n", CitControl.MMflags);
321         cprintf("%ld\n", CitControl.MMnextuser);
322         cprintf("%ld\n", CitControl.MMnextroom);
323         cprintf("%d\n", CitControl.version);
324
325         artv_export_users();
326         artv_export_rooms();
327         artv_export_floors();
328         artv_export_visits();
329         artv_export_messages();
330
331         cprintf("000\n");
332 }
333
334
335
336 void artv_import_config(void) {
337         char buf[SIZ];
338
339         lprintf(CTDL_DEBUG, "Importing config file\n");
340         client_getln(config.c_nodename, sizeof config.c_nodename);
341         client_getln(config.c_fqdn, sizeof config.c_fqdn);
342         client_getln(config.c_humannode, sizeof config.c_humannode);
343         client_getln(config.c_phonenum, sizeof config.c_phonenum);
344         client_getln(buf, sizeof buf);  config.c_ctdluid = atoi(buf);
345         client_getln(buf, sizeof buf);  config.c_creataide = atoi(buf);
346         client_getln(buf, sizeof buf);  config.c_sleeping = atoi(buf);
347         client_getln(buf, sizeof buf);  config.c_initax = atoi(buf);
348         client_getln(buf, sizeof buf);  config.c_regiscall = atoi(buf);
349         client_getln(buf, sizeof buf);  config.c_twitdetect = atoi(buf);
350         client_getln(config.c_twitroom, sizeof config.c_twitroom);
351         client_getln(config.c_moreprompt, sizeof config.c_moreprompt);
352         client_getln(buf, sizeof buf);  config.c_restrict = atoi(buf);
353         client_getln(config.c_site_location, sizeof config.c_site_location);
354         client_getln(config.c_sysadm, sizeof config.c_sysadm);
355         client_getln(buf, sizeof buf);  config.c_setup_level = atoi(buf);
356         client_getln(buf, sizeof buf);  config.c_maxsessions = atoi(buf);
357         client_getln(buf, sizeof buf);  config.c_port_number = atoi(buf);
358         client_getln(buf, sizeof buf);  config.c_ep.expire_mode = atoi(buf);
359         client_getln(buf, sizeof buf);  config.c_ep.expire_value = atoi(buf);
360         client_getln(buf, sizeof buf);  config.c_userpurge = atoi(buf);
361         client_getln(buf, sizeof buf);  config.c_roompurge = atoi(buf);
362         client_getln(config.c_logpages, sizeof config.c_logpages);
363         client_getln(buf, sizeof buf);  config.c_createax = atoi(buf);
364         client_getln(buf, sizeof buf);  config.c_maxmsglen = atol(buf);
365         client_getln(buf, sizeof buf);  config.c_min_workers = atoi(buf);
366         client_getln(buf, sizeof buf);  config.c_max_workers = atoi(buf);
367         client_getln(buf, sizeof buf);  config.c_pop3_port = atoi(buf);
368         client_getln(buf, sizeof buf);  config.c_smtp_port = atoi(buf);
369         client_getln(buf, sizeof buf);  config.c_purge_hour = atoi(buf);
370         client_getln(buf, sizeof buf);  config.c_mbxep.expire_mode = atoi(buf);
371         client_getln(buf, sizeof buf);  config.c_mbxep.expire_value = atoi(buf);
372         client_getln(config.c_ldap_host, sizeof config.c_ldap_host);
373         client_getln(buf, sizeof buf);  config.c_ldap_port = atoi(buf);
374         client_getln(config.c_ldap_base_dn, sizeof config.c_ldap_base_dn);
375         client_getln(config.c_ldap_bind_dn, sizeof config.c_ldap_bind_dn);
376         client_getln(config.c_ldap_bind_pw, sizeof config.c_ldap_bind_pw);
377         client_getln(config.c_ip_addr, sizeof config.c_ip_addr);
378         client_getln(buf, sizeof buf);  config.c_msa_port = atoi(buf);
379         client_getln(buf, sizeof buf);  config.c_imaps_port = atoi(buf);
380         client_getln(buf, sizeof buf);  config.c_pop3s_port = atoi(buf);
381         client_getln(buf, sizeof buf);  config.c_smtps_port = atoi(buf);
382         client_getln(buf, sizeof buf);  config.c_rfc822_strict_from = atoi(buf);
383         client_getln(buf, sizeof buf);  config.c_aide_zap = atoi(buf);
384         client_getln(buf, sizeof buf);  config.c_imap_port = atoi(buf);
385         client_getln(buf, sizeof buf);  config.c_net_freq = atol(buf);
386         client_getln(buf, sizeof buf);  config.c_disable_newu = atoi(buf);
387         client_getln(config.c_baseroom, sizeof config.c_baseroom);
388         client_getln(config.c_aideroom, sizeof config.c_aideroom);
389         client_getln(buf, sizeof buf);  config.c_auto_cull = atoi(buf);
390         client_getln(buf, sizeof buf);  config.c_instant_expunge = atoi(buf);
391         client_getln(buf, sizeof buf);  config.c_allow_spoofing = atoi(buf);
392         config.c_enable_fulltext = 0;   /* always disable */
393         put_config();
394         lprintf(CTDL_INFO, "Imported config file\n");
395 }
396
397
398
399 void artv_import_control(void) {
400         char buf[SIZ];
401
402         lprintf(CTDL_DEBUG, "Importing control file\n");
403         client_getln(buf, sizeof buf);  CitControl.MMhighest = atol(buf);
404         client_getln(buf, sizeof buf);  CitControl.MMflags = atoi(buf);
405         client_getln(buf, sizeof buf);  CitControl.MMnextuser = atol(buf);
406         client_getln(buf, sizeof buf);  CitControl.MMnextroom = atol(buf);
407         client_getln(buf, sizeof buf);  CitControl.version = atoi(buf);
408         CitControl.MMfulltext = (-1L);  /* always flush */
409         put_control();
410         lprintf(CTDL_INFO, "Imported control file\n");
411 }
412
413
414 void artv_import_user(void) {
415         char buf[SIZ];
416         struct ctdluser usbuf;
417
418         client_getln(buf, sizeof buf);  usbuf.version = atoi(buf);
419         client_getln(buf, sizeof buf);  usbuf.uid = atoi(buf);
420         client_getln(usbuf.password, sizeof usbuf.password);
421         client_getln(buf, sizeof buf);  usbuf.flags = atoi(buf);
422         client_getln(buf, sizeof buf);  usbuf.timescalled = atol(buf);
423         client_getln(buf, sizeof buf);  usbuf.posted = atol(buf);
424         client_getln(buf, sizeof buf);  usbuf.axlevel = atoi(buf);
425         client_getln(buf, sizeof buf);  usbuf.usernum = atol(buf);
426         client_getln(buf, sizeof buf);  usbuf.lastcall = atol(buf);
427         client_getln(buf, sizeof buf);  usbuf.USuserpurge = atoi(buf);
428         client_getln(usbuf.fullname, sizeof usbuf.fullname);
429         client_getln(buf, sizeof buf);  usbuf.USscreenwidth = atoi(buf);
430         client_getln(buf, sizeof buf);  usbuf.USscreenheight = atoi(buf);
431         putuser(&usbuf);
432 }
433
434
435 void artv_import_room(void) {
436         char buf[SIZ];
437         struct ctdlroom qrbuf;
438         long msgnum;
439         int msgcount = 0;
440
441         client_getln(qrbuf.QRname, sizeof qrbuf.QRname);
442         client_getln(qrbuf.QRpasswd, sizeof qrbuf.QRpasswd);
443         client_getln(buf, sizeof buf);  qrbuf.QRroomaide = atol(buf);
444         client_getln(buf, sizeof buf);  qrbuf.QRhighest = atol(buf);
445         client_getln(buf, sizeof buf);  qrbuf.QRgen = atol(buf);
446         client_getln(buf, sizeof buf);  qrbuf.QRflags = atoi(buf);
447         client_getln(qrbuf.QRdirname, sizeof qrbuf.QRdirname);
448         client_getln(buf, sizeof buf);  qrbuf.QRinfo = atol(buf);
449         client_getln(buf, sizeof buf);  qrbuf.QRfloor = atoi(buf);
450         client_getln(buf, sizeof buf);  qrbuf.QRmtime = atol(buf);
451         client_getln(buf, sizeof buf);  qrbuf.QRep.expire_mode = atoi(buf);
452         client_getln(buf, sizeof buf);  qrbuf.QRep.expire_value = atoi(buf);
453         client_getln(buf, sizeof buf);  qrbuf.QRnumber = atol(buf);
454         client_getln(buf, sizeof buf);  qrbuf.QRorder = atoi(buf);
455         client_getln(buf, sizeof buf);  qrbuf.QRflags2 = atoi(buf);
456         client_getln(buf, sizeof buf);  qrbuf.QRdefaultview = atoi(buf);
457         putroom(&qrbuf);
458         lprintf(CTDL_INFO, "Imported room <%s>\n", qrbuf.QRname);
459         /* format of message list export is all message numbers output
460          * one per line terminated by a 0.
461          */
462         while (client_getln(buf, sizeof buf), msgnum = atol(buf), msgnum > 0) {
463                 CtdlSaveMsgPointerInRoom(qrbuf.QRname, msgnum, 0);
464                 ++msgcount;
465         }
466         lprintf(CTDL_INFO, "(%d messages)\n", msgcount);
467 }
468
469
470 void artv_import_floor(void) {
471         struct floor flbuf;
472         int i;
473         char buf[SIZ];
474
475         client_getln(buf, sizeof buf);  i = atoi(buf);
476         client_getln(buf, sizeof buf);  flbuf.f_flags = atoi(buf);
477         client_getln(flbuf.f_name, sizeof flbuf.f_name);
478         client_getln(buf, sizeof buf);  flbuf.f_ref_count = atoi(buf);
479         client_getln(buf, sizeof buf);  flbuf.f_ep.expire_mode = atoi(buf);
480         client_getln(buf, sizeof buf);  flbuf.f_ep.expire_value = atoi(buf);
481         putfloor(&flbuf, i);
482         lprintf(CTDL_INFO, "Imported floor #%d (%s)\n", i, flbuf.f_name);
483 }
484
485
486 /* 
487  */
488 void artv_import_visit(void) {
489         struct visit vbuf;
490         char buf[SIZ];
491         int i;
492         int is_textual_seen = 0;
493
494         client_getln(buf, sizeof buf);  vbuf.v_roomnum = atol(buf);
495         client_getln(buf, sizeof buf);  vbuf.v_roomgen = atol(buf);
496         client_getln(buf, sizeof buf);  vbuf.v_usernum = atol(buf);
497
498         client_getln(buf, sizeof buf);
499         vbuf.v_lastseen = atol(buf);
500         for (i=0; i<strlen(buf); ++i) if (!isdigit(buf[i])) is_textual_seen = 1;
501         if (is_textual_seen)    strcpy(vbuf.v_seen, buf);
502
503         client_getln(vbuf.v_answered, sizeof vbuf.v_answered);
504         client_getln(buf, sizeof buf);  vbuf.v_flags = atoi(buf);
505         client_getln(buf, sizeof buf);  vbuf.v_view = atoi(buf);
506         put_visit(&vbuf);
507         lprintf(CTDL_INFO, "Imported visit %ld/%ld/%ld\n",
508                 vbuf.v_roomnum, vbuf.v_roomgen, vbuf.v_usernum);
509 }
510
511
512
513 void artv_import_message(void) {
514         struct MetaData smi;
515         long msgnum;
516         long msglen;
517         FILE *fp;
518         char buf[SIZ];
519         char tempfile[SIZ];
520         char *mbuf;
521
522         memset(&smi, 0, sizeof(struct MetaData));
523         client_getln(buf, sizeof buf);  msgnum = atol(buf);
524                                 smi.meta_msgnum = msgnum;
525         client_getln(buf, sizeof buf);  smi.meta_refcount = atoi(buf);
526         client_getln(smi.meta_content_type, sizeof smi.meta_content_type);
527
528         lprintf(CTDL_INFO, "message #%ld\n", msgnum);
529
530         /* decode base64 message text */
531         strcpy(tempfile, tmpnam(NULL));
532         snprintf(buf, sizeof buf, "./base64 -d >%s", tempfile);
533         fp = popen(buf, "w");
534         while (client_getln(buf, sizeof buf), strcasecmp(buf, END_OF_MESSAGE)) {
535                 fprintf(fp, "%s\n", buf);
536         }
537         pclose(fp);
538         fp = fopen(tempfile, "rb");
539         fseek(fp, 0L, SEEK_END);
540         msglen = ftell(fp);
541         fclose(fp);
542         lprintf(CTDL_DEBUG, "msglen = %ld\n", msglen);
543
544         mbuf = malloc(msglen);
545         fp = fopen(tempfile, "rb");
546         fread(mbuf, msglen, 1, fp);
547         fclose(fp);
548
549         cdb_store(CDB_MSGMAIN, &msgnum, sizeof(long), mbuf, msglen);
550
551         free(mbuf);
552         unlink(tempfile);
553
554         PutMetaData(&smi);
555         lprintf(CTDL_INFO, "Imported message %ld\n", msgnum);
556 }
557
558
559
560
561 void artv_do_import(void) {
562         char buf[SIZ];
563         char s_version[SIZ];
564         int version;
565
566         unbuffer_output();
567
568         cprintf("%d sock it to me\n", SEND_LISTING);
569         while (client_getln(buf, sizeof buf), strcmp(buf, "000")) {
570
571                 lprintf(CTDL_DEBUG, "import keyword: <%s>\n", buf);
572
573                 if (!strcasecmp(buf, "version")) {
574                         client_getln(s_version, sizeof s_version);
575                         version = atoi(s_version);
576                         if ((version<EXPORT_REV_MIN) || (version>REV_LEVEL)) {
577                                 lprintf(CTDL_ERR, "Version mismatch in ARTV import; aborting\n");
578                                 break;
579                         }
580                 }
581                 else if (!strcasecmp(buf, "config")) artv_import_config();
582                 else if (!strcasecmp(buf, "control")) artv_import_control();
583                 else if (!strcasecmp(buf, "user")) artv_import_user();
584                 else if (!strcasecmp(buf, "room")) artv_import_room();
585                 else if (!strcasecmp(buf, "floor")) artv_import_floor();
586                 else if (!strcasecmp(buf, "visit")) artv_import_visit();
587                 else if (!strcasecmp(buf, "message")) artv_import_message();
588                 else break;
589
590         }
591         lprintf(CTDL_INFO, "Invalid keyword <%s>.  Flushing input.\n", buf);
592         while (client_getln(buf, sizeof buf), strcmp(buf, "000"))  ;;
593 }
594
595
596
597 void cmd_artv(char *cmdbuf) {
598         char cmd[32];
599         static int is_running = 0;
600
601         if (CtdlAccessCheck(ac_internal)) return;
602         if (is_running) {
603                 cprintf("%d The importer/exporter is already running.\n",
604                         ERROR + RESOURCE_BUSY);
605                 return;
606         }
607         is_running = 1;
608
609         strcpy(artv_tempfilename1, tmpnam(NULL));
610         strcpy(artv_tempfilename2, tmpnam(NULL));
611
612         extract_token(cmd, cmdbuf, 0, '|', sizeof cmd);
613         if (!strcasecmp(cmd, "export")) artv_do_export();
614         else if (!strcasecmp(cmd, "import")) artv_do_import();
615         else cprintf("%d illegal command\n", ERROR + ILLEGAL_VALUE);
616
617         unlink(artv_tempfilename1);
618         unlink(artv_tempfilename2);
619
620         is_running = 0;
621 }
622
623
624
625
626 char *serv_vandelay_init(void)
627 {
628         CtdlRegisterProtoHook(cmd_artv, "ARTV", "import/export data store");
629         return "$Id$";
630 }