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