]> code.citadel.org Git - citadel.git/blob - citadel/rooms.c
Client: added message expiration policy questions to room edit
[citadel.git] / citadel / rooms.c
1 /* Citadel/UX room-oriented routines */
2
3 #include <stdlib.h>
4 #include <unistd.h>
5 #include <fcntl.h>
6 #include <stdio.h>
7 #include <ctype.h>
8 #include <string.h>
9 #include <signal.h>
10 #include <sys/types.h>
11 #include <sys/stat.h>
12 #include <sys/wait.h>
13 #include <errno.h>
14 #include "citadel.h"
15 #include "rooms.h"
16 #include "tools.h"
17
18 #define IFEXPERT if (userflags&US_EXPERT)
19 #define IFNEXPERT if ((userflags&US_EXPERT)==0)
20 #define IFAIDE if (axlevel>=6)
21 #define IFNAIDE if (axlevel<6)
22
23
24 void sttybbs(int cmd);
25 void extract(char *dest, char *source, int parmnum);
26 int extract_int(char *source, int parmnum);
27 void hit_any_key(void);
28 int yesno(void);
29 int yesno_d(int d);
30 void strprompt(char *prompt, char *str, int len);
31 void newprompt(char *prompt, char *str, int len);
32 int struncmp(char *lstr, char *rstr, int len);
33 void dotgoto(char *towhere, int display_name);
34 long extract_long(char *source, int parmnum);
35 void serv_read(char *buf, int bytes);
36 void formout(char *name);
37 int inkey(void);
38 int fmout(int width, FILE *fp, char pagin, int height, int starting_lp, char subst);
39 void citedit(FILE *fp, long int base_pos);
40 void progress(long int curr, long int cmax);
41 int pattern(char *search, char *patn);
42 int file_checksum(char *filename);
43 int nukedir(char *dirname);
44 void color(int colornum);
45
46 extern unsigned room_flags;
47 extern char room_name[];
48 extern char temp[];
49 extern char tempdir[];
50 extern int editor_pid;
51 extern char editor_path[];
52 extern int screenwidth;
53 extern int screenheight;
54 extern char fullname[];
55 extern int userflags;
56 extern char sigcaught;
57 extern char floor_mode;
58 extern char curr_floor;
59
60
61 extern int ugnum;
62 extern long uglsn;
63 extern char ugname[];
64
65 extern char floorlist[128][256];
66
67
68 void load_floorlist(void) {
69         int a;
70         char buf[256];
71
72         for (a=0; a<128; ++a) floorlist[a][0] = 0;
73
74         serv_puts("LFLR");
75         serv_gets(buf);
76         if (buf[0]!='1') {
77                 strcpy(floorlist[0],"Main Floor");
78                 return;
79                 }
80         while (serv_gets(buf), strcmp(buf,"000")) {
81                 extract(floorlist[extract_int(buf,0)],buf,1);
82                 }
83         }
84
85 void listrms(char *variety)
86 {
87         char buf[256];
88         char rmname[32];
89         int f,c;
90
91         serv_puts(variety);
92         serv_gets(buf);
93         if (buf[0]!='1') return;
94         c = 1;
95         sigcaught = 0;
96         sttybbs(SB_YES_INTR);
97         while (serv_gets(buf), strcmp(buf,"000")) if (sigcaught==0) {
98                 extract(rmname,buf,0);
99                 if ((c + strlen(rmname) + 4) > screenwidth) {
100                         printf("\n");
101                         c = 1;
102                         }
103                 f = extract_int(buf,1);
104                 if (f & QR_PRIVATE) {
105                         color(1);
106                         }
107                 else {
108                         color(2);
109                         }
110                 printf("%s",rmname);
111                 if ((f & QR_DIRECTORY) && (f & QR_NETWORK)) printf("}  ");
112                 else if (f & QR_DIRECTORY) printf("]  ");
113                 else if (f & QR_NETWORK) printf(")  ");
114                 else printf(">  ");
115                 c = c + strlen(rmname) + 3;
116                 }
117         color(7);
118         sttybbs(SB_NO_INTR);
119         }
120
121
122 void list_other_floors(void) {
123         int a,c;
124
125         c = 1;
126         for (a=0; a<128; ++a) if ((strlen(floorlist[a])>0)&&(a!=curr_floor)) {
127                 if ((c + strlen(floorlist[a]) + 4) > screenwidth) {
128                         printf("\n");
129                         c = 1;
130                         }
131                 printf("%s:  ",floorlist[a]);
132                 c = c + strlen(floorlist[a]) + 3;
133                 }
134         }
135
136
137 /*
138  * List known rooms.  kn_floor_mode should be set to 0 for a 'flat' listing,
139  * 1 to list rooms on the current floor, or 1 to list rooms on all floors.
140  */
141 void knrooms(int kn_floor_mode)
142 {
143         char buf[256];
144         int a;
145
146         load_floorlist();
147
148         if (kn_floor_mode == 0) {
149                 color(3);
150                 printf("\n   Rooms with unread messages:\n");
151                 listrms("LKRN");
152                 color(3);
153                 printf("\n\n   No unseen messages in:\n");
154                 listrms("LKRO");
155                 printf("\n");
156                 }
157
158         if (kn_floor_mode == 1) {
159                 color(3);
160                 printf("\n   Rooms with unread messages on %s:\n",
161                         floorlist[(int)curr_floor]);
162                 sprintf(buf,"LKRN %d",curr_floor);
163                 listrms(buf);
164                 color(3);
165                 printf("\n\n   Rooms with no new messages on %s:\n",
166                         floorlist[(int)curr_floor]);
167                 sprintf(buf,"LKRO %d",curr_floor);
168                 listrms(buf);
169                 color(3);
170                 printf("\n\n   Other floors:\n");
171                 list_other_floors();
172                 printf("\n");
173                 }
174
175         if (kn_floor_mode == 2) {
176                 for (a=0; a<128; ++a) if (floorlist[a][0]!=0) {
177                         color(3);
178                         printf("\n   Rooms on %s:\n",floorlist[a]);
179                         sprintf(buf,"LKRA %d",a);
180                         listrms(buf);
181                         printf("\n");
182                         }
183                 }
184         
185         color(7);
186         IFNEXPERT hit_any_key();
187         }
188
189
190 void listzrooms(void) {         /* list public forgotten rooms */
191         color(3);
192         printf("\n   Forgotten public rooms:\n");
193         listrms("LZRM");
194         printf("\n");
195         color(7);
196         IFNEXPERT hit_any_key();
197         }
198
199
200 int set_room_attr(int ibuf, char *prompt, unsigned int sbit)
201 {
202         int a;
203
204         printf("%s [%s]? ",prompt,((ibuf&sbit) ? "Yes":"No"));
205         a=yesno_d(ibuf&sbit);
206         ibuf=(ibuf|sbit);
207         if (!a) ibuf=(ibuf^sbit);
208         return(ibuf);
209         }
210
211
212
213 /*
214  * Select a floor (used in several commands)
215  * The supplied argument is the 'default' floor number.
216  * This function returns the selected floor number.
217  */
218 int select_floor(int rfloor)
219 {
220         int a, newfloor;
221         char floorstr[256];
222
223         if (floor_mode == 1) {
224                 if (floorlist[(int)curr_floor][0]==0) load_floorlist();
225
226                 do {
227                         newfloor = (-1);
228                         safestrncpy(floorstr,floorlist[rfloor],sizeof floorstr);
229                         strprompt("Which floor",floorstr,256);
230                         for (a=0; a<128; ++a) {
231                                 if (!strucmp(floorstr,&floorlist[a][0]))
232                                         newfloor = a;
233                                 if ((newfloor<0)&&(!struncmp(floorstr,
234                                         &floorlist[a][0],strlen(floorstr))))
235                                                 newfloor = a;
236                                 if ((newfloor<0)&&(pattern(&floorlist[a][0],
237                                         floorstr)>=0)) newfloor = a;
238                                 }
239                         if (newfloor<0) {
240                                 printf("\n One of:\n");
241                                 for (a=0; a<128; ++a)
242                                         if (floorlist[a][0]!=0)
243                                                 printf("%s\n",
244                                                         &floorlist[a][0]);
245                                 }
246                         } while(newfloor < 0);
247                 return(newfloor);
248                 }
249         return(rfloor);
250         }
251
252
253
254
255 /*
256  * .<A>ide <E>dit room
257  */
258 void editthisroom(void) {
259         char rname[ROOMNAMELEN];
260         char rpass[10];
261         char rdir[15];
262         unsigned rflags;
263         int rbump;
264         char raide[32];
265         char buf[256];
266         int rfloor;
267         int expire_mode = 0;
268         int expire_value = 0;
269
270         /* Fetch the existing room config */
271         serv_puts("GETR");
272         serv_gets(buf);
273         if (buf[0]!='2') {
274                 printf("%s\n",&buf[4]);
275                 return;
276                 }
277
278         extract(rname,&buf[4],0);
279         extract(rpass,&buf[4],1);
280         extract(rdir, &buf[4],2);
281         rflags = extract_int(&buf[4],3);
282         rfloor = extract_int(&buf[4],4);
283         rbump = 0;
284
285         /* Fetch the name of the current room aide */
286         serv_puts("GETA");
287         serv_gets(buf);
288         if (buf[0]=='2') safestrncpy(raide,&buf[4],sizeof raide);
289         else strcpy(raide,"");
290         if (strlen(raide)==0) strcpy(raide,"none");
291
292         /* Fetch the expire policy (this will silently fail on old servers,
293          * resulting in "default" policy)
294          */
295         serv_puts("GPEX room");
296         serv_gets(buf);
297         if (buf[0]=='2') {
298                 expire_mode = extract_int(&buf[4], 0);
299                 expire_value = extract_int(&buf[4], 1);
300                 }
301
302         /* Now interact with the user. */
303         strprompt("Room name",rname,ROOMNAMELEN-1);
304
305         rfloor = select_floor(rfloor);
306         rflags = set_room_attr(rflags,"Private room",QR_PRIVATE);
307         if (rflags & QR_PRIVATE)
308                 rflags = set_room_attr(rflags,
309                         "Accessible by guessing room name",QR_GUESSNAME);
310
311         /* if it's public, clear the privacy classes */
312         if ((rflags & QR_PRIVATE)==0) {
313                 if (rflags & QR_GUESSNAME)  rflags = rflags - QR_GUESSNAME;
314                 if (rflags & QR_PASSWORDED) rflags = rflags - QR_PASSWORDED;
315                 }
316
317         /* if it's private, choose the privacy classes */
318         if ( (rflags & QR_PRIVATE)
319            && ( (rflags & QR_GUESSNAME) == 0) ) {
320                 rflags = set_room_attr(rflags,
321                         "Accessible by entering a password",QR_PASSWORDED);
322                 }
323         if ( (rflags & QR_PRIVATE)
324            && ((rflags&QR_PASSWORDED)==QR_PASSWORDED) ) {
325                 strprompt("Room password",rpass,9);
326                 }
327
328         if ((rflags&QR_PRIVATE)==QR_PRIVATE) {
329                 printf("Cause current users to forget room [No] ? ");
330                 if (yesno_d(0)==1) rbump = 1;
331                 }
332
333         rflags = set_room_attr(rflags,"Preferred users only",QR_PREFONLY);
334         rflags = set_room_attr(rflags,"Read-only room",QR_READONLY);
335         rflags = set_room_attr(rflags,"Directory room",QR_DIRECTORY);
336         rflags = set_room_attr(rflags,"Permanent room",QR_PERMANENT);
337         if (rflags & QR_DIRECTORY) {
338                 strprompt("Directory name",rdir,14);
339                 rflags = set_room_attr(rflags,"Uploading allowed",QR_UPLOAD);
340                 rflags = set_room_attr(rflags,"Downloading allowed",
341                                                                 QR_DOWNLOAD);
342                 rflags = set_room_attr(rflags,"Visible directory",QR_VISDIR);
343                 }
344         rflags = set_room_attr(rflags,"Network shared room",QR_NETWORK);
345         rflags = set_room_attr(rflags,
346                 "Automatically make all messages anonymous",QR_ANONONLY);
347         if ( (rflags & QR_ANONONLY) == 0) {
348                 rflags = set_room_attr(rflags,
349                         "Ask users whether to make messages anonymous",
350                         QR_ANONOPT);
351                 }
352
353
354         /* Ask about the room aide */
355         do {
356                 strprompt("Room aide (or 'none')",raide,29);
357                 if (!strucmp(raide,"none")) {
358                         strcpy(raide,"");
359                         strcpy(buf,"200");
360                         }
361                 else {
362                         snprintf(buf,sizeof buf,"QUSR %s",raide);
363                         serv_puts(buf);
364                         serv_gets(buf);
365                         if (buf[0]!='2') printf("%s\n",&buf[4]);
366                         }
367                 } while(buf[0]!='2');
368
369         if (!strucmp(raide,"none")) strcpy(raide,"");
370
371
372         /* Angels and demons dancing in my head... */
373         do {
374                 sprintf(buf, "%d", expire_mode);
375                 strprompt("Message expire policy (? for list)", buf, 1);
376                 if (buf[0] == '?') {
377                         printf("\n");
378                         printf("0. Use the default for this floor\n");
379                         printf("1. Never automatically expire messages\n");
380                         printf("2. Expire by message count\n");
381                         printf("3. Expire by message age\n");
382                         }
383                 } while((buf[0]<48)||(buf[0]>51));
384         expire_mode = buf[0] - 48;
385
386         /* ...lunatics and monsters underneath my bed */
387         if (expire_mode == 2) {
388                 sprintf(buf, "%d", expire_value);
389                 strprompt("Keep how many messages online?", buf, 10);
390                 expire_value = atol(buf);
391                 }
392
393         if (expire_mode == 3) {
394                 sprintf(buf, "%d", expire_value);
395                 strprompt("Keep messages for how many days?", buf, 10);
396                 expire_value = atol(buf);
397                 }
398
399         /* Give 'em a chance to change their minds */
400         printf("Save changes (y/n)? ");
401
402         if (yesno()==1) {
403                 snprintf(buf,sizeof buf,"SETA %s",raide);
404                 serv_puts(buf);
405                 serv_gets(buf);
406                 if (buf[0]!='2') printf("%s\n",&buf[4]);
407
408                 snprintf(buf, sizeof buf, "SPEX room|%d|%d",
409                         expire_mode, expire_value);
410                 serv_puts(buf);
411                 serv_gets(buf);
412                 if (buf[0]!='2') printf("%s\n",&buf[4]);
413
414                 snprintf(buf,sizeof buf,"SETR %s|%s|%s|%d|%d|%d",
415                         rname,rpass,rdir,rflags,rbump,rfloor);
416                 serv_puts(buf);
417                 serv_gets(buf);
418                 printf("%s\n",&buf[4]);
419                 if (buf[0]=='2') dotgoto(rname,2);
420                 }
421         }
422
423
424 /*
425  * un-goto the previous room
426  */
427 void ungoto(void) { 
428         char buf[256];
429         
430         if (!strcmp(ugname,"")) return;
431         snprintf(buf,sizeof buf,"GOTO %s",ugname);
432         serv_puts(buf);
433         serv_gets(buf);
434         if (buf[0]!='2') {
435                 printf("%s\n",&buf[4]);
436                 return;
437                 }
438         sprintf(buf,"SLRP %ld",uglsn);
439         serv_puts(buf);
440         serv_gets(buf);
441         if (buf[0]!='2') printf("%s\n",&buf[4]);
442         safestrncpy(buf,ugname,sizeof buf);
443         strcpy(ugname,"");
444         dotgoto(buf,0);
445         }
446
447
448 /*
449  * download()  -  download a file or files.  The argument passed to this
450  *                function determines which protocol to use.
451  */
452 void download(int proto)
453 {
454
455 /*
456   - 0 = paginate, 1 = xmodem, 2 = raw, 3 = ymodem, 4 = zmodem, 5 = save
457 */
458
459
460         char buf[256];
461         char dbuf[4096];
462         char filename[256];
463         long total_bytes = 0L;
464         long transmitted_bytes = 0L;
465         long aa,bb;
466         int a,b;
467         int packet;
468         FILE *tpipe = NULL;
469         FILE *savefp = NULL;
470         int proto_pid;
471         int broken = 0;
472
473         if ((room_flags & QR_DOWNLOAD) == 0) {
474                 printf("*** You cannot download from this room.\n");
475                 return;
476                 }
477         
478         newprompt("Enter filename: ",filename,255);
479
480         snprintf(buf,sizeof buf,"OPEN %s",filename);
481         serv_puts(buf);
482         serv_gets(buf);
483         if (buf[0]!='2') {
484                 printf("%s\n",&buf[4]);
485                 return;
486                 }
487         total_bytes = extract_long(&buf[4],0);
488
489
490         /* Here's the code for simply transferring the file to the client,
491          * for folks who have their own clientware.  It's a lot simpler than
492          * the [XYZ]modem code below...
493          */
494         if (proto == 5) {
495                 printf("Enter the name of the directory to save '%s'\n",
496                         filename);
497                 printf("to, or press return for the current directory.\n");
498                 newprompt("Directory: ",dbuf,256);
499                 if (strlen(dbuf)==0) strcpy(dbuf,".");
500                 strcat(dbuf,"/");
501                 strcat(dbuf,filename);
502                 
503                 savefp = fopen(dbuf,"w");
504                 if (savefp == NULL) {
505                         printf("Cannot open '%s': %s\n",dbuf,strerror(errno));
506                         /* close the download file at the server */
507                         serv_puts("CLOS");
508                         serv_gets(buf);
509                         if (buf[0]!='2') {
510                                 printf("%s\n",&buf[4]);
511                                 }
512                         return;
513                         }
514                 progress(0,total_bytes);
515                 while ( (transmitted_bytes < total_bytes) && (broken == 0) ) {
516                         bb = total_bytes - transmitted_bytes;
517                         aa = ((bb < 4096) ? bb : 4096);
518                         sprintf(buf,"READ %ld|%ld",transmitted_bytes,aa);
519                         serv_puts(buf);
520                         serv_gets(buf);
521                         if (buf[0]!='6') {
522                                 printf("%s\n",&buf[4]);
523                                 return;
524                                 }
525                         packet = extract_int(&buf[4],0);
526                         serv_read(dbuf,packet);
527                         if (fwrite(dbuf,packet,1,savefp) < 1) broken = 1;
528                         transmitted_bytes = transmitted_bytes + (long)packet;
529                         progress(transmitted_bytes,total_bytes);
530                         }
531                 fclose(savefp);
532                 /* close the download file at the server */
533                 serv_puts("CLOS");
534                 serv_gets(buf);
535                 if (buf[0]!='2') {
536                         printf("%s\n",&buf[4]);
537                         }
538                 return;
539                 }
540
541
542         mkdir(tempdir,0700);
543         snprintf(buf,sizeof buf,"%s/%s",tempdir,filename);
544         mkfifo(buf, 0777);
545
546         /* We do the remainder of this function as a separate process in
547          * order to allow recovery if the transfer is aborted.  If the
548          * file transfer program aborts, the first child process receives a
549          * "broken pipe" signal and aborts.  We *should* be able to catch
550          * this condition with signal(), but it doesn't seem to work on all
551          * systems.
552          */
553         a = fork();
554         if (a!=0) {
555                 /* wait for the download to finish */
556                 while (wait(&b)!=a) ;;
557                 sttybbs(0);
558                 /* close the download file at the server */
559                 serv_puts("CLOS");
560                 serv_gets(buf);
561                 if (buf[0]!='2') {
562                         printf("%s\n",&buf[4]);
563                         }
564                 /* clean up the temporary directory */
565                 nukedir(tempdir);
566                 return;
567                 }
568
569         snprintf(buf,sizeof buf,"%s/%s",tempdir,filename); /* full pathname */
570
571         /* The next fork() creates a second child process that is used for
572          * the actual file transfer program (usually sz).
573          */
574         proto_pid = fork();
575         if (proto_pid == 0) {
576                 if (proto==0)  {
577                         sttybbs(0);
578                         signal(SIGINT,SIG_DFL);
579                         signal(SIGQUIT,SIG_DFL);
580                         snprintf(dbuf,sizeof dbuf,"SHELL=/dev/null; export SHELL; TERM=dumb; export TERM; exec more -d <%s",buf);
581                         system(dbuf);
582                         sttybbs(SB_NO_INTR);
583                         exit(0);
584                         }
585                 sttybbs(3);
586                 signal(SIGINT,SIG_DFL);
587                 signal(SIGQUIT,SIG_DFL);
588                 if (proto==1) execlp("sx","sx",buf,NULL);
589                 if (proto==2) execlp("cat","cat",buf,NULL);
590                 if (proto==3) execlp("sb","sb",buf,NULL);
591                 if (proto==4) execlp("sz","sz",buf,NULL);
592                 execlp("cat","cat",buf,NULL);
593                 exit(1);
594                 }
595
596         tpipe = fopen(buf,"w");
597
598         while ( (transmitted_bytes < total_bytes) && (broken == 0) ) {
599                 bb = total_bytes - transmitted_bytes;
600                 aa = ((bb < 4096) ? bb : 4096);
601                 sprintf(buf,"READ %ld|%ld",transmitted_bytes,aa);
602                 serv_puts(buf);
603                 serv_gets(buf);
604                 if (buf[0]!='6') {
605                         printf("%s\n",&buf[4]);
606                         return;
607                         }
608                 packet = extract_int(&buf[4],0);
609                 serv_read(dbuf,packet);
610                 if (fwrite(dbuf,packet,1,tpipe) < 1) broken = 1;
611                 transmitted_bytes = transmitted_bytes + (long)packet;
612                 }
613         if (tpipe!=NULL) fclose(tpipe);
614
615         /* Hang out and wait for the file transfer program to finish */
616         while (wait(&a) != proto_pid) ;;
617
618
619         putc(7,stdout);
620         exit(0);        /* transfer control back to the main program */
621         }
622
623
624 /*
625  * read directory of this room
626  */
627 void roomdir(void) {
628         char flnm[256];
629         char flsz[32];
630         char comment[256];
631         char buf[256];
632
633         serv_puts("RDIR");
634         serv_gets(buf);
635         if (buf[0]!='1') {
636                 printf("%s\n",&buf[4]);
637                 return;
638                 }
639
640         extract(comment,&buf[4],0);
641         extract(flnm,&buf[4],1);
642         printf("\nDirectory of %s on %s\n",flnm,comment);
643         printf("-----------------------\n");
644         while (serv_gets(buf), strcmp(buf,"000")) {
645                 extract(flnm,buf,0);
646                 extract(flsz,buf,1);
647                 extract(comment,buf,2);
648                 if (strlen(flnm)<=14)
649                         printf("%-14s %8s %s\n",flnm,flsz,comment);
650                 else
651                         printf("%s\n%14s %8s %s\n",flnm,"",flsz,comment);
652                 }
653         }
654
655
656 /*
657  * add a user to a private room
658  */
659 void invite(void) {
660         char aaa[31],bbb[256];
661
662         if ((room_flags & QR_PRIVATE)==0) {
663                 printf("This is not a private room.\n");
664                 return;
665                 }
666
667         newprompt("Name of user? ",aaa,30);
668         if (aaa[0]==0) return;
669
670         snprintf(bbb,sizeof bbb,"INVT %s",aaa);
671         serv_puts(bbb);
672         serv_gets(bbb);
673         printf("%s\n",&bbb[4]);
674         }
675
676
677 /*
678  * kick a user out of a room
679  */
680 void kickout(void) {
681         char aaa[31],bbb[256];
682
683         if ((room_flags & QR_PRIVATE)==0) {
684                 printf("Note: this is not a private room.  Kicking a user ");
685                 printf("out of this room will only\nhave the same effect ");
686                 printf("as if they <Z>apped the room.\n\n");
687                 }
688
689         newprompt("Name of user? ",aaa,30);
690         if (aaa[0]==0) return;
691
692         snprintf(bbb,sizeof bbb,"KICK %s",aaa);
693         serv_puts(bbb);
694         serv_gets(bbb);
695         printf("%s\n",&bbb[4]);
696         }
697
698
699 /*
700  * aide command: kill the current room
701  */
702 void killroom(void) {
703         char aaa[100];
704
705         serv_puts("KILL 0");
706         serv_gets(aaa);
707         if (aaa[0]!='2') {
708                 printf("%s\n",&aaa[4]);
709                 return;
710                 }
711
712         printf("Are you sure you want to kill this room? ");
713         if (yesno()==0) return;
714
715         serv_puts("KILL 1");
716         serv_gets(aaa);
717         printf("%s\n",&aaa[4]);
718         if (aaa[0]!='2') return;
719         dotgoto("_BASEROOM_",0);
720         }
721
722 void forget(void) {     /* forget the current room */
723         char cmd[256];
724
725         printf("Are you sure you want to forget this room? ");
726         if (yesno()==0) return;
727
728         serv_puts("FORG");
729         serv_gets(cmd);
730         if (cmd[0]!='2') {
731                 printf("%s\n",&cmd[4]);
732                 return;
733                 }
734
735         /* now return to the lobby */
736         dotgoto("_BASEROOM_",0);
737         }
738
739
740 /*
741  * create a new room
742  */
743 void entroom(void) {
744         char cmd[256];
745         char new_room_name[ROOMNAMELEN];
746         int new_room_type;
747         char new_room_pass[10];
748         int new_room_floor;
749         int a,b;
750
751         serv_puts("CRE8 0");
752         serv_gets(cmd);
753         
754         if (cmd[0]!='2') {
755                 printf("%s\n",&cmd[4]);
756                 return;
757                 }
758         
759         newprompt("Name for new room? ",new_room_name,ROOMNAMELEN-1);
760         if (strlen(new_room_name)==0) return;
761         for (a=0; a<strlen(new_room_name); ++a)
762                 if (new_room_name[a] == '|') new_room_name[a]='_';
763
764         new_room_floor = select_floor((int)curr_floor);
765
766         IFNEXPERT formout("roomaccess");
767         do {
768                 printf("<?>Help\n<1>Public room\n<2>Guess-name room\n");
769                 printf("<3>Passworded room\n<4>Invitation-only room\n");
770                 printf("Enter room type: ");
771                 do {
772                         b=inkey();
773                         } while (((b<'1')||(b>'4')) && (b!='?'));
774                 if (b=='?') {
775                         printf("?\n");
776                         formout("roomaccess");
777                         }
778                 } while ((b<'1')||(b>'4'));
779         b=b-48;
780         printf("%d\n",b);
781         new_room_type = b - 1;
782         if (new_room_type==2) {
783                 newprompt("Enter a room password: ",new_room_pass,9);
784                 for (a=0; a<strlen(new_room_pass); ++a)
785                         if (new_room_pass[a] == '|') new_room_pass[a]='_';
786                 }
787         else strcpy(new_room_pass,"");
788
789         printf("\042%s\042, a",new_room_name);
790         if (b==1) printf(" public room.");
791         if (b==2) printf(" guess-name room.");
792         if (b==3) printf(" passworded room, password: %s",new_room_pass);
793         if (b==4) printf("n invitation-only room.");
794         printf("\nInstall it? (y/n) : ");
795         a=yesno();
796         if (a==0) return;
797
798         snprintf(cmd, sizeof cmd, "CRE8 1|%s|%d|%s|%d", new_room_name,
799                 new_room_type, new_room_pass, new_room_floor);
800         serv_puts(cmd);
801         serv_gets(cmd);
802         if (cmd[0]!='2') {
803                 printf("%s\n",&cmd[4]);
804                 return;
805                 }
806
807         /* command succeeded... now GO to the new room! */
808         dotgoto(new_room_name,0);
809         }
810
811
812
813 void readinfo(void) {   /* read info file for current room */
814         char cmd[256];
815         
816         sprintf(cmd,"RINF");
817         serv_puts(cmd);
818         serv_gets(cmd);
819
820         if (cmd[0]!='1') return;
821
822         fmout(screenwidth,NULL,
823                 ((userflags & US_PAGINATOR) ? 1 : 0),
824                 screenheight,0,1);
825         }
826
827
828 /*
829  * <W>ho knows room...
830  */
831 void whoknows(void) {
832         char buf[256];
833         serv_puts("WHOK");
834         serv_gets(buf);
835         if (buf[0]!='1') {
836                 printf("%s\n",&buf[5]);
837                 return;
838                 }
839         sigcaught = 0;
840         sttybbs(SB_YES_INTR);
841         while (serv_gets(buf), strncmp(buf,"000",3)) {
842                 if (sigcaught==0) printf("%s\n",buf);
843                 }
844         sttybbs(SB_NO_INTR);
845         }
846
847
848 void do_edit(char *desc, char *read_cmd, char *check_cmd, char *write_cmd)
849 {
850         FILE *fp;
851         char cmd[256];
852         int b,cksum,editor_exit;
853
854
855         if (strlen(editor_path)==0) {
856                 printf("Do you wish to re-enter %s? ",desc);
857                 if (yesno()==0) return;
858                 }
859
860         fp = fopen(temp,"w");
861         fclose(fp);
862
863         serv_puts(check_cmd);
864         serv_gets(cmd);
865         if (cmd[0]!='2') {
866                 printf("%s\n",&cmd[4]);
867                 return;
868                 }
869
870         if (strlen(editor_path)>0) {
871                 serv_puts(read_cmd);
872                 serv_gets(cmd);
873                 if (cmd[0]=='1') {
874                         fp = fopen(temp,"w");
875                         while (serv_gets(cmd), strcmp(cmd,"000")) {
876                                 fprintf(fp,"%s\n",cmd);
877                                 }
878                         fclose(fp);
879                         }
880                 }
881
882         cksum = file_checksum(temp);
883
884         if (strlen(editor_path)>0) {
885                 editor_pid=fork();
886                 if (editor_pid==0) {
887                         chmod(temp,0600);
888                         sttybbs(SB_RESTORE);
889                         execlp(editor_path,editor_path,temp,NULL);
890                         exit(1);
891                         }
892                 if (editor_pid>0) do {
893                         editor_exit = 0;
894                         b=wait(&editor_exit);
895                         } while((b!=editor_pid)&&(b>=0));
896                 editor_pid = (-1);
897                 printf("Executed %s\n", editor_path);
898                 sttybbs(0);
899                 }
900         else {
901                 printf("Entering %s.  ",desc);
902                 printf("Press return twice when finished.\n");
903                 fp=fopen(temp,"r+");
904                 citedit(fp,0);
905                 fclose(fp);
906                 }
907
908         if (file_checksum(temp) == cksum) {
909                 printf("*** Aborted.\n");
910                 }
911
912         else {
913                 serv_puts(write_cmd);
914                 serv_gets(cmd);
915                 if (cmd[0]!='4') {
916                         printf("%s\n",&cmd[4]);
917                         return;
918                         }
919
920                 fp=fopen(temp,"r");
921                 while (fgets(cmd,255,fp)!=NULL) {
922                         cmd[strlen(cmd)-1] = 0;
923                         serv_puts(cmd);
924                         }
925                 fclose(fp);
926                 serv_puts("000");
927                 }
928
929         unlink(temp);
930         }
931
932
933 void enterinfo(void) {          /* edit info file for current room */
934         do_edit("the Info file for this room","RINF","EINF 0","EINF 1");
935         }
936
937 void enter_bio(void) {
938         char cmd[256];
939         snprintf(cmd,sizeof cmd,"RBIO %s",fullname);
940         do_edit("your Bio",cmd,"NOOP","EBIO");
941         }
942
943 /*
944  * create a new floor
945  */
946 void create_floor(void) {
947         char buf[256];
948         char newfloorname[256];
949
950         serv_puts("CFLR xx|0");
951         serv_gets(buf);
952         if (buf[0]!='2') {
953                 printf("%s\n",&buf[4]);
954                 return;
955                 }
956
957         newprompt("Name for new floor: ",newfloorname,255);
958         snprintf(buf,sizeof buf,"CFLR %s|1",newfloorname);
959         serv_puts(buf);
960         serv_gets(buf);
961         if (buf[0]=='2') {
962                 printf("Floor has been created.\n");
963                 }
964         else {
965                 printf("%s\n",&buf[4]);
966                 }
967         }
968
969 /*
970  * edit the current floor
971  */
972 void edit_floor(void) {
973         char buf[256];
974
975         if (floorlist[(int)curr_floor][0]==0) load_floorlist();
976         strprompt("New floor name",&floorlist[(int)curr_floor][0],255);
977         snprintf(buf,sizeof buf,"EFLR %d|%s",curr_floor,
978                  &floorlist[(int)curr_floor][0]);
979         serv_puts(buf);
980         serv_gets(buf);
981         printf("%s\n",&buf[4]);
982         load_floorlist();
983         }
984
985
986
987
988 /*
989  * kill the current floor 
990  */
991 void kill_floor(void) {
992         int floornum_to_delete,a;
993         char buf[256];
994
995         if (floorlist[(int)curr_floor][0]==0) load_floorlist();
996         do {
997                 floornum_to_delete = (-1);
998                 printf("(Press return to abort)\n");
999                 newprompt("Delete which floor? ",buf,255);
1000                 if (strlen(buf)==0) return;
1001                 for (a=0; a<128; ++a)
1002                         if (!strucmp(&floorlist[a][0],buf))
1003                                 floornum_to_delete = a;
1004                 if (floornum_to_delete < 0) {
1005                         printf("No such floor.  Select one of:\n");
1006                         for (a=0; a<128; ++a)
1007                                 if (floorlist[a][0]!=0)
1008                                         printf("%s\n",&floorlist[a][0]);
1009                         }
1010                 } while (floornum_to_delete < 0);
1011         sprintf(buf,"KFLR %d|1",floornum_to_delete);
1012         serv_puts(buf);
1013         serv_gets(buf);
1014         printf("%s\n",&buf[4]);
1015         }