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