]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_vandelay.c
* Merged in code from the TRANSACTIONS branch for testing.
[citadel.git] / citadel / serv_vandelay.c
index 5c871237419380824ca7e7b1e427253c3e590164..d1cbd2db857f3f60b8e31e31c8f8e5168517abd5 100644 (file)
 #include "room_ops.h"
 #include "control.h"
 
-char artv_tempfilename1[256];
-char artv_tempfilename2[256];
+#define END_OF_MESSAGE "---eom---dbd---"
+
+char artv_tempfilename1[PATH_MAX];
+char artv_tempfilename2[PATH_MAX];
 FILE *artv_global_message_list;
 
 void artv_export_users_backend(struct usersupp *usbuf, void *data) {
@@ -61,7 +63,7 @@ void artv_export_users(void) {
 }
 
 
-void artv_export_room_msg(long msgnum) {
+void artv_export_room_msg(long msgnum, void *userdata) {
        cprintf("%ld\n", msgnum);
        fprintf(artv_global_message_list, "%ld\n", msgnum);
 }
@@ -89,7 +91,7 @@ void artv_export_rooms_backend(struct quickroom *qrbuf, void *data) {
         * one per line terminated by a 0.
         */
        CtdlForEachMessage(MSGS_ALL, 0L, (-127), NULL, NULL,
-               artv_export_room_msg);
+               artv_export_room_msg, NULL);
        cprintf("0\n");
 
 }
@@ -97,7 +99,7 @@ void artv_export_rooms_backend(struct quickroom *qrbuf, void *data) {
 
 
 void artv_export_rooms(void) {
-       char cmd[256];
+       char cmd[SIZ];
        artv_global_message_list = fopen(artv_tempfilename1, "w");
        ForEachRoom(artv_export_rooms_backend, NULL);
        fclose(artv_global_message_list);
@@ -136,12 +138,13 @@ void artv_export_floors(void) {
 
 
 /* 
- *  Traverse the room file...
+ *  Traverse the visits file...
  */
 void artv_export_visits(void) {
        struct visit vbuf;
        struct cdbdata *cdbv;
 
+       cdb_begin_transaction();
        cdb_rewind(CDB_VISIT);
 
        while (cdbv = cdb_next_item(CDB_VISIT), cdbv != NULL) {
@@ -158,19 +161,54 @@ void artv_export_visits(void) {
                cprintf("%ld\n", vbuf.v_lastseen);
                cprintf("%u\n", vbuf.v_flags);
        }
+       cdb_end_transaction();
 }
 
 
 void artv_export_message(long msgnum) {
+       struct SuppMsgInfo smi;
+       struct CtdlMessage *msg;
+       struct ser_ret smr;
+       FILE *fp;
+       char buf[SIZ];
+       char tempfile[SIZ];
+
+       msg = CtdlFetchMessage(msgnum);
+       if (msg == NULL) return;        /* fail silently */
+
        cprintf("message\n");
+       GetSuppMsgInfo(&smi, msgnum);
        cprintf("%ld\n", msgnum);
-       /* FIXME do more here of course */
+       cprintf("%d\n", smi.smi_refcount);
+       cprintf("%s\n", smi.smi_content_type);
+       cprintf("%d\n", smi.smi_mod);
+
+       serialize_message(&smr, msg);
+       CtdlFreeMessage(msg);
+
+       /* write it in base64 */
+       strcpy(tempfile, tmpnam(NULL));
+       sprintf(buf, "./base64 -e >%s", tempfile);
+       fp = popen(buf, "w");
+       fwrite(smr.ser, smr.len, 1, fp);
+       fclose(fp);
+
+       phree(smr.ser);
+
+       fp = fopen(tempfile, "r");
+       unlink(tempfile);
+       while (fgets(buf, sizeof(buf), fp) != NULL) {
+               buf[strlen(buf)-1] = 0;
+               cprintf("%s\n", buf);
+       }
+       fclose(fp);
+       cprintf("%s\n", END_OF_MESSAGE);
 }
 
 
 
 void artv_export_messages(void) {
-       char buf[256];
+       char buf[SIZ];
        long msgnum;
        int count = 0;
 
@@ -191,7 +229,9 @@ void artv_export_messages(void) {
 
 
 void artv_do_export(void) {
-       cprintf("%d Yikes.\n", LISTING_FOLLOWS);
+       cprintf("%d Exporting all Citadel databases.\n", LISTING_FOLLOWS);
+
+       cprintf("version\n%d\n", REV_LEVEL);
 
        /* export the config file */
        cprintf("config\n");
@@ -250,16 +290,242 @@ void artv_do_export(void) {
 
 
 
+void artv_import_config(void) {
+       char buf[SIZ];
+
+       lprintf(9, "Importing config file\n");
+       client_gets(config.c_nodename);
+       lprintf(9, "c_nodename = %s\n", config.c_nodename);
+       client_gets(config.c_fqdn);
+       client_gets(config.c_humannode);
+       client_gets(config.c_phonenum);
+       client_gets(buf);       config.c_bbsuid = atoi(buf);
+       client_gets(buf);       config.c_creataide = atoi(buf);
+       client_gets(buf);       config.c_sleeping = atoi(buf);
+       client_gets(buf);       config.c_initax = atoi(buf);
+       client_gets(buf);       config.c_regiscall = atoi(buf);
+       client_gets(buf);       config.c_twitdetect = atoi(buf);
+       client_gets(config.c_twitroom);
+       client_gets(config.c_moreprompt);
+       client_gets(buf);       config.c_restrict = atoi(buf);
+       client_gets(buf);       config.c_msgbase = atol(buf);
+       client_gets(config.c_bbs_city);
+       client_gets(config.c_sysadm);
+       lprintf(9, "c_sysadm = %s\n", config.c_sysadm);
+       client_gets(config.c_bucket_dir);
+       client_gets(buf);       config.c_setup_level = atoi(buf);
+       client_gets(buf);       config.c_maxsessions = atoi(buf);
+       client_gets(config.c_net_password);
+       client_gets(buf);       config.c_port_number = atoi(buf);
+       client_gets(buf);       config.c_ipgm_secret = atoi(buf);
+       client_gets(buf);       config.c_ep.expire_mode = atoi(buf);
+       client_gets(buf);       config.c_ep.expire_value = atoi(buf);
+       client_gets(buf);       config.c_userpurge = atoi(buf);
+       client_gets(buf);       config.c_roompurge = atoi(buf);
+       client_gets(config.c_logpages);
+       client_gets(buf);       config.c_createax = atoi(buf);
+       client_gets(buf);       config.c_maxmsglen = atol(buf);
+       client_gets(buf);       config.c_min_workers = atoi(buf);
+       client_gets(buf);       config.c_max_workers = atoi(buf);
+       client_gets(buf);       config.c_pop3_port = atoi(buf);
+       client_gets(buf);       config.c_smtp_port = atoi(buf);
+       client_gets(buf);       config.c_default_filter = atoi(buf);
+       put_config();
+       lprintf(7, "Imported config file\n");
+}
+
+
+
+void artv_import_control(void) {
+       char buf[SIZ];
+
+       lprintf(9, "Importing control file\n");
+       client_gets(buf);       CitControl.MMhighest = atol(buf);
+       client_gets(buf);       CitControl.MMflags = atoi(buf);
+       client_gets(buf);       CitControl.MMnextuser = atol(buf);
+       client_gets(buf);       CitControl.MMnextroom = atol(buf);
+       client_gets(buf);       CitControl.version = atoi(buf);
+       put_control();
+       lprintf(7, "Imported control file\n");
+}
+
+
+void artv_import_user(void) {
+       char buf[SIZ];
+       struct usersupp usbuf;
+
+       client_gets(buf);       usbuf.version = atoi(buf);
+       client_gets(buf);       usbuf.uid = atoi(buf);
+       client_gets(usbuf.password);
+       client_gets(buf);       usbuf.flags = atoi(buf);
+       client_gets(buf);       usbuf.timescalled = atol(buf);
+       client_gets(buf);       usbuf.posted = atol(buf);
+       client_gets(buf);       usbuf.axlevel = atoi(buf);
+       client_gets(buf);       usbuf.usernum = atol(buf);
+       client_gets(buf);       usbuf.lastcall = atol(buf);
+       client_gets(buf);       usbuf.USuserpurge = atoi(buf);
+       client_gets(usbuf.fullname);
+       client_gets(buf);       usbuf.USscreenwidth = atoi(buf);
+       client_gets(buf);       usbuf.USscreenheight = atoi(buf);
+       client_gets(buf);       usbuf.moderation_filter = atoi(buf);
+       putuser(&usbuf);
+}
+
+
+void artv_import_room(void) {
+       char buf[SIZ];
+       struct quickroom qrbuf;
+       long msgnum;
+       int msgcount = 0;
+
+       client_gets(qrbuf.QRname);
+       client_gets(qrbuf.QRpasswd);
+       client_gets(buf);       qrbuf.QRroomaide = atol(buf);
+       client_gets(buf);       qrbuf.QRhighest = atol(buf);
+       client_gets(buf);       qrbuf.QRgen = atol(buf);
+       client_gets(buf);       qrbuf.QRflags = atoi(buf);
+       client_gets(qrbuf.QRdirname);
+       client_gets(buf);       qrbuf.QRinfo = atol(buf);
+       client_gets(buf);       qrbuf.QRfloor = atoi(buf);
+       client_gets(buf);       qrbuf.QRmtime = atol(buf);
+       client_gets(buf);       qrbuf.QRep.expire_mode = atoi(buf);
+       client_gets(buf);       qrbuf.QRep.expire_value = atoi(buf);
+       client_gets(buf);       qrbuf.QRnumber = atol(buf);
+       client_gets(buf);       qrbuf.QRorder = atoi(buf);
+       putroom(&qrbuf);
+       lprintf(7, "Imported room <%s>\n", qrbuf.QRname);
+       /* format of message list export is all message numbers output
+        * one per line terminated by a 0.
+        */
+       while (client_gets(buf), msgnum = atol(buf), msgnum > 0) {
+               CtdlSaveMsgPointerInRoom(qrbuf.QRname, msgnum, 0);
+               ++msgcount;
+       }
+       lprintf(7, "(%d messages)\n", msgcount);
+}
+
+
+void artv_import_floor(void) {
+        struct floor flbuf;
+        int i;
+       char buf[SIZ];
+
+       client_gets(buf);               i = atoi(buf);
+       client_gets(buf);               flbuf.f_flags = atoi(buf);
+       client_gets(flbuf.f_name);
+       client_gets(buf);               flbuf.f_ref_count = atoi(buf);
+       client_gets(buf);               flbuf.f_ep.expire_mode = atoi(buf);
+       client_gets(buf);               flbuf.f_ep.expire_value = atoi(buf);
+       putfloor(&flbuf, i);
+       lprintf(7, "Imported floor #%d (%s)\n", i, flbuf.f_name);
+}
+
+
+/* 
+ */
+void artv_import_visit(void) {
+       struct visit vbuf;
+       char buf[SIZ];
+
+       client_gets(buf);       vbuf.v_roomnum = atol(buf);
+       client_gets(buf);       vbuf.v_roomgen = atol(buf);
+       client_gets(buf);       vbuf.v_usernum = atol(buf);
+       client_gets(buf);       vbuf.v_lastseen = atol(buf);
+       client_gets(buf);       vbuf.v_flags = atoi(buf);
+       put_visit(&vbuf);
+       lprintf(7, "Imported visit %ld/%ld/%ld\n",
+               vbuf.v_roomnum, vbuf.v_roomgen, vbuf.v_usernum);
+}
+
+
+
+void artv_import_message(void) {
+       struct SuppMsgInfo smi;
+       long msgnum;
+       int msglen;
+       FILE *fp;
+       char buf[SIZ];
+       char tempfile[SIZ];
+       char *mbuf;
+
+       memset(&smi, 0, sizeof(struct SuppMsgInfo));
+       client_gets(buf);       msgnum = atol(buf);
+                               smi.smi_msgnum = msgnum;
+       client_gets(buf);       smi.smi_refcount = atoi(buf);
+       client_gets(smi.smi_content_type);
+       client_gets(buf);       smi.smi_mod = atoi(buf);
+
+       lprintf(7, "message #%ld\n", msgnum);
+
+       /* decode base64 message text */
+       strcpy(tempfile, tmpnam(NULL));
+       sprintf(buf, "./base64 -d >%s", tempfile);
+       fp = popen(buf, "w");
+       while (client_gets(buf), strcasecmp(buf, END_OF_MESSAGE)) {
+               fprintf(fp, "%s\n", buf);
+       }
+       fclose(fp);
+       fp = fopen(tempfile, "rb");
+       fseek(fp, 0L, SEEK_END);
+       msglen = ftell(fp);
+       fclose(fp);
+       lprintf(9, "msglen = %ld\n", msglen);
+
+       mbuf = mallok(msglen);
+       fp = fopen(tempfile, "rb");
+       fread(mbuf, msglen, 1, fp);
+       fclose(fp);
+
+        begin_critical_section(S_MSGMAIN);
+        cdb_store(CDB_MSGMAIN, &msgnum, sizeof(long), mbuf, msglen);
+        end_critical_section(S_MSGMAIN);
+
+       phree(mbuf);
+       unlink(tempfile);
+
+       PutSuppMsgInfo(&smi);
+       lprintf(7, "Imported message %ld\n", msgnum);
+}
+
+
+
 
 void artv_do_import(void) {
-       cprintf("%d command not yet implemented\n", ERROR);
+       char buf[SIZ];
+       char s_version[SIZ];
+       int version;
+
+       cprintf("%d sock it to me\n", SEND_LISTING);
+       while (client_gets(buf), strcmp(buf, "000")) {
+
+               lprintf(9, "import keyword: <%s>\n", buf);
+
+               if (!strcasecmp(buf, "version")) {
+                       client_gets(s_version);
+                       version = atoi(s_version);
+                       if ((version < REV_MIN) || (version > REV_LEVEL)) {
+                               lprintf(7, "Version mismatch - aborting\n");
+                               break;
+                       }
+               }
+               else if (!strcasecmp(buf, "config")) artv_import_config();
+               else if (!strcasecmp(buf, "control")) artv_import_control();
+               else if (!strcasecmp(buf, "user")) artv_import_user();
+               else if (!strcasecmp(buf, "room")) artv_import_room();
+               else if (!strcasecmp(buf, "floor")) artv_import_floor();
+               else if (!strcasecmp(buf, "visit")) artv_import_visit();
+               else if (!strcasecmp(buf, "message")) artv_import_message();
+               else break;
 
+       }
+       lprintf(7, "Invalid keyword <%s>.  Flushing input.\n", buf);
+       while (client_gets(buf), strcmp(buf, "000"))  ;;
 }
 
 
 
 void cmd_artv(char *cmdbuf) {
-       char cmd[256];
+       char cmd[SIZ];
        static int is_running = 0;
 
        if (CtdlAccessCheck(ac_aide)) return;   /* FIXME should be intpgm */