]> code.citadel.org Git - citadel.git/blob - citadel/commands.c
* Implement alternate_semantics (see comments in citadel.rc file)
[citadel.git] / citadel / commands.c
1 /*
2  * $Id$
3  *
4  * This file contains functions which implement parts of the
5  * text-mode user interface.
6  *
7  */
8
9 #include "sysdep.h"
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <ctype.h>
15 #include <string.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 #ifdef HAVE_TERMIOS_H
30 #include <termios.h>
31 #else
32 #include <sgtty.h>
33 #endif
34
35 #ifdef HAVE_SYS_SELECT_H
36 #include <sys/select.h>
37 #endif
38
39 #ifdef THREADED_CLIENT
40 #include <pthread.h>
41 #endif
42
43 #include <signal.h>
44 #include <errno.h>
45 #include <stdarg.h>
46 #include "citadel.h"
47 #include "commands.h"
48 #include "messages.h"
49 #include "citadel_decls.h"
50 #include "routines.h"
51 #include "routines2.h"
52 #include "tools.h"
53 #include "rooms.h"
54 #include "client_chat.h"
55 #ifndef HAVE_SNPRINTF
56 #include "snprintf.h"
57 #endif
58
59 struct citcmd {
60         struct citcmd *next;
61         int c_cmdnum;
62         int c_axlevel;
63         char c_keys[5][64];
64 };
65
66 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
67
68
69 int rc_exp_beep;
70 char rc_exp_cmd[1024];
71 int rc_allow_attachments;
72 int rc_display_message_numbers;
73 int rc_force_mail_prompts;
74 int rc_remember_passwords;
75 int rc_ansi_color;
76 int num_urls = 0;
77 char urls[MAXURLS][SIZ];
78 char rc_url_cmd[SIZ];
79
80 char *gl_string;
81 int next_lazy_cmd = 5;
82
83 int lines_printed = 0;          /* line count for paginator */
84 extern int screenwidth, screenheight;
85 extern int termn8;
86
87 struct citcmd *cmdlist = NULL;
88
89
90 /* these variables are local to this module */
91 char keepalives_enabled = KA_YES;       /* send NOOPs to server when idle */
92 int ok_to_interrupt = 0;                /* print express msgs asynchronously */
93 time_t AnsiDetect;                      /* when did we send the detect code? */
94 int enable_color = 0;                   /* nonzero for ANSI color */
95
96
97
98
99 /*
100  * If an interesting key has been pressed, return its value, otherwise 0
101  */
102 char was_a_key_pressed(void) {
103         fd_set rfds;
104         struct timeval tv;
105         int the_character;
106         int retval;
107
108         FD_ZERO(&rfds);
109         FD_SET(0, &rfds);
110         tv.tv_sec = 0;
111         tv.tv_usec = 0;
112         retval = select(1, &rfds, NULL, NULL, &tv); 
113
114         /* Careful!  Disable keepalives during keyboard polling; we're probably
115          * in the middle of a data transfer from the server, in which case
116          * sending a NOOP would throw the client protocol out of sync.
117          */
118         if (FD_ISSET(0, &rfds)) {
119                 set_keepalives(KA_NO);
120                 the_character = inkey();
121                 set_keepalives(KA_YES);
122         }
123         else {
124                 the_character = 0;
125         }
126         return(the_character);
127 }
128
129
130
131
132
133 /*
134  * Check to see if we need to pause at the end of a screen.
135  * If we do, we have to disable server keepalives during the pause because
136  * we are probably in the middle of a server operation and the NOOP command
137  * would confuse everything.
138  */
139 int checkpagin(int lp, int pagin, int height)
140 {
141         int thekey;
142
143         if (sigcaught) return(lp);
144         thekey = was_a_key_pressed();
145         if (thekey == 'q' || thekey == 'Q' || thekey == 's' || thekey == 'S')
146                 thekey = STOP_KEY;
147         if (thekey == 'n' || thekey == 'N')
148                 thekey = NEXT_KEY;
149         if ( (thekey == NEXT_KEY) || (thekey == STOP_KEY)) sigcaught = thekey;
150         if (sigcaught) return(lp);
151
152         if (!pagin) return(0);
153         if (lp>=(height-1)) {
154                 set_keepalives(KA_NO);
155                 hit_any_key();
156                 set_keepalives(KA_YES);
157                 return(0);
158         }
159         return(lp);
160 }
161
162
163
164
165 /*
166  * pprintf()  ...   paginated version of printf()
167  */
168 void pprintf(const char *format, ...) {   
169         va_list arg_ptr;
170         static char buf[4096];  /* static for performance, change if needed */
171         int i;
172
173         /* If sigcaught is nonzero, a keypress has interrupted this and we
174          * should just drain output.
175          */
176         if (sigcaught) return;
177  
178         /* Otherwise, start spewing... */ 
179         va_start(arg_ptr, format);   
180         vsprintf(buf, format, arg_ptr);   
181         va_end(arg_ptr);   
182
183         for (i=0; i<strlen(buf); ++i) {
184                 putc(buf[i], stdout);
185                 if (buf[i]==10) {
186                         ++lines_printed;
187                         lines_printed = checkpagin(lines_printed,
188                                 (userflags & US_PAGINATOR),
189                                 screenheight);
190                 }
191         }
192 }   
193
194
195
196 /*
197  * print_express()  -  print express messages if there are any
198  */
199 void print_express(void)
200 {
201         char buf[1024];
202         FILE *outpipe;
203         time_t timestamp;
204         struct tm *stamp;
205         int flags = 0;
206         char sender[64];
207         char node[64];
208
209         if (express_msgs == 0)
210                 return;
211
212         if (rc_exp_beep) {
213                 putc(7, stdout);
214         }
215         if (strlen(rc_exp_cmd) == 0) {
216                 color(BRIGHT_RED);
217                 printf("\r---");
218         }
219         
220         while (express_msgs != 0) {
221                 serv_puts("GEXP");
222                 serv_gets(buf);
223                 if (buf[0] != '1')
224                         return;
225         
226                 express_msgs = extract_int(&buf[4], 0);
227                 timestamp = extract_long(&buf[4], 1);
228                 flags = extract_int(&buf[4], 2);
229                 extract(sender, &buf[4], 3);
230                 extract(node, &buf[4], 4);
231                 strcpy(last_paged, sender);
232         
233                 stamp = localtime(&timestamp);
234
235                 /* If the page is a Logoff Request, honor it. */
236                 if (flags & 2) {
237                         termn8 = 1;
238                         return;
239                 }
240         
241                 if (strlen(rc_exp_cmd) > 0) {
242                         outpipe = popen(rc_exp_cmd, "w");
243                         if (outpipe != NULL) {
244                                 /* Header derived from flags */
245                                 if (flags & 2)
246                                         fprintf(outpipe,
247                                                "Please log off now, as requested ");
248                                 else if (flags & 1)
249                                         fprintf(outpipe, "Broadcast message ");
250                                 else if (flags & 4)
251                                         fprintf(outpipe, "Chat request ");
252                                 else
253                                         fprintf(outpipe, "Message ");
254                                 /* Timestamp.  Can this be improved? */
255                                 if (stamp->tm_hour == 0 || stamp->tm_hour == 12)
256                                         fprintf(outpipe, "at 12:%02d%cm",
257                                                 stamp->tm_min, 
258                                                 stamp->tm_hour ? 'p' : 'a');
259                                 else if (stamp->tm_hour > 12)           /* pm */
260                                         fprintf(outpipe, "at %d:%02dpm",
261                                                 stamp->tm_hour - 12,
262                                                 stamp->tm_min);
263                                 else                                    /* am */
264                                         fprintf(outpipe, "at %d:%02dam",
265                                                 stamp->tm_hour, stamp->tm_min);
266                                 fprintf(outpipe, " from %s", sender);
267                                 if (strncmp(serv_info.serv_nodename, node, 32))
268                                         fprintf(outpipe, " @%s", node);
269                                 fprintf(outpipe, ":\n");
270                                 while (serv_gets(buf), strcmp(buf, "000")) {
271                                         fprintf(outpipe, "%s\n", buf);
272                                 }
273                                 pclose(outpipe);
274                                 if (express_msgs == 0)
275                                         return;
276                                 continue;
277                         }
278                 }
279                 /* fall back to built-in express message display */
280                 printf("\n");
281                 lines_printed++;
282
283                 /* Header derived from flags */
284                 if (flags & 2)
285                         printf("Please log off now, as requested ");
286                 else if (flags & 1)
287                         printf("Broadcast message ");
288                 else if (flags & 4)
289                         printf("Chat request ");
290                 else
291                         printf("Message ");
292         
293                 /* Timestamp.  Can this be improved? */
294                 if (stamp->tm_hour == 0 || stamp->tm_hour == 12)/* 12am/12pm */
295                         printf("at 12:%02d%cm", stamp->tm_min, 
296                                 stamp->tm_hour ? 'p' : 'a');
297                 else if (stamp->tm_hour > 12)                   /* pm */
298                         printf("at %d:%02dpm",
299                                 stamp->tm_hour - 12, stamp->tm_min);
300                 else                                            /* am */
301                         printf("at %d:%02dam", stamp->tm_hour, stamp->tm_min);
302                 
303                 /* Sender */
304                 printf(" from %s", sender);
305         
306                 /* Remote node, if any */
307                 if (strncmp(serv_info.serv_nodename, node, 32))
308                         printf(" @%s", node);
309         
310                 printf(":\n");
311                 lines_printed++;
312                 fmout(screenwidth, NULL, 1, screenheight, -1, 0);
313         }
314         printf("\n---\n");
315         color(BRIGHT_WHITE);
316
317
318 }
319
320
321 void set_keepalives(int s)
322 {
323         keepalives_enabled = (char) s;
324 }
325
326 /* 
327  * This loop handles the "keepalive" messages sent to the server when idling.
328  */
329
330 static time_t idlet = 0;
331 static void really_do_keepalive(void) {
332         char buf[1024];
333
334         time(&idlet);
335         if (keepalives_enabled == KA_YES) {
336                 serv_puts("NOOP");
337                 serv_gets(buf);
338                 if (buf[3] == '*') {
339                         express_msgs = 1;
340                         if (ok_to_interrupt == 1) {
341                                 printf("\r%64s\r", "");
342                                 print_express();
343                                 printf("%s%c ", room_name,
344                                        room_prompt(room_flags));
345                                 fflush(stdout);
346                         }
347                 }
348         }
349 }
350
351 /* threaded nonblocking keepalive stuff starts here. I'm going for a simple
352    encapsulated interface; in theory there should be no need to touch these
353    globals outside of the async_ka_* functions. */
354
355 #ifdef THREADED_CLIENT
356 static pthread_t ka_thr_handle;
357 static int ka_thr_active = 0;
358 static int async_ka_enabled = 0;
359
360 static void *ka_thread(void *arg)
361 {
362         really_do_keepalive();
363         pthread_detach(ka_thr_handle);
364         ka_thr_active = 0;
365         return NULL;
366 }
367
368 /* start up a thread to handle a keepalive in the background */
369 static void async_ka_exec(void)
370 {
371         if (!ka_thr_active) {
372                 ka_thr_active = 1;
373                 if (pthread_create(&ka_thr_handle, NULL, ka_thread, NULL)) {
374                         perror("pthread_create");
375                         exit(1);
376                 }
377         }
378 }
379 #endif /* THREADED_CLIENT */
380
381 static void do_keepalive(void)
382 {
383         time_t now;
384
385         time(&now);
386         if ((now - idlet) < ((long) S_KEEPALIVE))
387                 return;
388
389         /* Do a space-backspace to keep telnet sessions from idling out */
390         printf(" %c", 8);
391         fflush(stdout);
392
393 #ifdef THREADED_CLIENT
394         if (async_ka_enabled)
395                 async_ka_exec();
396         else
397 #endif
398                 really_do_keepalive();
399 }
400
401
402 /* Now the actual async-keepalve API that we expose to higher levels:
403    async_ka_start() and async_ka_end(). These do nothing when we don't have
404    threading enabled, so we avoid sprinkling ifdef's throughout the code. */
405
406 /* wait for a background keepalive to complete. this must be done before
407    attempting any further server requests! */
408 void async_ka_end(void)
409 {
410 #ifdef THREADED_CLIENT
411         if (ka_thr_active)
412                 pthread_join(ka_thr_handle, NULL);
413
414         async_ka_enabled--;
415 #endif
416 }
417
418 /* tell do_keepalive() that keepalives are asynchronous. */
419 void async_ka_start(void)
420 {
421 #ifdef THREADED_CLIENT
422         async_ka_enabled++;
423 #endif
424 }
425
426
427 int inkey(void)
428 {                               /* get a character from the keyboard, with   */
429         int a;                  /* the watchdog timer in effect if necessary */
430         fd_set rfds;
431         struct timeval tv;
432         time_t start_time, now;
433         char inbuf[2];
434
435         fflush(stdout);
436         lines_printed = 0;
437         time(&start_time);
438
439         do {
440
441                 /* This loop waits for keyboard input.  If the keepalive
442                  * timer expires, it sends a keepalive to the server if
443                  * necessary and then waits again.
444                  */
445                 do {
446                         do_keepalive();
447
448                         FD_ZERO(&rfds);
449                         FD_SET(0, &rfds);
450                         tv.tv_sec = S_KEEPALIVE;
451                         tv.tv_usec = 0;
452
453                         time(&now);
454                         select(1, &rfds, NULL, NULL, &tv);
455                 } while (!FD_ISSET(0, &rfds));
456
457
458
459
460                 /* At this point, there's input, so fetch it.
461                  * (There's a hole in the bucket...)
462                  */
463                 read(0, inbuf, 1);
464                 a = inbuf[0];
465                 if (a == 127)
466                         a = 8;
467                 if (a > 126)
468                         a = 0;
469                 if (a == 10)
470                         a = 13;
471                 if (((a != 4) && (a != 13) && (a != 8) && (a != NEXT_KEY) && (a != STOP_KEY))
472                     && ((a < 32) || (a > 126)))
473                         a = 0;
474         } while (a == 0);
475         return (a);
476 }
477
478
479 int yesno(void)
480 {                               /* Returns 1 for yes, 0 for no */
481         int a;
482         while (1) {
483                 a = inkey();
484                 a = tolower(a);
485                 if (a == 'y') {
486                         printf("Yes\n");
487                         return (1);
488                 }
489                 if (a == 'n') {
490                         printf("No\n");
491                         return (0);
492                 }
493         }
494 }
495
496 /* Returns 1 for yes, 0 for no, arg is default value */
497 int yesno_d(int d)
498 {
499         int a;
500         while (1) {
501                 a = inkey();
502                 a = tolower(a);
503                 if (a == 13)
504                         a = (d ? 'y' : 'n');
505                 if (a == 'y') {
506                         printf("Yes\n");
507                         return (1);
508                 }
509                 if (a == 'n') {
510                         printf("No\n");
511                         return (0);
512                 }
513         }
514 }
515
516
517
518
519 /* Gets a line from the terminal */
520 /* string == Pointer to string buffer */
521 /* lim == Maximum length - if negative, no-show */
522 void getline(char *string, int lim) 
523 {
524         int a, b;
525         char flag = 0;
526
527         if (lim < 0) {
528                 lim = (0 - lim);
529                 flag = 1;
530         }
531         strcpy(string, "");
532         gl_string = string;
533         async_ka_start();
534       GLA:a = inkey();
535         a = (a & 127);
536         if ((a == 8) && (strlen(string) == 0))
537                 goto GLA;
538         if ((a != 13) && (a != 8) && (strlen(string) == lim))
539                 goto GLA;
540         if ((a == 8) && (string[0] != 0)) {
541                 string[strlen(string) - 1] = 0;
542                 putc(8, stdout);
543                 putc(32, stdout);
544                 putc(8, stdout);
545                 goto GLA;
546         }
547         if ((a == 13) || (a == 10)) {
548                 putc(13, stdout);
549                 putc(10, stdout);
550                 async_ka_end();
551                 return;
552         }
553         if (a < 32)
554                 a = '.';
555         b = strlen(string);
556         string[b] = a;
557         string[b + 1] = 0;
558         if (flag == 0)
559                 putc(a, stdout);
560         if (flag == 1)
561                 putc('*', stdout);
562         goto GLA;
563 }
564
565
566 /*
567  * strprompt()  -  prompt for a string, print the existing value and
568  *                 allow the user to press return to keep it...
569  */
570 void strprompt(char *prompt, char *str, int len)
571 {
572         char buf[128];
573         print_express();
574         color(DIM_WHITE);
575         printf("%s ", prompt);
576         color(DIM_MAGENTA);
577         printf("[");
578         color(BRIGHT_MAGENTA);
579         printf("%s", str);
580         color(DIM_MAGENTA);
581         printf("]");
582         color(DIM_WHITE);
583         printf(": ");
584         color(BRIGHT_CYAN);
585         getline(buf, len);
586         if (buf[0] != 0)
587                 strcpy(str, buf);
588         color(DIM_WHITE);
589 }
590
591 /*
592  * boolprompt()  -  prompt for a yes/no, print the existing value and
593  *                  allow the user to press return to keep it...
594  */
595 int boolprompt(char *prompt, int prev_val)
596 {
597         int r;
598
599         color(DIM_WHITE);
600         printf("%s ", prompt);
601         color(DIM_MAGENTA);
602         printf(" [");
603         color(BRIGHT_MAGENTA);
604         printf("%s", (prev_val ? "Yes" : "No"));
605         color(DIM_MAGENTA);
606         printf("]: ");
607         color(BRIGHT_CYAN);
608         r = (yesno_d(prev_val));
609         color(DIM_WHITE);
610         return r;
611 }
612
613 /* 
614  * intprompt()  -  like strprompt(), except for an integer
615  *                 (note that it RETURNS the new value!)
616  */
617 int intprompt(char *prompt, int ival, int imin, int imax)
618 {
619         char buf[16];
620         int i;
621         int p;
622
623         do {
624                 i = ival;
625                 snprintf(buf, sizeof buf, "%d", i);
626                 strprompt(prompt, buf, 15);
627                 i = atoi(buf);
628                 for (p=0; p<strlen(buf); ++p) {
629                         if ( (!isdigit(buf[p]))
630                            && ( (buf[p]!='-') || (p!=0) )  )
631                                 i = imin - 1;
632                 }
633                 if (i < imin)
634                         printf("*** Must be no less than %d.\n", imin);
635                 if (i > imax)
636                         printf("*** Must be no more than %d.\n", imax);
637         } while ((i < imin) || (i > imax));
638         return (i);
639 }
640
641 /* 
642  * newprompt()  -  prompt for a string with no existing value
643  *                 (clears out string buffer first)
644  */
645 void newprompt(char *prompt, char *str, int len)
646 {
647         color(BRIGHT_MAGENTA);
648         printf("%s", prompt);
649         color(DIM_MAGENTA);
650         getline(str, len);
651         color(DIM_WHITE);
652 }
653
654
655 int lkey(void)
656 {                               /* returns a lower case value */
657         int a;
658         a = inkey();
659         if (isupper(a))
660                 a = tolower(a);
661         return (a);
662 }
663
664 /*
665  * parse the citadel.rc file
666  */
667 void load_command_set(void)
668 {
669         FILE *ccfile;
670         char buf[1024];
671         struct citcmd *cptr;
672         struct citcmd *lastcmd = NULL;
673         int a, d;
674         int b = 0;
675
676
677         /* first, set up some defaults for non-required variables */
678
679         strcpy(editor_path, "");
680         strcpy(printcmd, "");
681         strcpy(rc_username, "");
682         strcpy(rc_password, "");
683         rc_floor_mode = 0;
684         rc_exp_beep = 1;
685         rc_allow_attachments = 0;
686         rc_remember_passwords = 0;
687         strcpy(rc_exp_cmd, "");
688         rc_display_message_numbers = 0;
689         rc_force_mail_prompts = 0;
690         rc_ansi_color = 0;
691         strcpy(rc_url_cmd, "");
692         rc_encrypt = RC_DEFAULT;
693         rc_alt_semantics = 0;
694
695         /* now try to open the citadel.rc file */
696
697         ccfile = NULL;
698         if (getenv("HOME") != NULL) {
699                 snprintf(buf, sizeof buf, "%s/.citadelrc", getenv("HOME"));
700                 ccfile = fopen(buf, "r");
701         }
702         if (ccfile == NULL) {
703                 ccfile = fopen("/usr/local/lib/citadel.rc", "r");
704         }
705         if (ccfile == NULL) {
706                 snprintf(buf, sizeof buf, "%s/citadel.rc", BBSDIR);
707                 ccfile = fopen(buf, "r");
708         }
709         if (ccfile == NULL) {
710                 ccfile = fopen("./citadel.rc", "r");
711         }
712         if (ccfile == NULL) {
713                 perror("commands: cannot open citadel.rc");
714                 logoff(errno);
715         }
716         while (fgets(buf, sizeof buf, ccfile) != NULL) {
717                 while ((strlen(buf) > 0) ? (isspace(buf[strlen(buf) - 1])) : 0)
718                         buf[strlen(buf) - 1] = 0;
719
720                 if (!strncasecmp(buf, "encrypt=", 8)) {
721                         if (!strcasecmp(&buf[8], "yes"))
722                                 rc_encrypt = RC_YES;
723                         else if (!strcasecmp(&buf[8], "no"))
724                                 rc_encrypt = RC_NO;
725                         else if (!strcasecmp(&buf[8], "default"))
726                                 rc_encrypt = RC_DEFAULT;
727                 }
728
729                 if (!strncasecmp(buf, "editor=", 7))
730                         strcpy(editor_path, &buf[7]);
731
732                 if (!strncasecmp(buf, "printcmd=", 9))
733                         strcpy(printcmd, &buf[9]);
734
735                 if (!strncasecmp(buf, "expcmd=", 7))
736                         strcpy(rc_exp_cmd, &buf[7]);
737
738                 if (!strncasecmp(buf, "local_screen_dimensions=", 24))
739                         have_xterm = (char) atoi(&buf[24]);
740
741                 if (!strncasecmp(buf, "use_floors=", 11)) {
742                         if (!strcasecmp(&buf[11], "yes"))
743                                 rc_floor_mode = RC_YES;
744                         if (!strcasecmp(&buf[11], "no"))
745                                 rc_floor_mode = RC_NO;
746                         if (!strcasecmp(&buf[11], "default"))
747                                 rc_floor_mode = RC_DEFAULT;
748                 }
749                 if (!strncasecmp(buf, "beep=", 5)) {
750                         rc_exp_beep = atoi(&buf[5]);
751                 }
752                 if (!strncasecmp(buf, "allow_attachments=", 18)) {
753                         rc_allow_attachments = atoi(&buf[18]);
754                 }
755                 if (!strncasecmp(buf, "remember_passwords=", 19)) {
756                         rc_remember_passwords = atoi(&buf[19]);
757                 }
758                 if (!strncasecmp(buf, "display_message_numbers=", 24)) {
759                         rc_display_message_numbers = atoi(&buf[24]);
760                 }
761                 if (!strncasecmp(buf, "force_mail_prompts=", 19)) {
762                         rc_force_mail_prompts = atoi(&buf[19]);
763                 }
764                 if (!strncasecmp(buf, "ansi_color=", 11)) {
765                         if (!strncasecmp(&buf[11], "on", 2))
766                                 rc_ansi_color = 1;
767                         if (!strncasecmp(&buf[11], "auto", 4))
768                                 rc_ansi_color = 2;      /* autodetect */
769                         if (!strncasecmp(&buf[11], "user", 4))
770                                 rc_ansi_color = 3;      /* user config */
771                 }
772                 if (!strncasecmp(buf, "username=", 9))
773                         strcpy(rc_username, &buf[9]);
774
775                 if (!strncasecmp(buf, "password=", 9))
776                         strcpy(rc_password, &buf[9]);
777
778                 if (!strncasecmp(buf, "urlcmd=", 7))
779                         strcpy(rc_url_cmd, &buf[7]);
780
781                 if (!strncasecmp(buf, "alternate_semantics=", 20)) {
782                         if (!strncasecmp(&buf[11], "yes", 3))
783                                 rc_alt_semantics = 1;
784                         if (!strncasecmp(&buf[11], "no", 2))
785                                 rc_alt_semantics = 0;
786                 }
787                 if (!strncasecmp(buf, "cmd=", 4)) {
788                         strcpy(buf, &buf[4]);
789
790                         cptr = (struct citcmd *) malloc(sizeof(struct citcmd));
791
792                         cptr->c_cmdnum = atoi(buf);
793                         for (d = strlen(buf); d >= 0; --d)
794                                 if (buf[d] == ',')
795                                         b = d;
796                         strcpy(buf, &buf[b + 1]);
797
798                         cptr->c_axlevel = atoi(buf);
799                         for (d = strlen(buf); d >= 0; --d)
800                                 if (buf[d] == ',')
801                                         b = d;
802                         strcpy(buf, &buf[b + 1]);
803
804                         for (a = 0; a < 5; ++a)
805                                 cptr->c_keys[a][0] = 0;
806
807                         a = 0;
808                         b = 0;
809                         buf[strlen(buf) + 1] = 0;
810                         while (strlen(buf) > 0) {
811                                 b = strlen(buf);
812                                 for (d = strlen(buf); d >= 0; --d)
813                                         if (buf[d] == ',')
814                                                 b = d;
815                                 strncpy(cptr->c_keys[a], buf, b);
816                                 cptr->c_keys[a][b] = 0;
817                                 if (buf[b] == ',')
818                                         strcpy(buf, &buf[b + 1]);
819                                 else
820                                         strcpy(buf, "");
821                                 ++a;
822                         }
823
824                         cptr->next = NULL;
825                         if (cmdlist == NULL)
826                                 cmdlist = cptr;
827                         else
828                                 lastcmd->next = cptr;
829                         lastcmd = cptr;
830                 }
831         }
832         fclose(ccfile);
833 }
834
835
836
837 /*
838  * return the key associated with a command
839  */
840 char keycmd(char *cmdstr)
841 {
842         int a;
843
844         for (a = 0; a < strlen(cmdstr); ++a)
845                 if (cmdstr[a] == '&')
846                         return (tolower(cmdstr[a + 1]));
847         return (0);
848 }
849
850
851 /*
852  * Output the string from a key command without the ampersand
853  * "mode" should be set to 0 for normal or 1 for <C>ommand key highlighting
854  */
855 char *cmd_expand(char *strbuf, int mode)
856 {
857         int a;
858         static char exp[64];
859         char buf[1024];
860
861         strcpy(exp, strbuf);
862
863         for (a = 0; a < strlen(exp); ++a) {
864                 if (strbuf[a] == '&') {
865
866                         if (mode == 0) {
867                                 strcpy(&exp[a], &exp[a + 1]);
868                         }
869                         if (mode == 1) {
870                                 exp[a] = '<';
871                                 strcpy(buf, &exp[a + 2]);
872                                 exp[a + 2] = '>';
873                                 exp[a + 3] = 0;
874                                 strcat(exp, buf);
875                         }
876                 }
877                 if (!strncmp(&exp[a], "^r", 2)) {
878                         strcpy(buf, exp);
879                         strcpy(&exp[a], room_name);
880                         strcat(exp, &buf[a + 2]);
881                 }
882                 if (!strncmp(&exp[a], "^c", 2)) {
883                         exp[a] = ',';
884                         strcpy(&exp[a + 1], &exp[a + 2]);
885                 }
886         }
887
888         return (exp);
889 }
890
891
892
893 /*
894  * Comparison function to determine if entered commands match a
895  * command loaded from the config file.
896  */
897 int cmdmatch(char *cmdbuf, struct citcmd *cptr, int ncomp)
898 {
899         int a;
900         int cmdax;
901
902         cmdax = 0;
903         if (is_room_aide)
904                 cmdax = 1;
905         if (axlevel >= 6)
906                 cmdax = 2;
907
908         for (a = 0; a < ncomp; ++a) {
909                 if ((tolower(cmdbuf[a]) != keycmd(cptr->c_keys[a]))
910                     || (cptr->c_axlevel > cmdax))
911                         return (0);
912         }
913         return (1);
914 }
915
916
917 /*
918  * This function returns 1 if a given command requires a string input
919  */
920 int requires_string(struct citcmd *cptr, int ncomp)
921 {
922         int a;
923         char buf[64];
924
925         strcpy(buf, cptr->c_keys[ncomp - 1]);
926         for (a = 0; a < strlen(buf); ++a) {
927                 if (buf[a] == ':')
928                         return (1);
929         }
930         return (0);
931 }
932
933
934 /*
935  * Input a command at the main prompt.
936  * This function returns an integer command number.  If the command prompts
937  * for a string then it is placed in the supplied buffer.
938  */
939 int getcmd(char *argbuf)
940 {
941         char cmdbuf[5];
942         int cmdspaces[5];
943         int cmdpos;
944         int ch;
945         int a;
946         int got;
947         int this_lazy_cmd;
948         struct citcmd *cptr;
949
950         /*
951          * Starting a new command now, so set sigcaught to 0.  This variable
952          * is set to nonzero (usually NEXT_KEY or STOP_KEY) if a command has
953          * been interrupted by a keypress.
954          */
955         sigcaught = 0;
956
957         /* Switch color support on or off if we're in user mode */
958         if (rc_ansi_color == 3) {
959                 if (userflags & US_COLOR)
960                         enable_color = 1;
961                 else
962                         enable_color = 0;
963         }
964         /* if we're running in idiot mode, display a cute little menu */
965         IFNEXPERT formout("mainmenu");
966
967         print_express();        /* print express messages if there are any */
968         strcpy(argbuf, "");
969         cmdpos = 0;
970         for (a = 0; a < 5; ++a)
971                 cmdbuf[a] = 0;
972         /* now the room prompt... */
973         ok_to_interrupt = 1;
974         color(BRIGHT_WHITE);
975         printf("\n%s", room_name);
976         color(DIM_WHITE);
977         printf("%c ", room_prompt(room_flags));
978         fflush(stdout);
979
980         while (1) {
981                 ch = inkey();
982                 ok_to_interrupt = 0;
983
984                 /* Handle the backspace key, but only if there's something
985                  * to backspace over...
986                  */
987                 if ((ch == 8) && (cmdpos > 0)) {
988                         back(cmdspaces[cmdpos - 1] + 1);
989                         cmdbuf[cmdpos] = 0;
990                         --cmdpos;
991                 }
992                 /* Spacebar invokes "lazy traversal" commands */
993                 if ((ch == 32) && (cmdpos == 0)) {
994                         this_lazy_cmd = next_lazy_cmd;
995                         if (this_lazy_cmd == 13)
996                                 next_lazy_cmd = 5;
997                         if (this_lazy_cmd == 5)
998                                 next_lazy_cmd = 13;
999                         for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1000                                 if (cptr->c_cmdnum == this_lazy_cmd) {
1001                                         for (a = 0; a < 5; ++a)
1002                                                 if (cptr->c_keys[a][0] != 0)
1003                                                         printf("%s ", cmd_expand(
1004                                                                                         cptr->c_keys[a], 0));
1005                                         printf("\n");
1006                                         return (this_lazy_cmd);
1007                                 }
1008                         }
1009                         printf("\n");
1010                         return (this_lazy_cmd);
1011                 }
1012                 /* Otherwise, process the command */
1013                 cmdbuf[cmdpos] = tolower(ch);
1014
1015                 for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1016                         if (cmdmatch(cmdbuf, cptr, cmdpos + 1)) {
1017
1018                                 printf("%s", cmd_expand(cptr->c_keys[cmdpos], 0));
1019                                 cmdspaces[cmdpos] = strlen(
1020                                     cmd_expand(cptr->c_keys[cmdpos], 0));
1021                                 if (cmdpos < 4)
1022                                         if ((cptr->c_keys[cmdpos + 1]) != 0)
1023                                                 putc(' ', stdout);
1024                                 ++cmdpos;
1025                         }
1026                 }
1027
1028                 for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1029                         if (cmdmatch(cmdbuf, cptr, 5)) {
1030                                 /* We've found our command. */
1031                                 if (requires_string(cptr, cmdpos)) {
1032                                         getline(argbuf, 32);
1033                                 } else {
1034                                         printf("\n");
1035                                 }
1036
1037                                 /* If this command is one that changes rooms,
1038                                  * then the next lazy-command (space bar)
1039                                  * should be "read new" instead of "goto"
1040                                  */
1041                                 if ((cptr->c_cmdnum == 5)
1042                                     || (cptr->c_cmdnum == 6)
1043                                     || (cptr->c_cmdnum == 47)
1044                                     || (cptr->c_cmdnum == 52)
1045                                     || (cptr->c_cmdnum == 16)
1046                                     || (cptr->c_cmdnum == 20))
1047                                         next_lazy_cmd = 13;
1048
1049                                 return (cptr->c_cmdnum);
1050
1051                         }
1052                 }
1053
1054                 if (ch == '?') {
1055                         pprintf("\rOne of ...                         \n");
1056                         for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1057                                 if (cmdmatch(cmdbuf, cptr, cmdpos)) {
1058                                         for (a = 0; a < 5; ++a) {
1059                                                 pprintf("%s ", cmd_expand(cptr->c_keys[a], 1));
1060                                         }
1061                                         pprintf("\n");
1062                                 }
1063                         }
1064
1065                         pprintf("\n%s%c ", room_name, room_prompt(room_flags));
1066                         got = 0;
1067                         for (cptr = cmdlist; cptr != NULL; cptr = cptr->next) {
1068                                 if ((got == 0) && (cmdmatch(cmdbuf, cptr, cmdpos))) {
1069                                         for (a = 0; a < cmdpos; ++a) {
1070                                                 pprintf("%s ",
1071                                                        cmd_expand(cptr->c_keys[a], 0));
1072                                         }
1073                                         got = 1;
1074                                 }
1075                         }
1076                 }
1077         }
1078
1079 }
1080
1081
1082
1083
1084
1085 /*
1086  * set tty modes.  commands are:
1087  * 
1088  * 01- set to bbs mode
1089  * 2 - save current settings for later restoral
1090  * 3 - restore saved settings
1091  */
1092 #ifdef HAVE_TERMIOS_H
1093 void sttybbs(int cmd)
1094 {                               /* SysV version of sttybbs() */
1095         struct termios live;
1096         static struct termios saved_settings;
1097         static int last_cmd = 0;
1098
1099         if (cmd == SB_LAST)
1100                 cmd = last_cmd;
1101         else
1102                 last_cmd = cmd;
1103
1104         if ((cmd == 0) || (cmd == 1)) {
1105                 tcgetattr(0, &live);
1106                 live.c_iflag = ISTRIP | IXON | IXANY;
1107                 live.c_oflag = OPOST | ONLCR;
1108                 live.c_lflag = ISIG | NOFLSH;
1109
1110                 live.c_cc[VINTR] = (-1);
1111                 live.c_cc[VQUIT] = (-1);
1112
1113 #ifdef hpux
1114                 live.c_cc[VMIN] = 0;
1115                 live.c_cc[VTIME] = 0;
1116 #endif
1117
1118                 /* do we even need this stuff anymore? */
1119                 /* live.c_line=0; */
1120                 live.c_cc[VERASE] = 8;
1121                 live.c_cc[VKILL] = 24;
1122                 live.c_cc[VEOF] = 1;
1123                 live.c_cc[VEOL] = 255;
1124                 live.c_cc[VEOL2] = 0;
1125                 live.c_cc[VSTART] = 0;
1126                 tcsetattr(0, TCSADRAIN, &live);
1127         }
1128         if (cmd == 2) {
1129                 tcgetattr(0, &saved_settings);
1130         }
1131         if (cmd == 3) {
1132                 tcsetattr(0, TCSADRAIN, &saved_settings);
1133         }
1134 }
1135 #else
1136 void sttybbs(int cmd)
1137 {                               /* BSD version of sttybbs() */
1138         struct sgttyb live;
1139         static struct sgttyb saved_settings;
1140
1141         if ((cmd == 0) || (cmd == 1)) {
1142                 gtty(0, &live);
1143                 live.sg_flags |= CBREAK;
1144                 live.sg_flags |= CRMOD;
1145                 live.sg_flags |= NL1;
1146                 live.sg_flags &= ~ECHO;
1147                 if (cmd == 1)
1148                         live.sg_flags |= NOFLSH;
1149                 stty(0, &live);
1150         }
1151         if (cmd == 2) {
1152                 gtty(0, &saved_settings);
1153         }
1154         if (cmd == 3) {
1155                 stty(0, &saved_settings);
1156         }
1157 }
1158 #endif
1159
1160
1161 /*
1162  * display_help()  -  help file viewer
1163  */
1164 void display_help(char *name)
1165 {
1166         formout(name);
1167 }
1168
1169
1170 /*
1171  * fmout()  -  Citadel text formatter and paginator
1172  */
1173 int fmout(
1174         int width,      /* screen width to use */
1175         FILE *fp,       /* file to read from, or NULL to read from server */
1176         char pagin,     /* nonzero if we should use the paginator */
1177         int height,     /* screen height to use */
1178         int starting_lp,/* starting value for lines_printed, -1 for global */
1179         char subst)     /* nonzero if we should use hypertext mode */
1180 {
1181         int a, b, c, d, old;
1182         int real = (-1);
1183         char aaa[140];
1184         char buffer[512];
1185         int eof_flag = 0;
1186
1187         num_urls = 0;   /* Start with a clean slate of embedded URL's */
1188
1189         if (starting_lp >= 0) {
1190                 lines_printed = starting_lp;
1191         }
1192         strcpy(aaa, "");
1193         old = 255;
1194         strcpy(buffer, "");
1195         c = 1;                  /* c is the current pos */
1196
1197 FMTA:   while ((eof_flag == 0) && (strlen(buffer) < 126)) {
1198                 if (fp != NULL) {       /* read from file */
1199                         if (feof(fp))
1200                                 eof_flag = 1;
1201                         if (eof_flag == 0) {
1202                                 a = getc(fp);
1203                                 buffer[strlen(buffer) + 1] = 0;
1204                                 buffer[strlen(buffer)] = a;
1205                         }
1206                 } else {        /* read from server */
1207                         d = strlen(buffer);
1208                         serv_gets(&buffer[d]);
1209                         while ((!isspace(buffer[d])) && (isspace(buffer[strlen(buffer) - 1])))
1210                                 buffer[strlen(buffer) - 1] = 0;
1211                         if (!strcmp(&buffer[d], "000")) {
1212                                 buffer[d] = 0;
1213                                 eof_flag = 1;
1214                                 while (isspace(buffer[strlen(buffer) - 1]))
1215                                         buffer[strlen(buffer) - 1] = 0;
1216                         }
1217                         d = strlen(buffer);
1218                         buffer[d] = 10;
1219                         buffer[d + 1] = 0;
1220                 }
1221         }
1222
1223         if ( (!strncasecmp(buffer, "http://", 7))
1224            || (!strncasecmp(buffer, "ftp://", 6)) ) {
1225                 safestrncpy(urls[num_urls], buffer, (SIZ-1));
1226                 for (a=0; a<strlen(urls[num_urls]); ++a) {
1227                         b = urls[num_urls][a];
1228                         if ( (b==' ') || (b==')') || (b=='>') || (b==10)
1229                            || (b==13) || (b==9) || (b=='\"') )
1230                                 urls[num_urls][a] = 0;
1231                 }
1232                 ++num_urls;
1233         }
1234
1235         buffer[strlen(buffer) + 1] = 0;
1236         a = buffer[0];
1237         strcpy(buffer, &buffer[1]);
1238
1239         old = real;
1240         real = a;
1241         if (a <= 0)
1242                 goto FMTEND;
1243
1244         if (((a == 13) || (a == 10)) && (old != 13) && (old != 10))
1245                 a = 32;
1246         if (((old == 13) || (old == 10)) && (isspace(real))) {
1247                 printf("\n");
1248                 ++lines_printed;
1249                 lines_printed = checkpagin(lines_printed, pagin, height);
1250                 c = 1;
1251         }
1252         if (a > 126)
1253                 goto FMTA;
1254
1255         if (a > 32) {
1256                 if (((strlen(aaa) + c) > (width - 5)) && (strlen(aaa) > (width - 5))) {
1257                         printf("\n%s", aaa);
1258                         c = strlen(aaa);
1259                         aaa[0] = 0;
1260                         ++lines_printed;
1261                         lines_printed = checkpagin(lines_printed, pagin, height);
1262                 }
1263                 b = strlen(aaa);
1264                 aaa[b] = a;
1265                 aaa[b + 1] = 0;
1266         }
1267         if (a == 32) {
1268                 if ((strlen(aaa) + c) > (width - 5)) {
1269                         c = 1;
1270                         printf("\n");
1271                         ++lines_printed;
1272                         lines_printed = checkpagin(lines_printed, pagin, height);
1273                 }
1274                 printf("%s ", aaa);
1275                 ++c;
1276                 c = c + strlen(aaa);
1277                 strcpy(aaa, "");
1278                 goto FMTA;
1279         }
1280         if ((a == 13) || (a == 10)) {
1281                 printf("%s\n", aaa);
1282                 c = 1;
1283                 ++lines_printed;
1284                 lines_printed = checkpagin(lines_printed, pagin, height);
1285                 if (sigcaught) goto OOPS;
1286                 strcpy(aaa, "");
1287                 goto FMTA;
1288         }
1289         goto FMTA;
1290
1291         /* keypress caught; drain the server */
1292 OOPS:   do {
1293                 serv_gets(aaa);
1294         } while (strcmp(aaa, "000"));
1295
1296 FMTEND: printf("\n");
1297         ++lines_printed;
1298         lines_printed = checkpagin(lines_printed, pagin, height);
1299         return (sigcaught);
1300 }
1301
1302
1303 /*
1304  * support ANSI color if defined
1305  */
1306 void color(int colornum)
1307 {
1308         static int is_bold = 0;
1309         static int hold_color, current_color;
1310
1311         if (colornum == COLOR_PUSH) {
1312                 hold_color = current_color;
1313                 return;
1314         }
1315
1316         if (colornum == COLOR_POP) {
1317                 color(hold_color);
1318                 return;
1319         }
1320
1321         current_color = colornum;
1322         if (enable_color) {
1323                 /* When switching to dim white, actually output an 'original
1324                  * pair' sequence -- this looks better on black-on-white
1325                  * terminals.
1326                  */
1327                 if (colornum == DIM_WHITE)
1328                         printf("\033[39;49m");
1329                 else
1330                         printf("\033[3%d;40m", (colornum & 7));
1331
1332                 if ((colornum >= 8) && (is_bold == 0)) {
1333                         printf("\033[1m");
1334                         is_bold = 1;
1335                 } else if ((colornum < 8) && (is_bold == 1)) {
1336                         printf("\033[0m");
1337                         is_bold = 0;
1338                 }
1339                 fflush(stdout);
1340         }
1341 }
1342
1343 void cls(int colornum)
1344 {
1345         if (enable_color) {
1346                 printf("\033[4%dm\033[2J\033[H\033[0m", colornum);
1347                 fflush(stdout);
1348         }
1349 }
1350
1351
1352 /*
1353  * Detect whether ANSI color is available (answerback)
1354  */
1355 void send_ansi_detect(void)
1356 {
1357         if (rc_ansi_color == 2) {
1358                 printf("\033[c");
1359                 fflush(stdout);
1360                 time(&AnsiDetect);
1361         }
1362 }
1363
1364 void look_for_ansi(void)
1365 {
1366         fd_set rfds;
1367         struct timeval tv;
1368         char abuf[512];
1369         time_t now;
1370         int a;
1371
1372         if (rc_ansi_color == 0) {
1373                 enable_color = 0;
1374         } else if (rc_ansi_color == 1) {
1375                 enable_color = 1;
1376         } else if (rc_ansi_color == 2) {
1377
1378                 /* otherwise, do the auto-detect */
1379
1380                 strcpy(abuf, "");
1381
1382                 time(&now);
1383                 if ((now - AnsiDetect) < 2)
1384                         sleep(1);
1385
1386                 do {
1387                         FD_ZERO(&rfds);
1388                         FD_SET(0, &rfds);
1389                         tv.tv_sec = 0;
1390                         tv.tv_usec = 1;
1391
1392                         select(1, &rfds, NULL, NULL, &tv);
1393                         if (FD_ISSET(0, &rfds)) {
1394                                 abuf[strlen(abuf) + 1] = 0;
1395                                 read(0, &abuf[strlen(abuf)], 1);
1396                         }
1397                 } while (FD_ISSET(0, &rfds));
1398
1399                 for (a = 0; a < strlen(abuf); ++a) {
1400                         if ((abuf[a] == 27) && (abuf[a + 1] == '[')
1401                             && (abuf[a + 2] == '?')) {
1402                                 enable_color = 1;
1403                         }
1404                 }
1405         }
1406 }
1407
1408
1409 /*
1410  * Display key options (highlight hotkeys inside angle brackets)
1411  */
1412 void keyopt(char *buf) {
1413         int i;
1414
1415         color(DIM_WHITE);
1416         for (i=0; i<strlen(buf); ++i) {
1417                 if (buf[i]=='<') {
1418                         putc(buf[i], stdout);
1419                         color(BRIGHT_MAGENTA);
1420                 } else {
1421                         if (buf[i]=='>') {
1422                                 color(DIM_WHITE);
1423                         }
1424                         putc(buf[i], stdout);
1425                 }
1426         }
1427         color(DIM_WHITE);
1428 }
1429
1430
1431
1432 /*
1433  * Present a key-menu line choice type of thing
1434  */
1435 char keymenu(char *menuprompt, char *menustring) {
1436         int i, c, a;
1437         int choices;
1438         int do_prompt = 0;
1439         char buf[1024];
1440         int ch;
1441         int display_prompt = 1;
1442
1443         choices = num_tokens(menustring, '|');
1444
1445         if (menuprompt != NULL) do_prompt = 1;
1446         if (menuprompt != NULL) if (strlen(menuprompt)==0) do_prompt = 0;
1447
1448         while (1) {
1449                 if (display_prompt) {
1450                         if (do_prompt) {
1451                                 printf("%s ", menuprompt);
1452                         } 
1453                         else {
1454                                 for (i=0; i<choices; ++i) {
1455                                         extract(buf, menustring, i);
1456                                         keyopt(buf);
1457                                         printf(" ");
1458                                 }
1459                         }
1460                         printf(" -> ");
1461                         display_prompt = 0;
1462                 }
1463                 ch = lkey();
1464         
1465                 if ( (do_prompt) && (ch=='?') ) {
1466                         printf("\rOne of...                               ");
1467                         printf("                                      \n");
1468                         for (i=0; i<choices; ++i) {
1469                                 extract(buf, menustring, i);
1470                                 printf("   ");
1471                                 keyopt(buf);
1472                                 printf("\n");
1473                         }
1474                         printf("\n");
1475                         display_prompt = 1;
1476                 }
1477
1478                 for (i=0; i<choices; ++i) {
1479                         extract(buf, menustring, i);
1480                         for (c=1; c<strlen(buf); ++c) {
1481                                 if ( (ch == tolower(buf[c]))
1482                                    && (buf[c-1]=='<')
1483                                    && (buf[c+1]=='>') ) {
1484                                         for (a=0; a<strlen(buf); ++a) {
1485                                                 if ( (a!=(c-1)) && (a!=(c+1))) {
1486                                                         putc(buf[a], stdout);
1487                                                 }
1488                                         }
1489                                         printf("\n\n");
1490                                         return ch;
1491                                 }
1492                         }
1493                 }
1494         }
1495 }