* Renamed "struct user" to "struct ctdluser"
[citadel.git] / citadel / routines.c
index 1f967e278e5e222344201eee9add81efc9fefa63..cbeaddaf7076db12693cee376d89928524169e5e 100644 (file)
@@ -1,5 +1,9 @@
-/* Citadel/UX support routines */
-/* $Id$ */
+/*
+ * $Id$
+ *
+ * Client-side support functions.
+ *
+ */
 
 #include "sysdep.h"
 #include <stdlib.h>
 #include <signal.h>
 #include <dirent.h>
 #include <errno.h>
-#include <time.h>
+
+#if TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# if HAVE_SYS_TIME_H
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
+#ifdef HAVE_LIMITS_H
 #include <limits.h>
+#endif
 #ifdef HAVE_UTMP_H
 #include <utmp.h>
 #endif
 #ifdef HAVE_UTMPX_H
 #include <utmpx.h>
 #endif
+#include "citadel.h"
+#include "citadel_ipc.h"
+#include "screen.h"
 
 #ifndef HAVE_GETUTLINE
 struct utmp *getutline(struct utmp *ut);
@@ -33,16 +52,8 @@ struct utmp *getutline(struct utmp *ut);
 #include "routines.h"
 #include "commands.h"
 #include "tools.h"
-
-void sttybbs(int cmd);
-void newprompt(char *prompt, char *str, int len);
-void val_user(char *, int);
-void formout(char *name);
-void logoff(int code);
-void set_keepalives(int s);
-void strprompt(char *prompt, char *str, int len);
-void newprompt(char *prompt, char *str, int len);
-void color(int colornum);
+#include "citadel_decls.h"
+#include "routines2.h"
 
 #define IFAIDE if(axlevel>=6)
 #define IFNAIDE if (axlevel<6)
@@ -53,188 +64,235 @@ extern char sigcaught;
 extern struct CtdlServInfo serv_info;
 extern char rc_floor_mode;
 extern int rc_ansi_color;
+extern int rc_prompt_control;
 
-void back(int spaces) /* Destructive backspace */
-            {
+/* Destructive backspace */
+void back(int spaces) {
        int a;
-       for (a=1; a<=spaces; ++a) {
-               putc(8,stdout); putc(32,stdout); putc(8,stdout);
-               }
+       for (a=0; a<spaces; ++a) {
+               scr_putc(8);
+               scr_putc(32);
+               scr_putc(8);
        }
+}
 
-void hit_any_key(void) {               /* hit any key to continue */
+void hit_any_key(CtdlIPC *ipc) {       /* hit any key to continue */
        int a,b;
 
        color(COLOR_PUSH);
        color(DIM_RED);
-       printf("%s\r",serv_info.serv_moreprompt);
+       scr_printf("%s\r",serv_info.serv_moreprompt);
        color(COLOR_POP);
        sttybbs(0);
        b=inkey();
        for (a=0; a<strlen(serv_info.serv_moreprompt); ++a)
-               putc(' ',stdout);
-       putc(13,stdout);
+               scr_putc(' ');
+       scr_putc(13);
        sttybbs(1);
+       if ( (rc_prompt_control == 1)
+          || ((rc_prompt_control == 3) && (userflags & US_PROMPTCTL)) ) {
+               if (b == 'q' || b == 'Q' || b == 's' || b == 'S')
+                       b = STOP_KEY;
+               if (b == 'n' || b == 'N')
+                       b = NEXT_KEY;
+       }
        if (b==NEXT_KEY) sigcaught = SIGINT;
        if (b==STOP_KEY) sigcaught = SIGQUIT;
-       }
+}
 
 /*
  * change a user's access level
  */
-void edituser(void)
+void edituser(CtdlIPC *ipc)
 {
-       char buf[256];
-       char who[256];
-       char pass[256];
-       int flags;
-       int timescalled;
-       int posted;
-       int axlevel;
-       long usernum;
-       time_t lastcall;
-       int userpurge;
-
-       newprompt("User name: ",who,25);
-       sprintf(buf,"AGUP %s",who);
-       serv_puts(buf);
-       serv_gets(buf);
-       if (buf[0]!='2') {
-               printf("%s\n",&buf[4]);
-               return;
-               }
-       extract(who, &buf[4], 0);
-       extract(pass, &buf[4], 1);
-       flags = extract_int(&buf[4], 2);
-       timescalled = extract_int(&buf[4], 3);
-       posted = extract_int(&buf[4], 4);
-       axlevel = extract_int(&buf[4], 5);
-       usernum = extract_long(&buf[4], 6);
-       lastcall = extract_long(&buf[4], 7);
-       userpurge = extract_int(&buf[4], 8);
-
-       val_user(who, 0); /* Display registration */
-       strprompt("Password", pass, 19);
-       axlevel = intprompt("Access level", axlevel, 0, 6);
-       timescalled = intprompt("Times called", timescalled, 0, INT_MAX);
-       posted = intprompt("Messages posted", posted, 0, INT_MAX);
-       lastcall = (boolprompt("Set last call to now", 0)?time(NULL):lastcall);
-       userpurge = intprompt("Purge time (in days, 0 for system default",
-                               userpurge, 0, INT_MAX);
-
-       sprintf(buf, "ASUP %s|%s|%d|%d|%d|%d|%ld|%ld|%d",
-               who, pass, flags, timescalled, posted, axlevel, usernum,
-               (long)lastcall, userpurge);
-       serv_puts(buf);
-       serv_gets(buf);
-       if (buf[0]!='2') {
-               printf("%s\n",&buf[4]);
+       char buf[SIZ];
+       char who[USERNAME_SIZE];
+       struct ctdluser *user = NULL;
+       int newnow = 0;
+       int r;                          /* IPC response code */
+
+       newprompt("User name: ", who, 25);
+       while ((r = CtdlIPCAideGetUserParameters(ipc, who, &user, buf)) / 100 != 2) {
+               scr_printf("%s\n", buf);
+               scr_printf("Do you want to create this user? ");
+               if (yesno()) {
+                       r = CtdlIPCCreateUser(ipc, who, 0, buf);
+                       if (r / 100 == 2) {
+                               newnow = 1;
+                               continue;
+                       }
+                       scr_printf("%s\n",&buf[4]);
                }
+               free(user);
+               return;
        }
 
+       val_user(ipc, user->fullname, 0); /* Display registration */
 
-int set_attr(int sval, char *prompt, unsigned int sbit)
+       if (newnow || boolprompt("Change password", 0)) {       /* I'm lazy */
+               strprompt("Password", user->password, -19);
+       }
+
+       user->axlevel = intprompt("Access level", user->axlevel, 0, 6);
+
+       user->flags = set_attr(ipc, user->flags,
+               "Permission to send/receive Internet mail",
+               US_INTERNET, 0);
+
+       if (boolprompt("Ask user to register again", !(user->flags & US_REGIS)))
+               user->flags &= ~US_REGIS;
+       else
+               user->flags |= US_REGIS;
+       user->timescalled = intprompt("Times called",
+                                     user->timescalled, 0, INT_MAX);
+       user->posted = intprompt("Messages posted",
+                                user->posted, 0, INT_MAX);
+       user->lastcall = boolprompt("Set last call to now", 0) ?
+                                               time(NULL) : user->lastcall;
+       user->USuserpurge = intprompt("Purge time (in days, 0 for system default",
+                                     user->USuserpurge, 0, INT_MAX);
+
+       r = CtdlIPCAideSetUserParameters(ipc, user, buf);
+       if (r / 100 != 2) {
+               scr_printf("%s\n", buf);
+       }
+       free(user);
+}
+
+
+/* Display a prompt and flip a bit based on whether the user answers
+ * yes or no.  Yes=1 and No=0, unless 'backwards' is set to a nonzero value
+ * in which case No=1 and Yes=0.
+ */
+int set_attr(CtdlIPC *ipc, unsigned int sval, char *prompt, unsigned int sbit, int backwards)
 {
        int a;
        int temp;
 
        temp = sval;
        color(DIM_WHITE);
-       printf("%45s ", prompt);
+       scr_printf("%45s ", prompt);
        color(DIM_MAGENTA);
-       printf("[");
+       scr_printf("[");
        color(BRIGHT_MAGENTA);
-       printf("%3s", ((temp&sbit) ? "Yes":"No"));
+
+       if (backwards) {
+               scr_printf("%3s", ((temp&sbit) ? "No":"Yes"));
+       }
+       else {
+               scr_printf("%3s", ((temp&sbit) ? "Yes":"No"));
+       }
+
        color(DIM_MAGENTA);
-       printf("]? ");
+       scr_printf("]? ");
        color(BRIGHT_CYAN);
-       a=yesno_d(temp&sbit);
+       a = (temp & sbit);
+       if (a != 0) a = 1;
+       if (backwards) a = 1 - a;
+       a = yesno_d(a);
+       if (backwards) a = 1 - a;
        color(DIM_WHITE);
-       temp=(temp|sbit);
-       if (!a) temp=(temp^sbit);
+       temp = (temp|sbit);
+       if (!a) temp = (temp^sbit);
        return(temp);
-       }
+}
 
 /*
  * modes are:  0 - .EC command, 1 - .EC for new user,
  *             2 - toggle Xpert mode  3 - toggle floor mode
  */
-void enter_config(int mode)
+void enter_config(CtdlIPC *ipc, int mode)
 {
-       int width, height, flags, filter;
-       char buf[128];
-
-       sprintf(buf,"GETU");
-       serv_puts(buf);
-       serv_gets(buf);
-       if (buf[0]!='2') {
-               printf("%s\n",&buf[4]);
+       char buf[SIZ];
+       struct ctdluser *user = NULL;
+       int r;                          /* IPC response code */
+
+       r = CtdlIPCGetConfig(ipc, &user, buf);
+       if (r / 100 != 2) {
+               scr_printf("%s\n", buf);
+               free(user);
                return;
-               }
-
-       width = extract_int(&buf[4],0);
-       height = extract_int(&buf[4],1);
-       flags = extract_int(&buf[4],2);
-       filter = extract_int(&buf[4],3);
+       }
 
-       if ((mode==0)||(mode==1)) {
+       if (mode == 0 || mode == 1) {
 
-        width = intprompt("Enter your screen width",width,20,255);
-        height = intprompt("Enter your screen height",height,3,255);
+               user->USscreenwidth = intprompt("Enter your screen width",
+                                               user->USscreenwidth, 20, 255);
+               user->USscreenheight = intprompt("Enter your screen height",
+                                                user->USscreenheight, 3, 255);
  
-        flags = set_attr(flags,
-               "Are you an experienced Citadel user",US_EXPERT);
-        if ( ((flags&US_EXPERT)==0) && (mode==1))
-               return;
-        flags = set_attr(flags,
-               "Print last old message on New message request",US_LASTOLD);
-        if ((flags&US_EXPERT)==0) formout("unlisted");
-        flags = set_attr(flags,"Be unlisted in userlog",US_UNLISTED);
-        flags = set_attr(flags,"Suppress message prompts",US_NOPROMPT);
-        if ((flags & US_NOPROMPT)==0)
-           flags = set_attr(flags,"Use 'disappearing' prompts",US_DISAPPEAR);
-        flags = set_attr(flags,
-               "Pause after each screenful of text",US_PAGINATOR);
-        if (rc_floor_mode == RC_DEFAULT) {
-         flags = set_attr(flags,
-               "View rooms by floor",US_FLOORS);
-         }
-        if (rc_ansi_color == 3) {
-         flags = set_attr(flags,
-               "Enable color support",US_COLOR);
-         }
-       
-        filter = intprompt("Moderation filter level", filter, -63, 63);
-
-        }
-
-       if (mode==2) {
-        if (flags & US_EXPERT) {
-               flags = (flags ^ US_EXPERT);
-               printf("Expert mode now OFF\n");
-               }
-        else {
-               flags = (flags | US_EXPERT);
-               printf("Expert mode now ON\n");
+               user->flags = set_attr(ipc, user->flags,
+                                      "Are you an experienced Citadel user",
+                                      US_EXPERT, 0);
+               if ((user->flags & US_EXPERT) == 0 && mode == 1) {
+                       free(user);
+                       return;
                }
-        }
 
-       if (mode==3) {
-        if (flags & US_FLOORS) {
-               flags = (flags ^ US_FLOORS);
-               printf("Floor mode now OFF\n");
+               user->flags = set_attr(ipc, user->flags,
+                       "Print last old message on New message request",
+                       US_LASTOLD, 0);
+
+               user->flags = set_attr(ipc, user->flags,
+                                      "Prompt after each message",
+                                      US_NOPROMPT, 1);
+
+               if ((user->flags & US_NOPROMPT) == 0)
+                       user->flags = set_attr(ipc, user->flags,
+                                              "Use 'disappearing' prompts",
+                                              US_DISAPPEAR, 0);
+
+               user->flags = set_attr(ipc, user->flags,
+                                      "Pause after each screenful of text",
+                                      US_PAGINATOR, 0);
+
+               if (rc_prompt_control == 3 && (user->flags & US_PAGINATOR))
+                       user->flags = set_attr(ipc, user->flags,
+                               "<N>ext and <S>top work at paginator prompt",
+                               US_PROMPTCTL, 0);
+
+               if (rc_floor_mode == RC_DEFAULT)
+                       user->flags = set_attr(ipc, user->flags,
+                                              "View rooms by floor",
+                                              US_FLOORS, 0);
+
+               if (rc_ansi_color == 3)
+                       user->flags = set_attr(ipc, user->flags,
+                                              "Enable color support",
+                                              US_COLOR, 0);
+
+               if ((user->flags & US_EXPERT) == 0)
+                       formout(ipc, "unlisted");
+
+               user->flags = set_attr(ipc, user->flags,
+                                      "Be unlisted in userlog",
+                                      US_UNLISTED, 0);
+       }
+
+       if (mode == 2) {
+               if (user->flags & US_EXPERT) {
+                       user->flags ^= US_EXPERT;
+                       scr_printf("Expert mode now OFF\n");
+               } else {
+                       user->flags |= US_EXPERT;
+                       scr_printf("Expert mode now ON\n");
                }
-        else {
-               flags = (flags | US_FLOORS);
-               printf("Floor mode now ON\n");
+       }
+
+       if (mode == 3) {
+               if (user->flags & US_FLOORS) {
+                       user->flags ^= US_FLOORS;
+                       scr_printf("Floor mode now OFF\n");
+               } else {
+                       user->flags |= US_FLOORS;
+                       scr_printf("Floor mode now ON\n");
                }
-        }
+       }
 
-       sprintf(buf,"SETU %d|%d|%d|%d",width,height,flags,filter);
-       serv_puts(buf);
-       serv_gets(buf);
-       if (buf[0]!='2') printf("%s\n",&buf[4]);
-       userflags = flags;
+       r = CtdlIPCSetConfig(ipc, user, buf);
+       if (r / 100 != 2) scr_printf("%s\n", buf);
+       userflags = user->flags;
+       free(user);
 }
 
 /*
@@ -252,35 +310,26 @@ int getstring(FILE *fp, char *string)
                        if (c<0) {
                                string[a]=0;
                                return(-1);
-                               }
+                       }
                        string[a++]=c;
-                       } while(c!=10);
+               } while(c!=10);
                        string[a-1]=0;
-               } while(string[0]=='#');
+       } while(string[0]=='#');
        return(strlen(string));
-       }
+}
 
-int pattern(char *search, char *patn)  /* Searches for patn in search string */
-              
-            
-{
+
+/* Searches for patn in search string */
+int pattern(char *search, char *patn) {
        int a,b;
-       for (a=0; a<strlen(search); ++a)
-       {       b=strncasecmp(&search[a],patn,strlen(patn));
+
+       for (a=0; a<strlen(search); ++a) {
+               b=strncasecmp(&search[a],patn,strlen(patn));
                if (b==0) return(b);
-               }
+       }
        return(-1);
 }
 
-void interr(int errnum)        /* display internal error as defined in errmsgs */
-            {
-       printf("*** INTERNAL ERROR %d\n",errnum);
-       printf("(Press any key to continue)\n");
-       inkey();
-       logoff(errnum);
-}
-
-
 
 void strproc(char *string)
 {
@@ -292,7 +341,7 @@ void strproc(char *string)
        for (a=0; a<strlen(string); ++a) {
                if (string[a]<32) string[a]=32;
                if (string[a]>126) string[a]=32;
-               }
+       }
 
        /* Remove leading and trailing blanks */
        while(string[0]<33) strcpy(string,&string[1]);
@@ -303,8 +352,8 @@ void strproc(char *string)
                if ((string[a]==32)&&(string[a+1]==32)) {
                        strcpy(&string[a],&string[a+1]);
                        a=0;
-                       }
                }
+       }
 
        /* remove characters which would interfere with the network */
        for (a=0; a<strlen(string); ++a) {
@@ -314,10 +363,10 @@ void strproc(char *string)
                if (string[a]==',') strcpy(&string[a],&string[a+1]);
                if (string[a]=='%') strcpy(&string[a],&string[a+1]);
                if (string[a]=='|') strcpy(&string[a],&string[a+1]);
-               }
-
        }
 
+}
+
 
 #ifndef HAVE_STRERROR
 /*
@@ -325,38 +374,37 @@ void strproc(char *string)
  */
 char *strerror(int e)
 {
-       static char buf[32];
+       static char buf[128];
 
-       sprintf(buf,"errno = %d",e);
+       snprintf(buf, sizeof buf, "errno = %d",e);
        return(buf);
-       }
+}
 #endif
 
 
-void progress(long int curr, long int cmax)
+void progress(unsigned long curr, unsigned long cmax)
 {
-       static long dots_printed;
-       long a;
-
-       if (curr==0) {
-               printf(".......................................");
-               printf(".......................................\r");
-               fflush(stdout);
-               dots_printed = 0;
-               }
-       else if (curr==cmax) {
-               printf("\r%79s\n","");
-               }
-       else {
-               a=(curr * 100) / cmax;
-               a=a*78; a=a/100;
-               while (dots_printed < a) {
-                       printf("*");
-                       ++dots_printed;
-                       fflush(stdout);
-                       }
-               }
+       static char dots[] =
+               "**************************************************";
+       char dots_printed[51];
+       char fmt[42];
+       unsigned long a;
+
+       if (curr >= cmax) {
+               sln_printf("\r%79s\r","");
+               status_line(serv_info.serv_humannode, serv_info.serv_bbs_city,
+                       room_name, secure, 0);
+       } else {
+               /* a will be range 0-50 rather than 0-100 */
+               a=(curr * 50) / cmax;
+               sprintf(fmt, "[%%s%%%lds] %%3ld%%%% %%10ld/%%10ld\r", 50 - a);
+               strncpy(dots_printed, dots, a);
+               dots_printed[a] = 0;
+               sln_printf(fmt, dots_printed, "",
+                               curr * 100 / cmax, curr, cmax);
+               sln_flush();
        }
+}
 
 
 /*
@@ -366,7 +414,7 @@ void progress(long int curr, long int cmax)
 void locate_host(char *hbuf)
 {
 #ifndef HAVE_UTMP_H
-       char buf[256];
+       char buf[SIZ];
        FILE *who;
        int a,b;
 
@@ -374,27 +422,27 @@ void locate_host(char *hbuf)
        if (who==NULL) {
                strcpy(hbuf,serv_info.serv_fqdn);
                return; 
-               }
-       fgets(buf,256,who);
+       }
+       fgets(buf,sizeof buf,who);
        pclose(who);
 
        b = 0;
        for (a=0; a<strlen(buf); ++a) {
                if ((buf[a]=='(')||(buf[a]==')')) ++b;
-               }
+       }
        if (b<2) {
                strcpy(hbuf,serv_info.serv_fqdn);
                return;
-               }
+       }
 
        for (a=0; a<strlen(buf); ++a) {
                if (buf[a]=='(') {
                        strcpy(buf,&buf[a+1]);
-                       }
                }
+       }
        for (a=0; a<strlen(buf); ++a) {
                if (buf[a]==')') buf[a] = 0;
-               }
+       }
 
        if (strlen(buf)==0) strcpy(hbuf,serv_info.serv_fqdn);
        else strncpy(hbuf,buf,24);
@@ -410,7 +458,7 @@ void locate_host(char *hbuf)
            fail:
                safestrncpy(hbuf, serv_info.serv_fqdn, 24);
                return;
-               }
+       }
 
        if (strncmp(tty, "/dev/", 5))
                goto fail;
@@ -434,37 +482,37 @@ void locate_host(char *hbuf)
 #endif
                        safestrncpy(hbuf, put->ut_line, 24);
 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
-               }
+       }
        else goto fail;
 #endif
 #endif /* HAVE_UTMP_H */
-       }
+}
 
 /*
  * miscellaneous server commands (testing, etc.)
  */
-void misc_server_cmd(char *cmd) {
-       char buf[256];
+void misc_server_cmd(CtdlIPC *ipc, char *cmd) {
+       char buf[SIZ];
 
-       serv_puts(cmd);
-       serv_gets(buf);
-       printf("%s\n",buf);
+       CtdlIPC_putline(ipc, cmd);
+       CtdlIPC_getline(ipc, buf);
+       scr_printf("%s\n",buf);
        if (buf[0]=='1') {
-               set_keepalives(KA_NO);
-               while (serv_gets(buf), strcmp(buf,"000")) {
-                       printf("%s\n",buf);
-                       }
+               set_keepalives(KA_HALF);
+               while (CtdlIPC_getline(ipc, buf), strcmp(buf,"000")) {
+                       scr_printf("%s\n",buf);
+               }
                set_keepalives(KA_YES);
                return;
-               }
+       }
        if (buf[0]=='4') {
                do {
                        newprompt("> ",buf,255);
-                       serv_puts(buf);
-                       } while(strcmp(buf,"000"));
+                       CtdlIPC_putline(ipc, buf);
+               } while(strcmp(buf,"000"));
                return;
-               }
        }
+}
 
 
 /*
@@ -484,11 +532,11 @@ int file_checksum(char *filename)
         */
        while (ch=getc(fp), ch>=0) {
                cksum = (cksum + ch);
-               }
+       }
 
        fclose(fp);
        return(cksum);
-       }
+}
 
 /*
  * nuke a directory and its contents
@@ -497,18 +545,19 @@ int nukedir(char *dirname)
 {
        DIR *dp;
        struct dirent *d;
-       char filename[256];
+       char filename[SIZ];
 
        dp = opendir(dirname);
        if (dp == NULL) {
                return(errno);
-               }
+       }
 
        while (d = readdir(dp), d != NULL) {
-               sprintf(filename, "%s/%s", dirname, d->d_name);
+               snprintf(filename, sizeof filename, "%s/%s",
+                       dirname, d->d_name);
                unlink(filename);
-               }
+       }
 
        closedir(dp);
        return(rmdir(dirname));
-       }
+}