]> code.citadel.org Git - citadel.git/blob - citadel/routines.c
* Full-screen curses support for Citadel text client
[citadel.git] / citadel / routines.c
1 /*
2  * $Id$
3  *
4  * Client-side support functions.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <fcntl.h>
12 #include <stdio.h>
13 #include <ctype.h>
14 #include <string.h>
15 #include <sys/types.h>
16 #include <sys/ioctl.h>
17 #include <pwd.h>
18 #include <signal.h>
19 #include <dirent.h>
20 #include <errno.h>
21
22 #if TIME_WITH_SYS_TIME
23 # include <sys/time.h>
24 # include <time.h>
25 #else
26 # if HAVE_SYS_TIME_H
27 #  include <sys/time.h>
28 # else
29 #  include <time.h>
30 # endif
31 #endif
32 #ifdef HAVE_LIMITS_H
33 #include <limits.h>
34 #endif
35 #ifdef HAVE_UTMP_H
36 #include <utmp.h>
37 #endif
38 #ifdef HAVE_UTMPX_H
39 #include <utmpx.h>
40 #endif
41 #include "screen.h"
42
43 #ifndef HAVE_GETUTLINE
44 struct utmp *getutline(struct utmp *ut);
45 #endif
46
47 #define ROUTINES_C
48
49 #include "citadel.h"
50 #include "routines.h"
51 #include "commands.h"
52 #include "tools.h"
53
54 void sttybbs(int cmd);
55 void newprompt(char *prompt, char *str, int len);
56 void val_user(char *, int);
57 void formout(char *name);
58 void logoff(int code);
59 void set_keepalives(int s);
60 void strprompt(char *prompt, char *str, int len);
61 void newprompt(char *prompt, char *str, int len);
62 void color(int colornum);
63
64 #define IFAIDE if(axlevel>=6)
65 #define IFNAIDE if (axlevel<6)
66
67 extern unsigned userflags;
68 extern char *axdefs[7];
69 extern char sigcaught;
70 extern struct CtdlServInfo serv_info;
71 extern char rc_floor_mode;
72 extern int rc_ansi_color;
73
74 void back(int spaces) /* Destructive backspace */
75             {
76         int a;
77         for (a=1; a<=spaces; ++a) {
78                 scr_putc(8); scr_putc(32); scr_putc(8);
79                 }
80         }
81
82 void hit_any_key(void) {                /* hit any key to continue */
83         int a,b;
84
85         color(COLOR_PUSH);
86         color(DIM_RED);
87         scr_printf("%s\r",serv_info.serv_moreprompt);
88         color(COLOR_POP);
89         sttybbs(0);
90         b=inkey();
91         for (a=0; a<strlen(serv_info.serv_moreprompt); ++a)
92                 scr_putc(' ');
93         scr_putc(13);
94         sttybbs(1);
95         if (b == 'q' || b == 'Q' || b == 's' || b == 'S')
96                 b = STOP_KEY;
97         if (b == 'n' || b == 'N')
98                 b = NEXT_KEY;
99         if (b==NEXT_KEY) sigcaught = SIGINT;
100         if (b==STOP_KEY) sigcaught = SIGQUIT;
101 }
102
103 /*
104  * change a user's access level
105  */
106 void edituser(void)
107 {
108         char buf[SIZ];
109         char who[SIZ];
110         char pass[SIZ];
111         int flags;
112         int timescalled;
113         int posted;
114         int axlevel;
115         long usernum;
116         time_t lastcall;
117         int userpurge;
118
119         newprompt("User name: ",who,25);
120         sprintf(buf,"AGUP %s",who);
121         serv_puts(buf);
122         serv_gets(buf);
123         if (buf[0]!='2') {
124                 scr_printf("%s\n",&buf[4]);
125                 return;
126                 }
127         extract(who, &buf[4], 0);
128         extract(pass, &buf[4], 1);
129         flags = extract_int(&buf[4], 2);
130         timescalled = extract_int(&buf[4], 3);
131         posted = extract_int(&buf[4], 4);
132         axlevel = extract_int(&buf[4], 5);
133         usernum = extract_long(&buf[4], 6);
134         lastcall = extract_long(&buf[4], 7);
135         userpurge = extract_int(&buf[4], 8);
136
137         val_user(who, 0); /* Display registration */
138         if (boolprompt("Change password", 0)) {
139                 strprompt("Password", pass, 19);
140         }
141         axlevel = intprompt("Access level", axlevel, 0, 6);
142         timescalled = intprompt("Times called", timescalled, 0, INT_MAX);
143         posted = intprompt("Messages posted", posted, 0, INT_MAX);
144         lastcall = (boolprompt("Set last call to now", 0)?time(NULL):lastcall);
145         userpurge = intprompt("Purge time (in days, 0 for system default",
146                                 userpurge, 0, INT_MAX);
147
148         sprintf(buf, "ASUP %s|%s|%d|%d|%d|%d|%ld|%ld|%d",
149                 who, pass, flags, timescalled, posted, axlevel, usernum,
150                 (long)lastcall, userpurge);
151         serv_puts(buf);
152         serv_gets(buf);
153         if (buf[0]!='2') {
154                 scr_printf("%s\n",&buf[4]);
155                 }
156         }
157
158
159 int set_attr(int sval, char *prompt, unsigned int sbit)
160 {
161         int a;
162         int temp;
163
164         temp = sval;
165         color(DIM_WHITE);
166         scr_printf("%45s ", prompt);
167         color(DIM_MAGENTA);
168         scr_printf("[");
169         color(BRIGHT_MAGENTA);
170         scr_printf("%3s", ((temp&sbit) ? "Yes":"No"));
171         color(DIM_MAGENTA);
172         scr_printf("]? ");
173         color(BRIGHT_CYAN);
174         a=yesno_d(temp&sbit);
175         color(DIM_WHITE);
176         temp=(temp|sbit);
177         if (!a) temp=(temp^sbit);
178         return(temp);
179         }
180
181 /*
182  * modes are:  0 - .EC command, 1 - .EC for new user,
183  *             2 - toggle Xpert mode  3 - toggle floor mode
184  */
185 void enter_config(int mode)
186 {
187         int width, height, flags, filter;
188         char buf[128];
189
190         sprintf(buf,"GETU");
191         serv_puts(buf);
192         serv_gets(buf);
193         if (buf[0]!='2') {
194                 scr_printf("%s\n",&buf[4]);
195                 return;
196                 }
197
198         width = extract_int(&buf[4],0);
199         height = extract_int(&buf[4],1);
200         flags = extract_int(&buf[4],2);
201         filter = extract_int(&buf[4],3);
202
203         if ((mode==0)||(mode==1)) {
204
205          width = intprompt("Enter your screen width",width,20,255);
206          height = intprompt("Enter your screen height",height,3,255);
207  
208          flags = set_attr(flags,
209                 "Are you an experienced Citadel user",US_EXPERT);
210          if ( ((flags&US_EXPERT)==0) && (mode==1))
211                 return;
212          flags = set_attr(flags,
213                 "Print last old message on New message request",US_LASTOLD);
214          if ((flags&US_EXPERT)==0) formout("unlisted");
215          flags = set_attr(flags,"Be unlisted in userlog",US_UNLISTED);
216          flags = set_attr(flags,"Suppress message prompts",US_NOPROMPT);
217          if ((flags & US_NOPROMPT)==0)
218             flags = set_attr(flags,"Use 'disappearing' prompts",US_DISAPPEAR);
219          flags = set_attr(flags,
220                 "Pause after each screenful of text",US_PAGINATOR);
221          if (rc_floor_mode == RC_DEFAULT) {
222           flags = set_attr(flags,
223                 "View rooms by floor",US_FLOORS);
224           }
225          if (rc_ansi_color == 3) {
226           flags = set_attr(flags,
227                 "Enable color support",US_COLOR);
228           }
229         
230          /* filter = intprompt("Moderation filter level", filter, -63, 63); */
231
232          }
233
234         if (mode==2) {
235          if (flags & US_EXPERT) {
236                 flags = (flags ^ US_EXPERT);
237                 scr_printf("Expert mode now OFF\n");
238                 }
239          else {
240                 flags = (flags | US_EXPERT);
241                 scr_printf("Expert mode now ON\n");
242                 }
243          }
244
245         if (mode==3) {
246          if (flags & US_FLOORS) {
247                 flags = (flags ^ US_FLOORS);
248                 scr_printf("Floor mode now OFF\n");
249                 }
250          else {
251                 flags = (flags | US_FLOORS);
252                 scr_printf("Floor mode now ON\n");
253                 }
254          }
255
256         sprintf(buf,"SETU %d|%d|%d|%d",width,height,flags,filter);
257         serv_puts(buf);
258         serv_gets(buf);
259         if (buf[0]!='2') scr_printf("%s\n",&buf[4]);
260         userflags = flags;
261 }
262
263 /*
264  * getstring()  -  get a line of text from a file
265  *                 ignores lines beginning with "#"
266  */
267 int getstring(FILE *fp, char *string)
268 {
269         int a,c;
270         do {
271                 strcpy(string,"");
272                 a=0;
273                 do {
274                         c=getc(fp);
275                         if (c<0) {
276                                 string[a]=0;
277                                 return(-1);
278                                 }
279                         string[a++]=c;
280                         } while(c!=10);
281                         string[a-1]=0;
282                 } while(string[0]=='#');
283         return(strlen(string));
284         }
285
286 int pattern(char *search, char *patn)   /* Searches for patn in search string */
287               
288             
289 {
290         int a,b;
291         for (a=0; a<strlen(search); ++a)
292         {       b=strncasecmp(&search[a],patn,strlen(patn));
293                 if (b==0) return(b);
294                 }
295         return(-1);
296 }
297
298 void interr(int errnum) /* display internal error as defined in errmsgs */
299             {
300         scr_printf("*** INTERNAL ERROR %d\n"
301                 "(Press any key to continue)\n", errnum);
302         inkey();
303         logoff(errnum);
304 }
305
306
307
308 void strproc(char *string)
309 {
310         int a;
311
312         if (strlen(string)==0) return;
313
314         /* Convert non-printable characters to blanks */
315         for (a=0; a<strlen(string); ++a) {
316                 if (string[a]<32) string[a]=32;
317                 if (string[a]>126) string[a]=32;
318                 }
319
320         /* Remove leading and trailing blanks */
321         while(string[0]<33) strcpy(string,&string[1]);
322         while(string[strlen(string)-1]<33) string[strlen(string)-1]=0;
323
324         /* Remove double blanks */
325         for (a=0; a<strlen(string); ++a) {
326                 if ((string[a]==32)&&(string[a+1]==32)) {
327                         strcpy(&string[a],&string[a+1]);
328                         a=0;
329                         }
330                 }
331
332         /* remove characters which would interfere with the network */
333         for (a=0; a<strlen(string); ++a) {
334                 if (string[a]=='!') strcpy(&string[a],&string[a+1]);
335                 if (string[a]=='@') strcpy(&string[a],&string[a+1]);
336                 if (string[a]=='_') strcpy(&string[a],&string[a+1]);
337                 if (string[a]==',') strcpy(&string[a],&string[a+1]);
338                 if (string[a]=='%') strcpy(&string[a],&string[a+1]);
339                 if (string[a]=='|') strcpy(&string[a],&string[a+1]);
340                 }
341
342         }
343
344
345 #ifndef HAVE_STRERROR
346 /*
347  * replacement strerror() for systems that don't have it
348  */
349 char *strerror(int e)
350 {
351         static char buf[128];
352
353         sprintf(buf,"errno = %d",e);
354         return(buf);
355         }
356 #endif
357
358
359 void progress(long int curr, long int cmax)
360 {
361         static long dots_printed;
362         long a;
363
364         if (curr==0) {
365                 scr_printf(".......................................");
366                 scr_printf(".......................................\r");
367                 scr_flush();
368                 dots_printed = 0;
369                 }
370         else if (curr==cmax) {
371                 scr_printf("\r%79s\n","");
372                 }
373         else {
374                 a=(curr * 100) / cmax;
375                 a=a*78; a=a/100;
376                 while (dots_printed < a) {
377                         scr_printf("*");
378                         ++dots_printed;
379                         scr_flush();
380                         }
381                 }
382         }
383
384
385 /*
386  * NOT the same locate_host() in locate_host.c.  This one just does a
387  * 'who am i' to try to discover where the user is...
388  */
389 void locate_host(char *hbuf)
390 {
391 #ifndef HAVE_UTMP_H
392         char buf[SIZ];
393         FILE *who;
394         int a,b;
395
396         who = (FILE *)popen("who am i","r");
397         if (who==NULL) {
398                 strcpy(hbuf,serv_info.serv_fqdn);
399                 return; 
400                 }
401         fgets(buf,sizeof buf,who);
402         pclose(who);
403
404         b = 0;
405         for (a=0; a<strlen(buf); ++a) {
406                 if ((buf[a]=='(')||(buf[a]==')')) ++b;
407                 }
408         if (b<2) {
409                 strcpy(hbuf,serv_info.serv_fqdn);
410                 return;
411                 }
412
413         for (a=0; a<strlen(buf); ++a) {
414                 if (buf[a]=='(') {
415                         strcpy(buf,&buf[a+1]);
416                         }
417                 }
418         for (a=0; a<strlen(buf); ++a) {
419                 if (buf[a]==')') buf[a] = 0;
420                 }
421
422         if (strlen(buf)==0) strcpy(hbuf,serv_info.serv_fqdn);
423         else strncpy(hbuf,buf,24);
424 #else
425         char *tty = ttyname(0);
426 #ifdef HAVE_GETUTXLINE
427         struct utmpx ut, *put;
428 #else
429         struct utmp ut, *put;
430 #endif
431
432         if (tty == NULL) {
433             fail:
434                 safestrncpy(hbuf, serv_info.serv_fqdn, 24);
435                 return;
436                 }
437
438         if (strncmp(tty, "/dev/", 5))
439                 goto fail;
440
441         safestrncpy(ut.ut_line, &tty[5], sizeof ut.ut_line);
442
443 #ifdef HAVE_GETUTXLINE /* Solaris uses this */
444         if ((put = getutxline(&ut)) == NULL)
445 #else
446         if ((put = getutline(&ut)) == NULL)
447 #endif
448                 goto fail;
449
450 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
451         if (put->ut_type == USER_PROCESS) {
452 #endif
453 #if defined(HAVE_UT_HOST) || defined(HAVE_GETUTXLINE)
454                 if (*put->ut_host)
455                         safestrncpy(hbuf, put->ut_host, 24);
456                 else
457 #endif
458                         safestrncpy(hbuf, put->ut_line, 24);
459 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
460                 }
461         else goto fail;
462 #endif
463 #endif /* HAVE_UTMP_H */
464         }
465
466 /*
467  * miscellaneous server commands (testing, etc.)
468  */
469 void misc_server_cmd(char *cmd) {
470         char buf[SIZ];
471
472         serv_puts(cmd);
473         serv_gets(buf);
474         scr_printf("%s\n",buf);
475         if (buf[0]=='1') {
476                 set_keepalives(KA_NO);
477                 while (serv_gets(buf), strcmp(buf,"000")) {
478                         scr_printf("%s\n",buf);
479                         }
480                 set_keepalives(KA_YES);
481                 return;
482                 }
483         if (buf[0]=='4') {
484                 do {
485                         newprompt("> ",buf,255);
486                         serv_puts(buf);
487                         } while(strcmp(buf,"000"));
488                 return;
489                 }
490         }
491
492
493 /*
494  * compute the checksum of a file
495  */
496 int file_checksum(char *filename)
497 {
498         int cksum = 0;
499         int ch;
500         FILE *fp;
501
502         fp = fopen(filename,"r");
503         if (fp == NULL) return(0);
504
505         /* yes, this algorithm may allow cksum to overflow, but that's ok
506          * as long as it overflows consistently, which it will.
507          */
508         while (ch=getc(fp), ch>=0) {
509                 cksum = (cksum + ch);
510                 }
511
512         fclose(fp);
513         return(cksum);
514         }
515
516 /*
517  * nuke a directory and its contents
518  */
519 int nukedir(char *dirname)
520 {
521         DIR *dp;
522         struct dirent *d;
523         char filename[SIZ];
524
525         dp = opendir(dirname);
526         if (dp == NULL) {
527                 return(errno);
528                 }
529
530         while (d = readdir(dp), d != NULL) {
531                 sprintf(filename, "%s/%s", dirname, d->d_name);
532                 unlink(filename);
533                 }
534
535         closedir(dp);
536         return(rmdir(dirname));
537         }