]> code.citadel.org Git - citadel.git/blob - webcit/roomops.c
The room info link in the banner no longer appears
[citadel.git] / webcit / roomops.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup RoomOps Lots of different room-related operations.
6  * \ingroup CitadelCommunitacion
7  */
8 /*@{*/
9 #include "webcit.h"
10
11 char floorlist[128][SIZ]; /**< list of our floor names */
12
13 char *viewdefs[8]; /**< the different kinds of available views */
14
15 /**
16  * \brief initialize the viewdefs with localized strings
17  */
18 void initialize_viewdefs(void) {
19         viewdefs[0] = _("Bulletin Board");
20         viewdefs[1] = _("Mail Folder");
21         viewdefs[2] = _("Address Book");
22         viewdefs[3] = _("Calendar");
23         viewdefs[4] = _("Task List");
24         viewdefs[5] = _("Notes List");
25         viewdefs[6] = _("Wiki");
26         viewdefs[7] = _("Calendar List");
27 }
28
29 /**
30  * \brief       Determine which views are allowed as the default for creating a new room.
31  *
32  * \param       which_view      The view ID being queried.
33  */
34 int is_view_allowed_as_default(int which_view)
35 {
36         switch(which_view) {
37                 case VIEW_BBS:          return(1);
38                 case VIEW_MAILBOX:      return(1);
39                 case VIEW_ADDRESSBOOK:  return(1);
40                 case VIEW_CALENDAR:     return(1);
41                 case VIEW_TASKS:        return(1);
42                 case VIEW_NOTES:        return(1);
43                 case VIEW_WIKI:         return(0);      /**< because it isn't finished yet */
44                 case VIEW_CALBRIEF:     return(0);
45                 default:                return(0);      /**< should never get here */
46         }
47 }
48
49
50 /**
51  * \brief load the list of floors
52  */
53 void load_floorlist(void)
54 {
55         int a;
56         char buf[SIZ];
57
58         for (a = 0; a < 128; ++a)
59                 floorlist[a][0] = 0;
60
61         serv_puts("LFLR");
62         serv_getln(buf, sizeof buf);
63         if (buf[0] != '1') {
64                 strcpy(floorlist[0], "Main Floor");
65                 return;
66         }
67         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
68                 extract_token(floorlist[extract_int(buf, 0)], buf, 1, '|', sizeof floorlist[0]);
69         }
70 }
71
72
73 /**
74  * \brief       Free a session's march list
75  *
76  * \param       wcf             Pointer to session being cleared
77  */
78 void free_march_list(struct wcsession *wcf)
79 {
80         struct march *mptr;
81
82         while (wcf->march != NULL) {
83                 mptr = wcf->march->next;
84                 free(wcf->march);
85                 wcf->march = mptr;
86         }
87
88 }
89
90
91
92 /**
93  * \brief remove a room from the march list
94  */
95 void remove_march(char *aaa)
96 {
97         struct march *mptr, *mptr2;
98
99         if (WC->march == NULL)
100                 return;
101
102         if (!strcasecmp(WC->march->march_name, aaa)) {
103                 mptr = WC->march->next;
104                 free(WC->march);
105                 WC->march = mptr;
106                 return;
107         }
108         mptr2 = WC->march;
109         for (mptr = WC->march; mptr != NULL; mptr = mptr->next) {
110                 if (!strcasecmp(mptr->march_name, aaa)) {
111                         mptr2->next = mptr->next;
112                         free(mptr);
113                         mptr = mptr2;
114                 } else {
115                         mptr2 = mptr;
116                 }
117         }
118 }
119
120
121
122
123 /**
124  * \brief display rooms in tree structure???
125  * \param rp the roomlist to build a tree from
126  */
127 void room_tree_list(struct roomlisting *rp)
128 {
129         char rmname[64];
130         int f;
131
132         if (rp == NULL) {
133                 return;
134         }
135
136         room_tree_list(rp->lnext);
137
138         strcpy(rmname, rp->rlname);
139         f = rp->rlflags;
140
141         wprintf("<a href=\"dotgoto&room=");
142         urlescputs(rmname);
143         wprintf("\"");
144         wprintf(">");
145         escputs1(rmname, 1, 1);
146         if ((f & QR_DIRECTORY) && (f & QR_NETWORK))
147                 wprintf("}");
148         else if (f & QR_DIRECTORY)
149                 wprintf("]");
150         else if (f & QR_NETWORK)
151                 wprintf(")");
152         else
153                 wprintf("&gt;");
154         wprintf("</A><TT> </TT>\n");
155
156         room_tree_list(rp->rnext);
157         free(rp);
158 }
159
160
161 /** 
162  * \brief Room ordering stuff (compare first by floor, then by order)
163  * \param r1 first roomlist to compare
164  * \param r2 second roomlist co compare
165  * \return are they the same???
166  */
167 int rordercmp(struct roomlisting *r1, struct roomlisting *r2)
168 {
169         if ((r1 == NULL) && (r2 == NULL))
170                 return (0);
171         if (r1 == NULL)
172                 return (-1);
173         if (r2 == NULL)
174                 return (1);
175         if (r1->rlfloor < r2->rlfloor)
176                 return (-1);
177         if (r1->rlfloor > r2->rlfloor)
178                 return (1);
179         if (r1->rlorder < r2->rlorder)
180                 return (-1);
181         if (r1->rlorder > r2->rlorder)
182                 return (1);
183         return (0);
184 }
185
186
187 /**
188  * \brief Common code for all room listings
189  * \param variety what???
190  */
191 void listrms(char *variety)
192 {
193         char buf[SIZ];
194         int num_rooms = 0;
195
196         struct roomlisting *rl = NULL;
197         struct roomlisting *rp;
198         struct roomlisting *rs;
199
200         /** Ask the server for a room list */
201         serv_puts(variety);
202         serv_getln(buf, sizeof buf);
203         if (buf[0] != '1') {
204                 wprintf("&nbsp;");
205                 return;
206         }
207
208         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
209                 ++num_rooms;
210                 rp = malloc(sizeof(struct roomlisting));
211                 extract_token(rp->rlname, buf, 0, '|', sizeof rp->rlname);
212                 rp->rlflags = extract_int(buf, 1);
213                 rp->rlfloor = extract_int(buf, 2);
214                 rp->rlorder = extract_int(buf, 3);
215                 rp->lnext = NULL;
216                 rp->rnext = NULL;
217
218                 rs = rl;
219                 if (rl == NULL) {
220                         rl = rp;
221                 } else
222                         while (rp != NULL) {
223                                 if (rordercmp(rp, rs) < 0) {
224                                         if (rs->lnext == NULL) {
225                                                 rs->lnext = rp;
226                                                 rp = NULL;
227                                         } else {
228                                                 rs = rs->lnext;
229                                         }
230                                 } else {
231                                         if (rs->rnext == NULL) {
232                                                 rs->rnext = rp;
233                                                 rp = NULL;
234                                         } else {
235                                                 rs = rs->rnext;
236                                         }
237                                 }
238                         }
239         }
240
241         room_tree_list(rl);
242
243         /**
244          * If no rooms were listed, print an nbsp to make the cell
245          * borders show up anyway.
246          */
247         if (num_rooms == 0) wprintf("&nbsp;");
248 }
249
250
251 /**
252  * \brief list all forgotten rooms
253  */
254 void zapped_list(void)
255 {
256         output_headers(1, 1, 0, 0, 0, 0);
257
258         svprintf("BOXTITLE", WCS_STRING, _("Zapped (forgotten) rooms"));
259         do_template("beginbox");
260
261         listrms("LZRM -1");
262
263         wprintf("<br /><br />\n");
264         wprintf(_("Click on any room to un-zap it and goto that room.\n"));
265         do_template("endbox");
266         wDumpContent(1);
267 }
268
269
270 /**
271  * \brief read this room's info file (set v to 1 for verbose mode)
272  */
273 void readinfo(void)
274 {
275         char buf[256];
276         char briefinfo[128];
277         char fullinfo[8192];
278         int fullinfo_len = 0;
279
280         serv_puts("RINF");
281         serv_getln(buf, sizeof buf);
282         if (buf[0] == '1') {
283
284                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
285                         if (fullinfo_len < (sizeof fullinfo - sizeof buf)) {
286                                 strcpy(&fullinfo[fullinfo_len], buf);
287                                 fullinfo_len += strlen(buf);
288                         }
289                 }
290
291                 safestrncpy(briefinfo, fullinfo, sizeof briefinfo);
292                 strcpy(&briefinfo[50], "...");
293
294                 wprintf("<div class=\"infos\" "
295                 "onclick=\"javascript:Effect.Appear('room_infos', { duration: 0.5 });\" "
296                 ">");
297                 escputs(briefinfo);
298                 wprintf("</div><div id=\"room_infos\" style=\"display:none;\">");
299                 wprintf("<img class=\"close_infos\" "
300                         "onclick=\"javascript:Effect.Fade('room_infos', { duration: 0.5 });\" "
301                         "src=\"static/closewindow.gif\" alt=\"%s\">",
302                         _("Close window")
303                 );
304                 escputs(fullinfo);
305                 wprintf("</div>");
306         }
307         else {
308                 wprintf("&nbsp;");
309         }
310 }
311
312
313
314
315 /**
316  * \brief Display room banner icon.  
317  * The server doesn't actually
318  * need the room name, but we supply it in order to
319  * keep the browser from using a cached icon from 
320  * another room.
321  */
322 void embed_room_graphic(void) {
323         char buf[SIZ];
324
325         serv_puts("OIMG _roompic_");
326         serv_getln(buf, sizeof buf);
327         if (buf[0] == '2') {
328                 wprintf("<IMG HEIGHT=64 src=\"image&name=_roompic_&room=");
329                 urlescputs(WC->wc_roomname);
330                 wprintf("\">");
331                 serv_puts("CLOS");
332                 serv_getln(buf, sizeof buf);
333         }
334         else if (WC->wc_view == VIEW_ADDRESSBOOK) {
335                 wprintf("<img height=48 width=48 src=\""
336                         "static/viewcontacts_48x.gif"
337                         "\">"
338                 );
339         }
340         else if ( (WC->wc_view == VIEW_CALENDAR) || (WC->wc_view == VIEW_CALBRIEF) ) {
341                 wprintf("<img height=48 width=48 src=\""
342                         "static/calarea_48x.gif"
343                         "\">"
344                 );
345         }
346         else if (WC->wc_view == VIEW_TASKS) {
347                 wprintf("<img height=48 width=48 src=\""
348                         "static/taskmanag_48x.gif"
349                         "\">"
350                 );
351         }
352         else if (WC->wc_view == VIEW_NOTES) {
353                 wprintf("<img height=48 width=48 src=\""
354                         "static/storenotes_48x.gif"
355                         "\">"
356                 );
357         }
358         else if (WC->wc_view == VIEW_MAILBOX) {
359                 wprintf("<img height=48 width=48 src=\""
360                         "static/privatemess_48x.gif"
361                         "\">"
362                 );
363         }
364         else {
365                 wprintf("<img height=48 width=48 src=\""
366                         "static/chatrooms_48x.gif"
367                         "\">"
368                 );
369         }
370
371 }
372
373
374
375 /**
376  * \brief Display the current view and offer an option to change it
377  */
378 void embed_view_o_matic(void) {
379         int i;
380
381         wprintf("<form name=\"viewomatic\" action=\"changeview\">\n"
382                 "<label for=\"view_name\">");
383         wprintf(_("View as:"));
384         wprintf("</label> "
385                 "<select name=\"newview\" size=\"1\" "
386                 "id=\"view_name\" class=\"selectbox\" "
387                 "OnChange=\"location.href=viewomatic.newview.options"
388                 "[selectedIndex].value\">\n");
389
390         for (i=0; i<(sizeof viewdefs / sizeof (char *)); ++i) {
391                 /**
392                  * Only offer the views that make sense, given the default
393                  * view for the room.  For example, don't offer a Calendar
394                  * view in a non-Calendar room.
395                  */
396                 if (
397                         (i == WC->wc_view)
398                         ||      (i == WC->wc_default_view)                      /**< default */
399                         ||      ( (i == 0) && (WC->wc_default_view == 1) )      /**< mail or bulletin */
400                         ||      ( (i == 1) && (WC->wc_default_view == 0) )      /**< mail or bulletin */
401                         /** ||  ( (i == 7) && (WC->wc_default_view == 3) )      (calendar list temporarily disabled) */
402                 ) {
403
404                         wprintf("<option %s value=\"changeview?view=%d\">",
405                                 ((i == WC->wc_view) ? "selected" : ""),
406                                 i );
407                         escputs(viewdefs[i]);
408                         wprintf("</option>\n");
409                 }
410         }
411         wprintf("</select></form>\n");
412 }
413
414
415 /**
416  * \brief Display a search box
417  */
418 void embed_search_o_matic(void) {
419         wprintf("<form name=\"searchomatic\" action=\"do_search\">\n"
420                 "<label for=\"search_name\">");
421         wprintf(_("Search: "));
422         wprintf("</label> <input "
423                 "type=\"text\" name=\"query\" size=\"15\" maxlength=\"128\" "
424                 "id=\"search_name\" class=\"inputbox\">\n"
425         );
426         wprintf("</select></form>\n");
427 }
428
429
430 /**
431  * \brief               Embed the room banner
432  *
433  * \param got           The information returned from a GOTO server command
434  * \param navbar_style  Determines which navigation buttons to display
435  *
436  */
437
438 void embed_room_banner(char *got, int navbar_style) {
439         char buf[256];
440
441         /**
442          * We need to have the information returned by a GOTO server command.
443          * If it isn't supplied, we fake it by issuing our own GOTO.
444          */
445         if (got == NULL) {
446                 serv_printf("GOTO %s", WC->wc_roomname);
447                 serv_getln(buf, sizeof buf);
448                 got = buf;
449         }
450
451         /** The browser needs some information for its own use */
452         wprintf("<script type=\"text/javascript\">      \n"
453                 "       room_is_trash = %d;             \n"
454                 "</script>\n",
455                 WC->wc_is_trash
456         );
457
458         /**
459          * If the user happens to select the "make this my start page" link,
460          * we want it to remember the URL as a "/dotskip" one instead of
461          * a "skip" or "gotonext" or something like that.
462          */
463         snprintf(WC->this_page, sizeof(WC->this_page), "dotskip&room=%s",
464                 WC->wc_roomname);
465
466         /** Check for new mail. */
467         WC->new_mail = extract_int(&got[4], 9);
468         WC->wc_view = extract_int(&got[4], 11);
469
470         svprintf("ROOMNAME", WCS_STRING, "%s", WC->wc_roomname);
471         svprintf("NUMMSGS", WCS_STRING,
472                 _("%d new of %d messages"),
473                 extract_int(&got[4], 1),
474                 extract_int(&got[4], 2)
475         );
476         svcallback("ROOMPIC", embed_room_graphic);
477         svcallback("ROOMINFO", readinfo);
478         svcallback("VIEWOMATIC", embed_view_o_matic);
479         svcallback("SEARCHOMATIC", embed_search_o_matic);
480         svcallback("START", offer_start_page);
481
482         do_template("roombanner");
483         if (navbar_style != navbar_none) {
484
485                 wprintf("<div id=\"navbar\">\n"
486                         "<ul>");
487
488                 
489
490                 if (navbar_style == navbar_default) wprintf(
491                         "<li class=\"ungoto\">"
492                         "<a href=\"ungoto\">"
493                         "<img align=\"middle\" src=\"static/ungoto2_24x.gif\" border=\"0\">"
494                         "<span class=\"navbar_link\">%s</span></A>"
495                         "</li>\n", _("Ungoto")
496                 );
497
498                 if ( (navbar_style == navbar_default) && (WC->wc_view == VIEW_BBS) ) {
499                         wprintf(
500                                 "<li class=\"newmess\">"
501                                 "<a href=\"readnew\">"
502                                 "<img align=\"middle\" src=\"static/newmess2_24x.gif\" border=\"0\">"
503                                 "<span class=\"navbar_link\">%s</span></A>"
504                                 "</li>\n", _("Read new messages")
505                         );
506                 }
507
508                 if (navbar_style == navbar_default) {
509                         switch(WC->wc_view) {
510                                 case VIEW_ADDRESSBOOK:
511                                         wprintf(
512                                                 "<li class=\"viewcontacts\">"
513                                                 "<a href=\"readfwd\">"
514                                                 "<img align=\"middle\" src=\"static/viewcontacts_24x.gif\" "
515                                                 "border=\"0\">"
516                                                 "<span class=\"navbar_link\">"
517                                                 "%s"
518                                                 "</span></a></li>\n", _("View contacts")
519                                         );
520                                         break;
521                                 case VIEW_CALENDAR:
522                                         wprintf(
523                                                 "<li class=\"staskday\">"
524                                                 "<a href=\"readfwd?calview=day\">"
525                                                 "<img align=\"middle\" src=\"static/taskday2_24x.gif\" "
526                                                 "border=\"0\">"
527                                                 "<span class=\"navbar_link\">"
528                                                 "%s"
529                                                 "</span></a></li>\n", _("Day view")
530                                         );
531                                         wprintf(
532                                                 "<li class=\"monthview\">"
533                                                 "<a href=\"readfwd?calview=month\">"
534                                                 "<img align=\"middle\" src=\"static/monthview2_24x.gif\" "
535                                                 "border=\"0\">"
536                                                 "<span class=\"navbar_link\">"
537                                                 "%s"
538                                                 "</span></a></li>\n", _("Month view")
539                                         );
540                                         break;
541                                 case VIEW_CALBRIEF:
542                                         wprintf(
543                                                 "<li class=\"monthview\">"
544                                                 "<a href=\"readfwd?calview=month\">"
545                                                 "<img align=\"middle\" src=\"static/monthview2_24x.gif\" "
546                                                 "border=\"0\">"
547                                                 "<span class=\"navbar_link\">"
548                                                 "%s"
549                                                 "</span></a></li>\n", _("Calendar list")
550                                         );
551                                         break;
552                                 case VIEW_TASKS:
553                                         wprintf(
554                                                 "<li class=\"taskmanag\">"
555                                                 "<a href=\"readfwd\">"
556                                                 "<img align=\"middle\" src=\"static/taskmanag_24x.gif\" "
557                                                 "border=\"0\">"
558                                                 "<span class=\"navbar_link\">"
559                                                 "%s"
560                                                 "</span></a></li>\n", _("View tasks")
561                                         );
562                                         break;
563                                 case VIEW_NOTES:
564                                         wprintf(
565                                                 "<li class=\"viewnotes\">"
566                                                 "<a href=\"readfwd\">"
567                                                 "<img align=\"middle\" src=\"static/viewnotes_24x.gif\" "
568                                                 "border=\"0\">"
569                                                 "<span class=\"navbar_link\">"
570                                                 "%s"
571                                                 "</span></a></li>\n", _("View notes")
572                                         );
573                                         break;
574                                 case VIEW_MAILBOX:
575                                         wprintf(
576                                                 "<li class=\"readallmess\">"
577                                                 "<a href=\"readfwd\">"
578                                                 "<img align=\"middle\" src=\"static/readallmess3_24x.gif\" "
579                                                 "border=\"0\">"
580                                                 "<span class=\"navbar_link\">"
581                                                 "%s"
582                                                 "</span></a></li>\n", _("View message list")
583                                         );
584                                         break;
585                                 case VIEW_WIKI:
586                                         wprintf(
587                                                 "<li class=\"readallmess\">"
588                                                 "<a href=\"readfwd\">"
589                                                 "<img align=\"middle\" src=\"static/readallmess3_24x.gif\" "
590                                                 "border=\"0\">"
591                                                 "<span class=\"navbar_link\">"
592                                                 "%s"
593                                                 "</span></a></li>\n", _("Wiki home")
594                                         );
595                                         break;
596                                 default:
597                                         wprintf(
598                                                 "<li class=\"readallmess\">"
599                                                 "<a href=\"readfwd\">"
600                                                 "<img align=\"middle\" src=\"static/readallmess3_24x.gif\" "
601                                                 "border=\"0\">"
602                                                 "<span class=\"navbar_link\">"
603                                                 "%s"
604                                                 "</span></a></li>\n", _("Read all messages")
605                                         );
606                                         break;
607                         }
608                 }
609
610                 if (navbar_style == navbar_default) {
611                         switch(WC->wc_view) {
612                                 case VIEW_ADDRESSBOOK:
613                                         wprintf(
614                                                 "<li class=\"addnewcontact\">"
615                                                 "<a href=\"display_enter\">"
616                                                 "<img align=\"middle\" src=\"static/addnewcontact_24x.gif\" "
617                                                 "border=\"0\"><span class=\"navbar_link\">"
618                                                 "%s"
619                                                 "</span></a></li>\n", _("Add new contact")
620                                         );
621                                         break;
622                                 case VIEW_CALENDAR:
623                                 case VIEW_CALBRIEF:
624                                         wprintf("<li class=\"addevent\"><a href=\"display_enter");
625                                         if (strlen(bstr("year")) > 0) wprintf("?year=%s", bstr("year"));
626                                         if (strlen(bstr("month")) > 0) wprintf("?month=%s", bstr("month"));
627                                         if (strlen(bstr("day")) > 0) wprintf("?day=%s", bstr("day"));
628                                         wprintf("\">"
629                                                 "<img align=\"middle\" src=\"static/addevent_24x.gif\" "
630                                                 "border=\"0\"><span class=\"navbar_link\">"
631                                                 "%s"
632                                                 "</span></a></li>\n", _("Add new event")
633                                         );
634                                         break;
635                                 case VIEW_TASKS:
636                                         wprintf(
637                                                 "<li class=\"newmess\">"
638                                                 "<a href=\"display_enter\">"
639                                                 "<img align=\"middle\" src=\"static/newmess3_24x.gif\" "
640                                                 "border=\"0\"><span class=\"navbar_link\">"
641                                                 "%s"
642                                                 "</span></a></li>\n", _("Add new task")
643                                         );
644                                         break;
645                                 case VIEW_NOTES:
646                                         wprintf(
647                                                 "<li class=\"enternewnote\">"
648                                                 "<a href=\"javascript:add_new_note();\">"
649                                                 "<img align=\"middle\" src=\"static/enternewnote_24x.gif\" "
650                                                 "border=\"0\"><span class=\"navbar_link\">"
651                                                 "%s"
652                                                 "</span></a></li>\n", _("Add new note")
653                                         );
654                                         break;
655                                 case VIEW_WIKI:
656                                         safestrncpy(buf, bstr("page"), sizeof buf);
657                                         str_wiki_index(buf);
658                                         wprintf(
659                                                 "<li class=\"newmess\">"
660                                                 "<a href=\"display_enter?wikipage=%s\">"
661                                                 "<img align=\"middle\" src=\"static/newmess3_24x.gif\" "
662                                                 "border=\"0\"><span class=\"navbar_link\">"
663                                                 "%s"
664                                                 "</span></a></li>\n", buf, _("Edit this page")
665                                         );
666                                         break;
667                                 case VIEW_MAILBOX:
668                                         wprintf(
669                                                 "<li class=\"newmess\">"
670                                                 "<a href=\"display_enter\">"
671                                                 "<img align=\"middle\" src=\"static/newmess3_24x.gif\" "
672                                                 "border=\"0\"><span class=\"navbar_link\">"
673                                                 "%s"
674                                                 "</span></a></li>\n", _("Write mail")
675                                         );
676                                         break;
677                                 default:
678                                         wprintf(
679                                                 "<li class=\"newmess\">"
680                                                 "<a href=\"display_enter\">"
681                                                 "<img align=\"middle\" src=\"static/newmess3_24x.gif\" "
682                                                 "border=\"0\"><span class=\"navbar_link\">"
683                                                 "%s"
684                                                 "</span></a></li>\n", _("Enter a message")
685                                         );
686                                         break;
687                         }
688                 }
689
690                 if (navbar_style == navbar_default) wprintf(
691                         "<li class=\"skipthisroom\">"
692                         "<a href=\"skip\" "
693                         "title=\"%s\">"
694                         "<img align=\"middle\" src=\"static/skipthisroom_24x.gif\" border=\"0\">"
695                         "<span class=\"navbar_link\">%s</span></a>"
696                         "</li>\n",
697                         _("Leave all messages marked as unread, go to next room with unread messages"),
698                         _("Skip this room")
699                 );
700
701                 if (navbar_style == navbar_default) wprintf(
702                         "<li class=\"markngo\">"
703                         "<a href=\"gotonext\" "
704                         "title=\"%s\">"
705                         "<img align=\"middle\" src=\"static/markngo_24x.gif\" border=\"0\">"
706                         "<span class=\"navbar_link\">%s</span></a>"
707                         "</li>\n",
708                         _("Mark all messages as read, go to next room with unread messages"),
709                         _("Goto next room")
710                 );
711
712                 wprintf("</ul></div>\n");
713         }
714
715 }
716
717
718 /**
719  * \brief back end routine to take the session to a new room
720  * \param gname room to go to
721  *
722  */
723 int gotoroom(char *gname)
724 {
725         char buf[SIZ];
726         static long ls = (-1L);
727         int err = 0;
728
729         /** store ungoto information */
730         strcpy(WC->ugname, WC->wc_roomname);
731         WC->uglsn = ls;
732
733         /** move to the new room */
734         serv_printf("GOTO %s", gname);
735         serv_getln(buf, sizeof buf);
736         if (buf[0] != '2') {
737                 buf[3] = 0;
738                 err = atoi(buf);
739                 serv_puts("GOTO _BASEROOM_");
740                 serv_getln(buf, sizeof buf);
741         }
742         if (buf[0] != '2') {
743                 buf[3] = 0;
744                 err = atoi(buf);
745                 return err;
746         }
747         extract_token(WC->wc_roomname, &buf[4], 0, '|', sizeof WC->wc_roomname);
748         WC->room_flags = extract_int(&buf[4], 4);
749         /* highest_msg_read = extract_int(&buf[4],6);
750            maxmsgnum = extract_int(&buf[4],5);
751          */
752         WC->is_mailbox = extract_int(&buf[4],7);
753         ls = extract_long(&buf[4], 6);
754         WC->wc_floor = extract_int(&buf[4], 10);
755         WC->wc_view = extract_int(&buf[4], 11);
756         WC->wc_default_view = extract_int(&buf[4], 12);
757         WC->wc_is_trash = extract_int(&buf[4], 13);
758         WC->room_flags2 = extract_int(&buf[4], 14);
759
760         if (WC->is_aide)
761                 WC->is_room_aide = WC->is_aide;
762         else
763                 WC->is_room_aide = (char) extract_int(&buf[4], 8);
764
765         remove_march(WC->wc_roomname);
766         if (!strcasecmp(gname, "_BASEROOM_"))
767                 remove_march(gname);
768
769         return err;
770 }
771
772
773 /**
774  * \brief Locate the room on the march list which we most want to go to.  
775  * Each room
776  * is measured given a "weight" of preference based on various factors.
777  * \param desired_floor the room number on the citadel server
778  * \return the roomname
779  */
780 char *pop_march(int desired_floor)
781 {
782         static char TheRoom[128];
783         int TheFloor = 0;
784         int TheOrder = 32767;
785         int TheWeight = 0;
786         int weight;
787         struct march *mptr = NULL;
788
789         strcpy(TheRoom, "_BASEROOM_");
790         if (WC->march == NULL)
791                 return (TheRoom);
792
793         for (mptr = WC->march; mptr != NULL; mptr = mptr->next) {
794                 weight = 0;
795                 if ((strcasecmp(mptr->march_name, "_BASEROOM_")))
796                         weight = weight + 10000;
797                 if (mptr->march_floor == desired_floor)
798                         weight = weight + 5000;
799
800                 weight = weight + ((128 - (mptr->march_floor)) * 128);
801                 weight = weight + (128 - (mptr->march_order));
802
803                 if (weight > TheWeight) {
804                         TheWeight = weight;
805                         strcpy(TheRoom, mptr->march_name);
806                         TheFloor = mptr->march_floor;
807                         TheOrder = mptr->march_order;
808                 }
809         }
810         return (TheRoom);
811 }
812
813
814
815 /**
816  *\brief Goto next room having unread messages.
817  * We want to skip over rooms that the user has already been to, and take the
818  * user back to the lobby when done.  The room we end up in is placed in
819  * newroom - which is set to 0 (the lobby) initially.
820  * We start the search in the current room rather than the beginning to prevent
821  * two or more concurrent users from dragging each other back to the same room.
822  */
823 void gotonext(void)
824 {
825         char buf[256];
826         struct march *mptr, *mptr2;
827         char room_name[128];
828         char next_room[128];
829
830         /**
831          * First check to see if the march-mode list is already allocated.
832          * If it is, pop the first room off the list and go there.
833          */
834
835         if (WC->march == NULL) {
836                 serv_puts("LKRN");
837                 serv_getln(buf, sizeof buf);
838                 if (buf[0] == '1')
839                         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
840                                 extract_token(room_name, buf, 0, '|', sizeof room_name);
841                                 if (strcasecmp(room_name, WC->wc_roomname)) {
842                                         mptr = (struct march *) malloc(sizeof(struct march));
843                                         mptr->next = NULL;
844                                         safestrncpy(mptr->march_name, room_name, sizeof mptr->march_name);
845                                         mptr->march_floor = extract_int(buf, 2);
846                                         mptr->march_order = extract_int(buf, 3);
847                                         if (WC->march == NULL) {
848                                                 WC->march = mptr;
849                                         } else {
850                                                 mptr2 = WC->march;
851                                                 while (mptr2->next != NULL)
852                                                         mptr2 = mptr2->next;
853                                                 mptr2->next = mptr;
854                                         }
855                                 }
856                         }
857                 /**
858                  * add _BASEROOM_ to the end of the march list, so the user will end up
859                  * in the system base room (usually the Lobby>) at the end of the loop
860                  */
861                 mptr = (struct march *) malloc(sizeof(struct march));
862                 mptr->next = NULL;
863                 strcpy(mptr->march_name, "_BASEROOM_");
864                 if (WC->march == NULL) {
865                         WC->march = mptr;
866                 } else {
867                         mptr2 = WC->march;
868                         while (mptr2->next != NULL)
869                                 mptr2 = mptr2->next;
870                         mptr2->next = mptr;
871                 }
872                 /**
873                  * ...and remove the room we're currently in, so a <G>oto doesn't make us
874                  * walk around in circles
875                  */
876                 remove_march(WC->wc_roomname);
877         }
878         if (WC->march != NULL) {
879                 strcpy(next_room, pop_march(-1));
880         } else {
881                 strcpy(next_room, "_BASEROOM_");
882         }
883
884
885         smart_goto(next_room);
886 }
887
888
889 /**
890  * \brief goto next room
891  * \param next_room next room to go to
892  */
893 void smart_goto(char *next_room) {
894         gotoroom(next_room);
895         readloop("readnew");
896 }
897
898
899
900 /**
901  * \brief mark all messages in current room as having been read
902  */
903 void slrp_highest(void)
904 {
905         char buf[256];
906
907         serv_puts("SLRP HIGHEST");
908         serv_getln(buf, sizeof buf);
909 }
910
911
912 /**
913  * \brief un-goto the previous room
914  */
915 void ungoto(void)
916 {
917         char buf[SIZ];
918
919         if (!strcmp(WC->ugname, "")) {
920                 smart_goto(WC->wc_roomname);
921                 return;
922         }
923         serv_printf("GOTO %s", WC->ugname);
924         serv_getln(buf, sizeof buf);
925         if (buf[0] != '2') {
926                 smart_goto(WC->wc_roomname);
927                 return;
928         }
929         if (WC->uglsn >= 0L) {
930                 serv_printf("SLRP %ld", WC->uglsn);
931                 serv_getln(buf, sizeof buf);
932         }
933         strcpy(buf, WC->ugname);
934         strcpy(WC->ugname, "");
935         smart_goto(buf);
936 }
937
938
939
940
941
942 /**
943  * \brief Set/clear/read the "self-service list subscribe" flag for a room
944  * 
945  * \param newval set to 0 to clear, 1 to set, any other value to leave unchanged.
946  * \return return the new value.
947  */
948
949 int self_service(int newval) {
950         int current_value = 0;
951         char buf[SIZ];
952         
953         char name[SIZ];
954         char password[SIZ];
955         char dirname[SIZ];
956         int flags, floor, order, view, flags2;
957
958         serv_puts("GETR");
959         serv_getln(buf, sizeof buf);
960         if (buf[0] != '2') return(0);
961
962         extract_token(name, &buf[4], 0, '|', sizeof name);
963         extract_token(password, &buf[4], 1, '|', sizeof password);
964         extract_token(dirname, &buf[4], 2, '|', sizeof dirname);
965         flags = extract_int(&buf[4], 3);
966         floor = extract_int(&buf[4], 4);
967         order = extract_int(&buf[4], 5);
968         view = extract_int(&buf[4], 6);
969         flags2 = extract_int(&buf[4], 7);
970
971         if (flags2 & QR2_SELFLIST) {
972                 current_value = 1;
973         }
974         else {
975                 current_value = 0;
976         }
977
978         if (newval == 1) {
979                 flags2 = flags2 | QR2_SELFLIST;
980         }
981         else if (newval == 0) {
982                 flags2 = flags2 & ~QR2_SELFLIST;
983         }
984         else {
985                 return(current_value);
986         }
987
988         if (newval != current_value) {
989                 serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d",
990                         name, password, dirname, flags,
991                         floor, order, view, flags2);
992                 serv_getln(buf, sizeof buf);
993         }
994
995         return(newval);
996
997 }
998
999
1000
1001
1002
1003
1004 /**
1005  * \brief display the form for editing a room
1006  */
1007 void display_editroom(void)
1008 {
1009         char buf[SIZ];
1010         char cmd[1024];
1011         char node[256];
1012         char remote_room[128];
1013         char recp[1024];
1014         char er_name[128];
1015         char er_password[10];
1016         char er_dirname[15];
1017         char er_roomaide[26];
1018         unsigned er_flags;
1019         unsigned er_flags2;
1020         int er_floor;
1021         int i, j;
1022         char *tab;
1023         char *shared_with;
1024         char *not_shared_with;
1025         int roompolicy = 0;
1026         int roomvalue = 0;
1027         int floorpolicy = 0;
1028         int floorvalue = 0;
1029
1030         tab = bstr("tab");
1031         if (strlen(tab) == 0) tab = "admin";
1032
1033         load_floorlist();
1034         serv_puts("GETR");
1035         serv_getln(buf, sizeof buf);
1036
1037         if (buf[0] != '2') {
1038                 strcpy(WC->ImportantMessage, &buf[4]);
1039                 display_main_menu();
1040                 return;
1041         }
1042         extract_token(er_name, &buf[4], 0, '|', sizeof er_name);
1043         extract_token(er_password, &buf[4], 1, '|', sizeof er_password);
1044         extract_token(er_dirname, &buf[4], 2, '|', sizeof er_dirname);
1045         er_flags = extract_int(&buf[4], 3);
1046         er_floor = extract_int(&buf[4], 4);
1047         er_flags2 = extract_int(&buf[4], 7);
1048
1049         output_headers(1, 1, 1, 0, 0, 0);
1050
1051         /** print the tabbed dialog */
1052         wprintf("<br />"
1053                 "<div class=\"fix_scrollbar_bug\">"
1054                 "<TABLE border=0 cellspacing=0 cellpadding=0 width=100%%>"
1055                 "<TR ALIGN=CENTER>"
1056                 "<TD>&nbsp;</TD>\n");
1057
1058         if (!strcmp(tab, "admin")) {
1059                 wprintf("<TD class=\"roomops_cell_label\"><SPAN CLASS=\"tablabel\">");
1060         }
1061         else {
1062                 wprintf("<TD class=\"roomops_cell_edit\"><a href=\"display_editroom&tab=admin\">");
1063         }
1064         wprintf(_("Administration"));
1065         if (!strcmp(tab, "admin")) {
1066                 wprintf("</SPAN></TD>\n");
1067         }
1068         else {
1069                 wprintf("</A></TD>\n");
1070         }
1071
1072         wprintf("<TD>&nbsp;</TD>\n");
1073
1074         if (!strcmp(tab, "config")) {
1075                 wprintf("<TD class=\"roomops_cell_label\"><SPAN CLASS=\"tablabel\">");
1076         }
1077         else {
1078                 wprintf("<TD class=\"roomops_cell_edit\"><a href=\"display_editroom&tab=config\">");
1079         }
1080         wprintf(_("Configuration"));
1081         if (!strcmp(tab, "config")) {
1082                 wprintf("</SPAN></TD>\n");
1083         }
1084         else {
1085                 wprintf("</A></TD>\n");
1086         }
1087
1088         wprintf("<TD>&nbsp;</TD>\n");
1089
1090         if (!strcmp(tab, "expire")) {
1091                 wprintf("<TD class=\"roomops_cell_label\"><SPAN CLASS=\"tablabel\">");
1092         }
1093         else {
1094                 wprintf("<TD class=\"roomops_cell_edit\"><a href=\"display_editroom&tab=expire\">");
1095         }
1096         wprintf(_("Message expire policy"));
1097         if (!strcmp(tab, "expire")) {
1098                 wprintf("</SPAN></TD>\n");
1099         }
1100         else {
1101                 wprintf("</A></TD>\n");
1102         }
1103
1104         wprintf("<TD>&nbsp;</TD>\n");
1105
1106         if (!strcmp(tab, "access")) {
1107                 wprintf("<TD class=\"roomops_cell_label\"><SPAN CLASS=\"tablabel\">");
1108         }
1109         else {
1110                 wprintf("<TD class=\"roomops_cell_edit\"><a href=\"display_editroom&tab=access\">");
1111         }
1112         wprintf(_("Access controls"));
1113         if (!strcmp(tab, "access")) {
1114                 wprintf("</SPAN></TD>\n");
1115         }
1116         else {
1117                 wprintf("</A></TD>\n");
1118         }
1119
1120         wprintf("<TD>&nbsp;</TD>\n");
1121
1122         if (!strcmp(tab, "sharing")) {
1123                 wprintf("<TD class=\"roomops_cell_label\"><SPAN CLASS=\"tablabel\">");
1124         }
1125         else {
1126                 wprintf("<TD class=\"roomops_cell_edit\"><a href=\"display_editroom&tab=sharing\">");
1127         }
1128         wprintf(_("Sharing"));
1129         if (!strcmp(tab, "sharing")) {
1130                 wprintf("</SPAN></TD>\n");
1131         }
1132         else {
1133                 wprintf("</A></TD>\n");
1134         }
1135
1136         wprintf("<TD>&nbsp;</TD>\n");
1137
1138         if (!strcmp(tab, "listserv")) {
1139                 wprintf("<TD class=\"roomops_cell_label\"><SPAN CLASS=\"tablabel\">");
1140         }
1141         else {
1142                 wprintf("<TD class=\"roomops_cell_edit\"><a href=\"display_editroom&tab=listserv\">");
1143         }
1144         wprintf(_("Mailing list service"));
1145         if (!strcmp(tab, "listserv")) {
1146                 wprintf("</SPAN></TD>\n");
1147         }
1148         else {
1149                 wprintf("</A></TD>\n");
1150         }
1151
1152         wprintf("<TD>&nbsp;</TD>\n");
1153
1154         wprintf("</TR></TABLE></div>\n");
1155         /** end tabbed dialog */        
1156
1157         /** begin content of whatever tab is open now */
1158         wprintf("<div class=\"fix_scrollbar_bug\">"
1159                 "<TABLE class=\"roomops_background\">\n"
1160                 "<TR><TD>\n");
1161
1162         if (!strcmp(tab, "admin")) {
1163                 wprintf("<UL>"
1164                         "<LI><a href=\"delete_room\" "
1165                         "onClick=\"return confirm('");
1166                 wprintf(_("Are you sure you want to delete this room?"));
1167                 wprintf("');\">\n");
1168                 wprintf(_("Delete this room"));
1169                 wprintf("</A>\n"
1170                         "<LI><a href=\"display_editroompic\">\n");
1171                 wprintf(_("Set or change the icon for this room's banner"));
1172                 wprintf("</A>\n"
1173                         "<LI><a href=\"display_editinfo\">\n");
1174                 wprintf(_("Edit this room's Info file"));
1175                 wprintf("</A>\n"
1176                         "</UL>");
1177         }
1178
1179         if (!strcmp(tab, "config")) {
1180                 wprintf("<FORM METHOD=\"POST\" action=\"editroom\">\n");
1181         
1182                 wprintf("<UL><LI>");
1183                 wprintf(_("Name of room: "));
1184                 wprintf("<INPUT TYPE=\"text\" NAME=\"er_name\" VALUE=\"%s\" MAXLENGTH=\"%d\">\n",
1185                         er_name,
1186                         (sizeof(er_name)-1)
1187                 );
1188         
1189                 wprintf("<LI>");
1190                 wprintf(_("Resides on floor: "));
1191                 wprintf("<SELECT NAME=\"er_floor\" SIZE=\"1\">\n");
1192                 for (i = 0; i < 128; ++i)
1193                         if (strlen(floorlist[i]) > 0) {
1194                                 wprintf("<OPTION ");
1195                                 if (i == er_floor)
1196                                         wprintf("SELECTED ");
1197                                 wprintf("VALUE=\"%d\">", i);
1198                                 escputs(floorlist[i]);
1199                                 wprintf("</OPTION>\n");
1200                         }
1201                 wprintf("</SELECT>\n");
1202         
1203                 wprintf("<LI>");
1204                 wprintf(_("Type of room:"));
1205                 wprintf("<UL>\n");
1206
1207                 wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"public\" ");
1208                 if ((er_flags & QR_PRIVATE) == 0)
1209                 wprintf("CHECKED ");
1210                 wprintf("> ");
1211                 wprintf(_("Public (automatically appears to everyone)"));
1212                 wprintf("\n");
1213
1214                 wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"hidden\" ");
1215                 if ((er_flags & QR_PRIVATE) &&
1216                     (er_flags & QR_GUESSNAME))
1217                         wprintf("CHECKED ");
1218                 wprintf("> ");
1219                 wprintf(_("Private - hidden (accessible to anyone who knows its name)"));
1220         
1221                 wprintf("\n<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"passworded\" ");
1222                 if ((er_flags & QR_PRIVATE) &&
1223                     (er_flags & QR_PASSWORDED))
1224                         wprintf("CHECKED ");
1225                 wprintf("> ");
1226                 wprintf(_("Private - require password: "));
1227                 wprintf("\n<INPUT TYPE=\"text\" NAME=\"er_password\" VALUE=\"%s\" MAXLENGTH=\"9\">\n",
1228                         er_password);
1229         
1230                 wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"invonly\" ");
1231                 if ((er_flags & QR_PRIVATE)
1232                     && ((er_flags & QR_GUESSNAME) == 0)
1233                     && ((er_flags & QR_PASSWORDED) == 0))
1234                         wprintf("CHECKED ");
1235                 wprintf("> ");
1236                 wprintf(_("Private - invitation only"));
1237         
1238                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"bump\" VALUE=\"yes\" ");
1239                 wprintf("> ");
1240                 wprintf(_("If private, cause current users to forget room"));
1241         
1242                 wprintf("\n</UL>\n");
1243         
1244                 wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"prefonly\" VALUE=\"yes\" ");
1245                 if (er_flags & QR_PREFONLY)
1246                         wprintf("CHECKED ");
1247                 wprintf("> ");
1248                 wprintf(_("Preferred users only"));
1249         
1250                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"readonly\" VALUE=\"yes\" ");
1251                 if (er_flags & QR_READONLY)
1252                         wprintf("CHECKED ");
1253                 wprintf("> ");
1254                 wprintf(_("Read-only room"));
1255         
1256                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"collabdel\" VALUE=\"yes\" ");
1257                 if (er_flags2 & QR2_COLLABDEL)
1258                         wprintf("CHECKED ");
1259                 wprintf("> ");
1260                 wprintf(_("All users allowed to post may also delete messages"));
1261         
1262                 /** directory stuff */
1263                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"directory\" VALUE=\"yes\" ");
1264                 if (er_flags & QR_DIRECTORY)
1265                         wprintf("CHECKED ");
1266                 wprintf("> ");
1267                 wprintf(_("File directory room"));
1268
1269                 wprintf("\n<UL><LI>");
1270                 wprintf(_("Directory name: "));
1271                 wprintf("<INPUT TYPE=\"text\" NAME=\"er_dirname\" VALUE=\"%s\" MAXLENGTH=\"14\">\n",
1272                         er_dirname);
1273
1274                 wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"ulallowed\" VALUE=\"yes\" ");
1275                 if (er_flags & QR_UPLOAD)
1276                         wprintf("CHECKED ");
1277                 wprintf("> ");
1278                 wprintf(_("Uploading allowed"));
1279         
1280                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"dlallowed\" VALUE=\"yes\" ");
1281                 if (er_flags & QR_DOWNLOAD)
1282                         wprintf("CHECKED ");
1283                 wprintf("> ");
1284                 wprintf(_("Downloading allowed"));
1285         
1286                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"visdir\" VALUE=\"yes\" ");
1287                 if (er_flags & QR_VISDIR)
1288                         wprintf("CHECKED ");
1289                 wprintf("> ");
1290                 wprintf(_("Visible directory"));
1291                 wprintf("</UL>\n");
1292         
1293                 /** end of directory stuff */
1294         
1295                 wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"network\" VALUE=\"yes\" ");
1296                 if (er_flags & QR_NETWORK)
1297                         wprintf("CHECKED ");
1298                 wprintf("> ");
1299                 wprintf(_("Network shared room"));
1300
1301                 wprintf("\n<LI><INPUT TYPE=\"checkbox\" NAME=\"permanent\" VALUE=\"yes\" ");
1302                 if (er_flags & QR_PERMANENT)
1303                         wprintf("CHECKED ");
1304                 wprintf("> ");
1305                 wprintf(_("Permanent (does not auto-purge)"));
1306
1307                 /** start of anon options */
1308         
1309                 wprintf("\n<LI>");
1310                 wprintf(_("Anonymous messages"));
1311                 wprintf("<UL>\n");
1312         
1313                 wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"no\" ");
1314                 if (((er_flags & QR_ANONONLY) == 0)
1315                     && ((er_flags & QR_ANONOPT) == 0))
1316                         wprintf("CHECKED ");
1317                 wprintf("> ");
1318                 wprintf(_("No anonymous messages"));
1319         
1320                 wprintf("\n<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"anononly\" ");
1321                 if (er_flags & QR_ANONONLY)
1322                         wprintf("CHECKED ");
1323                 wprintf("> ");
1324                 wprintf(_("All messages are anonymous"));
1325         
1326                 wprintf("\n<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"anon2\" ");
1327                 if (er_flags & QR_ANONOPT)
1328                         wprintf("CHECKED ");
1329                 wprintf("> ");
1330                 wprintf(_("Prompt user when entering messages"));
1331                 wprintf("</UL>\n");
1332         
1333         /* end of anon options */
1334         
1335                 wprintf("<LI>");
1336                 wprintf(_("Room aide: "));
1337                 serv_puts("GETA");
1338                 serv_getln(buf, sizeof buf);
1339                 if (buf[0] != '2') {
1340                         wprintf("<em>%s</em>\n", &buf[4]);
1341                 } else {
1342                         extract_token(er_roomaide, &buf[4], 0, '|', sizeof er_roomaide);
1343                         wprintf("<INPUT TYPE=\"text\" NAME=\"er_roomaide\" VALUE=\"%s\" MAXLENGTH=\"25\">\n", er_roomaide);
1344                 }
1345         
1346                 wprintf("</UL><CENTER>\n");
1347                 wprintf("<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"config\">\n"
1348                         "<INPUT TYPE=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">"
1349                         "&nbsp;"
1350                         "<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">"
1351                         "</CENTER>\n",
1352                         _("Save changes"),
1353                         _("Cancel")
1354                 );
1355         }
1356
1357
1358         /** Sharing the room with other Citadel nodes... */
1359         if (!strcmp(tab, "sharing")) {
1360
1361                 shared_with = strdup("");
1362                 not_shared_with = strdup("");
1363
1364                 /** Learn the current configuration */
1365                 serv_puts("CONF getsys|application/x-citadel-ignet-config");
1366                 serv_getln(buf, sizeof buf);
1367                 if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1368                         extract_token(node, buf, 0, '|', sizeof node);
1369                         not_shared_with = realloc(not_shared_with,
1370                                         strlen(not_shared_with) + 32);
1371                         strcat(not_shared_with, node);
1372                         strcat(not_shared_with, "\n");
1373                 }
1374
1375                 serv_puts("GNET");
1376                 serv_getln(buf, sizeof buf);
1377                 if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1378                         extract_token(cmd, buf, 0, '|', sizeof cmd);
1379                         extract_token(node, buf, 1, '|', sizeof node);
1380                         extract_token(remote_room, buf, 2, '|', sizeof remote_room);
1381                         if (!strcasecmp(cmd, "ignet_push_share")) {
1382                                 shared_with = realloc(shared_with,
1383                                                 strlen(shared_with) + 32);
1384                                 strcat(shared_with, node);
1385                                 if (strlen(remote_room) > 0) {
1386                                         strcat(shared_with, "|");
1387                                         strcat(shared_with, remote_room);
1388                                 }
1389                                 strcat(shared_with, "\n");
1390                         }
1391                 }
1392
1393                 for (i=0; i<num_tokens(shared_with, '\n'); ++i) {
1394                         extract_token(buf, shared_with, i, '\n', sizeof buf);
1395                         extract_token(node, buf, 0, '|', sizeof node);
1396                         for (j=0; j<num_tokens(not_shared_with, '\n'); ++j) {
1397                                 extract_token(cmd, not_shared_with, j, '\n', sizeof cmd);
1398                                 if (!strcasecmp(node, cmd)) {
1399                                         remove_token(not_shared_with, j, '\n');
1400                                 }
1401                         }
1402                 }
1403
1404                 /** Display the stuff */
1405                 wprintf("<CENTER><br />"
1406                         "<TABLE border=1 cellpadding=5><TR>"
1407                         "<TD><B><I>");
1408                 wprintf(_("Shared with"));
1409                 wprintf("</I></B></TD>"
1410                         "<TD><B><I>");
1411                 wprintf(_("Not shared with"));
1412                 wprintf("</I></B></TD></TR>\n"
1413                         "<TR><TD VALIGN=TOP>\n");
1414
1415                 wprintf("<TABLE border=0 cellpadding=5><TR class=\"roomops_cell\"><TD>");
1416                 wprintf(_("Remote node name"));
1417                 wprintf("</TD><TD>");
1418                 wprintf(_("Remote room name"));
1419                 wprintf("</TD><TD>");
1420                 wprintf(_("Actions"));
1421                 wprintf("</TD></TR>\n");
1422
1423                 for (i=0; i<num_tokens(shared_with, '\n'); ++i) {
1424                         extract_token(buf, shared_with, i, '\n', sizeof buf);
1425                         extract_token(node, buf, 0, '|', sizeof node);
1426                         extract_token(remote_room, buf, 1, '|', sizeof remote_room);
1427                         if (strlen(node) > 0) {
1428                                 wprintf("<FORM METHOD=\"POST\" "
1429                                         "action=\"netedit\">"
1430                                         "<TR><TD>%s</TD>\n", node);
1431
1432                                 wprintf("<TD>");
1433                                 if (strlen(remote_room) > 0) {
1434                                         escputs(remote_room);
1435                                 }
1436                                 wprintf("</TD>");
1437
1438                                 wprintf("<TD>");
1439                 
1440                                 wprintf("<INPUT TYPE=\"hidden\" NAME=\"line\" "
1441                                         "VALUE=\"ignet_push_share|");
1442                                 urlescputs(node);
1443                                 if (strlen(remote_room) > 0) {
1444                                         wprintf("|");
1445                                         urlescputs(remote_room);
1446                                 }
1447                                 wprintf("\">");
1448                                 wprintf("<INPUT TYPE=\"hidden\" NAME=\"tab\" "
1449                                         "VALUE=\"sharing\">\n");
1450                                 wprintf("<INPUT TYPE=\"hidden\" NAME=\"cmd\" "
1451                                         "VALUE=\"remove\">\n");
1452                                 wprintf("<INPUT TYPE=\"submit\" "
1453                                         "NAME=\"unshare_button\" VALUE=\"%s\">", _("Unshare"));
1454                                 wprintf("</TD></TR></FORM>\n");
1455                         }
1456                 }
1457
1458                 wprintf("</TABLE>\n");
1459                 wprintf("</TD><TD VALIGN=TOP>\n");
1460                 wprintf("<TABLE border=0 cellpadding=5><TR class=\"roomops_cell\"><TD>");
1461                 wprintf(_("Remote node name"));
1462                 wprintf("</TD><TD>");
1463                 wprintf(_("Remote room name"));
1464                 wprintf("</TD><TD>");
1465                 wprintf(_("Actions"));
1466                 wprintf("</TD></TR>\n");
1467
1468                 for (i=0; i<num_tokens(not_shared_with, '\n'); ++i) {
1469                         extract_token(node, not_shared_with, i, '\n', sizeof node);
1470                         if (strlen(node) > 0) {
1471                                 wprintf("<FORM METHOD=\"POST\" "
1472                                         "action=\"netedit\">"
1473                                         "<TR><TD>");
1474                                 escputs(node);
1475                                 wprintf("</TD><TD>"
1476                                         "<INPUT TYPE=\"INPUT\" "
1477                                         "NAME=\"suffix\" "
1478                                         "MAXLENGTH=128>"
1479                                         "</TD><TD>");
1480                                 wprintf("<INPUT TYPE=\"hidden\" "
1481                                         "NAME=\"line\" "
1482                                         "VALUE=\"ignet_push_share|");
1483                                 urlescputs(node);
1484                                 wprintf("|\">");
1485                                 wprintf("<INPUT TYPE=\"hidden\" NAME=\"tab\" "
1486                                         "VALUE=\"sharing\">\n");
1487                                 wprintf("<INPUT TYPE=\"hidden\" NAME=\"cmd\" "
1488                                         "VALUE=\"add\">\n");
1489                                 wprintf("<INPUT TYPE=\"submit\" "
1490                                         "NAME=\"add_button\" VALUE=\"%s\">", _("Share"));
1491                                 wprintf("</TD></TR></FORM>\n");
1492                         }
1493                 }
1494
1495                 wprintf("</TABLE>\n");
1496                 wprintf("</TD></TR>"
1497                         "</TABLE></CENTER><br />\n"
1498                         "<I><B>%s</B><UL><LI>", _("Notes:"));
1499                 wprintf(_("When sharing a room, "
1500                         "it must be shared from both ends.  Adding a node to "
1501                         "the 'shared' list sends messages out, but in order to"
1502                         " receive messages, the other nodes must be configured"
1503                         " to send messages out to your system as well. "
1504                         "<LI>If the remote room name is blank, it is assumed "
1505                         "that the room name is identical on the remote node."
1506                         "<LI>If the remote room name is different, the remote "
1507                         "node must also configure the name of the room here."
1508                         "</UL></I><br />\n"
1509                 ));
1510
1511         }
1512
1513         /** Mailing list management */
1514         if (!strcmp(tab, "listserv")) {
1515
1516                 wprintf("<br /><center>"
1517                         "<TABLE BORDER=0 WIDTH=100%% CELLPADDING=5>"
1518                         "<TR><TD VALIGN=TOP>");
1519
1520                 wprintf(_("<i>The contents of this room are being "
1521                         "mailed <b>as individual messages</b> "
1522                         "to the following list recipients:"
1523                         "</i><br /><br />\n"));
1524
1525                 serv_puts("GNET");
1526                 serv_getln(buf, sizeof buf);
1527                 if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1528                         extract_token(cmd, buf, 0, '|', sizeof cmd);
1529                         if (!strcasecmp(cmd, "listrecp")) {
1530                                 extract_token(recp, buf, 1, '|', sizeof recp);
1531                         
1532                                 escputs(recp);
1533                                 wprintf(" <a href=\"netedit&cmd=remove&tab=listserv&line=listrecp|");
1534                                 urlescputs(recp);
1535                                 wprintf("\">");
1536                                 wprintf(_("(remove)"));
1537                                 wprintf("</A><br />");
1538                         }
1539                 }
1540                 wprintf("<br /><FORM METHOD=\"POST\" action=\"netedit\">\n"
1541                         "<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"listserv\">\n"
1542                         "<INPUT TYPE=\"hidden\" NAME=\"prefix\" VALUE=\"listrecp|\">\n");
1543                 wprintf("<INPUT TYPE=\"text\" id=\"add_as_listrecp\" NAME=\"line\">\n");
1544                 wprintf("<INPUT TYPE=\"submit\" NAME=\"add_button\" VALUE=\"%s\">", _("Add"));
1545                 wprintf("</FORM>\n");
1546
1547                 wprintf("</TD><TD VALIGN=TOP>\n");
1548                 
1549                 wprintf(_("<i>The contents of this room are being "
1550                         "mailed <b>in digest form</b> "
1551                         "to the following list recipients:"
1552                         "</i><br /><br />\n"));
1553
1554                 serv_puts("GNET");
1555                 serv_getln(buf, sizeof buf);
1556                 if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1557                         extract_token(cmd, buf, 0, '|', sizeof cmd);
1558                         if (!strcasecmp(cmd, "digestrecp")) {
1559                                 extract_token(recp, buf, 1, '|', sizeof recp);
1560                         
1561                                 escputs(recp);
1562                                 wprintf(" <a href=\"netedit&cmd=remove&tab=listserv&line="
1563                                         "digestrecp|");
1564                                 urlescputs(recp);
1565                                 wprintf("\">");
1566                                 wprintf(_("(remove)"));
1567                                 wprintf("</A><br />");
1568                         }
1569                 }
1570                 wprintf("<br /><FORM METHOD=\"POST\" action=\"netedit\">\n"
1571                         "<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"listserv\">\n"
1572                         "<INPUT TYPE=\"hidden\" NAME=\"prefix\" VALUE=\"digestrecp|\">\n");
1573                 wprintf("<INPUT TYPE=\"text\" id=\"add_as_digestrecp\" NAME=\"line\">\n");
1574                 wprintf("<INPUT TYPE=\"submit\" NAME=\"add_button\" VALUE=\"%s\">", _("Add"));
1575                 wprintf("</FORM>\n");
1576                 
1577                 wprintf("</TD></TR></TABLE>\n");
1578
1579                 /** Pop open an address book -- begin **/
1580                 wprintf("<div align=right>"
1581                         "<a href=\"javascript:PopOpenAddressBook('add_as_listrecp|%s|add_as_digestrecp|%s');\" "
1582                         "title=\"%s\">"
1583                         "<img align=middle border=0 width=24 height=24 src=\"static/viewcontacts_24x.gif\">"
1584                         "&nbsp;%s</a>"
1585                         "</div>",
1586                         _("List"),
1587                         _("Digest"),
1588                         _("Add recipients from Contacts or other address books"),
1589                         _("Add recipients from Contacts or other address books")
1590                 );
1591                 /** Pop open an address book -- end **/
1592
1593                 wprintf("<hr />");
1594                 if (self_service(999) == 1) {
1595                         wprintf(_("This room is configured to allow "
1596                                 "self-service subscribe/unsubscribe requests."));
1597                         wprintf("<a href=\"toggle_self_service?newval=0&tab=listserv\">");
1598                         wprintf(_("Click to disable."));
1599                         wprintf("</A><br />\n");
1600                         wprintf(_("The URL for subscribe/unsubscribe is: "));
1601                         wprintf("<TT>%s://%s/listsub</TT><br />\n",
1602                                 (is_https ? "https" : "http"),
1603                                 WC->http_host);
1604                 }
1605                 else {
1606                         wprintf(_("This room is <i>not</i> configured to allow "
1607                                 "self-service subscribe/unsubscribe requests."));
1608                         wprintf(" <a href=\"toggle_self_service?newval=1&"
1609                                 "tab=listserv\">");
1610                         wprintf(_("Click to enable."));
1611                         wprintf("</A><br />\n");
1612                 }
1613
1614
1615                 wprintf("</CENTER>\n");
1616         }
1617
1618
1619         /** Mailing list management */
1620         if (!strcmp(tab, "expire")) {
1621
1622                 serv_puts("GPEX room");
1623                 serv_getln(buf, sizeof buf);
1624                 if (buf[0] == '2') {
1625                         roompolicy = extract_int(&buf[4], 0);
1626                         roomvalue = extract_int(&buf[4], 1);
1627                 }
1628                 
1629                 serv_puts("GPEX floor");
1630                 serv_getln(buf, sizeof buf);
1631                 if (buf[0] == '2') {
1632                         floorpolicy = extract_int(&buf[4], 0);
1633                         floorvalue = extract_int(&buf[4], 1);
1634                 }
1635                 
1636                 wprintf("<br /><FORM METHOD=\"POST\" action=\"set_room_policy\">\n");
1637                 wprintf("<TABLE border=0 cellspacing=5>\n");
1638                 wprintf("<TR><TD>");
1639                 wprintf(_("Message expire policy for this room"));
1640                 wprintf("<br />(");
1641                 escputs(WC->wc_roomname);
1642                 wprintf(")</TD><TD>");
1643                 wprintf("<INPUT TYPE=\"radio\" NAME=\"roompolicy\" VALUE=\"0\" %s>",
1644                         ((roompolicy == 0) ? "CHECKED" : "") );
1645                 wprintf(_("Use the default policy for this floor"));
1646                 wprintf("<br />\n");
1647                 wprintf("<INPUT TYPE=\"radio\" NAME=\"roompolicy\" VALUE=\"1\" %s>",
1648                         ((roompolicy == 1) ? "CHECKED" : "") );
1649                 wprintf(_("Never automatically expire messages"));
1650                 wprintf("<br />\n");
1651                 wprintf("<INPUT TYPE=\"radio\" NAME=\"roompolicy\" VALUE=\"2\" %s>",
1652                         ((roompolicy == 2) ? "CHECKED" : "") );
1653                 wprintf(_("Expire by message count"));
1654                 wprintf("<br />\n");
1655                 wprintf("<INPUT TYPE=\"radio\" NAME=\"roompolicy\" VALUE=\"3\" %s>",
1656                         ((roompolicy == 3) ? "CHECKED" : "") );
1657                 wprintf(_("Expire by message age"));
1658                 wprintf("<br />");
1659                 wprintf(_("Number of messages or days: "));
1660                 wprintf("<INPUT TYPE=\"text\" NAME=\"roomvalue\" MAXLENGTH=\"5\" VALUE=\"%d\">", roomvalue);
1661                 wprintf("</TD></TR>\n");
1662
1663                 if (WC->axlevel >= 6) {
1664                         wprintf("<TR><TD COLSPAN=2><hr /></TD></TR>\n");
1665                         wprintf("<TR><TD>");
1666                         wprintf(_("Message expire policy for this floor"));
1667                         wprintf("<br />(");
1668                         escputs(floorlist[WC->wc_floor]);
1669                         wprintf(")</TD><TD>");
1670                         wprintf("<INPUT TYPE=\"radio\" NAME=\"floorpolicy\" VALUE=\"0\" %s>",
1671                                 ((floorpolicy == 0) ? "CHECKED" : "") );
1672                         wprintf(_("Use the system default"));
1673                         wprintf("<br />\n");
1674                         wprintf("<INPUT TYPE=\"radio\" NAME=\"floorpolicy\" VALUE=\"1\" %s>",
1675                                 ((floorpolicy == 1) ? "CHECKED" : "") );
1676                         wprintf(_("Never automatically expire messages"));
1677                         wprintf("<br />\n");
1678                         wprintf("<INPUT TYPE=\"radio\" NAME=\"floorpolicy\" VALUE=\"2\" %s>",
1679                                 ((floorpolicy == 2) ? "CHECKED" : "") );
1680                         wprintf(_("Expire by message count"));
1681                         wprintf("<br />\n");
1682                         wprintf("<INPUT TYPE=\"radio\" NAME=\"floorpolicy\" VALUE=\"3\" %s>",
1683                                 ((floorpolicy == 3) ? "CHECKED" : "") );
1684                         wprintf(_("Expire by message age"));
1685                         wprintf("<br />");
1686                         wprintf(_("Number of messages or days: "));
1687                         wprintf("<INPUT TYPE=\"text\" NAME=\"floorvalue\" MAXLENGTH=\"5\" VALUE=\"%d\">",
1688                                 floorvalue);
1689                 }
1690
1691                 wprintf("<CENTER>\n");
1692                 wprintf("<TR><TD COLSPAN=2><hr /><CENTER>\n");
1693                 wprintf("<INPUT TYPE=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">", _("Save changes"));
1694                 wprintf("&nbsp;");
1695                 wprintf("<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">", _("Cancel"));
1696                 wprintf("</CENTER></TD><TR>\n");
1697
1698                 wprintf("</TABLE>\n"
1699                         "<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"expire\">\n"
1700                         "</FORM>\n"
1701                 );
1702
1703         }
1704
1705         /** Mailing list management */
1706         if (!strcmp(tab, "access")) {
1707                 display_whok();
1708         }
1709
1710         /** end content of whatever tab is open now */
1711         wprintf("</TD></TR></TABLE></div>\n");
1712
1713         address_book_popup();
1714         wDumpContent(1);
1715 }
1716
1717
1718 /** 
1719  * \brief Toggle self-service list subscription
1720  */
1721 void toggle_self_service(void) {
1722         int newval = 0;
1723
1724         newval = atoi(bstr("newval"));
1725         self_service(newval);
1726         display_editroom();
1727 }
1728
1729
1730
1731 /**
1732  * \brief save new parameters for a room
1733  */
1734 void editroom(void)
1735 {
1736         char buf[SIZ];
1737         char er_name[128];
1738         char er_password[10];
1739         char er_dirname[15];
1740         char er_roomaide[26];
1741         int er_floor;
1742         unsigned er_flags;
1743         int er_listingorder;
1744         int er_defaultview;
1745         unsigned er_flags2;
1746         int bump;
1747
1748
1749         if (strlen(bstr("ok_button")) == 0) {
1750                 strcpy(WC->ImportantMessage,
1751                         _("Cancelled.  Changes were not saved."));
1752                 display_editroom();
1753                 return;
1754         }
1755         serv_puts("GETR");
1756         serv_getln(buf, sizeof buf);
1757
1758         if (buf[0] != '2') {
1759                 strcpy(WC->ImportantMessage, &buf[4]);
1760                 display_editroom();
1761                 return;
1762         }
1763         extract_token(er_name, &buf[4], 0, '|', sizeof er_name);
1764         extract_token(er_password, &buf[4], 1, '|', sizeof er_password);
1765         extract_token(er_dirname, &buf[4], 2, '|', sizeof er_dirname);
1766         er_flags = extract_int(&buf[4], 3);
1767         er_listingorder = extract_int(&buf[4], 5);
1768         er_defaultview = extract_int(&buf[4], 6);
1769         er_flags2 = extract_int(&buf[4], 7);
1770
1771         strcpy(er_roomaide, bstr("er_roomaide"));
1772         if (strlen(er_roomaide) == 0) {
1773                 serv_puts("GETA");
1774                 serv_getln(buf, sizeof buf);
1775                 if (buf[0] != '2') {
1776                         strcpy(er_roomaide, "");
1777                 } else {
1778                         extract_token(er_roomaide, &buf[4], 0, '|', sizeof er_roomaide);
1779                 }
1780         }
1781         strcpy(buf, bstr("er_name"));
1782         buf[128] = 0;
1783         if (strlen(buf) > 0) {
1784                 strcpy(er_name, buf);
1785         }
1786
1787         strcpy(buf, bstr("er_password"));
1788         buf[10] = 0;
1789         if (strlen(buf) > 0)
1790                 strcpy(er_password, buf);
1791
1792         strcpy(buf, bstr("er_dirname"));
1793         buf[15] = 0;
1794         if (strlen(buf) > 0)
1795                 strcpy(er_dirname, buf);
1796
1797         strcpy(buf, bstr("type"));
1798         er_flags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME);
1799
1800         if (!strcmp(buf, "invonly")) {
1801                 er_flags |= (QR_PRIVATE);
1802         }
1803         if (!strcmp(buf, "hidden")) {
1804                 er_flags |= (QR_PRIVATE | QR_GUESSNAME);
1805         }
1806         if (!strcmp(buf, "passworded")) {
1807                 er_flags |= (QR_PRIVATE | QR_PASSWORDED);
1808         }
1809         if (!strcmp(bstr("prefonly"), "yes")) {
1810                 er_flags |= QR_PREFONLY;
1811         } else {
1812                 er_flags &= ~QR_PREFONLY;
1813         }
1814
1815         if (!strcmp(bstr("readonly"), "yes")) {
1816                 er_flags |= QR_READONLY;
1817         } else {
1818                 er_flags &= ~QR_READONLY;
1819         }
1820
1821         if (!strcmp(bstr("collabdel"), "yes")) {
1822                 er_flags2 |= QR2_COLLABDEL;
1823         } else {
1824                 er_flags2 &= ~QR2_COLLABDEL;
1825         }
1826
1827         if (!strcmp(bstr("permanent"), "yes")) {
1828                 er_flags |= QR_PERMANENT;
1829         } else {
1830                 er_flags &= ~QR_PERMANENT;
1831         }
1832
1833         if (!strcmp(bstr("network"), "yes")) {
1834                 er_flags |= QR_NETWORK;
1835         } else {
1836                 er_flags &= ~QR_NETWORK;
1837         }
1838
1839         if (!strcmp(bstr("directory"), "yes")) {
1840                 er_flags |= QR_DIRECTORY;
1841         } else {
1842                 er_flags &= ~QR_DIRECTORY;
1843         }
1844
1845         if (!strcmp(bstr("ulallowed"), "yes")) {
1846                 er_flags |= QR_UPLOAD;
1847         } else {
1848                 er_flags &= ~QR_UPLOAD;
1849         }
1850
1851         if (!strcmp(bstr("dlallowed"), "yes")) {
1852                 er_flags |= QR_DOWNLOAD;
1853         } else {
1854                 er_flags &= ~QR_DOWNLOAD;
1855         }
1856
1857         if (!strcmp(bstr("visdir"), "yes")) {
1858                 er_flags |= QR_VISDIR;
1859         } else {
1860                 er_flags &= ~QR_VISDIR;
1861         }
1862
1863         strcpy(buf, bstr("anon"));
1864
1865         er_flags &= ~(QR_ANONONLY | QR_ANONOPT);
1866         if (!strcmp(buf, "anononly"))
1867                 er_flags |= QR_ANONONLY;
1868         if (!strcmp(buf, "anon2"))
1869                 er_flags |= QR_ANONOPT;
1870
1871         bump = 0;
1872         if (!strcmp(bstr("bump"), "yes"))
1873                 bump = 1;
1874
1875         er_floor = atoi(bstr("er_floor"));
1876
1877         sprintf(buf, "SETR %s|%s|%s|%u|%d|%d|%d|%d|%u",
1878                 er_name, er_password, er_dirname, er_flags, bump, er_floor,
1879                 er_listingorder, er_defaultview, er_flags2);
1880         serv_puts(buf);
1881         serv_getln(buf, sizeof buf);
1882         if (buf[0] != '2') {
1883                 strcpy(WC->ImportantMessage, &buf[4]);
1884                 display_editroom();
1885                 return;
1886         }
1887         gotoroom(er_name);
1888
1889         if (strlen(er_roomaide) > 0) {
1890                 sprintf(buf, "SETA %s", er_roomaide);
1891                 serv_puts(buf);
1892                 serv_getln(buf, sizeof buf);
1893                 if (buf[0] != '2') {
1894                         strcpy(WC->ImportantMessage, &buf[4]);
1895                         display_main_menu();
1896                         return;
1897                 }
1898         }
1899         gotoroom(er_name);
1900         strcpy(WC->ImportantMessage, _("Your changes have been saved."));
1901         display_editroom();
1902         return;
1903 }
1904
1905
1906 /**
1907  * \brief Display form for Invite, Kick, and show Who Knows a room
1908  */
1909 void do_invt_kick(void) {
1910         char buf[SIZ], room[SIZ], username[SIZ];
1911
1912         serv_puts("GETR");
1913         serv_getln(buf, sizeof buf);
1914
1915         if (buf[0] != '2') {
1916                 escputs(&buf[4]);
1917                 return;
1918         }
1919         extract_token(room, &buf[4], 0, '|', sizeof room);
1920
1921         strcpy(username, bstr("username"));
1922
1923         if (strlen(bstr("kick_button")) > 0) {
1924                 sprintf(buf, "KICK %s", username);
1925                 serv_puts(buf);
1926                 serv_getln(buf, sizeof buf);
1927
1928                 if (buf[0] != '2') {
1929                         strcpy(WC->ImportantMessage, &buf[4]);
1930                 } else {
1931                         sprintf(WC->ImportantMessage,
1932                                 _("<B><I>User %s kicked out of room %s.</I></B>\n"), 
1933                                 username, room);
1934                 }
1935         }
1936
1937         if (strlen(bstr("invite_button")) > 0) {
1938                 sprintf(buf, "INVT %s", username);
1939                 serv_puts(buf);
1940                 serv_getln(buf, sizeof buf);
1941
1942                 if (buf[0] != '2') {
1943                         strcpy(WC->ImportantMessage, &buf[4]);
1944                 } else {
1945                         sprintf(WC->ImportantMessage,
1946                                 _("<B><I>User %s invited to room %s.</I></B>\n"), 
1947                                 username, room);
1948                 }
1949         }
1950
1951         display_editroom();
1952 }
1953
1954
1955
1956 /**
1957  * \brief Display form for Invite, Kick, and show Who Knows a room
1958  */
1959 void display_whok(void)
1960 {
1961         char buf[SIZ], room[SIZ], username[SIZ];
1962
1963         serv_puts("GETR");
1964         serv_getln(buf, sizeof buf);
1965
1966         if (buf[0] != '2') {
1967                 escputs(&buf[4]);
1968                 return;
1969         }
1970         extract_token(room, &buf[4], 0, '|', sizeof room);
1971
1972         
1973         wprintf("<TABLE border=0 CELLSPACING=10><TR VALIGN=TOP><TD>");
1974         wprintf(_("The users listed below have access to this room.  "
1975                 "To remove a user from the access list, select the user "
1976                 "name from the list and click 'Kick'."));
1977         wprintf("<br /><br />");
1978         
1979         wprintf("<CENTER><FORM METHOD=\"POST\" action=\"do_invt_kick\">\n");
1980         wprintf("<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"access\">\n");
1981         wprintf("<SELECT NAME=\"username\" SIZE=\"10\" style=\"width:100%%\">\n");
1982         serv_puts("WHOK");
1983         serv_getln(buf, sizeof buf);
1984         if (buf[0] == '1') {
1985                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1986                         extract_token(username, buf, 0, '|', sizeof username);
1987                         wprintf("<OPTION>");
1988                         escputs(username);
1989                         wprintf("\n");
1990                 }
1991         }
1992         wprintf("</SELECT><br />\n");
1993
1994         wprintf("<input type=\"submit\" name=\"kick_button\" value=\"%s\">", _("Kick"));
1995         wprintf("</FORM></CENTER>\n");
1996
1997         wprintf("</TD><TD>");
1998         wprintf(_("To grant another user access to this room, enter the "
1999                 "user name in the box below and click 'Invite'."));
2000         wprintf("<br /><br />");
2001
2002         wprintf("<CENTER><FORM METHOD=\"POST\" action=\"do_invt_kick\">\n");
2003         wprintf("<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"access\">\n");
2004         wprintf(_("Invite:"));
2005         wprintf(" ");
2006         wprintf("<input type=\"text\" name=\"username\" style=\"width:100%%\"><br />\n"
2007                 "<input type=\"hidden\" name=\"invite_button\" value=\"Invite\">"
2008                 "<input type=\"submit\" value=\"%s\">"
2009                 "</FORM></CENTER>\n", _("Invite"));
2010
2011         wprintf("</TD></TR></TABLE>\n");
2012         wDumpContent(1);
2013 }
2014
2015
2016
2017 /**
2018  * \brief display the form for entering a new room
2019  */
2020 void display_entroom(void)
2021 {
2022         int i;
2023         char buf[SIZ];
2024
2025         serv_puts("CRE8 0");
2026         serv_getln(buf, sizeof buf);
2027
2028         if (buf[0] != '2') {
2029                 strcpy(WC->ImportantMessage, &buf[4]);
2030                 display_main_menu();
2031                 return;
2032         }
2033
2034         output_headers(1, 1, 2, 0, 0, 0);
2035         wprintf("<div id=\"banner\">\n"
2036                 "<TABLE class=\"roomops_banner\"><TR><TD>"
2037                 "<SPAN CLASS=\"titlebar\">");
2038         wprintf(_("Create a new room"));
2039         wprintf("</SPAN>"
2040                 "</TD></TR></TABLE>\n"
2041                 "</div>\n<div id=\"content\">\n"
2042         );
2043
2044         wprintf("<div class=\"fix_scrollbar_bug\">"
2045                 "<table class=\"roomops_background\"><tr><td>\n");
2046
2047         wprintf("<form name=\"create_room_form\" method=\"POST\" action=\"entroom\">\n");
2048
2049         wprintf("<UL><LI>");
2050         wprintf(_("Name of room: "));
2051         wprintf("<INPUT TYPE=\"text\" NAME=\"er_name\" MAXLENGTH=\"127\">\n");
2052
2053         wprintf("<LI>");
2054         wprintf(_("Resides on floor: "));
2055         load_floorlist(); 
2056         wprintf("<SELECT NAME=\"er_floor\" SIZE=\"1\">\n");
2057         for (i = 0; i < 128; ++i)
2058                 if (strlen(floorlist[i]) > 0) {
2059                         wprintf("<OPTION ");
2060                         wprintf("VALUE=\"%d\">", i);
2061                         escputs(floorlist[i]);
2062                         wprintf("</OPTION>\n");
2063                 }
2064         wprintf("</SELECT>\n");
2065
2066                 /**
2067                  * Our clever little snippet of JavaScript automatically selects
2068                  * a public room if the view is set to Bulletin Board or wiki, and
2069                  * it selects a mailbox room otherwise.  The user can override this,
2070                  * of course.  We also disable the floor selector for mailboxes.
2071                  */
2072                 wprintf("<LI>");
2073                 wprintf(_("Default view for room: "));
2074         wprintf("<SELECT NAME=\"er_view\" SIZE=\"1\" OnChange=\""
2075                 "       if ( (this.form.er_view.value == 0)             "
2076                 "          || (this.form.er_view.value == 6) ) {        "
2077                 "               this.form.type[0].checked=true;         "
2078                 "               this.form.er_floor.disabled = false;    "
2079                 "       }                                               "
2080                 "       else {                                          "
2081                 "               this.form.type[4].checked=true;         "
2082                 "               this.form.er_floor.disabled = true;     "
2083                 "       }                                               "
2084                 "\">\n");
2085         for (i=0; i<(sizeof viewdefs / sizeof (char *)); ++i) {
2086                 if (is_view_allowed_as_default(i)) {
2087                         wprintf("<OPTION %s VALUE=\"%d\">",
2088                                 ((i == 0) ? "SELECTED" : ""), i );
2089                         escputs(viewdefs[i]);
2090                         wprintf("</OPTION>\n");
2091                 }
2092         }
2093         wprintf("</SELECT>\n");
2094
2095         wprintf("<LI>");
2096         wprintf(_("Type of room:"));
2097         wprintf("<UL>\n");
2098
2099         wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"public\" ");
2100         wprintf("CHECKED OnChange=\""
2101                 "       if (this.form.type[0].checked == true) {        "
2102                 "               this.form.er_floor.disabled = false;    "
2103                 "       }                                               "
2104                 "\"> ");
2105         wprintf(_("Public (automatically appears to everyone)"));
2106
2107         wprintf("\n<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"hidden\" OnChange=\""
2108                 "       if (this.form.type[1].checked == true) {        "
2109                 "               this.form.er_floor.disabled = false;    "
2110                 "       }                                               "
2111                 "\"> ");
2112         wprintf(_("Private - hidden (accessible to anyone who knows its name)"));
2113
2114         wprintf("\n<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"passworded\" OnChange=\""
2115                 "       if (this.form.type[2].checked == true) {        "
2116                 "               this.form.er_floor.disabled = false;    "
2117                 "       }                                               "
2118                 "\"> ");
2119         wprintf(_("Private - require password: "));
2120         wprintf("<INPUT TYPE=\"text\" NAME=\"er_password\" MAXLENGTH=\"9\">\n");
2121
2122         wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"invonly\" OnChange=\""
2123                 "       if (this.form.type[3].checked == true) {        "
2124                 "               this.form.er_floor.disabled = false;    "
2125                 "       }                                               "
2126                 "\"> ");
2127         wprintf(_("Private - invitation only"));
2128
2129         wprintf("\n<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"personal\" "
2130                 "OnChange=\""
2131                 "       if (this.form.type[4].checked == true) {        "
2132                 "               this.form.er_floor.disabled = true;     "
2133                 "       }                                               "
2134                 "\"> ");
2135         wprintf(_("Personal (mailbox for you only)"));
2136
2137         wprintf("\n</UL>\n");
2138
2139         wprintf("<CENTER>\n");
2140         wprintf("<INPUT TYPE=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">", _("Create new room"));
2141         wprintf("&nbsp;");
2142         wprintf("<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">", _("Cancel"));
2143         wprintf("</CENTER>\n");
2144         wprintf("</FORM>\n<hr />");
2145         serv_printf("MESG roomaccess");
2146         serv_getln(buf, sizeof buf);
2147         if (buf[0] == '1') {
2148                 fmout("CENTER");
2149         }
2150         wprintf("</td></tr></table></div>\n");
2151         wDumpContent(1);
2152 }
2153
2154
2155
2156
2157 /**
2158  * \brief support function for entroom() -- sets the default view 
2159  */
2160 void er_set_default_view(int newview) {
2161
2162         char buf[SIZ];
2163
2164         char rm_name[SIZ];
2165         char rm_pass[SIZ];
2166         char rm_dir[SIZ];
2167         int rm_bits1;
2168         int rm_floor;
2169         int rm_listorder;
2170         int rm_bits2;
2171
2172         serv_puts("GETR");
2173         serv_getln(buf, sizeof buf);
2174         if (buf[0] != '2') return;
2175
2176         extract_token(rm_name, &buf[4], 0, '|', sizeof rm_name);
2177         extract_token(rm_pass, &buf[4], 1, '|', sizeof rm_pass);
2178         extract_token(rm_dir, &buf[4], 2, '|', sizeof rm_dir);
2179         rm_bits1 = extract_int(&buf[4], 3);
2180         rm_floor = extract_int(&buf[4], 4);
2181         rm_listorder = extract_int(&buf[4], 5);
2182         rm_bits2 = extract_int(&buf[4], 7);
2183
2184         serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d",
2185                 rm_name, rm_pass, rm_dir, rm_bits1, rm_floor,
2186                 rm_listorder, newview, rm_bits2
2187         );
2188         serv_getln(buf, sizeof buf);
2189 }
2190
2191
2192
2193 /**
2194  * \brief enter a new room
2195  */
2196 void entroom(void)
2197 {
2198         char buf[SIZ];
2199         char er_name[SIZ];
2200         char er_type[SIZ];
2201         char er_password[SIZ];
2202         int er_floor;
2203         int er_num_type;
2204         int er_view;
2205
2206         if (strlen(bstr("ok_button")) == 0) {
2207                 strcpy(WC->ImportantMessage,
2208                         _("Cancelled.  No new room was created."));
2209                 display_main_menu();
2210                 return;
2211         }
2212         strcpy(er_name, bstr("er_name"));
2213         strcpy(er_type, bstr("type"));
2214         strcpy(er_password, bstr("er_password"));
2215         er_floor = atoi(bstr("er_floor"));
2216         er_view = atoi(bstr("er_view"));
2217
2218         er_num_type = 0;
2219         if (!strcmp(er_type, "hidden"))
2220                 er_num_type = 1;
2221         if (!strcmp(er_type, "passworded"))
2222                 er_num_type = 2;
2223         if (!strcmp(er_type, "invonly"))
2224                 er_num_type = 3;
2225         if (!strcmp(er_type, "personal"))
2226                 er_num_type = 4;
2227
2228         sprintf(buf, "CRE8 1|%s|%d|%s|%d|%d|%d", 
2229                 er_name, er_num_type, er_password, er_floor, 0, er_view);
2230         serv_puts(buf);
2231         serv_getln(buf, sizeof buf);
2232         if (buf[0] != '2') {
2233                 strcpy(WC->ImportantMessage, &buf[4]);
2234                 display_main_menu();
2235                 return;
2236         }
2237         gotoroom(er_name);
2238         do_change_view(er_view);                /* Now go there */
2239 }
2240
2241
2242 /**
2243  * \brief display the screen to enter a private room
2244  */
2245 void display_private(char *rname, int req_pass)
2246 {
2247         output_headers(1, 1, 2, 0, 0, 0);
2248         wprintf("<div id=\"banner\">\n"
2249                 "<TABLE class=\"roomops_banner\"><TR><TD>"
2250                 "<SPAN CLASS=\"titlebar\">");
2251         wprintf(_("Go to a hidden room"));
2252         wprintf("</SPAN>"
2253                 "</TD></TR></TABLE>\n"
2254                 "</div>\n<div id=\"content\">\n"
2255         );
2256
2257         wprintf("<div class=\"fix_scrollbar_bug\">"
2258                 "<table class=\"roomops_background\"><tr><td>\n");
2259
2260         wprintf("<CENTER>\n");
2261         wprintf("<br />");
2262         wprintf(_("If you know the name of a hidden (guess-name) or "
2263                 "passworded room, you can enter that room by typing "
2264                 "its name below.  Once you gain access to a private "
2265                 "room, it will appear in your regular room listings "
2266                 "so you don't have to keep returning here."));
2267         wprintf("\n<br /><br />");
2268
2269         wprintf("<FORM METHOD=\"POST\" action=\"goto_private\">\n");
2270
2271         wprintf("<table border=\"0\" cellspacing=\"5\" "
2272                 "cellpadding=\"5\" class=\"roomops_background_alt\">\n"
2273                 "<TR><TD>");
2274         wprintf(_("Enter room name:"));
2275         wprintf("</TD><TD>"
2276                 "<INPUT TYPE=\"text\" NAME=\"gr_name\" "
2277                 "VALUE=\"%s\" MAXLENGTH=\"128\">\n", rname);
2278
2279         if (req_pass) {
2280                 wprintf("</TD></TR><TR><TD>");
2281                 wprintf(_("Enter room password:"));
2282                 wprintf("</TD><TD>");
2283                 wprintf("<INPUT TYPE=\"password\" NAME=\"gr_pass\" MAXLENGTH=\"9\">\n");
2284         }
2285         wprintf("</TD></TR></TABLE><br />\n");
2286
2287         wprintf("<INPUT TYPE=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">"
2288                 "&nbsp;"
2289                 "<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">",
2290                 _("Go there"),
2291                 _("Cancel")
2292         );
2293         wprintf("</FORM>\n");
2294         wprintf("</td></tr></table></div>\n");
2295         wDumpContent(1);
2296 }
2297
2298 /**
2299  * \brief goto a private room
2300  */
2301 void goto_private(void)
2302 {
2303         char hold_rm[SIZ];
2304         char buf[SIZ];
2305
2306         if (strlen(bstr("ok_button")) == 0) {
2307                 display_main_menu();
2308                 return;
2309         }
2310         strcpy(hold_rm, WC->wc_roomname);
2311         strcpy(buf, "GOTO ");
2312         strcat(buf, bstr("gr_name"));
2313         strcat(buf, "|");
2314         strcat(buf, bstr("gr_pass"));
2315         serv_puts(buf);
2316         serv_getln(buf, sizeof buf);
2317
2318         if (buf[0] == '2') {
2319                 smart_goto(bstr("gr_name"));
2320                 return;
2321         }
2322         if (!strncmp(buf, "540", 3)) {
2323                 display_private(bstr("gr_name"), 1);
2324                 return;
2325         }
2326         output_headers(1, 1, 1, 0, 0, 0);
2327         wprintf("%s\n", &buf[4]);
2328         wDumpContent(1);
2329         return;
2330 }
2331
2332
2333 /**
2334  * \brief display the screen to zap a room
2335  */
2336 void display_zap(void)
2337 {
2338         output_headers(1, 1, 2, 0, 0, 0);
2339
2340         wprintf("<div id=\"banner\">\n");
2341         wprintf("<TABLE class=\"roomops_zap\"><TR><TD>");
2342         wprintf("<SPAN CLASS=\"titlebar\">");
2343         wprintf(_("Zap (forget/unsubscribe) the current room"));
2344         wprintf("</SPAN>\n");
2345         wprintf("</TD></TR></TABLE>\n");
2346         wprintf("</div>\n<div id=\"content\">\n");
2347
2348         wprintf(_("If you select this option, <em>%s</em> will "
2349                 "disappear from your room list.  Is this what you wish "
2350                 "to do?<br />\n"), WC->wc_roomname);
2351
2352         wprintf("<FORM METHOD=\"POST\" action=\"zap\">\n");
2353         wprintf("<INPUT TYPE=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">", _("Zap this room"));
2354         wprintf("&nbsp;");
2355         wprintf("<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">", _("Cancel"));
2356         wprintf("</FORM>\n");
2357         wDumpContent(1);
2358 }
2359
2360
2361 /**
2362  * \brief zap a room
2363  */
2364 void zap(void)
2365 {
2366         char buf[SIZ];
2367         char final_destination[SIZ];
2368
2369         /**
2370          * If the forget-room routine fails for any reason, we fall back
2371          * to the current room; otherwise, we go to the Lobby
2372          */
2373         strcpy(final_destination, WC->wc_roomname);
2374
2375         if (strlen(bstr("ok_button")) > 0) {
2376                 serv_printf("GOTO %s", WC->wc_roomname);
2377                 serv_getln(buf, sizeof buf);
2378                 if (buf[0] == '2') {
2379                         serv_puts("FORG");
2380                         serv_getln(buf, sizeof buf);
2381                         if (buf[0] == '2') {
2382                                 strcpy(final_destination, "_BASEROOM_");
2383                         }
2384                 }
2385         }
2386         smart_goto(final_destination);
2387 }
2388
2389
2390
2391 /**
2392  * \brief Delete the current room
2393  */
2394 void delete_room(void)
2395 {
2396         char buf[SIZ];
2397
2398         serv_puts("KILL 1");
2399         serv_getln(buf, sizeof buf);
2400         if (buf[0] != '2') {
2401                 strcpy(WC->ImportantMessage, &buf[4]);
2402                 display_main_menu();
2403                 return;
2404         } else {
2405                 smart_goto("_BASEROOM_");
2406         }
2407 }
2408
2409
2410
2411 /**
2412  * \brief Perform changes to a room's network configuration
2413  */
2414 void netedit(void) {
2415         FILE *fp;
2416         char buf[SIZ];
2417         char line[SIZ];
2418         char cmpa0[SIZ];
2419         char cmpa1[SIZ];
2420         char cmpb0[SIZ];
2421         char cmpb1[SIZ];
2422         int i, num_addrs;
2423
2424         if (strlen(bstr("line"))==0) {
2425                 display_editroom();
2426                 return;
2427         }
2428
2429         strcpy(line, bstr("prefix"));
2430         strcat(line, bstr("line"));
2431         strcat(line, bstr("suffix"));
2432
2433         fp = tmpfile();
2434         if (fp == NULL) {
2435                 display_editroom();
2436                 return;
2437         }
2438
2439         serv_puts("GNET");
2440         serv_getln(buf, sizeof buf);
2441         if (buf[0] != '1') {
2442                 fclose(fp);
2443                 display_editroom();
2444                 return;
2445         }
2446
2447         /** This loop works for add *or* remove.  Spiffy, eh? */
2448         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
2449                 extract_token(cmpa0, buf, 0, '|', sizeof cmpa0);
2450                 extract_token(cmpa1, buf, 1, '|', sizeof cmpa1);
2451                 extract_token(cmpb0, line, 0, '|', sizeof cmpb0);
2452                 extract_token(cmpb1, line, 1, '|', sizeof cmpb1);
2453                 if ( (strcasecmp(cmpa0, cmpb0)) 
2454                    || (strcasecmp(cmpa1, cmpb1)) ) {
2455                         fprintf(fp, "%s\n", buf);
2456                 }
2457         }
2458
2459         rewind(fp);
2460         serv_puts("SNET");
2461         serv_getln(buf, sizeof buf);
2462         if (buf[0] != '4') {
2463                 fclose(fp);
2464                 display_editroom();
2465                 return;
2466         }
2467
2468         while (fgets(buf, sizeof buf, fp) != NULL) {
2469                 buf[strlen(buf)-1] = 0;
2470                 serv_puts(buf);
2471         }
2472
2473         if (strlen(bstr("add_button")) > 0) {
2474                 num_addrs = num_tokens(bstr("line"), ',');
2475                 if (num_addrs < 2) {
2476                         /* just adding one node or address */
2477                         serv_puts(line);
2478                 }
2479                 else {
2480                         /* adding multiple addresses separated by commas */
2481                         for (i=0; i<num_addrs; ++i) {
2482                                 strcpy(line, bstr("prefix"));
2483                                 extract_token(buf, bstr("line"), i, ',', sizeof buf);
2484                                 striplt(buf);
2485                                 strcat(line, buf);
2486                                 strcat(line, bstr("suffix"));
2487                                 serv_puts(line);
2488                         }
2489                 }
2490         }
2491
2492         serv_puts("000");
2493         fclose(fp);
2494         display_editroom();
2495 }
2496
2497
2498
2499 /**
2500  * \brief Convert a room name to a folder-ish-looking name.
2501  * \param folder the folderish name
2502  * \param room the room name
2503  * \param floor the floor name
2504  * \param is_mailbox is it a mailbox?
2505  */
2506 void room_to_folder(char *folder, char *room, int floor, int is_mailbox)
2507 {
2508         int i;
2509
2510         /**
2511          * For mailboxes, just do it straight...
2512          */
2513         if (is_mailbox) {
2514                 sprintf(folder, "My folders|%s", room);
2515         }
2516
2517         /**
2518          * Otherwise, prefix the floor name as a "public folders" moniker
2519          */
2520         else {
2521                 sprintf(folder, "%s|%s", floorlist[floor], room);
2522         }
2523
2524         /**
2525          * Replace "\" characters with "|" for pseudo-folder-delimiting
2526          */
2527         for (i=0; i<strlen(folder); ++i) {
2528                 if (folder[i] == '\\') folder[i] = '|';
2529         }
2530 }
2531
2532
2533
2534
2535 /**
2536  * \brief Back end for change_view()
2537  * \param newview set newview???
2538  */
2539 void do_change_view(int newview) {
2540         char buf[SIZ];
2541
2542         serv_printf("VIEW %d", newview);
2543         serv_getln(buf, sizeof buf);
2544         WC->wc_view = newview;
2545         smart_goto(WC->wc_roomname);
2546 }
2547
2548
2549
2550 /**
2551  * \brief Change the view for this room
2552  */
2553 void change_view(void) {
2554         int view;
2555
2556         view = atol(bstr("view"));
2557         do_change_view(view);
2558 }
2559
2560
2561 /**
2562  * \brief One big expanded tree list view --- like a folder list
2563  * \param fold the folder to view
2564  * \param max_folders how many folders???
2565  * \param num_floors hom many floors???
2566  */
2567 void do_folder_view(struct folder *fold, int max_folders, int num_floors) {
2568         char buf[SIZ];
2569         int levels;
2570         int i;
2571         int has_subfolders = 0;
2572         int *parents;
2573
2574         parents = malloc(max_folders * sizeof(int));
2575
2576         /** BEGIN TREE MENU */
2577         wprintf("<div id=\"roomlist_div\">Loading folder list...</div>\n");
2578
2579         /** include NanoTree */
2580         wprintf("<script type=\"text/javascript\" src=\"static/nanotree.js\"></script>\n");
2581
2582         /** initialize NanoTree */
2583         wprintf("<script type=\"text/javascript\">                      \n"
2584                 "       showRootNode = false;                           \n"
2585                 "       sortNodes = false;                              \n"
2586                 "       dragable = false;                               \n"
2587                 "                                                       \n"
2588                 "       function standardClick(treeNode) {              \n"
2589                 "       }                                               \n"
2590                 "                                                       \n"
2591                 "       var closedGif = 'static/folder_closed.gif';     \n"
2592                 "       var openGif = 'static/folder_open.gif';         \n"
2593                 "                                                       \n"
2594                 "       rootNode = new TreeNode(1, 'root node - hide'); \n"
2595         );
2596
2597         levels = 0;
2598         for (i=0; i<max_folders; ++i) {
2599
2600                 has_subfolders = 0;
2601                 if ((i+1) < max_folders) {
2602                         if ( (!strncasecmp(fold[i].name, fold[i+1].name, strlen(fold[i].name)))
2603                            && (fold[i+1].name[strlen(fold[i].name)] == '|') ) {
2604                                 has_subfolders = 1;
2605                         }
2606                 }
2607
2608                 levels = num_tokens(fold[i].name, '|');
2609                 parents[levels] = i;
2610
2611                 wprintf("var node%d = new TreeNode(%d, '", i, i);
2612
2613                 if (fold[i].selectable) {
2614                         wprintf("<a href=\"dotgoto?room=");
2615                         urlescputs(fold[i].room);
2616                         wprintf("\">");
2617                 }
2618
2619                 if (levels == 1) {
2620                         wprintf("<SPAN CLASS=\"roomlist_floor\">");
2621                 }
2622                 else if (fold[i].hasnewmsgs) {
2623                         wprintf("<SPAN CLASS=\"roomlist_new\">");
2624                 }
2625                 else {
2626                         wprintf("<SPAN CLASS=\"roomlist_old\">");
2627                 }
2628                 extract_token(buf, fold[i].name, levels-1, '|', sizeof buf);
2629                 escputs(buf);
2630                 wprintf("</SPAN>");
2631
2632                 wprintf("</a>', ");
2633                 if (has_subfolders) {
2634                         wprintf("new Array(closedGif, openGif)");
2635                 }
2636                 else if (fold[i].view == VIEW_ADDRESSBOOK) {
2637                         wprintf("'static/viewcontacts_16x.gif'");
2638                 }
2639                 else if (fold[i].view == VIEW_CALENDAR) {
2640                         wprintf("'static/calarea_16x.gif'");
2641                 }
2642                 else if (fold[i].view == VIEW_CALBRIEF) {
2643                         wprintf("'static/calarea_16x.gif'");
2644                 }
2645                 else if (fold[i].view == VIEW_TASKS) {
2646                         wprintf("'static/taskmanag_16x.gif'");
2647                 }
2648                 else if (fold[i].view == VIEW_NOTES) {
2649                         wprintf("'static/storenotes_16x.gif'");
2650                 }
2651                 else if (fold[i].view == VIEW_MAILBOX) {
2652                         wprintf("'static/privatemess_16x.gif'");
2653                 }
2654                 else {
2655                         wprintf("'static/chatrooms_16x.gif'");
2656                 }
2657                 wprintf(", '");
2658                 urlescputs(fold[i].name);
2659                 wprintf("');\n");
2660
2661                 if (levels < 2) {
2662                         wprintf("rootNode.addChild(node%d);\n", i);
2663                 }
2664                 else {
2665                         wprintf("node%d.addChild(node%d);\n", parents[levels-1], i);
2666                 }
2667         }
2668
2669         wprintf("container = document.getElementById('roomlist_div');   \n"
2670                 "showTree('');  \n"
2671                 "</script>\n"
2672         );
2673
2674         free(parents);
2675         /** END TREE MENU */
2676 }
2677
2678 /**
2679  * \brief Boxes and rooms and lists ... oh my!
2680  * \param fold the folder to view
2681  * \param max_folders how many folders???
2682  * \param num_floors hom many floors???
2683  */
2684 void do_rooms_view(struct folder *fold, int max_folders, int num_floors) {
2685         char buf[256];
2686         char floor_name[256];
2687         char old_floor_name[256];
2688         char boxtitle[256];
2689         int levels, oldlevels;
2690         int i, t;
2691         int num_boxes = 0;
2692         static int columns = 3;
2693         int boxes_per_column = 0;
2694         int current_column = 0;
2695         int nf;
2696
2697         strcpy(floor_name, "");
2698         strcpy(old_floor_name, "");
2699
2700         nf = num_floors;
2701         while (nf % columns != 0) ++nf;
2702         boxes_per_column = (nf / columns);
2703         if (boxes_per_column < 1) boxes_per_column = 1;
2704
2705         /** Outer table (for columnization) */
2706         wprintf("<TABLE BORDER=0 WIDTH=96%% CELLPADDING=5>"
2707                 "<tr><td valign=top>");
2708
2709         levels = 0;
2710         oldlevels = 0;
2711         for (i=0; i<max_folders; ++i) {
2712
2713                 levels = num_tokens(fold[i].name, '|');
2714                 extract_token(floor_name, fold[i].name, 0,
2715                         '|', sizeof floor_name);
2716
2717                 if ( (strcasecmp(floor_name, old_floor_name))
2718                    && (strlen(old_floor_name) > 0) ) {
2719                         /* End inner box */
2720                         do_template("endbox");
2721
2722                         ++num_boxes;
2723                         if ((num_boxes % boxes_per_column) == 0) {
2724                                 ++current_column;
2725                                 if (current_column < columns) {
2726                                         wprintf("</td><td valign=top>\n");
2727                                 }
2728                         }
2729                 }
2730                 strcpy(old_floor_name, floor_name);
2731
2732                 if (levels == 1) {
2733                         /** Begin inner box */
2734                         stresc(boxtitle, floor_name, 1, 0);
2735                         svprintf("BOXTITLE", WCS_STRING, boxtitle);
2736                         do_template("beginbox");
2737                 }
2738
2739                 oldlevels = levels;
2740
2741                 if (levels > 1) {
2742                         wprintf("&nbsp;");
2743                         if (levels>2) for (t=0; t<(levels-2); ++t) wprintf("&nbsp;&nbsp;&nbsp;");
2744                         if (fold[i].selectable) {
2745                                 wprintf("<a href=\"dotgoto?room=");
2746                                 urlescputs(fold[i].room);
2747                                 wprintf("\">");
2748                         }
2749                         else {
2750                                 wprintf("<i>");
2751                         }
2752                         if (fold[i].hasnewmsgs) {
2753                                 wprintf("<SPAN CLASS=\"roomlist_new\">");
2754                         }
2755                         else {
2756                                 wprintf("<SPAN CLASS=\"roomlist_old\">");
2757                         }
2758                         extract_token(buf, fold[i].name, levels-1, '|', sizeof buf);
2759                         escputs(buf);
2760                         wprintf("</SPAN>");
2761                         if (fold[i].selectable) {
2762                                 wprintf("</A>");
2763                         }
2764                         else {
2765                                 wprintf("</i>");
2766                         }
2767                         if (!strcasecmp(fold[i].name, "My Folders|Mail")) {
2768                                 wprintf(" (INBOX)");
2769                         }
2770                         wprintf("<br />\n");
2771                 }
2772         }
2773         /** End the final inner box */
2774         do_template("endbox");
2775
2776         wprintf("</TD></TR></TABLE>\n");
2777 }
2778
2779 /**
2780  * \brief print a floor div???
2781  * \param which_floordiv name of the floordiv???
2782  */
2783 void set_floordiv_expanded(char *which_floordiv) {
2784         begin_ajax_response();
2785         safestrncpy(WC->floordiv_expanded, which_floordiv, sizeof WC->floordiv_expanded);
2786         end_ajax_response();
2787 }
2788
2789 /**
2790  * \brief view the iconbar
2791  * \param fold the folder to view
2792  * \param max_folders how many folders???
2793  * \param num_floors hom many floors???
2794  */
2795 void do_iconbar_view(struct folder *fold, int max_folders, int num_floors) {
2796         char buf[256];
2797         char floor_name[256];
2798         char old_floor_name[256];
2799         char floordivtitle[256];
2800         char floordiv_id[32];
2801         int levels, oldlevels;
2802         int i, t;
2803         int num_drop_targets = 0;
2804         char *icon = NULL;
2805
2806         strcpy(floor_name, "");
2807         strcpy(old_floor_name, "");
2808
2809         levels = 0;
2810         oldlevels = 0;
2811         for (i=0; i<max_folders; ++i) {
2812
2813                 levels = num_tokens(fold[i].name, '|');
2814                 extract_token(floor_name, fold[i].name, 0,
2815                         '|', sizeof floor_name);
2816
2817                 if ( (strcasecmp(floor_name, old_floor_name))
2818                    && (strlen(old_floor_name) > 0) ) {
2819                         /** End inner box */
2820                         wprintf("<br>\n");
2821                         wprintf("</div>\n");    /** floordiv */
2822                 }
2823                 strcpy(old_floor_name, floor_name);
2824
2825                 if (levels == 1) {
2826                         /** Begin floor */
2827                         stresc(floordivtitle, floor_name, 0, 0);
2828                         sprintf(floordiv_id, "floordiv%d", i);
2829                         wprintf("<span class=\"ib_roomlist_floor\" "
2830                                 "onClick=\"expand_floor('%s')\">"
2831                                 "%s</span><br>\n", floordiv_id, floordivtitle);
2832                         wprintf("<div id=\"%s\" style=\"display:%s\">",
2833                                 floordiv_id,
2834                                 (!strcasecmp(floordiv_id, WC->floordiv_expanded) ? "block" : "none")
2835                         );
2836                 }
2837
2838                 oldlevels = levels;
2839
2840                 if (levels > 1) {
2841                         wprintf("<div id=\"roomdiv%d\">", i);
2842                         wprintf("&nbsp;");
2843                         if (levels>2) for (t=0; t<(levels-2); ++t) wprintf("&nbsp;");
2844
2845                         /** choose the icon */
2846                         if (fold[i].view == VIEW_ADDRESSBOOK) {
2847                                 icon = "viewcontacts_16x.gif" ;
2848                         }
2849                         else if (fold[i].view == VIEW_CALENDAR) {
2850                                 icon = "calarea_16x.gif" ;
2851                         }
2852                         else if (fold[i].view == VIEW_CALBRIEF) {
2853                                 icon = "calarea_16x.gif" ;
2854                         }
2855                         else if (fold[i].view == VIEW_TASKS) {
2856                                 icon = "taskmanag_16x.gif" ;
2857                         }
2858                         else if (fold[i].view == VIEW_NOTES) {
2859                                 icon = "storenotes_16x.gif" ;
2860                         }
2861                         else if (fold[i].view == VIEW_MAILBOX) {
2862                                 icon = "privatemess_16x.gif" ;
2863                         }
2864                         else {
2865                                 icon = "chatrooms_16x.gif" ;
2866                         }
2867
2868                         if (fold[i].selectable) {
2869                                 wprintf("<a href=\"dotgoto?room=");
2870                                 urlescputs(fold[i].room);
2871                                 wprintf("\">");
2872                                 wprintf("<img align=\"middle\" border=0 src=\"static/%s\" alt=\"\"> ", icon);
2873                         }
2874                         else {
2875                                 wprintf("<i>");
2876                         }
2877                         if (fold[i].hasnewmsgs) {
2878                                 wprintf("<SPAN CLASS=\"ib_roomlist_new\">");
2879                         }
2880                         else {
2881                                 wprintf("<SPAN CLASS=\"ib_roomlist_old\">");
2882                         }
2883                         extract_token(buf, fold[i].name, levels-1, '|', sizeof buf);
2884                         escputs(buf);
2885                         if (!strcasecmp(fold[i].name, "My Folders|Mail")) {
2886                                 wprintf(" (INBOX)");
2887                         }
2888                         wprintf("</SPAN>");
2889                         if (fold[i].selectable) {
2890                                 wprintf("</A>");
2891                         }
2892                         else {
2893                                 wprintf("</i>");
2894                         }
2895                         wprintf("<br />");
2896                         wprintf("</div>\n");    /** roomdiv */
2897                 }
2898         }
2899         wprintf("</div>\n");    /** floordiv */
2900
2901
2902         /** BEGIN: The old invisible pixel trick, to get our JavaScript to initialize */
2903         wprintf("<img src=\"static/blank.gif\" onLoad=\"\n");
2904
2905         num_drop_targets = 0;
2906
2907         for (i=0; i<max_folders; ++i) {
2908                 levels = num_tokens(fold[i].name, '|');
2909                 if (levels > 1) {
2910                         wprintf("drop_targets_elements[%d]=$('roomdiv%d');\n", num_drop_targets, i);
2911                         wprintf("drop_targets_roomnames[%d]='", num_drop_targets);
2912                         jsescputs(fold[i].room);
2913                         wprintf("';\n");
2914                         ++num_drop_targets;
2915                 }
2916         }
2917
2918         wprintf("num_drop_targets = %d;\n", num_drop_targets);
2919         if (strlen(WC->floordiv_expanded) > 1) {
2920                 wprintf("which_div_expanded = '%s';\n", WC->floordiv_expanded);
2921         }
2922
2923         wprintf("\">\n");
2924         /** END: The old invisible pixel trick, to get our JavaScript to initialize */
2925 }
2926
2927
2928
2929 /**
2930  * \brief Show the room list.  
2931  * (only should get called by
2932  * knrooms() because that's where output_headers() is called from)
2933  * \param viewpref the view preferences???
2934  */
2935
2936 void list_all_rooms_by_floor(char *viewpref) {
2937         char buf[SIZ];
2938         int swap = 0;
2939         struct folder *fold = NULL;
2940         struct folder ftmp;
2941         int max_folders = 0;
2942         int alloc_folders = 0;
2943         int i, j;
2944         int ra_flags = 0;
2945         int flags = 0;
2946         int num_floors = 1;     /** add an extra one for private folders */
2947
2948         /** If our cached folder list is very old, burn it. */
2949         if (WC->cache_fold != NULL) {
2950                 if ((time(NULL) - WC->cache_timestamp) > 300) {
2951                         free(WC->cache_fold);
2952                         WC->cache_fold = NULL;
2953                 }
2954         }
2955
2956         /** Can we do the iconbar roomlist from cache? */
2957         if ((WC->cache_fold != NULL) && (!strcasecmp(viewpref, "iconbar"))) {
2958                 do_iconbar_view(WC->cache_fold, WC->cache_max_folders, WC->cache_num_floors);
2959                 return;
2960         }
2961
2962         /** Grab the floor table so we know how to build the list... */
2963         load_floorlist();
2964
2965         /** Start with the mailboxes */
2966         max_folders = 1;
2967         alloc_folders = 1;
2968         fold = malloc(sizeof(struct folder));
2969         memset(fold, 0, sizeof(struct folder));
2970         strcpy(fold[0].name, "My folders");
2971         fold[0].is_mailbox = 1;
2972
2973         /** Then add floors */
2974         serv_puts("LFLR");
2975         serv_getln(buf, sizeof buf);
2976         if (buf[0]=='1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
2977                 if (max_folders >= alloc_folders) {
2978                         alloc_folders = max_folders + 100;
2979                         fold = realloc(fold,
2980                                 alloc_folders * sizeof(struct folder));
2981                 }
2982                 memset(&fold[max_folders], 0, sizeof(struct folder));
2983                 extract_token(fold[max_folders].name, buf, 1, '|', sizeof fold[max_folders].name);
2984                 ++max_folders;
2985                 ++num_floors;
2986         }
2987
2988         /** refresh the messages index for this room */
2989 //      serv_puts("GOTO ");
2990 //      while (serv_getln(buf, sizeof buf), strcmp(buf, "000"));
2991         /** Now add rooms */
2992         serv_puts("LKRA");
2993         serv_getln(buf, sizeof buf);
2994         if (buf[0]=='1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
2995                 if (max_folders >= alloc_folders) {
2996                         alloc_folders = max_folders + 100;
2997                         fold = realloc(fold,
2998                                 alloc_folders * sizeof(struct folder));
2999                 }
3000                 memset(&fold[max_folders], 0, sizeof(struct folder));
3001                 extract_token(fold[max_folders].room, buf, 0, '|', sizeof fold[max_folders].room);
3002                 ra_flags = extract_int(buf, 5);
3003                 flags = extract_int(buf, 1);
3004                 fold[max_folders].floor = extract_int(buf, 2);
3005                 fold[max_folders].hasnewmsgs =
3006                         ((ra_flags & UA_HASNEWMSGS) ? 1 : 0 );
3007                 if (flags & QR_MAILBOX) {
3008                         fold[max_folders].is_mailbox = 1;
3009                 }
3010                 fold[max_folders].view = extract_int(buf, 6);
3011                 room_to_folder(fold[max_folders].name,
3012                                 fold[max_folders].room,
3013                                 fold[max_folders].floor,
3014                                 fold[max_folders].is_mailbox);
3015                 fold[max_folders].selectable = 1;
3016                 ++max_folders;
3017         }
3018
3019         /** Bubble-sort the folder list */
3020         for (i=0; i<max_folders; ++i) {
3021                 for (j=0; j<(max_folders-1)-i; ++j) {
3022                         if (fold[j].is_mailbox == fold[j+1].is_mailbox) {
3023                                 swap = strcasecmp(fold[j].name, fold[j+1].name);
3024                         }
3025                         else {
3026                                 if ( (fold[j+1].is_mailbox)
3027                                    && (!fold[j].is_mailbox)) {
3028                                         swap = 1;
3029                                 }
3030                                 else {
3031                                         swap = 0;
3032                                 }
3033                         }
3034                         if (swap > 0) {
3035                                 memcpy(&ftmp, &fold[j], sizeof(struct folder));
3036                                 memcpy(&fold[j], &fold[j+1],
3037                                                         sizeof(struct folder));
3038                                 memcpy(&fold[j+1], &ftmp,
3039                                                         sizeof(struct folder));
3040                         }
3041                 }
3042         }
3043
3044
3045         if (!strcasecmp(viewpref, "folders")) {
3046                 do_folder_view(fold, max_folders, num_floors);
3047         }
3048         else if (!strcasecmp(viewpref, "hackish_view")) {
3049                 for (i=0; i<max_folders; ++i) {
3050                         escputs(fold[i].name);
3051                         wprintf("<br />\n");
3052                 }
3053         }
3054         else if (!strcasecmp(viewpref, "iconbar")) {
3055                 do_iconbar_view(fold, max_folders, num_floors);
3056         }
3057         else {
3058                 do_rooms_view(fold, max_folders, num_floors);
3059         }
3060
3061         /* Don't free the folder list ... cache it for future use! */
3062         if (WC->cache_fold != NULL) {
3063                 free(WC->cache_fold);
3064         }
3065         WC->cache_fold = fold;
3066         WC->cache_max_folders = max_folders;
3067         WC->cache_num_floors = num_floors;
3068         WC->cache_timestamp = time(NULL);
3069 }
3070
3071
3072 /**
3073  * \brief Do either a known rooms list or a folders list, depending on the
3074  * user's preference
3075  */
3076 void knrooms(void)
3077 {
3078         char listviewpref[SIZ];
3079
3080         output_headers(1, 1, 2, 0, 0, 0);
3081
3082         /** Determine whether the user is trying to change views */
3083         if (bstr("view") != NULL) {
3084                 if (strlen(bstr("view")) > 0) {
3085                         set_preference("roomlistview", bstr("view"), 1);
3086                 }
3087         }
3088
3089         get_preference("roomlistview", listviewpref, sizeof listviewpref);
3090
3091         if ( (strcasecmp(listviewpref, "folders"))
3092            && (strcasecmp(listviewpref, "table")) ) {
3093                 strcpy(listviewpref, "rooms");
3094         }
3095
3096         /** title bar */
3097         wprintf("<div id=\"banner\">\n"
3098                 "<TABLE class=\"roomops_banner\"><TR><TD>"
3099                 "<SPAN CLASS=\"titlebar\">"
3100         );
3101         if (!strcasecmp(listviewpref, "rooms")) {
3102                 wprintf(_("Room list"));
3103         }
3104         if (!strcasecmp(listviewpref, "folders")) {
3105                 wprintf(_("Folder list"));
3106         }
3107         if (!strcasecmp(listviewpref, "table")) {
3108                 wprintf(_("Room list"));
3109         }
3110         wprintf("</SPAN></TD>\n");
3111
3112         /** offer the ability to switch views */
3113         wprintf("<TD ALIGN=RIGHT><FORM NAME=\"roomlistomatic\">\n"
3114                 "<SELECT NAME=\"newview\" SIZE=\"1\" "
3115                 "OnChange=\"location.href=roomlistomatic.newview.options"
3116                 "[selectedIndex].value\">\n");
3117
3118         wprintf("<OPTION %s VALUE=\"knrooms&view=rooms\">"
3119                 "View as room list"
3120                 "</OPTION>\n",
3121                 ( !strcasecmp(listviewpref, "rooms") ? "SELECTED" : "" )
3122         );
3123
3124         wprintf("<OPTION %s VALUE=\"knrooms&view=folders\">"
3125                 "View as folder list"
3126                 "</OPTION>\n",
3127                 ( !strcasecmp(listviewpref, "folders") ? "SELECTED" : "" )
3128         );
3129
3130         wprintf("</SELECT><br />");
3131         offer_start_page();
3132         wprintf("</FORM></TD></TR></TABLE>\n");
3133         wprintf("</div>\n"
3134                 "</div>\n"
3135                 "<div id=\"content\">\n");
3136
3137         /** Display the room list in the user's preferred format */
3138         list_all_rooms_by_floor(listviewpref);
3139         wDumpContent(1);
3140 }
3141
3142
3143
3144 /**
3145  * \brief Set the message expire policy for this room and/or floor
3146  */
3147 void set_room_policy(void) {
3148         char buf[SIZ];
3149
3150         if (strlen(bstr("ok_button")) == 0) {
3151                 strcpy(WC->ImportantMessage,
3152                         _("Cancelled.  Changes were not saved."));
3153                 display_editroom();
3154                 return;
3155         }
3156
3157         serv_printf("SPEX room|%d|%d", atoi(bstr("roompolicy")), atoi(bstr("roomvalue")));
3158         serv_getln(buf, sizeof buf);
3159         strcpy(WC->ImportantMessage, &buf[4]);
3160
3161         if (WC->axlevel >= 6) {
3162                 strcat(WC->ImportantMessage, "<br />\n");
3163                 serv_printf("SPEX floor|%d|%d", atoi(bstr("floorpolicy")), atoi(bstr("floorvalue")));
3164                 serv_getln(buf, sizeof buf);
3165                 strcat(WC->ImportantMessage, &buf[4]);
3166         }
3167
3168         display_editroom();
3169 }
3170
3171 /*@}*/