* Added a per-user client option to always compose messages using the
[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 "citadel.h"
42 #include "citadel_ipc.h"
43 #include "screen.h"
44
45 #ifndef HAVE_GETUTLINE
46 struct utmp *getutline(struct utmp *ut);
47 #endif
48
49 #define ROUTINES_C
50
51 #include "citadel.h"
52 #include "routines.h"
53 #include "commands.h"
54 #include "tools.h"
55 #include "citadel_decls.h"
56 #include "routines2.h"
57
58 #define IFAIDE if(axlevel>=6)
59 #define IFNAIDE if (axlevel<6)
60
61 extern unsigned userflags;
62 extern char *axdefs[7];
63 extern char sigcaught;
64 extern char rc_floor_mode;
65 extern int rc_ansi_color;
66 extern int rc_prompt_control;
67
68 /* Destructive backspace */
69 void back(int spaces) {
70         int a;
71         for (a=0; a<spaces; ++a) {
72                 scr_putc(8);
73                 scr_putc(32);
74                 scr_putc(8);
75         }
76 }
77
78 void hit_any_key(CtdlIPC *ipc) {        /* hit any key to continue */
79         int a,b;
80
81         color(COLOR_PUSH);
82         color(DIM_RED);
83         scr_printf("%s\r", ipc->ServInfo.moreprompt);
84         color(COLOR_POP);
85         stty_ctdl(0);
86         b=inkey();
87         for (a=0; a<strlen(ipc->ServInfo.moreprompt); ++a)
88                 scr_putc(' ');
89         scr_putc(13);
90         stty_ctdl(1);
91         if ( (rc_prompt_control == 1)
92            || ((rc_prompt_control == 3) && (userflags & US_PROMPTCTL)) ) {
93                 if (b == 'q' || b == 'Q' || b == 's' || b == 'S')
94                         b = STOP_KEY;
95                 if (b == 'n' || b == 'N')
96                         b = NEXT_KEY;
97         }
98         if (b==NEXT_KEY) sigcaught = SIGINT;
99         if (b==STOP_KEY) sigcaught = SIGQUIT;
100 }
101
102 /*
103  * Edit or delete a user (cmd=25 to edit/create, 96 to delete)
104  */
105 void edituser(CtdlIPC *ipc, int cmd)
106 {
107         char buf[SIZ];
108         char who[USERNAME_SIZE];
109         struct ctdluser *user = NULL;
110         int newnow = 0;
111         int r;                          /* IPC response code */
112
113         newprompt("User name: ", who, 29);
114         while ((r = CtdlIPCAideGetUserParameters(ipc, who, &user, buf)) / 100 != 2) {
115                 scr_printf("%s\n", buf);
116                 if (cmd == 25) {
117                         scr_printf("Do you want to create this user? ");
118                         if (yesno()) {
119                                 r = CtdlIPCCreateUser(ipc, who, 0, buf);
120                                 if (r / 100 == 2) {
121                                         newnow = 1;
122                                         continue;
123                                 }
124                                 scr_printf("%s\n",&buf[4]);
125                         }
126                 }
127                 free(user);
128                 return;
129         }
130
131         if (cmd == 25) {
132                 val_user(ipc, user->fullname, 0); /* Display registration */
133
134                 if (newnow || boolprompt("Change password", 0)) {
135                         strprompt("Password", user->password, -19);
136                 }
137         
138                 user->axlevel = intprompt("Access level", user->axlevel, 0, 6);
139         
140                 user->flags = set_attr(ipc, user->flags,
141                         "Permission to send Internet mail",
142                         US_INTERNET, 0);
143         
144                 if (boolprompt("Ask user to register again", !(user->flags & US_REGIS)))
145                         user->flags &= ~US_REGIS;
146                 else
147                         user->flags |= US_REGIS;
148                 user->timescalled = intprompt("Times called",
149                                 user->timescalled, 0, INT_MAX);
150                 user->posted = intprompt("Messages posted",
151                                         user->posted, 0, INT_MAX);
152                 user->lastcall = boolprompt("Set last call to now", 0) ?
153                                         time(NULL) : user->lastcall;
154                 user->USuserpurge = intprompt("Purge time (in days, 0 for system default",
155                                 user->USuserpurge, 0, INT_MAX);
156         }
157
158         if (cmd == 96) {
159                 scr_printf("Do you want to delete this user? ");
160                 if (!yesno()) return;
161                 user->axlevel = 0;
162         }
163         
164         r = CtdlIPCAideSetUserParameters(ipc, user, buf);
165         if (r / 100 != 2) {
166                 scr_printf("%s\n", buf);
167         }
168         free(user);
169 }
170
171
172 /* Display a prompt and flip a bit based on whether the user answers
173  * yes or no.  Yes=1 and No=0, unless 'backwards' is set to a nonzero value
174  * in which case No=1 and Yes=0.
175  */
176 int set_attr(CtdlIPC *ipc, unsigned int sval, char *prompt, unsigned int sbit, int backwards)
177 {
178         int a;
179         int temp;
180
181         temp = sval;
182         color(DIM_WHITE);
183         scr_printf("%50s ", prompt);
184         color(DIM_MAGENTA);
185         scr_printf("[");
186         color(BRIGHT_MAGENTA);
187
188         if (backwards) {
189                 scr_printf("%3s", ((temp&sbit) ? "No":"Yes"));
190         }
191         else {
192                 scr_printf("%3s", ((temp&sbit) ? "Yes":"No"));
193         }
194
195         color(DIM_MAGENTA);
196         scr_printf("]? ");
197         color(BRIGHT_CYAN);
198         a = (temp & sbit);
199         if (a != 0) a = 1;
200         if (backwards) a = 1 - a;
201         a = yesno_d(a);
202         if (backwards) a = 1 - a;
203         color(DIM_WHITE);
204         temp = (temp|sbit);
205         if (!a) temp = (temp^sbit);
206         return(temp);
207 }
208
209 /*
210  * modes are:  0 - .EC command, 1 - .EC for new user,
211  *             2 - toggle Xpert mode  3 - toggle floor mode
212  */
213 void enter_config(CtdlIPC *ipc, int mode)
214 {
215         char buf[SIZ];
216         struct ctdluser *user = NULL;
217         int r;                          /* IPC response code */
218
219         r = CtdlIPCGetConfig(ipc, &user, buf);
220         if (r / 100 != 2) {
221                 scr_printf("%s\n", buf);
222                 free(user);
223                 return;
224         }
225
226         if (mode == 0 || mode == 1) {
227
228                 /* Does anyone still use dialup connections with manual
229                  * screen dimensions setting anymore?  For now we'll keep
230                  * the system's ability to set these, but remove the prompts
231                  * because they're spurious for nearly everyone.
232                  * 
233                 user->USscreenwidth = intprompt("Enter your screen width",
234                                                 user->USscreenwidth, 20, 255);
235                 user->USscreenheight = intprompt("Enter your screen height",
236                                                  user->USscreenheight, 3, 255);
237                  */
238  
239                 user->flags = set_attr(ipc, user->flags,
240                                        "Are you an experienced Citadel user",
241                                        US_EXPERT, 0);
242                 if ((user->flags & US_EXPERT) == 0 && mode == 1) {
243                         free(user);
244                         return;
245                 }
246
247                 user->flags = set_attr(ipc, user->flags,
248                         "Print last old message on New message request",
249                         US_LASTOLD, 0);
250
251                 user->flags = set_attr(ipc, user->flags,
252                                        "Prompt after each message",
253                                        US_NOPROMPT, 1);
254
255                 if ((user->flags & US_NOPROMPT) == 0)
256                         user->flags = set_attr(ipc, user->flags,
257                                                "Use 'disappearing' prompts",
258                                                US_DISAPPEAR, 0);
259
260                 user->flags = set_attr(ipc, user->flags,
261                                        "Pause after each screenful of text",
262                                        US_PAGINATOR, 0);
263
264                 if (rc_prompt_control == 3 && (user->flags & US_PAGINATOR))
265                         user->flags = set_attr(ipc, user->flags,
266                                 "<N>ext and <S>top work at paginator prompt",
267                                 US_PROMPTCTL, 0);
268
269                 if (rc_floor_mode == RC_DEFAULT)
270                         user->flags = set_attr(ipc, user->flags,
271                                                "View rooms by floor",
272                                                US_FLOORS, 0);
273
274                 if (rc_ansi_color == 3)
275                         user->flags = set_attr(ipc, user->flags,
276                                                "Enable color support",
277                                                US_COLOR, 0);
278
279                 if ((user->flags & US_EXPERT) == 0)
280                         formout(ipc, "unlisted");
281
282                 user->flags = set_attr(ipc, user->flags,
283                                        "Be unlisted in userlog",
284                                        US_UNLISTED, 0);
285
286                 if (strlen(editor_paths[0]) > 0) {
287                         user->flags = set_attr(ipc, user->flags,
288                                 "Always enter messages with the full-screen editor",
289                                 US_EXTEDIT, 0);
290                 }
291
292         }
293
294         if (mode == 2) {
295                 if (user->flags & US_EXPERT) {
296                         user->flags ^= US_EXPERT;
297                         scr_printf("Expert mode now OFF\n");
298                 } else {
299                         user->flags |= US_EXPERT;
300                         scr_printf("Expert mode now ON\n");
301                 }
302         }
303
304         if (mode == 3) {
305                 if (user->flags & US_FLOORS) {
306                         user->flags ^= US_FLOORS;
307                         scr_printf("Floor mode now OFF\n");
308                 } else {
309                         user->flags |= US_FLOORS;
310                         scr_printf("Floor mode now ON\n");
311                 }
312         }
313
314         r = CtdlIPCSetConfig(ipc, user, buf);
315         if (r / 100 != 2) scr_printf("%s\n", buf);
316         userflags = user->flags;
317         free(user);
318 }
319
320 /*
321  * getstring()  -  get a line of text from a file
322  *                 ignores lines beginning with "#"
323  */
324 int getstring(FILE *fp, char *string)
325 {
326         int a,c;
327         do {
328                 strcpy(string,"");
329                 a=0;
330                 do {
331                         c=getc(fp);
332                         if (c<0) {
333                                 string[a]=0;
334                                 return(-1);
335                         }
336                         string[a++]=c;
337                 } while(c!=10);
338                         string[a-1]=0;
339         } while(string[0]=='#');
340         return(strlen(string));
341 }
342
343
344 /* Searches for patn in search string */
345 int pattern(char *search, char *patn) {
346         int a,b;
347
348         for (a=0; a<strlen(search); ++a) {
349                 b=strncasecmp(&search[a],patn,strlen(patn));
350                 if (b==0) return(b);
351         }
352         return(-1);
353 }
354
355
356 void strproc(char *string)
357 {
358         int a;
359
360         if (strlen(string)==0) return;
361
362         /* Convert non-printable characters to blanks */
363         for (a=0; a<strlen(string); ++a) {
364                 if (string[a]<32) string[a]=32;
365                 if (string[a]>126) string[a]=32;
366         }
367
368         /* Remove leading and trailing blanks */
369         while(string[0]<33) strcpy(string,&string[1]);
370         while(string[strlen(string)-1]<33) string[strlen(string)-1]=0;
371
372         /* Remove double blanks */
373         for (a=0; a<strlen(string); ++a) {
374                 if ((string[a]==32)&&(string[a+1]==32)) {
375                         strcpy(&string[a],&string[a+1]);
376                         a=0;
377                 }
378         }
379
380         /* remove characters which would interfere with the network */
381         for (a=0; a<strlen(string); ++a) {
382                 if (string[a]=='!') strcpy(&string[a],&string[a+1]);
383                 if (string[a]=='@') strcpy(&string[a],&string[a+1]);
384                 if (string[a]=='_') strcpy(&string[a],&string[a+1]);
385                 if (string[a]==',') strcpy(&string[a],&string[a+1]);
386                 if (string[a]=='%') strcpy(&string[a],&string[a+1]);
387                 if (string[a]=='|') strcpy(&string[a],&string[a+1]);
388         }
389
390 }
391
392
393 #ifndef HAVE_STRERROR
394 /*
395  * replacement strerror() for systems that don't have it
396  */
397 char *strerror(int e)
398 {
399         static char buf[128];
400
401         snprintf(buf, sizeof buf, "errno = %d",e);
402         return(buf);
403 }
404 #endif
405
406
407 void progress(CtdlIPC* ipc, unsigned long curr, unsigned long cmax)
408 {
409         static char dots[] =
410                 "**************************************************";
411         char dots_printed[51];
412         char fmt[42];
413         unsigned long a;
414
415         if (curr >= cmax) {
416                 sln_printf("\r%79s\r","");
417                 status_line(ipc->ServInfo.humannode, ipc->ServInfo.site_location,
418                         room_name, secure, 0);
419         } else {
420                 /* a will be range 0-50 rather than 0-100 */
421                 a=(curr * 50) / cmax;
422                 sprintf(fmt, "[%%s%%%lds] %%3ld%%%% %%10ld/%%10ld\r", 50 - a);
423                 strncpy(dots_printed, dots, a);
424                 dots_printed[a] = 0;
425                 sln_printf(fmt, dots_printed, "",
426                                 curr * 100 / cmax, curr, cmax);
427                 sln_flush();
428         }
429 }
430
431
432 /*
433  * NOT the same locate_host() in locate_host.c.  This one just does a
434  * 'who am i' to try to discover where the user is...
435  */
436 void locate_host(CtdlIPC* ipc, char *hbuf)
437 {
438 #ifndef HAVE_UTMP_H
439         char buf[SIZ];
440         FILE *who;
441         int a,b;
442
443         who = (FILE *)popen("who am i","r");
444         if (who==NULL) {
445                 strcpy(hbuf, ipc->ServInfo.fqdn);
446                 return; 
447         }
448         fgets(buf,sizeof buf,who);
449         pclose(who);
450
451         b = 0;
452         for (a=0; a<strlen(buf); ++a) {
453                 if ((buf[a]=='(')||(buf[a]==')')) ++b;
454         }
455         if (b<2) {
456                 strcpy(hbuf, ipc->ServInfo.fqdn);
457                 return;
458         }
459
460         for (a=0; a<strlen(buf); ++a) {
461                 if (buf[a]=='(') {
462                         strcpy(buf,&buf[a+1]);
463                 }
464         }
465         for (a=0; a<strlen(buf); ++a) {
466                 if (buf[a]==')') buf[a] = 0;
467         }
468
469         if (strlen(buf)==0) strcpy(hbuf, ipc->ServInfo.fqdn);
470         else strncpy(hbuf,buf,24);
471 #else
472         char *tty = ttyname(0);
473 #ifdef HAVE_GETUTXLINE
474         struct utmpx ut, *put;
475 #else
476         struct utmp ut, *put;
477 #endif
478
479         if (tty == NULL) {
480             fail:
481                 safestrncpy(hbuf, ipc->ServInfo.fqdn, 24);
482                 return;
483         }
484
485         if (strncmp(tty, "/dev/", 5))
486                 goto fail;
487
488         safestrncpy(ut.ut_line, &tty[5], sizeof ut.ut_line);
489
490 #ifdef HAVE_GETUTXLINE /* Solaris uses this */
491         if ((put = getutxline(&ut)) == NULL)
492 #else
493         if ((put = getutline(&ut)) == NULL)
494 #endif
495                 goto fail;
496
497 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
498         if (put->ut_type == USER_PROCESS) {
499 #endif
500 #if defined(HAVE_UT_HOST) || defined(HAVE_GETUTXLINE)
501                 if (*put->ut_host)
502                         safestrncpy(hbuf, put->ut_host, 24);
503                 else
504 #endif
505                         safestrncpy(hbuf, put->ut_line, 24);
506 #if defined(HAVE_UT_TYPE) || defined(HAVE_GETUTXLINE)
507         }
508         else goto fail;
509 #endif
510 #endif /* HAVE_UTMP_H */
511 }
512
513 /*
514  * miscellaneous server commands (testing, etc.)
515  */
516 void misc_server_cmd(CtdlIPC *ipc, char *cmd) {
517         char buf[SIZ];
518
519         CtdlIPC_chat_send(ipc, cmd);
520         CtdlIPC_chat_recv(ipc, buf);
521         scr_printf("%s\n",buf);
522         if (buf[0]=='1') {
523                 set_keepalives(KA_HALF);
524                 while (CtdlIPC_chat_recv(ipc, buf), strcmp(buf,"000")) {
525                         scr_printf("%s\n",buf);
526                 }
527                 set_keepalives(KA_YES);
528                 return;
529         }
530         if (buf[0]=='4') {
531                 do {
532                         newprompt("> ",buf,255);
533                         CtdlIPC_chat_send(ipc, buf);
534                 } while(strcmp(buf,"000"));
535                 return;
536         }
537 }
538
539
540 /*
541  * compute the checksum of a file
542  */
543 int file_checksum(char *filename)
544 {
545         int cksum = 0;
546         int ch;
547         FILE *fp;
548
549         fp = fopen(filename,"r");
550         if (fp == NULL) return(0);
551
552         /* yes, this algorithm may allow cksum to overflow, but that's ok
553          * as long as it overflows consistently, which it will.
554          */
555         while (ch=getc(fp), ch>=0) {
556                 cksum = (cksum + ch);
557         }
558
559         fclose(fp);
560         return(cksum);
561 }
562
563 /*
564  * nuke a directory and its contents
565  */
566 int nukedir(char *dirname)
567 {
568         DIR *dp;
569         struct dirent *d;
570         char filename[SIZ];
571
572         dp = opendir(dirname);
573         if (dp == NULL) {
574                 return(errno);
575         }
576
577         while (d = readdir(dp), d != NULL) {
578                 snprintf(filename, sizeof filename, "%s/%s",
579                         dirname, d->d_name);
580                 unlink(filename);
581         }
582
583         closedir(dp);
584         return(rmdir(dirname));
585 }