]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_upgrade.c
* citadel.h (and related files): removed defunct parameters,
[citadel.git] / citadel / serv_upgrade.c
index 49ba50e45a18e74075098cf880239c334ddf1345..35c6e8677c4e0a6b3897ab32baf2a3bddfdadb44 100644 (file)
@@ -3,6 +3,8 @@
  * an older version of Citadel, or a different hardware architecture, or
  * whatever.  You should only run an import when your installed system is
  * brand new and _empty_ !!
+ *
+ * $Id$
  */
 
 #include <stdlib.h>
@@ -366,8 +368,6 @@ void imp_config(void) {
                        config.c_twitdetect = atoi(value);
                if (!strcasecmp(key, "c_twitroom"))
                        strcpy(config.c_twitroom, value);
-               if (!strcasecmp(key, "c_defent"))
-                       config.c_defent = atoi(value);
                if (!strcasecmp(key, "c_moreprompt"))
                        strcpy(config.c_moreprompt, value);
                if (!strcasecmp(key, "c_restrict"))
@@ -470,6 +470,149 @@ void do_import(char *argbuf) {
        }
 
 
+void dump_message(long msg_num) {
+       struct cdbdata *dmsgtext;
+
+       dmsgtext = cdb_fetch(CDB_MSGMAIN, &msg_num, sizeof(long));
+       
+       if (dmsgtext == NULL) {
+               lprintf(9, "%d Can't find message %ld\n", msg_num);
+               return;
+               }
+
+       fprintf(exfp, "message%c%ld%c", 0, msg_num, 0);
+       fprintf(exfp, "%ld%c", (long)dmsgtext->len, 0);
+       fwrite(dmsgtext->ptr, dmsgtext->len, 1, exfp);
+
+       cdb_free(dmsgtext);
+       }
+
+
+void export_a_room(struct quickroom *qr) {
+       int b = 0;
+       int msgcount = 0;
+
+       lprintf(9,"<%s>\n", qr->QRname);
+       fprintf(exfp, "room%c", 0);
+       fprintf(exfp, "qrname%c%s%c", 0, qr->QRname, 0);
+       fprintf(exfp, "qrpasswd%c%s%c", 0, qr->QRpasswd, 0);
+       fprintf(exfp, "qrroomaide%c%ld%c", 0, qr->QRroomaide, 0);
+       fprintf(exfp, "qrhighest%c%ld%c", 0, qr->QRhighest, 0);
+       fprintf(exfp, "qrgen%c%ld%c", 0, qr->QRgen, 0);
+       fprintf(exfp, "qrflags%c%d%c", 0, qr->QRflags, 0);
+       fprintf(exfp, "qrdirname%c%s%c", 0, qr->QRdirname, 0);
+       fprintf(exfp, "qrinfo%c%ld%c", 0, qr->QRinfo, 0);
+       fprintf(exfp, "qrfloor%c%d%c", 0, qr->QRfloor, 0);
+
+       get_msglist(qr);
+       if (CC->num_msgs > 0) for (b=0; b<(CC->num_msgs); ++b) {
+               ++msgcount;
+               lprintf(9, "Message #%ld\n", MessageFromList(b));
+               dump_message(MessageFromList(b));
+               }
+
+       fprintf(exfp, "endroom%c", 0);
+       }
+
+
+void export_rooms(void) {
+       lprintf(9,"Rooms\n");
+       fprintf(exfp, "rooms%c", 0);
+       ForEachRoom(export_a_room);
+       fprintf(exfp, "endsection%c", 0);
+       }
+
+
+
+void export_floors(void) {
+       int floornum;
+       struct floor fl;
+
+       fprintf(exfp, "floors%c", 0);
+       for (floornum=0; floornum<MAXFLOORS; ++floornum) {
+               getfloor(&fl, floornum);
+               fprintf(exfp, "floor%c", 0);
+               fprintf(exfp, "f_flags%c%d%c", 0, fl.f_flags, 0);
+               fprintf(exfp, "f_name%c%s%c", 0, fl.f_name, 0);
+               fprintf(exfp, "f_ref_count%c%d%c", 0, fl.f_ref_count, 0);
+               fprintf(exfp, "endfloor%c", 0);
+               }
+       fprintf(exfp, "endsection%c", 0);
+       }
+
+
+
+
+void export_a_user(struct usersupp *us) {
+       struct cdbdata *cdbvisit;
+       struct visit *visits;
+       int num_visits;
+       int a;
+
+       lprintf(9, "User <%s>\n", us->fullname);
+
+       fprintf(exfp, "user%c", 0);
+       fprintf(exfp, "usuid%c%d%c", 0, us->USuid, 0);
+       fprintf(exfp, "password%c%s%c", 0, us->password, 0);
+       fprintf(exfp, "flags%c%d%c", 0, us->flags, 0);
+       fprintf(exfp, "timescalled%c%d%c", 0, us->timescalled, 0);
+       fprintf(exfp, "posted%c%d%c", 0, us->posted, 0);
+       fprintf(exfp, "fullname%c%s%c", 0, us->fullname, 0);
+       fprintf(exfp, "axlevel%c%d%c", 0, us->axlevel, 0);
+       fprintf(exfp, "usscreenwidth%c%d%c", 0, us->USscreenwidth, 0);
+       fprintf(exfp, "usscreenheight%c%d%c", 0, us->USscreenheight, 0);
+       fprintf(exfp, "usernum%c%ld%c", 0, us->usernum, 0);
+       fprintf(exfp, "lastcall%c%ld%c", 0, us->lastcall, 0);
+       fprintf(exfp, "usname%c%s%c", 0, us->USname, 0);
+       fprintf(exfp, "usaddr%c%s%c", 0, us->USaddr, 0);
+       fprintf(exfp, "uscity%c%s%c", 0, us->UScity, 0);
+       fprintf(exfp, "usstate%c%s%c", 0, us->USstate, 0);
+       fprintf(exfp, "uszip%c%s%c", 0, us->USzip, 0);
+       fprintf(exfp, "usphone%c%s%c", 0, us->USphone, 0);
+       fprintf(exfp, "usemail%c%s%c", 0, us->USemail, 0);
+
+
+       cdbvisit = cdb_fetch(CDB_VISIT, &CC->usersupp.usernum, sizeof(long));
+       if (cdbvisit != NULL) {
+               if ((num_visits = cdbvisit->len / sizeof(struct visit)) == 0) {
+                       cdb_free(cdbvisit);
+                       return;
+                       }
+               visits = (struct visit *)
+                       malloc(num_visits * sizeof(struct visit));
+               memcpy(visits, cdbvisit->ptr,
+                       (num_visits * sizeof(struct visit)));
+               cdb_free(cdbvisit);
+
+               if (num_visits > 0) for (a=0; a<num_visits; ++a) {
+                       fprintf(exfp, "visit%c", 0);
+                       fprintf(exfp, "vname%c%s%c", 0,
+                                       visits[a].v_roomname, 0);
+                       fprintf(exfp, "vgen%c%ld%c", 0,
+                                       visits[a].v_generation, 0);
+                       fprintf(exfp, "lastseen%c%ld%c", 0,
+                                       visits[a].v_lastseen, 0);
+                       fprintf(exfp, "flags%c%d%c", 0,
+                                       visits[a].v_flags, 0);
+                       fprintf(exfp, "endvisit%c", 0);
+                       }
+               free(visits);
+               }
+
+
+       fprintf(exfp, "enduser%c", 0);
+       }
+
+
+void export_usersupp(void) {
+       lprintf(9, "Users\n");
+       fprintf(exfp, "usersupp%c", 0);
+
+       ForEachUser(export_a_user);
+
+       fprintf(exfp, "endsection%c", 0);
+       }
+       
 
 void do_export(char *argbuf) {
        char export_filename[PATH_MAX];
@@ -503,7 +646,6 @@ void do_export(char *argbuf) {
        fprintf(exfp, "c_regiscall%c%d%c", 0, config.c_regiscall, 0);
        fprintf(exfp, "c_twitdetect%c%d%c", 0, config.c_twitdetect, 0);
        fprintf(exfp, "c_twitroom%c%s%c", 0, config.c_twitroom, 0);
-       fprintf(exfp, "c_defent%c%d%c", 0, config.c_defent, 0);
        fprintf(exfp, "c_moreprompt%c%s%c", 0, config.c_moreprompt, 0);
        fprintf(exfp, "c_restrict%c%d%c", 0, config.c_restrict, 0);
        fprintf(exfp, "c_bbs_city%c%s%c", 0, config.c_bbs_city, 0);
@@ -524,11 +666,12 @@ void do_export(char *argbuf) {
        fprintf(exfp, "mmflags%c%d%c", 0, CitControl.MMflags, 0);
        fprintf(exfp, "endsection%c", 0);
 
-       /* export_rooms(exfp); */
-       /* export_floors(exfp); */
-       /* export_usersupp(exfp); */
-       fprintf(exfp, "endfile%c", 0);
+       /* Export all of the databases */
+       export_rooms();
+       export_floors();
+       export_usersupp();
 
+       fprintf(exfp, "endfile%c", 0);
        fclose(exfp);
        lprintf(1, "Export is finished.\n");
        cprintf("%d Export is finished.\n", OK);