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