3 * Lots of different room-related operations.
9 char floorlist
[MAX_FLOORS
][SIZ
]; /**< list of our floor names */
11 char *viewdefs
[9]; /**< the different kinds of available views */
13 /** See GetFloorListHash and GetRoomListHash for info on these. Basically we pull LFLR/LKRA etc. and set up a room HashList with these keys. */
14 const char FLOOR_PARAM_NAMES
[(FLOOR_PARAM_LEN
+ 1)][15] = {"ID",
17 const char ROOM_PARAM_NAMES
[(ROOM_PARAM_LEN
+ 1)][20] = {"NAME",
25 /* Because avoiding strlen at run time is a Good Thing(TM) */
26 const int FLOOR_PARAM_NAMELEN
[(FLOOR_PARAM_LEN
+1)] = {2, 4, 5};
27 const int ROOM_PARAM_NAMELEN
[(ROOM_PARAM_LEN
+1)] = {4, 4, 5, 9, 3, 7, 7, 8};
29 void display_whok(void);
32 * Initialize the viewdefs with localized strings
34 void initialize_viewdefs(void) {
35 viewdefs
[0] = _("Bulletin Board");
36 viewdefs
[1] = _("Mail Folder");
37 viewdefs
[2] = _("Address Book");
38 viewdefs
[3] = _("Calendar");
39 viewdefs
[4] = _("Task List");
40 viewdefs
[5] = _("Notes List");
41 viewdefs
[6] = _("Wiki");
42 viewdefs
[7] = _("Calendar List");
43 viewdefs
[8] = _("Journal");
47 * Determine which views are allowed as the default for creating a new room.
49 int is_view_allowed_as_default(int which_view
)
52 case VIEW_BBS
: return(1);
53 case VIEW_MAILBOX
: return(1);
54 case VIEW_ADDRESSBOOK
: return(1);
55 case VIEW_CALENDAR
: return(1);
56 case VIEW_TASKS
: return(1);
57 case VIEW_NOTES
: return(1);
60 case VIEW_WIKI
: return(1);
61 #else /* TECH_PREVIEW */
62 case VIEW_WIKI
: return(0); /* because it isn't finished yet */
63 #endif /* TECH_PREVIEW */
65 case VIEW_CALBRIEF
: return(0);
66 case VIEW_JOURNAL
: return(0);
67 default: return(0); /* should never get here */
73 * load the list of floors
75 void load_floorlist(void)
80 for (a
= 0; a
< MAX_FLOORS
; ++a
)
84 serv_getln(buf
, sizeof buf
);
86 strcpy(floorlist
[0], "Main Floor");
89 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
90 extract_token(floorlist
[extract_int(buf
, 0)], buf
, 1, '|', sizeof floorlist
[0]);
96 * Free a session's march list
98 void free_march_list(wcsession
*wcf
)
102 while (wcf
->march
!= NULL
) {
103 mptr
= wcf
->march
->next
;
113 * remove a room from the march list
115 void remove_march(const StrBuf
*aaa
)
117 struct march
*mptr
, *mptr2
;
119 if (WC
->march
== NULL
)
122 if (!strcasecmp(WC
->march
->march_name
, ChrPtr(aaa
))) {
123 mptr
= WC
->march
->next
;
129 for (mptr
= WC
->march
; mptr
!= NULL
; mptr
= mptr
->next
) {
130 if (!strcasecmp(mptr
->march_name
, ChrPtr(aaa
))) {
131 mptr2
->next
= mptr
->next
;
144 * display rooms in tree structure
146 void room_tree_list(struct roomlisting
*rp
)
155 room_tree_list(rp
->lnext
);
157 strcpy(rmname
, rp
->rlname
);
160 wprintf("<a href=\"dotgoto&room=");
164 escputs1(rmname
, 1, 1);
165 if ((f
& QR_DIRECTORY
) && (f
& QR_NETWORK
))
167 else if (f
& QR_DIRECTORY
)
169 else if (f
& QR_NETWORK
)
173 wprintf("</a><tt> </tt>\n");
175 room_tree_list(rp
->rnext
);
181 * \brief Room ordering stuff (compare first by floor, then by order)
182 * \param r1 first roomlist to compare
183 * \param r2 second roomlist co compare
184 * \return are they the same???
186 int rordercmp(struct roomlisting
*r1
, struct roomlisting
*r2
)
188 if ((r1
== NULL
) && (r2
== NULL
))
194 if (r1
->rlfloor
< r2
->rlfloor
)
196 if (r1
->rlfloor
> r2
->rlfloor
)
198 if (r1
->rlorder
< r2
->rlorder
)
200 if (r1
->rlorder
> r2
->rlorder
)
207 * \brief Common code for all room listings
208 * \param variety what???
210 void listrms(char *variety
)
215 struct roomlisting
*rl
= NULL
;
216 struct roomlisting
*rp
;
217 struct roomlisting
*rs
;
219 /** Ask the server for a room list */
221 serv_getln(buf
, sizeof buf
);
227 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
229 rp
= malloc(sizeof(struct roomlisting
));
230 extract_token(rp
->rlname
, buf
, 0, '|', sizeof rp
->rlname
);
231 rp
->rlflags
= extract_int(buf
, 1);
232 rp
->rlfloor
= extract_int(buf
, 2);
233 rp
->rlorder
= extract_int(buf
, 3);
242 if (rordercmp(rp
, rs
) < 0) {
243 if (rs
->lnext
== NULL
) {
250 if (rs
->rnext
== NULL
) {
263 * If no rooms were listed, print an nbsp to make the cell
264 * borders show up anyway.
266 if (num_rooms
== 0) wprintf(" ");
271 * \brief list all forgotten rooms
273 void zapped_list(void)
275 WCTemplputParams SubTP
;
278 output_headers(1, 1, 1, 0, 0, 0);
279 memset(&SubTP
, 0, sizeof(WCTemplputParams
));
280 Buf
= NewStrBufPlain(_("Zapped (forgotten) rooms"), -1);
281 SubTP
.Filter
.ContextType
= CTX_STRBUF
;
283 DoTemplate(HKEY("beginbox"), NULL
, &SubTP
);
289 wprintf("<br /><br />\n");
290 wprintf(_("Click on any room to un-zap it and goto that room.\n"));
291 do_template("endbox", NULL
);
297 * \brief read this room's info file (set v to 1 for verbose mode)
299 void readinfo(StrBuf
*Target
, WCTemplputParams
*TP
)
304 int fullinfo_len
= 0;
307 serv_getln(buf
, sizeof buf
);
310 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
311 if (fullinfo_len
< (sizeof fullinfo
- sizeof buf
)) {
312 strcpy(&fullinfo
[fullinfo_len
], buf
);
313 fullinfo_len
+= strlen(buf
);
317 safestrncpy(briefinfo
, fullinfo
, sizeof briefinfo
);
318 strcpy(&briefinfo
[50], "...");
320 wprintf("<div class=\"infos\" "
321 "onclick=\"javascript:Effect.Appear('room_infos', { duration: 0.5 });\" "
324 wprintf("</div><div id=\"room_infos\" style=\"display:none;\">");
325 wprintf("<img class=\"close_infos\" "
326 "onclick=\"javascript:Effect.Fade('room_infos', { duration: 0.5 });\" "
327 "src=\"static/closewindow.gif\" alt=\"%s\">",
342 * \brief Display room banner icon.
343 * The server doesn't actually
344 * need the room name, but we supply it in order to
345 * keep the browser from using a cached icon from
348 void embed_room_graphic(StrBuf
*Target
, WCTemplputParams
*TP
)
352 serv_puts("OIMG _roompic_");
353 serv_getln(buf
, sizeof buf
);
355 wprintf("<img height=\"64px\" src=\"image&name=_roompic_&room=");
356 urlescputs(ChrPtr(WC
->wc_roomname
));
359 serv_getln(buf
, sizeof buf
);
361 else if (WC
->wc_view
== VIEW_ADDRESSBOOK
) {
362 wprintf("<img class=\"roompic\" alt=\"\" src=\""
363 "static/viewcontacts_48x.gif"
367 else if ( (WC
->wc_view
== VIEW_CALENDAR
) || (WC
->wc_view
== VIEW_CALBRIEF
) ) {
368 wprintf("<img class=\"roompic\" alt=\"\" src=\""
369 "static/calarea_48x.gif"
373 else if (WC
->wc_view
== VIEW_TASKS
) {
374 wprintf("<img class=\"roompic\" alt=\"\" src=\""
375 "static/taskmanag_48x.gif"
379 else if (WC
->wc_view
== VIEW_NOTES
) {
380 wprintf("<img class=\"roompic\" alt=\"\" src=\""
381 "static/storenotes_48x.gif"
385 else if (WC
->wc_view
== VIEW_MAILBOX
) {
386 wprintf("<img class=\"roompic\" alt=\"\" src=\""
387 "static/privatemess_48x.gif"
392 wprintf("<img class=\"roompic\" alt=\"\" src=\""
393 "static/chatrooms_48x.gif"
403 * \brief Display the current view and offer an option to change it
405 void embed_view_o_matic(StrBuf
*Target
, WCTemplputParams
*TP
)
409 wprintf("<form name=\"viewomatic\" action=\"changeview\">\n");
410 wprintf("\t<div style=\"display: inline;\">\n\t<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
411 wprintf("<label for=\"view_name\">");
412 wprintf(_("View as:"));
414 "<select name=\"newview\" size=\"1\" "
415 "id=\"view_name\" class=\"selectbox\" "
416 "OnChange=\"location.href=viewomatic.newview.options"
417 "[selectedIndex].value\">\n");
419 for (i
=0; i
<(sizeof viewdefs
/ sizeof (char *)); ++i
) {
421 * Only offer the views that make sense, given the default
422 * view for the room. For example, don't offer a Calendar
423 * view in a non-Calendar room.
427 || (i
== WC
->wc_default_view
) /**< default */
428 || ( (i
== 0) && (WC
->wc_default_view
== 1) ) /**< mail or bulletin */
429 || ( (i
== 1) && (WC
->wc_default_view
== 0) ) /**< mail or bulletin */
430 /** || ( (i == 7) && (WC->wc_default_view == 3) ) (calendar list temporarily disabled) */
433 wprintf("<option %s value=\"changeview?view=%d\">",
434 ((i
== WC
->wc_view
) ? "selected" : ""),
436 escputs(viewdefs
[i
]);
437 wprintf("</option>\n");
440 wprintf("</select></div></form>\n");
445 * \brief Display a search box
447 void embed_search_o_matic(StrBuf
*Target
, WCTemplputParams
*TP
)
449 wprintf("<form name=\"searchomatic\" action=\"do_search\">\n");
450 wprintf("<div style=\"display: inline;\"><input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
451 wprintf("<label for=\"srchquery\">");
452 wprintf(_("Search: "));
453 wprintf("</label><input ");
454 wprintf("%s", serv_info
.serv_fulltext_enabled
? "" : "disabled ");
455 wprintf("type=\"text\" name=\"query\" id=\"srchquery\" size=\"15\" maxlength=\"128\" class=\"inputbox\">\n"
457 wprintf("</div></form>\n");
462 * \brief Embed the room banner
464 * \param got The information returned from a GOTO server command
465 * \param navbar_style Determines which navigation buttons to display
469 void embed_room_banner(char *got
, int navbar_style
) {
472 char with_files
[256];
476 * We need to have the information returned by a GOTO server command.
477 * If it isn't supplied, we fake it by issuing our own GOTO.
480 memset(buf
, '0', 20);
482 serv_printf("GOTO %s", ChrPtr(WC
->wc_roomname
));
483 serv_getln(buf
, sizeof buf
);
487 /** The browser needs some information for its own use */
488 wprintf("<script type=\"text/javascript\"> \n"
489 " room_is_trash = %d; \n"
495 * If the user happens to select the "make this my start page" link,
496 * we want it to remember the URL as a "/dotskip" one instead of
497 * a "skip" or "gotonext" or something like that.
499 if (WC
->this_page
== NULL
)
500 WC
->this_page
= NewStrBuf();
501 StrBufPrintf(WC
->this_page
,
503 ChrPtr(WC
->wc_roomname
));
505 /** Check for new mail. */
506 WC
->new_mail
= extract_int(&got
[4], 9);
507 WC
->wc_view
= extract_int(&got
[4], 11);
509 /* Is this a directory room and does it contain files and how many? */
510 if ((WC
->room_flags
& QR_DIRECTORY
) && (WC
->room_flags
& QR_VISDIR
))
513 serv_getln(buf2
, sizeof buf2
);
514 if (buf2
[0] == '1') while (serv_getln(buf2
, sizeof buf2
), strcmp(buf2
, "000"))
516 snprintf (with_files
, sizeof with_files
,
517 "; <a href=\"do_template?template=files\"> %d %s </a>",
519 ((file_count
>1) || (file_count
== 0) ? _("files") : _("file")));
522 strcpy (with_files
, "");
524 svprintf(HKEY("NUMMSGS"), WCS_STRING
,
525 _("%d new of %d messages%s"),
526 extract_int(&got
[4], 1),
527 extract_int(&got
[4], 2),
530 svcallback("ROOMPIC", embed_room_graphic
);
531 svcallback("ROOMINFO", readinfo
);
532 svcallback("VIEWOMATIC", embed_view_o_matic
);
533 svcallback("SEARCHOMATIC", embed_search_o_matic
);
534 svcallback("START", offer_start_page
);
536 do_template("roombanner", NULL
);
537 /* roombanner contains this for mobile */
538 if (navbar_style
!= navbar_none
&& !WC
->is_mobile
) {
540 wprintf("<div id=\"navbar\"><ul>");
542 if (navbar_style
== navbar_default
) wprintf(
543 "<li class=\"ungoto\">"
544 "<a href=\"ungoto\">"
545 "<img src=\"static/ungoto2_24x.gif\" alt=\"\">"
546 "<span class=\"navbar_link\">%s</span></A>"
547 "</li>\n", _("Ungoto")
550 if ( (navbar_style
== navbar_default
) && (WC
->wc_view
== VIEW_BBS
) ) {
552 "<li class=\"newmess\">"
553 "<a href=\"readnew\">"
554 "<img src=\"static/newmess2_24x.gif\" alt=\"\">"
555 "<span class=\"navbar_link\">%s</span></A>"
556 "</li>\n", _("Read new messages")
560 if (navbar_style
== navbar_default
) {
561 switch(WC
->wc_view
) {
562 case VIEW_ADDRESSBOOK
:
564 "<li class=\"viewcontacts\">"
565 "<a href=\"readfwd\">"
566 "<img src=\"static/viewcontacts_24x.gif\" "
568 "<span class=\"navbar_link\">"
570 "</span></a></li>\n", _("View contacts")
575 "<li class=\"staskday\">"
576 "<a href=\"readfwd?calview=day\">"
577 "<img src=\"static/taskday2_24x.gif\" "
579 "<span class=\"navbar_link\">"
581 "</span></a></li>\n", _("Day view")
584 "<li class=\"monthview\">"
585 "<a href=\"readfwd?calview=month\">"
586 "<img src=\"static/monthview2_24x.gif\" "
588 "<span class=\"navbar_link\">"
590 "</span></a></li>\n", _("Month view")
595 "<li class=\"monthview\">"
596 "<a href=\"readfwd?calview=month\">"
597 "<img src=\"static/monthview2_24x.gif\" "
599 "<span class=\"navbar_link\">"
601 "</span></a></li>\n", _("Calendar list")
606 "<li class=\"taskmanag\">"
607 "<a href=\"readfwd\">"
608 "<img src=\"static/taskmanag_24x.gif\" "
610 "<span class=\"navbar_link\">"
612 "</span></a></li>\n", _("View tasks")
617 "<li class=\"viewnotes\">"
618 "<a href=\"readfwd\">"
619 "<img src=\"static/viewnotes_24x.gif\" "
621 "<span class=\"navbar_link\">"
623 "</span></a></li>\n", _("View notes")
628 "<li class=\"readallmess\">"
629 "<a id=\"m_refresh\" href=\"readfwd\">"
630 "<img src=\"static/readallmess3_24x.gif\" "
632 "<span class=\"navbar_link\">"
634 "</span></a></li>\n", _("Refresh message list")
639 "<li class=\"readallmess\">"
640 "<a href=\"readfwd\">"
641 "<img src=\"static/readallmess3_24x.gif\" "
643 "<span class=\"navbar_link\">"
645 "</span></a></li>\n", _("Wiki home")
650 "<li class=\"readallmess\">"
651 "<a href=\"readfwd\">"
652 "<img src=\"static/readallmess3_24x.gif\" "
654 "<span class=\"navbar_link\">"
656 "</span></a></li>\n", _("Read all messages")
662 if (navbar_style
== navbar_default
) {
663 switch(WC
->wc_view
) {
664 case VIEW_ADDRESSBOOK
:
666 "<li class=\"addnewcontact\">"
667 "<a href=\"display_enter\">"
668 "<img src=\"static/addnewcontact_24x.gif\" "
669 "alt=\"\"><span class=\"navbar_link\">"
671 "</span></a></li>\n", _("Add new contact")
676 wprintf("<li class=\"addevent\"><a href=\"display_enter");
677 if (havebstr("year" )) wprintf("?year=%s", bstr("year"));
678 if (havebstr("month")) wprintf("?month=%s", bstr("month"));
679 if (havebstr("day" )) wprintf("?day=%s", bstr("day"));
681 "<img src=\"static/addevent_24x.gif\" "
682 "alt=\"\"><span class=\"navbar_link\">"
684 "</span></a></li>\n", _("Add new event")
689 "<li class=\"newmess\">"
690 "<a href=\"display_enter\">"
691 "<img src=\"static/newmess3_24x.gif\" "
692 "alt=\"\"><span class=\"navbar_link\">"
694 "</span></a></li>\n", _("Add new task")
699 "<li class=\"enternewnote\">"
700 "<a href=\"add_new_note\">"
701 "<img src=\"static/enternewnote_24x.gif\" "
702 "alt=\"\"><span class=\"navbar_link\">"
704 "</span></a></li>\n", _("Add new note")
708 safestrncpy(buf
, bstr("page"), sizeof buf
);
711 "<li class=\"newmess\">"
712 "<a href=\"display_enter?wikipage=%s\">"
713 "<img src=\"static/newmess3_24x.gif\" "
714 "alt=\"\"><span class=\"navbar_link\">"
716 "</span></a></li>\n", buf
, _("Edit this page")
721 "<li class=\"newmess\">"
722 "<a href=\"display_enter\">"
723 "<img src=\"static/newmess3_24x.gif\" "
724 "alt=\"\"><span class=\"navbar_link\">"
726 "</span></a></li>\n", _("Write mail")
731 "<li class=\"newmess\">"
732 "<a href=\"display_enter\">"
733 "<img src=\"static/newmess3_24x.gif\" "
734 "alt=\"\"><span class=\"navbar_link\">"
736 "</span></a></li>\n", _("Enter a message")
742 if (navbar_style
== navbar_default
) wprintf(
743 "<li class=\"skipthisroom\">"
746 "<img src=\"static/skipthisroom_24x.gif\" alt=\"\">"
747 "<span class=\"navbar_link\">%s</span></a>"
749 _("Leave all messages marked as unread, go to next room with unread messages"),
753 if (navbar_style
== navbar_default
) wprintf(
754 "<li class=\"markngo\">"
755 "<a href=\"gotonext\" "
757 "<img src=\"static/markngo_24x.gif\" alt=\"\">"
758 "<span class=\"navbar_link\">%s</span></a>"
760 _("Mark all messages as read, go to next room with unread messages"),
764 wprintf("</ul></div>\n");
771 * back end routine to take the session to a new room
773 long gotoroom(const StrBuf
*gname
)
776 static long ls
= (-1L);
779 /* store ungoto information */
780 strcpy(WC
->ugname
, ChrPtr(WC
->wc_roomname
));
783 /** move to the new room */
784 serv_printf("GOTO %s", ChrPtr(gname
));
785 StrBuf_ServGetln(Buf
);
786 if (GetServerStatus(Buf
, &err
) != 2) {
787 serv_puts("GOTO _BASEROOM_");
788 StrBuf_ServGetln(Buf
);
789 if (GetServerStatus(Buf
, &err
) != 2) {
795 if (WC
->wc_roomname
== NULL
)
796 WC
->wc_roomname
= NewStrBuf();
798 FlushStrBuf(WC
->wc_roomname
);
800 StrBufExtract_token(WC
->wc_roomname
, Buf
, 0, '|');
801 StrBufCutLeft(WC
->wc_roomname
, 4);
802 WC
->room_flags
= StrBufExtract_int(Buf
, 4, '|');
803 /* highest_msg_read = extract_int(&buf[4],6);
804 maxmsgnum = extract_int(&buf[4],5);
806 WC
->is_mailbox
= StrBufExtract_int(Buf
, 7, '|');
807 ls
= StrBufExtract_long(Buf
, 6, '|');
808 WC
->wc_floor
= StrBufExtract_int(Buf
, 10, '|');
809 WC
->wc_view
= StrBufExtract_int(Buf
, 11, '|');
810 WC
->wc_default_view
= StrBufExtract_int(Buf
, 12, '|');
811 WC
->wc_is_trash
= StrBufExtract_int(Buf
, 13, '|');
812 WC
->room_flags2
= StrBufExtract_int(Buf
, 14, '|');
815 WC
->is_room_aide
= WC
->is_aide
;
817 WC
->is_room_aide
= (char) StrBufExtract_int(Buf
, 8, '|');
819 remove_march(WC
->wc_roomname
);
820 if (!strcasecmp(ChrPtr(gname
), "_BASEROOM_"))
829 * \brief Locate the room on the march list which we most want to go to.
831 * is measured given a "weight" of preference based on various factors.
832 * \param desired_floor the room number on the citadel server
833 * \return the roomname
835 char *pop_march(int desired_floor
)
837 static char TheRoom
[128];
839 int TheOrder
= 32767;
842 struct march
*mptr
= NULL
;
844 strcpy(TheRoom
, "_BASEROOM_");
845 if (WC
->march
== NULL
)
848 for (mptr
= WC
->march
; mptr
!= NULL
; mptr
= mptr
->next
) {
850 if ((strcasecmp(mptr
->march_name
, "_BASEROOM_")))
851 weight
= weight
+ 10000;
852 if (mptr
->march_floor
== desired_floor
)
853 weight
= weight
+ 5000;
855 weight
= weight
+ ((128 - (mptr
->march_floor
)) * 128);
856 weight
= weight
+ (128 - (mptr
->march_order
));
858 if (weight
> TheWeight
) {
860 strcpy(TheRoom
, mptr
->march_name
);
861 TheFloor
= mptr
->march_floor
;
862 TheOrder
= mptr
->march_order
;
871 * Goto next room having unread messages.
873 * We want to skip over rooms that the user has already been to, and take the
874 * user back to the lobby when done. The room we end up in is placed in
875 * newroom - which is set to 0 (the lobby) initially.
876 * We start the search in the current room rather than the beginning to prevent
877 * two or more concurrent users from dragging each other back to the same room.
882 struct march
*mptr
= NULL
;
883 struct march
*mptr2
= NULL
;
889 * First check to see if the march-mode list is already allocated.
890 * If it is, pop the first room off the list and go there.
893 if (WC
->march
== NULL
) {
895 serv_getln(buf
, sizeof buf
);
897 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
898 if (IsEmptyStr(buf
)) {
901 if (ELoop
% 100 == 0)
906 extract_token(room_name
, buf
, 0, '|', sizeof room_name
);
907 if (strcasecmp(room_name
, ChrPtr(WC
->wc_roomname
))) {
908 mptr
= (struct march
*) malloc(sizeof(struct march
));
910 safestrncpy(mptr
->march_name
, room_name
, sizeof mptr
->march_name
);
911 mptr
->march_floor
= extract_int(buf
, 2);
912 mptr
->march_order
= extract_int(buf
, 3);
913 if (WC
->march
== NULL
)
922 * add _BASEROOM_ to the end of the march list, so the user will end up
923 * in the system base room (usually the Lobby>) at the end of the loop
925 mptr
= (struct march
*) malloc(sizeof(struct march
));
927 mptr
->march_order
= 0;
928 mptr
->march_floor
= 0;
929 strcpy(mptr
->march_name
, "_BASEROOM_");
930 if (WC
->march
== NULL
) {
934 while (mptr2
->next
!= NULL
)
939 * ...and remove the room we're currently in, so a <G>oto doesn't make us
940 * walk around in circles
942 remove_march(WC
->wc_roomname
);
944 if (WC
->march
!= NULL
) {
945 next_room
= NewStrBufPlain(pop_march(-1), -1);/*TODO: migrate march to strbuf */
947 next_room
= NewStrBufPlain(HKEY("_BASEROOM_"));
951 smart_goto(next_room
);
952 FreeStrBuf(&next_room
);
959 void smart_goto(const StrBuf
*next_room
) {
967 * mark all messages in current room as having been read
969 void slrp_highest(void)
973 serv_puts("SLRP HIGHEST");
974 serv_getln(buf
, sizeof buf
);
979 * un-goto the previous room
985 if (!strcmp(WC
->ugname
, "")) {
986 smart_goto(WC
->wc_roomname
);
989 serv_printf("GOTO %s", WC
->ugname
);
991 StrBuf_ServGetln(Buf
);
992 if (GetServerStatus(Buf
, NULL
) != 2) {
993 smart_goto(WC
->wc_roomname
);
997 if (WC
->uglsn
>= 0L) {
998 serv_printf("SLRP %ld", WC
->uglsn
);
999 StrBuf_ServGetln(Buf
);
1002 StrBufAppendBufPlain(Buf
, WC
->ugname
, -1, 0);
1003 strcpy(WC
->ugname
, "");
1008 typedef struct __room_states
{
1023 * Set/clear/read the "self-service list subscribe" flag for a room
1025 * set newval to 0 to clear, 1 to set, any other value to leave unchanged.
1026 * returns the new value.
1029 int self_service(int newval
) {
1030 int current_value
= 0;
1036 int flags
, floor
, order
, view
, flags2
;
1039 serv_getln(buf
, sizeof buf
);
1040 if (buf
[0] != '2') return(0);
1042 extract_token(name
, &buf
[4], 0, '|', sizeof name
);
1043 extract_token(password
, &buf
[4], 1, '|', sizeof password
);
1044 extract_token(dirname
, &buf
[4], 2, '|', sizeof dirname
);
1045 flags
= extract_int(&buf
[4], 3);
1046 floor
= extract_int(&buf
[4], 4);
1047 order
= extract_int(&buf
[4], 5);
1048 view
= extract_int(&buf
[4], 6);
1049 flags2
= extract_int(&buf
[4], 7);
1051 if (flags2
& QR2_SELFLIST
) {
1059 flags2
= flags2
| QR2_SELFLIST
;
1061 else if (newval
== 0) {
1062 flags2
= flags2
& ~QR2_SELFLIST
;
1065 return(current_value
);
1068 if (newval
!= current_value
) {
1069 serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d",
1070 name
, password
, dirname
, flags
,
1071 floor
, order
, view
, flags2
);
1072 serv_getln(buf
, sizeof buf
);
1079 int is_selflist(room_states
*RoomFlags
)
1081 return ((RoomFlags
->flags2
& QR2_SELFLIST
) != 0);
1084 int is_publiclist(room_states
*RoomFlags
)
1086 return ((RoomFlags
->flags2
& QR2_SMTP_PUBLIC
) != 0);
1089 int is_moderatedlist(room_states
*RoomFlags
)
1091 return ((RoomFlags
->flags2
& QR2_MODERATED
) != 0);
1095 * Set/clear/read the "self-service list subscribe" flag for a room
1097 * set newval to 0 to clear, 1 to set, any other value to leave unchanged.
1098 * returns the new value.
1101 int get_roomflags(room_states
*RoomOps
)
1106 serv_getln(buf
, sizeof buf
);
1107 if (buf
[0] != '2') return(0);
1109 extract_token(RoomOps
->name
, &buf
[4], 0, '|', sizeof RoomOps
->name
);
1110 extract_token(RoomOps
->password
, &buf
[4], 1, '|', sizeof RoomOps
->password
);
1111 extract_token(RoomOps
->dirname
, &buf
[4], 2, '|', sizeof RoomOps
->dirname
);
1112 RoomOps
->flags
= extract_int(&buf
[4], 3);
1113 RoomOps
->floor
= extract_int(&buf
[4], 4);
1114 RoomOps
->order
= extract_int(&buf
[4], 5);
1115 RoomOps
->view
= extract_int(&buf
[4], 6);
1116 RoomOps
->flags2
= extract_int(&buf
[4], 7);
1120 int set_roomflags(room_states
*RoomOps
)
1124 serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d",
1133 serv_getln(buf
, sizeof buf
);
1143 * display the form for editing a room
1145 void display_editroom(void)
1150 char remote_room
[128];
1153 char er_password
[10];
1154 char er_dirname
[15];
1155 char er_roomaide
[26];
1162 char *not_shared_with
;
1165 int floorpolicy
= 0;
1167 char pop3_host
[128];
1172 if (IsEmptyStr(tab
)) tab
= "admin";
1175 output_headers(1, 1, 1, 0, 0, 0);
1177 wprintf("<div class=\"fix_scrollbar_bug\">");
1179 wprintf("<br />\n");
1181 /* print the tabbed dialog */
1182 wprintf("<div align=\"center\">");
1183 wprintf("<table id=\"AdminTabs\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\""
1184 "<tr align=\"center\" style=\"cursor:pointer\"><td> </td>"
1187 wprintf("<td class=\"");
1188 if (!strcmp(tab
, "admin")) {
1189 wprintf(" tab_cell_label\">");
1190 wprintf(_("Administration"));
1193 wprintf("< tab_cell_edit\"><a href=\"display_editroom&tab=admin\">");
1194 wprintf(_("Administration"));
1198 wprintf("<td> </td>\n");
1200 if ( (WC
->axlevel
>= 6) || (WC
->is_room_aide
) ) {
1202 wprintf("<td class=\"");
1203 if (!strcmp(tab
, "config")) {
1204 wprintf(" tab_cell_label\">");
1205 wprintf(_("Configuration"));
1208 wprintf(" tab_cell_edit\"><a href=\"display_editroom&tab=config\">");
1209 wprintf(_("Configuration"));
1213 wprintf("<td> </td>\n");
1215 wprintf("<td class=\"");
1216 if (!strcmp(tab
, "expire")) {
1217 wprintf(" tab_cell_label\">");
1218 wprintf(_("Message expire policy"));
1221 wprintf(" tab_cell_edit\"><a href=\"display_editroom&tab=expire\">");
1222 wprintf(_("Message expire policy"));
1226 wprintf("<td> </td>\n");
1228 wprintf("<td class=\"");
1229 if (!strcmp(tab
, "access")) {
1230 wprintf(" tab_cell_label\">");
1231 wprintf(_("Access controls"));
1234 wprintf(" tab_cell_edit\"><a href=\"display_editroom&tab=access\">");
1235 wprintf(_("Access controls"));
1239 wprintf("<td> </td>\n");
1241 wprintf("<td class=\"");
1242 if (!strcmp(tab
, "sharing")) {
1243 wprintf(" tab_cell_label\">");
1244 wprintf(_("Sharing"));
1247 wprintf(" tab_cell_edit\"><a href=\"display_editroom&tab=sharing\">");
1248 wprintf(_("Sharing"));
1252 wprintf("<td> </td>\n");
1254 wprintf("<td class=\"");
1255 if (!strcmp(tab
, "listserv")) {
1256 wprintf(" tab_cell_label\">");
1257 wprintf(_("Mailing list service"));
1260 wprintf("< tab_cell_edit\"><a href=\"display_editroom&tab=listserv\">");
1261 wprintf(_("Mailing list service"));
1265 wprintf("<td> </td>\n");
1269 wprintf("<td class=\"");
1270 if (!strcmp(tab
, "feeds")) {
1271 wprintf(" tab_cell_label\">");
1272 wprintf(_("Remote retrieval"));
1275 wprintf("< tab_cell_edit\"><a href=\"display_editroom&tab=feeds\">");
1276 wprintf(_("Remote retrieval"));
1280 wprintf("<td> </td>\n");
1282 wprintf("</tr></table>\n");
1283 wprintf("</div>\n");
1284 /* end tabbed dialog */
1286 wprintf("<script type=\"text/javascript\">"
1287 " Nifty(\"table#AdminTabs td\", \"small transparent top\");"
1291 /* begin content of whatever tab is open now */
1293 if (!strcmp(tab
, "admin")) {
1294 wprintf("<div class=\"tabcontent\">");
1296 "<li><a href=\"delete_room\" "
1297 "onClick=\"return confirm('");
1298 wprintf(_("Are you sure you want to delete this room?"));
1299 wprintf("');\">\n");
1300 wprintf(_("Delete this room"));
1302 "<li><a href=\"display_editroompic\">\n");
1303 wprintf(_("Set or change the icon for this room's banner"));
1305 "<li><a href=\"display_editinfo\">\n");
1306 wprintf(_("Edit this room's Info file"));
1312 if (!strcmp(tab
, "config")) {
1313 wprintf("<div class=\"tabcontent\">");
1315 serv_getln(buf
, sizeof buf
);
1317 if (!strncmp(buf
, "550", 3)) {
1318 wprintf("<br><br><div align=center>%s</div><br><br>\n",
1319 _("Higher access is required to access this function.")
1322 else if (buf
[0] != '2') {
1323 wprintf("<br><br><div align=center>%s</div><br><br>\n", &buf
[4]);
1326 extract_token(er_name
, &buf
[4], 0, '|', sizeof er_name
);
1327 extract_token(er_password
, &buf
[4], 1, '|', sizeof er_password
);
1328 extract_token(er_dirname
, &buf
[4], 2, '|', sizeof er_dirname
);
1329 er_flags
= extract_int(&buf
[4], 3);
1330 er_floor
= extract_int(&buf
[4], 4);
1331 er_flags2
= extract_int(&buf
[4], 7);
1333 wprintf("<form method=\"POST\" action=\"editroom\">\n");
1334 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1336 wprintf("<ul><li>");
1337 wprintf(_("Name of room: "));
1338 wprintf("<input type=\"text\" NAME=\"er_name\" VALUE=\"%s\" MAXLENGTH=\"%d\">\n",
1344 wprintf(_("Resides on floor: "));
1345 wprintf("<select NAME=\"er_floor\" SIZE=\"1\"");
1346 if (er_flags
& QR_MAILBOX
)
1347 wprintf("disabled >\n");
1348 for (i
= 0; i
< 128; ++i
)
1349 if (!IsEmptyStr(floorlist
[i
])) {
1350 wprintf("<OPTION ");
1352 wprintf("SELECTED ");
1353 wprintf("VALUE=\"%d\">", i
);
1354 escputs(floorlist
[i
]);
1355 wprintf("</OPTION>\n");
1357 wprintf("</select>\n");
1360 wprintf(_("Type of room:"));
1363 wprintf("<li><input type=\"radio\" NAME=\"type\" VALUE=\"public\" ");
1364 if ((er_flags
& (QR_PRIVATE
+ QR_MAILBOX
)) == 0)
1365 wprintf("CHECKED ");
1366 wprintf("OnChange=\""
1367 " if (this.form.type[0].checked == true) { "
1368 " this.form.er_floor.disabled = false; "
1371 wprintf(_("Public (automatically appears to everyone)"));
1374 wprintf("<li><input type=\"radio\" NAME=\"type\" VALUE=\"hidden\" ");
1375 if ((er_flags
& QR_PRIVATE
) &&
1376 (er_flags
& QR_GUESSNAME
))
1377 wprintf("CHECKED ");
1378 wprintf(" OnChange=\""
1379 " if (this.form.type[1].checked == true) { "
1380 " this.form.er_floor.disabled = false; "
1383 wprintf(_("Private - hidden (accessible to anyone who knows its name)"));
1385 wprintf("\n<li><input type=\"radio\" NAME=\"type\" VALUE=\"passworded\" ");
1386 if ((er_flags
& QR_PRIVATE
) &&
1387 (er_flags
& QR_PASSWORDED
))
1388 wprintf("CHECKED ");
1389 wprintf(" OnChange=\""
1390 " if (this.form.type[2].checked == true) { "
1391 " this.form.er_floor.disabled = false; "
1394 wprintf(_("Private - require password: "));
1395 wprintf("\n<input type=\"text\" NAME=\"er_password\" VALUE=\"%s\" MAXLENGTH=\"9\">\n",
1398 wprintf("<li><input type=\"radio\" NAME=\"type\" VALUE=\"invonly\" ");
1399 if ((er_flags
& QR_PRIVATE
)
1400 && ((er_flags
& QR_GUESSNAME
) == 0)
1401 && ((er_flags
& QR_PASSWORDED
) == 0))
1402 wprintf("CHECKED ");
1403 wprintf(" OnChange=\""
1404 " if (this.form.type[3].checked == true) { "
1405 " this.form.er_floor.disabled = false; "
1408 wprintf(_("Private - invitation only"));
1410 wprintf("\n<li><input type=\"radio\" NAME=\"type\" VALUE=\"personal\" ");
1411 if (er_flags
& QR_MAILBOX
)
1412 wprintf("CHECKED ");
1413 wprintf (" OnChange=\""
1414 " if (this.form.type[4].checked == true) { "
1415 " this.form.er_floor.disabled = true; "
1418 wprintf(_("Personal (mailbox for you only)"));
1420 wprintf("\n<li><input type=\"checkbox\" NAME=\"bump\" VALUE=\"yes\" ");
1422 wprintf(_("If private, cause current users to forget room"));
1424 wprintf("\n</ul>\n");
1426 wprintf("<li><input type=\"checkbox\" NAME=\"prefonly\" VALUE=\"yes\" ");
1427 if (er_flags
& QR_PREFONLY
)
1428 wprintf("CHECKED ");
1430 wprintf(_("Preferred users only"));
1432 wprintf("\n<li><input type=\"checkbox\" NAME=\"readonly\" VALUE=\"yes\" ");
1433 if (er_flags
& QR_READONLY
)
1434 wprintf("CHECKED ");
1436 wprintf(_("Read-only room"));
1438 wprintf("\n<li><input type=\"checkbox\" NAME=\"collabdel\" VALUE=\"yes\" ");
1439 if (er_flags2
& QR2_COLLABDEL
)
1440 wprintf("CHECKED ");
1442 wprintf(_("All users allowed to post may also delete messages"));
1444 /** directory stuff */
1445 wprintf("\n<li><input type=\"checkbox\" NAME=\"directory\" VALUE=\"yes\" ");
1446 if (er_flags
& QR_DIRECTORY
)
1447 wprintf("CHECKED ");
1449 wprintf(_("File directory room"));
1451 wprintf("\n<ul><li>");
1452 wprintf(_("Directory name: "));
1453 wprintf("<input type=\"text\" NAME=\"er_dirname\" VALUE=\"%s\" MAXLENGTH=\"14\">\n",
1456 wprintf("<li><input type=\"checkbox\" NAME=\"ulallowed\" VALUE=\"yes\" ");
1457 if (er_flags
& QR_UPLOAD
)
1458 wprintf("CHECKED ");
1460 wprintf(_("Uploading allowed"));
1462 wprintf("\n<li><input type=\"checkbox\" NAME=\"dlallowed\" VALUE=\"yes\" ");
1463 if (er_flags
& QR_DOWNLOAD
)
1464 wprintf("CHECKED ");
1466 wprintf(_("Downloading allowed"));
1468 wprintf("\n<li><input type=\"checkbox\" NAME=\"visdir\" VALUE=\"yes\" ");
1469 if (er_flags
& QR_VISDIR
)
1470 wprintf("CHECKED ");
1472 wprintf(_("Visible directory"));
1475 /** end of directory stuff */
1477 wprintf("<li><input type=\"checkbox\" NAME=\"network\" VALUE=\"yes\" ");
1478 if (er_flags
& QR_NETWORK
)
1479 wprintf("CHECKED ");
1481 wprintf(_("Network shared room"));
1483 wprintf("\n<li><input type=\"checkbox\" NAME=\"permanent\" VALUE=\"yes\" ");
1484 if (er_flags
& QR_PERMANENT
)
1485 wprintf("CHECKED ");
1487 wprintf(_("Permanent (does not auto-purge)"));
1489 wprintf("\n<li><input type=\"checkbox\" NAME=\"subjectreq\" VALUE=\"yes\" ");
1490 if (er_flags2
& QR2_SUBJECTREQ
)
1491 wprintf("CHECKED ");
1493 wprintf(_("Subject Required (Force users to specify a message subject)"));
1495 /** start of anon options */
1498 wprintf(_("Anonymous messages"));
1501 wprintf("<li><input type=\"radio\" NAME=\"anon\" VALUE=\"no\" ");
1502 if (((er_flags
& QR_ANONONLY
) == 0)
1503 && ((er_flags
& QR_ANONOPT
) == 0))
1504 wprintf("CHECKED ");
1506 wprintf(_("No anonymous messages"));
1508 wprintf("\n<li><input type=\"radio\" NAME=\"anon\" VALUE=\"anononly\" ");
1509 if (er_flags
& QR_ANONONLY
)
1510 wprintf("CHECKED ");
1512 wprintf(_("All messages are anonymous"));
1514 wprintf("\n<li><input type=\"radio\" NAME=\"anon\" VALUE=\"anon2\" ");
1515 if (er_flags
& QR_ANONOPT
)
1516 wprintf("CHECKED ");
1518 wprintf(_("Prompt user when entering messages"));
1521 /* end of anon options */
1524 wprintf(_("Room aide: "));
1526 serv_getln(buf
, sizeof buf
);
1527 if (buf
[0] != '2') {
1528 wprintf("<em>%s</em>\n", &buf
[4]);
1530 extract_token(er_roomaide
, &buf
[4], 0, '|', sizeof er_roomaide
);
1531 wprintf("<input type=\"text\" NAME=\"er_roomaide\" VALUE=\"%s\" MAXLENGTH=\"25\">\n", er_roomaide
);
1534 wprintf("</ul><CENTER>\n");
1535 wprintf("<input type=\"hidden\" NAME=\"tab\" VALUE=\"config\">\n"
1536 "<input type=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">"
1538 "<input type=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">"
1548 /* Sharing the room with other Citadel nodes... */
1549 if (!strcmp(tab
, "sharing")) {
1550 wprintf("<div class=\"tabcontent\">");
1552 shared_with
= strdup("");
1553 not_shared_with
= strdup("");
1555 /** Learn the current configuration */
1556 serv_puts("CONF getsys|application/x-citadel-ignet-config");
1557 serv_getln(buf
, sizeof buf
);
1558 if (buf
[0]=='1') while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
1559 extract_token(node
, buf
, 0, '|', sizeof node
);
1560 not_shared_with
= realloc(not_shared_with
,
1561 strlen(not_shared_with
) + 32);
1562 strcat(not_shared_with
, node
);
1563 strcat(not_shared_with
, "\n");
1567 serv_getln(buf
, sizeof buf
);
1568 if (buf
[0]=='1') while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
1569 extract_token(cmd
, buf
, 0, '|', sizeof cmd
);
1570 extract_token(node
, buf
, 1, '|', sizeof node
);
1571 extract_token(remote_room
, buf
, 2, '|', sizeof remote_room
);
1572 if (!strcasecmp(cmd
, "ignet_push_share")) {
1573 shared_with
= realloc(shared_with
,
1574 strlen(shared_with
) + 32);
1575 strcat(shared_with
, node
);
1576 if (!IsEmptyStr(remote_room
)) {
1577 strcat(shared_with
, "|");
1578 strcat(shared_with
, remote_room
);
1580 strcat(shared_with
, "\n");
1584 for (i
=0; i
<num_tokens(shared_with
, '\n'); ++i
) {
1585 extract_token(buf
, shared_with
, i
, '\n', sizeof buf
);
1586 extract_token(node
, buf
, 0, '|', sizeof node
);
1587 for (j
=0; j
<num_tokens(not_shared_with
, '\n'); ++j
) {
1588 extract_token(cmd
, not_shared_with
, j
, '\n', sizeof cmd
);
1589 if (!strcasecmp(node
, cmd
)) {
1590 remove_token(not_shared_with
, j
, '\n');
1595 /* Display the stuff */
1596 wprintf("<CENTER><br />"
1597 "<table border=1 cellpadding=5><tr>"
1599 wprintf(_("Shared with"));
1600 wprintf("</I></B></td>"
1602 wprintf(_("Not shared with"));
1603 wprintf("</I></B></td></tr>\n"
1604 "<tr><td VALIGN=TOP>\n");
1606 wprintf("<table border=0 cellpadding=5><tr class=\"tab_cell\"><td>");
1607 wprintf(_("Remote node name"));
1608 wprintf("</td><td>");
1609 wprintf(_("Remote room name"));
1610 wprintf("</td><td>");
1611 wprintf(_("Actions"));
1612 wprintf("</td></tr>\n");
1614 for (i
=0; i
<num_tokens(shared_with
, '\n'); ++i
) {
1615 extract_token(buf
, shared_with
, i
, '\n', sizeof buf
);
1616 extract_token(node
, buf
, 0, '|', sizeof node
);
1617 extract_token(remote_room
, buf
, 1, '|', sizeof remote_room
);
1618 if (!IsEmptyStr(node
)) {
1619 wprintf("<form method=\"POST\" action=\"netedit\">");
1620 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1621 wprintf("<tr><td>%s</td>\n", node
);
1624 if (!IsEmptyStr(remote_room
)) {
1625 escputs(remote_room
);
1631 wprintf("<input type=\"hidden\" NAME=\"line\" "
1632 "VALUE=\"ignet_push_share|");
1634 if (!IsEmptyStr(remote_room
)) {
1636 urlescputs(remote_room
);
1639 wprintf("<input type=\"hidden\" NAME=\"tab\" VALUE=\"sharing\">\n");
1640 wprintf("<input type=\"hidden\" NAME=\"cmd\" VALUE=\"remove\">\n");
1641 wprintf("<input type=\"submit\" "
1642 "NAME=\"unshare_button\" VALUE=\"%s\">", _("Unshare"));
1643 wprintf("</td></tr></form>\n");
1647 wprintf("</table>\n");
1648 wprintf("</td><td VALIGN=TOP>\n");
1649 wprintf("<table border=0 cellpadding=5><tr class=\"tab_cell\"><td>");
1650 wprintf(_("Remote node name"));
1651 wprintf("</td><td>");
1652 wprintf(_("Remote room name"));
1653 wprintf("</td><td>");
1654 wprintf(_("Actions"));
1655 wprintf("</td></tr>\n");
1657 for (i
=0; i
<num_tokens(not_shared_with
, '\n'); ++i
) {
1658 extract_token(node
, not_shared_with
, i
, '\n', sizeof node
);
1659 if (!IsEmptyStr(node
)) {
1660 wprintf("<form method=\"POST\" action=\"netedit\">");
1661 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1662 wprintf("<tr><td>");
1665 "<input type=\"INPUT\" "
1669 wprintf("<input type=\"hidden\" "
1671 "VALUE=\"ignet_push_share|");
1674 wprintf("<input type=\"hidden\" NAME=\"tab\" "
1675 "VALUE=\"sharing\">\n");
1676 wprintf("<input type=\"hidden\" NAME=\"cmd\" "
1677 "VALUE=\"add\">\n");
1678 wprintf("<input type=\"submit\" "
1679 "NAME=\"add_button\" VALUE=\"%s\">", _("Share"));
1680 wprintf("</td></tr></form>\n");
1684 wprintf("</table>\n");
1685 wprintf("</td></tr>"
1686 "</table></CENTER><br />\n"
1687 "<I><B>%s</B><ul><li>", _("Notes:"));
1688 wprintf(_("When sharing a room, "
1689 "it must be shared from both ends. Adding a node to "
1690 "the 'shared' list sends messages out, but in order to"
1691 " receive messages, the other nodes must be configured"
1692 " to send messages out to your system as well. "
1693 "<li>If the remote room name is blank, it is assumed "
1694 "that the room name is identical on the remote node."
1695 "<li>If the remote room name is different, the remote "
1696 "node must also configure the name of the room here."
1703 /* Mailing list management */
1704 if (!strcmp(tab
, "listserv")) {
1705 room_states RoomFlags
;
1706 wprintf("<div class=\"tabcontent\">");
1708 wprintf("<br /><center>"
1709 "<table BORDER=0 WIDTH=100%% CELLPADDING=5>"
1710 "<tr><td VALIGN=TOP>");
1712 wprintf(_("<i>The contents of this room are being "
1713 "mailed <b>as individual messages</b> "
1714 "to the following list recipients:"
1715 "</i><br /><br />\n"));
1718 serv_getln(buf
, sizeof buf
);
1719 if (buf
[0]=='1') while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
1720 extract_token(cmd
, buf
, 0, '|', sizeof cmd
);
1721 if (!strcasecmp(cmd
, "listrecp")) {
1722 extract_token(recp
, buf
, 1, '|', sizeof recp
);
1725 wprintf(" <a href=\"netedit&cmd=remove&tab=listserv&line=listrecp|");
1728 wprintf(_("(remove)"));
1729 wprintf("</A><br />");
1732 wprintf("<br /><form method=\"POST\" action=\"netedit\">\n"
1733 "<input type=\"hidden\" NAME=\"tab\" VALUE=\"listserv\">\n"
1734 "<input type=\"hidden\" NAME=\"prefix\" VALUE=\"listrecp|\">\n");
1735 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1736 wprintf("<input type=\"text\" id=\"add_as_listrecp\" NAME=\"line\">\n");
1737 wprintf("<input type=\"submit\" NAME=\"add_button\" VALUE=\"%s\">", _("Add"));
1738 wprintf("</form>\n");
1740 wprintf("</td><td VALIGN=TOP>\n");
1742 wprintf(_("<i>The contents of this room are being "
1743 "mailed <b>in digest form</b> "
1744 "to the following list recipients:"
1745 "</i><br /><br />\n"));
1748 serv_getln(buf
, sizeof buf
);
1749 if (buf
[0]=='1') while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
1750 extract_token(cmd
, buf
, 0, '|', sizeof cmd
);
1751 if (!strcasecmp(cmd
, "digestrecp")) {
1752 extract_token(recp
, buf
, 1, '|', sizeof recp
);
1755 wprintf(" <a href=\"netedit&cmd=remove&tab=listserv&line="
1759 wprintf(_("(remove)"));
1760 wprintf("</A><br />");
1763 wprintf("<br /><form method=\"POST\" action=\"netedit\">\n"
1764 "<input type=\"hidden\" NAME=\"tab\" VALUE=\"listserv\">\n"
1765 "<input type=\"hidden\" NAME=\"prefix\" VALUE=\"digestrecp|\">\n");
1766 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1767 wprintf("<input type=\"text\" id=\"add_as_digestrecp\" NAME=\"line\">\n");
1768 wprintf("<input type=\"submit\" NAME=\"add_button\" VALUE=\"%s\">", _("Add"));
1769 wprintf("</form>\n");
1771 wprintf("</td></tr></table>\n");
1773 /** Pop open an address book -- begin **/
1774 wprintf("<div align=right>"
1775 "<a href=\"javascript:PopOpenAddressBook('add_as_listrecp|%s|add_as_digestrecp|%s');\" "
1777 "<img align=middle border=0 width=24 height=24 src=\"static/viewcontacts_24x.gif\">"
1782 _("Add recipients from Contacts or other address books"),
1783 _("Add recipients from Contacts or other address books")
1785 /* Pop open an address book -- end **/
1787 wprintf("<br />\n<form method=\"GET\" action=\"toggle_self_service\">\n");
1789 get_roomflags (&RoomFlags
);
1791 /* Self Service subscription? */
1792 wprintf("<table><tr><td>\n");
1793 wprintf(_("Allow self-service subscribe/unsubscribe requests."));
1794 wprintf("</td><td><input type=\"checkbox\" name=\"QR2_SelfList\" value=\"yes\" %s></td></tr>\n"
1795 " <tr><td colspan=\"2\">\n",
1796 (is_selflist(&RoomFlags
))?"checked":"");
1797 wprintf(_("The URL for subscribe/unsubscribe is: "));
1798 wprintf("<TT>%s://%s/listsub</TT></td></tr>\n",
1799 (is_https
? "https" : "http"),
1800 ChrPtr(WC
->http_host
));
1801 /* Public posting? */
1802 wprintf("<tr><td>");
1803 wprintf(_("Allow non-subscribers to mail to this room."));
1804 wprintf("</td><td><input type=\"checkbox\" name=\"QR2_SubsOnly\" value=\"yes\" %s></td></tr>\n",
1805 (is_publiclist(&RoomFlags
))?"checked":"");
1807 /* Moderated List? */
1808 wprintf("<tr><td>");
1809 wprintf(_("Room post publication needs Aide permission."));
1810 wprintf("</td><td><input type=\"checkbox\" name=\"QR2_Moderated\" value=\"yes\" %s></td></tr>\n",
1811 (is_moderatedlist(&RoomFlags
))?"checked":"");
1814 wprintf("<tr><td colspan=\"2\" align=\"center\">"
1815 "<input type=\"submit\" NAME=\"add_button\" VALUE=\"%s\"></td></tr>", _("Save changes"));
1816 wprintf("</table></form>");
1819 wprintf("</CENTER>\n");
1824 /* Configuration of The Dreaded Auto-Purger */
1825 if (!strcmp(tab
, "expire")) {
1826 wprintf("<div class=\"tabcontent\">");
1828 serv_puts("GPEX room");
1829 serv_getln(buf
, sizeof buf
);
1830 if (!strncmp(buf
, "550", 3)) {
1831 wprintf("<br><br><div align=center>%s</div><br><br>\n",
1832 _("Higher access is required to access this function.")
1835 else if (buf
[0] != '2') {
1836 wprintf("<br><br><div align=center>%s</div><br><br>\n", &buf
[4]);
1839 roompolicy
= extract_int(&buf
[4], 0);
1840 roomvalue
= extract_int(&buf
[4], 1);
1842 serv_puts("GPEX floor");
1843 serv_getln(buf
, sizeof buf
);
1844 if (buf
[0] == '2') {
1845 floorpolicy
= extract_int(&buf
[4], 0);
1846 floorvalue
= extract_int(&buf
[4], 1);
1849 wprintf("<br /><form method=\"POST\" action=\"set_room_policy\">\n");
1850 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1851 wprintf("<table border=0 cellspacing=5>\n");
1852 wprintf("<tr><td>");
1853 wprintf(_("Message expire policy for this room"));
1855 escputs(ChrPtr(WC
->wc_roomname
));
1856 wprintf(")</td><td>");
1857 wprintf("<input type=\"radio\" NAME=\"roompolicy\" VALUE=\"0\" %s>",
1858 ((roompolicy
== 0) ? "CHECKED" : "") );
1859 wprintf(_("Use the default policy for this floor"));
1860 wprintf("<br />\n");
1861 wprintf("<input type=\"radio\" NAME=\"roompolicy\" VALUE=\"1\" %s>",
1862 ((roompolicy
== 1) ? "CHECKED" : "") );
1863 wprintf(_("Never automatically expire messages"));
1864 wprintf("<br />\n");
1865 wprintf("<input type=\"radio\" NAME=\"roompolicy\" VALUE=\"2\" %s>",
1866 ((roompolicy
== 2) ? "CHECKED" : "") );
1867 wprintf(_("Expire by message count"));
1868 wprintf("<br />\n");
1869 wprintf("<input type=\"radio\" NAME=\"roompolicy\" VALUE=\"3\" %s>",
1870 ((roompolicy
== 3) ? "CHECKED" : "") );
1871 wprintf(_("Expire by message age"));
1873 wprintf(_("Number of messages or days: "));
1874 wprintf("<input type=\"text\" NAME=\"roomvalue\" MAXLENGTH=\"5\" VALUE=\"%d\">", roomvalue
);
1875 wprintf("</td></tr>\n");
1877 if (WC
->axlevel
>= 6) {
1878 wprintf("<tr><td COLSPAN=2><hr /></td></tr>\n");
1879 wprintf("<tr><td>");
1880 wprintf(_("Message expire policy for this floor"));
1882 escputs(floorlist
[WC
->wc_floor
]);
1883 wprintf(")</td><td>");
1884 wprintf("<input type=\"radio\" NAME=\"floorpolicy\" VALUE=\"0\" %s>",
1885 ((floorpolicy
== 0) ? "CHECKED" : "") );
1886 wprintf(_("Use the system default"));
1887 wprintf("<br />\n");
1888 wprintf("<input type=\"radio\" NAME=\"floorpolicy\" VALUE=\"1\" %s>",
1889 ((floorpolicy
== 1) ? "CHECKED" : "") );
1890 wprintf(_("Never automatically expire messages"));
1891 wprintf("<br />\n");
1892 wprintf("<input type=\"radio\" NAME=\"floorpolicy\" VALUE=\"2\" %s>",
1893 ((floorpolicy
== 2) ? "CHECKED" : "") );
1894 wprintf(_("Expire by message count"));
1895 wprintf("<br />\n");
1896 wprintf("<input type=\"radio\" NAME=\"floorpolicy\" VALUE=\"3\" %s>",
1897 ((floorpolicy
== 3) ? "CHECKED" : "") );
1898 wprintf(_("Expire by message age"));
1900 wprintf(_("Number of messages or days: "));
1901 wprintf("<input type=\"text\" NAME=\"floorvalue\" MAXLENGTH=\"5\" VALUE=\"%d\">",
1905 wprintf("<CENTER>\n");
1906 wprintf("<tr><td COLSPAN=2><hr /><CENTER>\n");
1907 wprintf("<input type=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">", _("Save changes"));
1909 wprintf("<input type=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">", _("Cancel"));
1910 wprintf("</CENTER></td><tr>\n");
1912 wprintf("</table>\n"
1913 "<input type=\"hidden\" NAME=\"tab\" VALUE=\"expire\">\n"
1921 /* Access controls */
1922 if (!strcmp(tab
, "access")) {
1923 wprintf("<div class=\"tabcontent\">");
1928 /* Fetch messages from remote locations */
1929 if (!strcmp(tab
, "feeds")) {
1930 wprintf("<div class=\"tabcontent\">");
1933 wprintf(_("Retrieve messages from these remote POP3 accounts and store them in this room:"));
1934 wprintf("</i><br />\n");
1936 wprintf("<table class=\"altern\" border=0 cellpadding=5>"
1937 "<tr class=\"even\"><th>");
1938 wprintf(_("Remote host"));
1939 wprintf("</th><th>");
1940 wprintf(_("User name"));
1941 wprintf("</th><th>");
1942 wprintf(_("Password"));
1943 wprintf("</th><th>");
1944 wprintf(_("Keep messages on server?"));
1945 wprintf("</th><th>");
1946 wprintf(_("Interval"));
1947 wprintf("</th><th> </th></tr>");
1950 serv_getln(buf
, sizeof buf
);
1952 if (buf
[0]=='1') while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
1953 extract_token(cmd
, buf
, 0, '|', sizeof cmd
);
1954 if (!strcasecmp(cmd
, "pop3client")) {
1955 safestrncpy(recp
, &buf
[11], sizeof recp
);
1958 wprintf("<tr class=\"%s\">",
1959 (bg
? "even" : "odd")
1963 extract_token(pop3_host
, buf
, 1, '|', sizeof pop3_host
);
1968 extract_token(pop3_user
, buf
, 2, '|', sizeof pop3_user
);
1972 wprintf("<td>*****</td>"); /* Don't show the password */
1974 wprintf("<td>%s</td>", extract_int(buf
, 4) ? _("Yes") : _("No"));
1976 wprintf("<td>%ld</td>", extract_long(buf
, 5)); /* Fetching interval */
1978 wprintf("<td class=\"button_link\">");
1979 wprintf(" <a href=\"netedit&cmd=remove&tab=feeds&line=pop3client|");
1982 wprintf(_("(remove)"));
1983 wprintf("</a></td>");
1989 wprintf("<form method=\"POST\" action=\"netedit\">\n"
1991 "<input type=\"hidden\" name=\"tab\" value=\"feeds\">"
1992 "<input type=\"hidden\" name=\"prefix\" value=\"pop3client|\">\n");
1993 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
1995 wprintf("<input type=\"text\" id=\"add_as_pop3host\" NAME=\"line_pop3host\">\n");
1998 wprintf("<input type=\"text\" id=\"add_as_pop3user\" NAME=\"line_pop3user\">\n");
2001 wprintf("<input type=\"password\" id=\"add_as_pop3pass\" NAME=\"line_pop3pass\">\n");
2004 wprintf("<input type=\"checkbox\" id=\"add_as_pop3keep\" NAME=\"line_pop3keep\" VALUE=\"1\">");
2007 wprintf("<input type=\"text\" id=\"add_as_pop3int\" NAME=\"line_pop3int\" MAXLENGTH=\"5\">");
2010 wprintf("<input type=\"submit\" NAME=\"add_button\" VALUE=\"%s\">", _("Add"));
2011 wprintf("</td></tr>");
2012 wprintf("</form></table>\n");
2017 wprintf(_("Fetch the following RSS feeds and store them in this room:"));
2018 wprintf("</i><br />\n");
2020 wprintf("<table class=\"altern\" border=0 cellpadding=5>"
2021 "<tr class=\"even\"><th>");
2022 wprintf("<img src=\"static/rss_16x.png\" width=\"16\" height=\"16\" alt=\" \"> ");
2023 wprintf(_("Feed URL"));
2024 wprintf("</th><th>");
2025 wprintf("</th></tr>");
2028 serv_getln(buf
, sizeof buf
);
2030 if (buf
[0]=='1') while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
2031 extract_token(cmd
, buf
, 0, '|', sizeof cmd
);
2032 if (!strcasecmp(cmd
, "rssclient")) {
2033 safestrncpy(recp
, &buf
[10], sizeof recp
);
2036 wprintf("<tr class=\"%s\">",
2037 (bg
? "even" : "odd")
2041 extract_token(pop3_host
, buf
, 1, '|', sizeof pop3_host
);
2045 wprintf("<td class=\"button_link\">");
2046 wprintf(" <a href=\"netedit&cmd=remove&tab=feeds&line=rssclient|");
2049 wprintf(_("(remove)"));
2050 wprintf("</a></td>");
2056 wprintf("<form method=\"POST\" action=\"netedit\">\n"
2058 "<input type=\"hidden\" name=\"tab\" value=\"feeds\">"
2059 "<input type=\"hidden\" name=\"prefix\" value=\"rssclient|\">\n");
2060 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
2062 wprintf("<input type=\"text\" id=\"add_as_pop3host\" size=\"72\" "
2063 "maxlength=\"256\" name=\"line_pop3host\">\n");
2066 wprintf("<input type=\"submit\" name=\"add_button\" value=\"%s\">", _("Add"));
2067 wprintf("</td></tr>");
2068 wprintf("</form></table>\n");
2074 /* end content of whatever tab is open now */
2075 wprintf("</div>\n");
2077 address_book_popup();
2083 * Toggle self-service list subscription
2085 void toggle_self_service(void) {
2086 room_states RoomFlags
;
2088 get_roomflags (&RoomFlags
);
2090 if (yesbstr("QR2_SelfList"))
2091 RoomFlags
.flags2
= RoomFlags
.flags2
| QR2_SELFLIST
;
2093 RoomFlags
.flags2
= RoomFlags
.flags2
& ~QR2_SELFLIST
;
2095 if (yesbstr("QR2_SMTP_PUBLIC"))
2096 RoomFlags
.flags2
= RoomFlags
.flags2
| QR2_SMTP_PUBLIC
;
2098 RoomFlags
.flags2
= RoomFlags
.flags2
& ~QR2_SMTP_PUBLIC
;
2100 if (yesbstr("QR2_Moderated"))
2101 RoomFlags
.flags2
= RoomFlags
.flags2
| QR2_MODERATED
;
2103 RoomFlags
.flags2
= RoomFlags
.flags2
& ~QR2_MODERATED
;
2104 if (yesbstr("QR2_SubsOnly"))
2105 RoomFlags
.flags2
= RoomFlags
.flags2
| QR2_SMTP_PUBLIC
;
2107 RoomFlags
.flags2
= RoomFlags
.flags2
& ~QR2_SMTP_PUBLIC
;
2109 set_roomflags (&RoomFlags
);
2117 * save new parameters for a room
2124 StrBuf
*er_password
;
2126 StrBuf
*er_roomaide
;
2129 int er_listingorder
;
2135 if (!havebstr("ok_button")) {
2136 strcpy(WC
->ImportantMessage
,
2137 _("Cancelled. Changes were not saved."));
2143 StrBuf_ServGetln(Buf
);
2144 if (GetServerStatus(Buf
, NULL
) != 2) {
2145 StrBufCutLeft(Buf
, 4);
2146 strcpy(WC
->ImportantMessage
, ChrPtr(Buf
));
2152 er_name
= NewStrBuf();
2153 er_password
= NewStrBuf();
2154 er_dirname
= NewStrBuf();
2155 er_roomaide
= NewStrBuf();
2157 StrBufCutLeft(Buf
, 4);
2158 StrBufExtract_token(er_name
, Buf
, 0, '|');
2159 StrBufExtract_token(er_password
, Buf
, 1, '|');
2160 StrBufExtract_token(er_dirname
, Buf
, 2, '|');
2161 er_flags
= StrBufExtract_int(Buf
, 3, '|');
2162 er_listingorder
= StrBufExtract_int(Buf
, 5, '|');
2163 er_defaultview
= StrBufExtract_int(Buf
, 6, '|');
2164 er_flags2
= StrBufExtract_int(Buf
, 7, '|');
2166 er_roomaide
= NewStrBufDup(sbstr("er_roomaide"));
2167 if (StrLength(er_roomaide
) == 0) {
2169 StrBuf_ServGetln(Buf
);
2170 if (GetServerStatus(Buf
, NULL
) != 2) {
2171 FlushStrBuf(er_roomaide
);
2173 StrBufCutLeft(Buf
, 4);
2174 StrBufExtract_token(er_roomaide
, Buf
, 0, '|');
2177 Ptr
= sbstr("er_name");
2178 if (StrLength(Ptr
) > 0) {
2179 FlushStrBuf(er_name
);
2180 StrBufAppendBuf(er_name
, Ptr
, 0);
2183 Ptr
= sbstr("er_password");
2184 if (StrLength(Ptr
) > 0) {
2185 FlushStrBuf(er_password
);
2186 StrBufAppendBuf(er_password
, Ptr
, 0);
2190 Ptr
= sbstr("er_dirname");
2191 if (StrLength(Ptr
) > 0) { /* todo: cut 15 */
2192 FlushStrBuf(er_dirname
);
2193 StrBufAppendBuf(er_dirname
, Ptr
, 0);
2197 Ptr
= sbstr("type");
2198 er_flags
&= !(QR_PRIVATE
| QR_PASSWORDED
| QR_GUESSNAME
);
2200 if (!strcmp(ChrPtr(Ptr
), "invonly")) {
2201 er_flags
|= (QR_PRIVATE
);
2203 if (!strcmp(ChrPtr(Ptr
), "hidden")) {
2204 er_flags
|= (QR_PRIVATE
| QR_GUESSNAME
);
2206 if (!strcmp(ChrPtr(Ptr
), "passworded")) {
2207 er_flags
|= (QR_PRIVATE
| QR_PASSWORDED
);
2209 if (!strcmp(ChrPtr(Ptr
), "personal")) {
2210 er_flags
|= QR_MAILBOX
;
2212 er_flags
&= ~QR_MAILBOX
;
2215 if (yesbstr("prefonly")) {
2216 er_flags
|= QR_PREFONLY
;
2218 er_flags
&= ~QR_PREFONLY
;
2221 if (yesbstr("readonly")) {
2222 er_flags
|= QR_READONLY
;
2224 er_flags
&= ~QR_READONLY
;
2228 if (yesbstr("collabdel")) {
2229 er_flags2
|= QR2_COLLABDEL
;
2231 er_flags2
&= ~QR2_COLLABDEL
;
2234 if (yesbstr("permanent")) {
2235 er_flags
|= QR_PERMANENT
;
2237 er_flags
&= ~QR_PERMANENT
;
2240 if (yesbstr("subjectreq")) {
2241 er_flags2
|= QR2_SUBJECTREQ
;
2243 er_flags2
&= ~QR2_SUBJECTREQ
;
2246 if (yesbstr("network")) {
2247 er_flags
|= QR_NETWORK
;
2249 er_flags
&= ~QR_NETWORK
;
2252 if (yesbstr("directory")) {
2253 er_flags
|= QR_DIRECTORY
;
2255 er_flags
&= ~QR_DIRECTORY
;
2258 if (yesbstr("ulallowed")) {
2259 er_flags
|= QR_UPLOAD
;
2261 er_flags
&= ~QR_UPLOAD
;
2264 if (yesbstr("dlallowed")) {
2265 er_flags
|= QR_DOWNLOAD
;
2267 er_flags
&= ~QR_DOWNLOAD
;
2270 if (yesbstr("visdir")) {
2271 er_flags
|= QR_VISDIR
;
2273 er_flags
&= ~QR_VISDIR
;
2276 Ptr
= sbstr("anon");
2278 er_flags
&= ~(QR_ANONONLY
| QR_ANONOPT
);
2279 if (!strcmp(ChrPtr(Ptr
), "anononly"))
2280 er_flags
|= QR_ANONONLY
;
2281 if (!strcmp(ChrPtr(Ptr
), "anon2"))
2282 er_flags
|= QR_ANONOPT
;
2284 bump
= yesbstr("bump");
2286 er_floor
= ibstr("er_floor");
2288 StrBufPrintf(Buf
, "SETR %s|%s|%s|%u|%d|%d|%d|%d|%u",
2290 ChrPtr(er_password
),
2299 StrBuf_ServGetln(Buf
);
2300 if (GetServerStatus(Buf
, NULL
) != 2) {
2301 strcpy(WC
->ImportantMessage
, &ChrPtr(Buf
)[4]);
2304 FreeStrBuf(&er_name
);
2305 FreeStrBuf(&er_password
);
2306 FreeStrBuf(&er_dirname
);
2307 FreeStrBuf(&er_roomaide
);
2312 if (StrLength(er_roomaide
) > 0) {
2313 serv_printf("SETA %s", ChrPtr(er_roomaide
));
2314 StrBuf_ServGetln(Buf
);
2315 if (GetServerStatus(Buf
, NULL
) != 2) {
2316 strcpy(WC
->ImportantMessage
, &ChrPtr(Buf
)[4]);
2317 display_main_menu();
2319 FreeStrBuf(&er_name
);
2320 FreeStrBuf(&er_password
);
2321 FreeStrBuf(&er_dirname
);
2322 FreeStrBuf(&er_roomaide
);
2327 strcpy(WC
->ImportantMessage
, _("Your changes have been saved."));
2330 FreeStrBuf(&er_name
);
2331 FreeStrBuf(&er_password
);
2332 FreeStrBuf(&er_dirname
);
2333 FreeStrBuf(&er_roomaide
);
2339 * Display form for Invite, Kick, and show Who Knows a room
2341 void do_invt_kick(void) {
2342 char buf
[SIZ
], room
[SIZ
], username
[SIZ
];
2345 serv_getln(buf
, sizeof buf
);
2347 if (buf
[0] != '2') {
2351 extract_token(room
, &buf
[4], 0, '|', sizeof room
);
2353 strcpy(username
, bstr("username"));
2355 if (havebstr("kick_button")) {
2356 sprintf(buf
, "KICK %s", username
);
2358 serv_getln(buf
, sizeof buf
);
2360 if (buf
[0] != '2') {
2361 strcpy(WC
->ImportantMessage
, &buf
[4]);
2363 sprintf(WC
->ImportantMessage
,
2364 _("<B><I>User %s kicked out of room %s.</I></B>\n"),
2369 if (havebstr("invite_button")) {
2370 sprintf(buf
, "INVT %s", username
);
2372 serv_getln(buf
, sizeof buf
);
2374 if (buf
[0] != '2') {
2375 strcpy(WC
->ImportantMessage
, &buf
[4]);
2377 sprintf(WC
->ImportantMessage
,
2378 _("<B><I>User %s invited to room %s.</I></B>\n"),
2389 * Display form for Invite, Kick, and show Who Knows a room
2391 void display_whok(void)
2393 char buf
[SIZ
], room
[SIZ
], username
[SIZ
];
2396 serv_getln(buf
, sizeof buf
);
2398 if (buf
[0] != '2') {
2402 extract_token(room
, &buf
[4], 0, '|', sizeof room
);
2405 wprintf("<table border=0 CELLSPACING=10><tr VALIGN=TOP><td>");
2406 wprintf(_("The users listed below have access to this room. "
2407 "To remove a user from the access list, select the user "
2408 "name from the list and click 'Kick'."));
2409 wprintf("<br /><br />");
2411 wprintf("<CENTER><form method=\"POST\" action=\"do_invt_kick\">\n");
2412 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
2413 wprintf("<input type=\"hidden\" NAME=\"tab\" VALUE=\"access\">\n");
2414 wprintf("<select NAME=\"username\" SIZE=\"10\" style=\"width:100%%\">\n");
2416 serv_getln(buf
, sizeof buf
);
2417 if (buf
[0] == '1') {
2418 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
2419 extract_token(username
, buf
, 0, '|', sizeof username
);
2420 wprintf("<OPTION>");
2425 wprintf("</select><br />\n");
2427 wprintf("<input type=\"submit\" name=\"kick_button\" value=\"%s\">", _("Kick"));
2428 wprintf("</form></CENTER>\n");
2430 wprintf("</td><td>");
2431 wprintf(_("To grant another user access to this room, enter the "
2432 "user name in the box below and click 'Invite'."));
2433 wprintf("<br /><br />");
2435 wprintf("<CENTER><form method=\"POST\" action=\"do_invt_kick\">\n");
2436 wprintf("<input type=\"hidden\" NAME=\"tab\" VALUE=\"access\">\n");
2437 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
2438 wprintf(_("Invite:"));
2440 wprintf("<input type=\"text\" name=\"username\" id=\"username_id\" style=\"width:100%%\"><br />\n"
2441 "<input type=\"hidden\" name=\"invite_button\" value=\"Invite\">"
2442 "<input type=\"submit\" value=\"%s\">"
2443 "</form></CENTER>\n", _("Invite"));
2444 /* Pop open an address book -- begin **/
2446 "<a href=\"javascript:PopOpenAddressBook('username_id|%s');\" "
2448 "<img align=middle border=0 width=24 height=24 src=\"static/viewcontacts_24x.gif\">"
2451 _("Users"), _("Users")
2453 /* Pop open an address book -- end **/
2455 wprintf("</td></tr></table>\n");
2456 address_book_popup();
2463 * display the form for entering a new room
2465 void display_entroom(void)
2470 serv_puts("CRE8 0");
2471 serv_getln(buf
, sizeof buf
);
2473 if (buf
[0] != '2') {
2474 strcpy(WC
->ImportantMessage
, &buf
[4]);
2475 display_main_menu();
2479 output_headers(1, 1, 1, 0, 0, 0);
2481 svprintf(HKEY("BOXTITLE"), WCS_STRING
, _("Create a new room"));
2482 do_template("beginbox", NULL
);
2484 wprintf("<form name=\"create_room_form\" method=\"POST\" action=\"entroom\">\n");
2485 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
2487 wprintf("<table class=\"altern\"> ");
2489 wprintf("<tr class=\"even\"><td>");
2490 wprintf(_("Name of room: "));
2491 wprintf("</td><td>");
2492 wprintf("<input type=\"text\" NAME=\"er_name\" MAXLENGTH=\"127\">\n");
2493 wprintf("</td></tr>");
2495 wprintf("<tr class=\"odd\"><td>");
2496 wprintf(_("Resides on floor: "));
2497 wprintf("</td><td>");
2499 wprintf("<select name=\"er_floor\" size=\"1\">\n");
2500 for (i
= 0; i
< 128; ++i
)
2501 if (!IsEmptyStr(floorlist
[i
])) {
2502 wprintf("<option ");
2503 wprintf("value=\"%d\">", i
);
2504 escputs(floorlist
[i
]);
2505 wprintf("</option>\n");
2507 wprintf("</select>\n");
2508 wprintf("</td></tr>");
2511 * Our clever little snippet of JavaScript automatically selects
2512 * a public room if the view is set to Bulletin Board or wiki, and
2513 * it selects a mailbox room otherwise. The user can override this,
2514 * of course. We also disable the floor selector for mailboxes.
2516 wprintf("<tr class=\"even\"><td>");
2517 wprintf(_("Default view for room: "));
2518 wprintf("</td><td>");
2519 wprintf("<select name=\"er_view\" size=\"1\" OnChange=\""
2520 " if ( (this.form.er_view.value == 0) "
2521 " || (this.form.er_view.value == 6) ) { "
2522 " this.form.type[0].checked=true; "
2523 " this.form.er_floor.disabled = false; "
2526 " this.form.type[4].checked=true; "
2527 " this.form.er_floor.disabled = true; "
2530 for (i
=0; i
<(sizeof viewdefs
/ sizeof (char *)); ++i
) {
2531 if (is_view_allowed_as_default(i
)) {
2532 wprintf("<option %s value=\"%d\">",
2533 ((i
== 0) ? "selected" : ""), i
);
2534 escputs(viewdefs
[i
]);
2535 wprintf("</option>\n");
2538 wprintf("</select>\n");
2539 wprintf("</td></tr>");
2541 wprintf("<tr class=\"even\"><td>");
2542 wprintf(_("Type of room:"));
2543 wprintf("</td><td>");
2544 wprintf("<ul class=\"adminlist\">\n");
2546 wprintf("<li><input type=\"radio\" NAME=\"type\" VALUE=\"public\" ");
2547 wprintf("CHECKED OnChange=\""
2548 " if (this.form.type[0].checked == true) { "
2549 " this.form.er_floor.disabled = false; "
2552 wprintf(_("Public (automatically appears to everyone)"));
2555 wprintf("\n<li><input type=\"radio\" NAME=\"type\" VALUE=\"hidden\" OnChange=\""
2556 " if (this.form.type[1].checked == true) { "
2557 " this.form.er_floor.disabled = false; "
2560 wprintf(_("Private - hidden (accessible to anyone who knows its name)"));
2563 wprintf("\n<li><input type=\"radio\" NAME=\"type\" VALUE=\"passworded\" OnChange=\""
2564 " if (this.form.type[2].checked == true) { "
2565 " this.form.er_floor.disabled = false; "
2568 wprintf(_("Private - require password: "));
2569 wprintf("<input type=\"text\" NAME=\"er_password\" MAXLENGTH=\"9\">\n");
2572 wprintf("<li><input type=\"radio\" NAME=\"type\" VALUE=\"invonly\" OnChange=\""
2573 " if (this.form.type[3].checked == true) { "
2574 " this.form.er_floor.disabled = false; "
2577 wprintf(_("Private - invitation only"));
2580 wprintf("\n<li><input type=\"radio\" NAME=\"type\" VALUE=\"personal\" "
2582 " if (this.form.type[4].checked == true) { "
2583 " this.form.er_floor.disabled = true; "
2586 wprintf(_("Personal (mailbox for you only)"));
2589 wprintf("\n</ul>\n");
2590 wprintf("</td></tr></table>\n");
2592 wprintf("<div class=\"buttons\">\n");
2593 wprintf("<input type=\"submit\" name=\"ok_button\" value=\"%s\">", _("Create new room"));
2595 wprintf("<input type=\"submit\" name=\"cancel_button\" value=\"%s\">", _("Cancel"));
2596 wprintf("</div>\n");
2597 wprintf("</form>\n<hr />");
2598 serv_printf("MESG roomaccess");
2599 serv_getln(buf
, sizeof buf
);
2600 if (buf
[0] == '1') {
2604 do_template("endbox", NULL
);
2613 * support function for entroom() -- sets the default view
2615 void er_set_default_view(int newview
) {
2628 serv_getln(buf
, sizeof buf
);
2629 if (buf
[0] != '2') return;
2631 extract_token(rm_name
, &buf
[4], 0, '|', sizeof rm_name
);
2632 extract_token(rm_pass
, &buf
[4], 1, '|', sizeof rm_pass
);
2633 extract_token(rm_dir
, &buf
[4], 2, '|', sizeof rm_dir
);
2634 rm_bits1
= extract_int(&buf
[4], 3);
2635 rm_floor
= extract_int(&buf
[4], 4);
2636 rm_listorder
= extract_int(&buf
[4], 5);
2637 rm_bits2
= extract_int(&buf
[4], 7);
2639 serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d",
2640 rm_name
, rm_pass
, rm_dir
, rm_bits1
, rm_floor
,
2641 rm_listorder
, newview
, rm_bits2
2643 serv_getln(buf
, sizeof buf
);
2654 const StrBuf
*er_name
;
2655 const StrBuf
*er_type
;
2656 const StrBuf
*er_password
;
2661 if (!havebstr("ok_button")) {
2662 strcpy(WC
->ImportantMessage
,
2663 _("Cancelled. No new room was created."));
2664 display_main_menu();
2667 er_name
= sbstr("er_name");
2668 er_type
= sbstr("type");
2669 er_password
= sbstr("er_password");
2670 er_floor
= ibstr("er_floor");
2671 er_view
= ibstr("er_view");
2674 if (!strcmp(ChrPtr(er_type
), "hidden"))
2676 else if (!strcmp(ChrPtr(er_type
), "passworded"))
2678 else if (!strcmp(ChrPtr(er_type
), "invonly"))
2680 else if (!strcmp(ChrPtr(er_type
), "personal"))
2683 serv_printf("CRE8 1|%s|%d|%s|%d|%d|%d",
2686 ChrPtr(er_password
),
2691 serv_getln(buf
, sizeof buf
);
2692 if (buf
[0] != '2') {
2693 strcpy(WC
->ImportantMessage
, &buf
[4]);
2694 display_main_menu();
2697 /** TODO: Room created, now udate the left hand icon bar for this user */
2698 burn_folder_cache(0); /* burn the old folder cache */
2702 do_change_view(er_view
); /* Now go there */
2707 * \brief display the screen to enter a private room
2709 void display_private(char *rname
, int req_pass
)
2711 WCTemplputParams SubTP
;
2713 output_headers(1, 1, 1, 0, 0, 0);
2715 Buf
= NewStrBufPlain(_("Go to a hidden room"), -1);
2716 memset(&SubTP
, 0, sizeof(WCTemplputParams
));
2717 SubTP
.Filter
.ContextType
= CTX_STRBUF
;
2718 SubTP
.Context
= Buf
;
2719 DoTemplate(HKEY("beginbox"), NULL
, &SubTP
);
2724 wprintf(_("If you know the name of a hidden (guess-name) or "
2725 "passworded room, you can enter that room by typing "
2726 "its name below. Once you gain access to a private "
2727 "room, it will appear in your regular room listings "
2728 "so you don't have to keep returning here."));
2731 wprintf("<form method=\"post\" action=\"goto_private\">\n");
2732 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
2734 wprintf("<table class=\"altern\"> "
2735 "<tr class=\"even\"><td>");
2736 wprintf(_("Enter room name:"));
2738 "<input type=\"text\" name=\"gr_name\" "
2739 "value=\"%s\" maxlength=\"128\">\n", rname
);
2742 wprintf("</td></tr><tr class=\"odd\"><td>");
2743 wprintf(_("Enter room password:"));
2744 wprintf("</td><td>");
2745 wprintf("<input type=\"password\" name=\"gr_pass\" maxlength=\"9\">\n");
2747 wprintf("</td></tr></table>\n");
2749 wprintf("<div class=\"buttons\">\n");
2750 wprintf("<input type=\"submit\" name=\"ok_button\" value=\"%s\">"
2752 "<input type=\"submit\" name=\"cancel_button\" value=\"%s\">",
2756 wprintf("</div></form>\n");
2758 do_template("endbox", NULL
);
2764 * \brief goto a private room
2766 void goto_private(void)
2771 if (!havebstr("ok_button")) {
2772 display_main_menu();
2775 strcpy(hold_rm
, ChrPtr(WC
->wc_roomname
));
2776 serv_printf("GOTO %s|%s",
2779 serv_getln(buf
, sizeof buf
);
2781 if (buf
[0] == '2') {
2782 smart_goto(sbstr("gr_name"));
2785 if (!strncmp(buf
, "540", 3)) {
2786 display_private(bstr("gr_name"), 1);
2789 output_headers(1, 1, 1, 0, 0, 0);
2790 wprintf("%s\n", &buf
[4]);
2797 * \brief display the screen to zap a room
2799 void display_zap(void)
2801 output_headers(1, 1, 2, 0, 0, 0);
2803 wprintf("<div id=\"banner\">\n");
2805 wprintf(_("Zap (forget/unsubscribe) the current room"));
2807 wprintf("</div>\n");
2809 wprintf("<div id=\"content\" class=\"service\">\n");
2811 wprintf(_("If you select this option, <em>%s</em> will "
2812 "disappear from your room list. Is this what you wish "
2813 "to do?<br />\n"), ChrPtr(WC
->wc_roomname
));
2815 wprintf("<form method=\"POST\" action=\"zap\">\n");
2816 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
2817 wprintf("<input type=\"submit\" NAME=\"ok_button\" VALUE=\"%s\">", _("Zap this room"));
2819 wprintf("<input type=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">", _("Cancel"));
2820 wprintf("</form>\n");
2831 StrBuf
*final_destination
;
2834 * If the forget-room routine fails for any reason, we fall back
2835 * to the current room; otherwise, we go to the Lobby
2837 final_destination
= NewStrBufDup(WC
->wc_roomname
);
2839 if (havebstr("ok_button")) {
2840 serv_printf("GOTO %s", ChrPtr(WC
->wc_roomname
));
2841 serv_getln(buf
, sizeof buf
);
2842 if (buf
[0] == '2') {
2844 serv_getln(buf
, sizeof buf
);
2845 if (buf
[0] == '2') {
2846 FlushStrBuf(final_destination
);
2847 StrBufAppendBufPlain(final_destination
, HKEY("_BASEROOM_"), 0);
2851 smart_goto(final_destination
);
2852 FreeStrBuf(&final_destination
);
2858 * \brief Delete the current room
2860 void delete_room(void)
2865 serv_puts("KILL 1");
2866 serv_getln(buf
, sizeof buf
);
2867 burn_folder_cache(0); /* Burn the cahce of known rooms to update the icon bar */
2868 if (buf
[0] != '2') {
2869 strcpy(WC
->ImportantMessage
, &buf
[4]);
2870 display_main_menu();
2875 Buf
= NewStrBufPlain(HKEY("_BASEROOM_"));
2884 * \brief Perform changes to a room's network configuration
2886 void netedit(void) {
2895 /*/ TODO: do line dynamic! */
2896 if (havebstr("line_pop3host")) {
2897 strcpy(line
, bstr("prefix"));
2898 strcat(line
, bstr("line_pop3host"));
2900 strcat(line
, bstr("line_pop3user"));
2902 strcat(line
, bstr("line_pop3pass"));
2904 strcat(line
, ibstr("line_pop3keep") ? "1" : "0" );
2906 sprintf(&line
[strlen(line
)],"%ld", lbstr("line_pop3int"));
2907 strcat(line
, bstr("suffix"));
2909 else if (havebstr("line")) {
2910 strcpy(line
, bstr("prefix"));
2911 strcat(line
, bstr("line"));
2912 strcat(line
, bstr("suffix"));
2927 serv_getln(buf
, sizeof buf
);
2928 if (buf
[0] != '1') {
2934 /** This loop works for add *or* remove. Spiffy, eh? */
2935 while (serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
2936 extract_token(cmpa0
, buf
, 0, '|', sizeof cmpa0
);
2937 extract_token(cmpa1
, buf
, 1, '|', sizeof cmpa1
);
2938 extract_token(cmpb0
, line
, 0, '|', sizeof cmpb0
);
2939 extract_token(cmpb1
, line
, 1, '|', sizeof cmpb1
);
2940 if ( (strcasecmp(cmpa0
, cmpb0
))
2941 || (strcasecmp(cmpa1
, cmpb1
)) ) {
2942 fprintf(fp
, "%s\n", buf
);
2948 serv_getln(buf
, sizeof buf
);
2949 if (buf
[0] != '4') {
2955 while (fgets(buf
, sizeof buf
, fp
) != NULL
) {
2956 buf
[strlen(buf
)-1] = 0;
2960 if (havebstr("add_button")) {
2961 num_addrs
= num_tokens(bstr("line"), ',');
2962 if (num_addrs
< 2) {
2963 /* just adding one node or address */
2967 /* adding multiple addresses separated by commas */
2968 for (i
=0; i
<num_addrs
; ++i
) {
2969 strcpy(line
, bstr("prefix"));
2970 extract_token(buf
, bstr("line"), i
, ',', sizeof buf
);
2973 strcat(line
, bstr("suffix"));
2987 * \brief Convert a room name to a folder-ish-looking name.
2988 * \param folder the folderish name
2989 * \param room the room name
2990 * \param floor the floor name
2991 * \param is_mailbox is it a mailbox?
2993 void room_to_folder(char *folder
, char *room
, int floor
, int is_mailbox
)
2998 * For mailboxes, just do it straight...
3001 sprintf(folder
, "My folders|%s", room
);
3005 * Otherwise, prefix the floor name as a "public folders" moniker
3008 if (floor
> MAX_FLOORS
) {
3010 sprintf(folder
, "%%%%%%|%s", room
);
3013 sprintf(folder
, "%s|%s", floorlist
[floor
], room
);
3018 * Replace "\" characters with "|" for pseudo-folder-delimiting
3020 len
= strlen (folder
);
3021 for (i
=0; i
<len
; ++i
) {
3022 if (folder
[i
] == '\\') folder
[i
] = '|';
3030 * \brief Back end for change_view()
3031 * \param newview set newview???
3033 void do_change_view(int newview
) {
3036 serv_printf("VIEW %d", newview
);
3037 serv_getln(buf
, sizeof buf
);
3038 WC
->wc_view
= newview
;
3039 smart_goto(WC
->wc_roomname
);
3045 * \brief Change the view for this room
3047 void change_view(void) {
3050 view
= lbstr("view");
3051 do_change_view(view
);
3056 * \brief One big expanded tree list view --- like a folder list
3057 * \param fold the folder to view
3058 * \param max_folders how many folders???
3059 * \param num_floors hom many floors???
3061 void do_folder_view(struct folder
*fold
, int max_folders
, int num_floors
) {
3065 int has_subfolders
= 0;
3068 parents
= malloc(max_folders
* sizeof(int));
3070 /** BEGIN TREE MENU */
3071 wprintf("<div id=\"roomlist_div\">Loading folder list...</div>\n");
3073 /** include NanoTree */
3074 wprintf("<script type=\"text/javascript\" src=\"static/nanotree.js\"></script>\n");
3076 /** initialize NanoTree */
3077 wprintf("<script type=\"text/javascript\"> \n"
3078 " showRootNode = false; \n"
3079 " sortNodes = false; \n"
3080 " dragable = false; \n"
3082 " function standardClick(treeNode) { \n"
3085 " var closedGif = 'static/folder_closed.gif'; \n"
3086 " var openGif = 'static/folder_open.gif'; \n"
3088 " rootNode = new TreeNode(1, 'root node - hide'); \n"
3092 for (i
=0; i
<max_folders
; ++i
) {
3095 if ((i
+1) < max_folders
) {
3097 len
= strlen(fold
[i
].name
);
3098 if ( (!strncasecmp(fold
[i
].name
, fold
[i
+1].name
, len
))
3099 && (fold
[i
+1].name
[len
] == '|') ) {
3104 levels
= num_tokens(fold
[i
].name
, '|');
3105 parents
[levels
] = i
;
3107 wprintf("var node%d = new TreeNode(%d, '", i
, i
);
3109 if (fold
[i
].selectable
) {
3110 wprintf("<a href=\"dotgoto?room=");
3111 urlescputs(fold
[i
].room
);
3116 wprintf("<span class=\"roomlist_floor\">");
3118 else if (fold
[i
].hasnewmsgs
) {
3119 wprintf("<span class=\"roomlist_new\">");
3122 wprintf("<span class=\"roomlist_old\">");
3124 extract_token(buf
, fold
[i
].name
, levels
-1, '|', sizeof buf
);
3129 if (has_subfolders
) {
3130 wprintf("new Array(closedGif, openGif)");
3132 else if (fold
[i
].view
== VIEW_ADDRESSBOOK
) {
3133 wprintf("'static/viewcontacts_16x.gif'");
3135 else if (fold
[i
].view
== VIEW_CALENDAR
) {
3136 wprintf("'static/calarea_16x.gif'");
3138 else if (fold
[i
].view
== VIEW_CALBRIEF
) {
3139 wprintf("'static/calarea_16x.gif'");
3141 else if (fold
[i
].view
== VIEW_TASKS
) {
3142 wprintf("'static/taskmanag_16x.gif'");
3144 else if (fold
[i
].view
== VIEW_NOTES
) {
3145 wprintf("'static/storenotes_16x.gif'");
3147 else if (fold
[i
].view
== VIEW_MAILBOX
) {
3148 wprintf("'static/privatemess_16x.gif'");
3151 wprintf("'static/chatrooms_16x.gif'");
3154 urlescputs(fold
[i
].name
);
3158 wprintf("rootNode.addChild(node%d);\n", i
);
3161 wprintf("node%d.addChild(node%d);\n", parents
[levels
-1], i
);
3165 wprintf("container = document.getElementById('roomlist_div'); \n"
3171 /** END TREE MENU */
3175 * \brief Boxes and rooms and lists ... oh my!
3176 * \param fold the folder to view
3177 * \param max_folders how many folders???
3178 * \param num_floors hom many floors???
3180 void do_rooms_view(struct folder
*fold
, int max_folders
, int num_floors
) {
3182 char floor_name
[256];
3183 char old_floor_name
[256];
3184 int levels
, oldlevels
;
3187 static int columns
= 3;
3188 int boxes_per_column
= 0;
3189 int current_column
= 0;
3192 strcpy(floor_name
, "");
3193 strcpy(old_floor_name
, "");
3196 while (nf
% columns
!= 0) ++nf
;
3197 boxes_per_column
= (nf
/ columns
);
3198 if (boxes_per_column
< 1) boxes_per_column
= 1;
3200 /** Outer table (for columnization) */
3201 wprintf("<table BORDER=0 WIDTH=96%% CELLPADDING=5>"
3202 "<tr><td valign=top>");
3206 for (i
=0; i
<max_folders
; ++i
) {
3208 levels
= num_tokens(fold
[i
].name
, '|');
3209 extract_token(floor_name
, fold
[i
].name
, 0,
3210 '|', sizeof floor_name
);
3212 if ( (strcasecmp(floor_name
, old_floor_name
))
3213 && (!IsEmptyStr(old_floor_name
)) ) {
3215 do_template("endbox", NULL
);
3219 if ((num_boxes
% boxes_per_column
) == 0) {
3221 if (current_column
< columns
) {
3222 wprintf("</td><td valign=top>\n");
3226 strcpy(old_floor_name
, floor_name
);
3230 WCTemplputParams SubTP
;
3232 Buf
= NewStrBufPlain(floor_name
, -1);
3233 memset(&SubTP
, 0, sizeof(WCTemplputParams
));
3234 SubTP
.Filter
.ContextType
= CTX_STRBUF
;
3235 SubTP
.Context
= Buf
;
3236 DoTemplate(HKEY("beginbox"), NULL
, &SubTP
);
3245 if (levels
>2) for (t
=0; t
<(levels
-2); ++t
) wprintf(" ");
3246 if (fold
[i
].selectable
) {
3247 wprintf("<a href=\"dotgoto?room=");
3248 urlescputs(fold
[i
].room
);
3254 if (fold
[i
].hasnewmsgs
) {
3255 wprintf("<span class=\"roomlist_new\">");
3258 wprintf("<span class=\"roomlist_old\">");
3260 extract_token(buf
, fold
[i
].name
, levels
-1, '|', sizeof buf
);
3263 if (fold
[i
].selectable
) {
3269 if (!strcasecmp(fold
[i
].name
, "My Folders|Mail")) {
3270 wprintf(" (INBOX)");
3272 wprintf("<br />\n");
3275 /** End the final inner box */
3276 do_template("endbox", NULL
);
3278 wprintf("</td></tr></table>\n");
3282 * \brief print a floor div???
3283 * \param which_floordiv name of the floordiv???
3285 void set_floordiv_expanded(void) {
3286 wcsession
*WCC
= WC
;
3289 FloorDiv
= NewStrBuf();
3290 StrBufAppendBuf(FloorDiv
, WCC
->UrlFragment2
, 0);
3291 set_preference("floordiv_expanded", FloorDiv
, 1);
3292 WCC
->floordiv_expanded
= FloorDiv
;
3296 * \brief view the iconbar
3297 * \param fold the folder to view
3298 * \param max_folders how many folders???
3299 * \param num_floors hom many floors???
3301 void do_iconbar_view(struct folder
*fold
, int max_folders
, int num_floors
) {
3303 char floor_name
[256];
3304 char old_floor_name
[256];
3305 char floordivtitle
[256];
3306 char floordiv_id
[32];
3307 int levels
, oldlevels
;
3311 strcpy(floor_name
, "");
3312 strcpy(old_floor_name
, "");
3316 for (i
=0; i
<max_folders
; ++i
) {
3318 levels
= num_tokens(fold
[i
].name
, '|');
3319 extract_token(floor_name
, fold
[i
].name
, 0,
3320 '|', sizeof floor_name
);
3322 if ( (strcasecmp(floor_name
, old_floor_name
))
3323 && (!IsEmptyStr(old_floor_name
)) ) {
3324 /** End inner box */
3326 wprintf("</div>\n"); /** floordiv */
3328 strcpy(old_floor_name
, floor_name
);
3332 stresc(floordivtitle
, 256, floor_name
, 0, 0);
3333 sprintf(floordiv_id
, "floordiv%d", i
);
3334 wprintf("<span class=\"ib_roomlist_floor\" "
3335 "onClick=\"expand_floor('%s')\">"
3336 "%s</span><br>\n", floordiv_id
, floordivtitle
);
3337 wprintf("<div id=\"%s\" style=\"display:%s\">",
3339 (!strcasecmp(floordiv_id
, ChrPtr(WC
->floordiv_expanded
)) ? "block" : "none")
3346 wprintf("<div id=\"roomdiv%d\">", i
);
3348 if (levels
>2) for (t
=0; t
<(levels
-2); ++t
) wprintf(" ");
3350 /** choose the icon */
3351 if (fold
[i
].view
== VIEW_ADDRESSBOOK
) {
3352 icon
= "viewcontacts_16x.gif" ;
3354 else if (fold
[i
].view
== VIEW_CALENDAR
) {
3355 icon
= "calarea_16x.gif" ;
3357 else if (fold
[i
].view
== VIEW_CALBRIEF
) {
3358 icon
= "calarea_16x.gif" ;
3360 else if (fold
[i
].view
== VIEW_TASKS
) {
3361 icon
= "taskmanag_16x.gif" ;
3363 else if (fold
[i
].view
== VIEW_NOTES
) {
3364 icon
= "storenotes_16x.gif" ;
3366 else if (fold
[i
].view
== VIEW_MAILBOX
) {
3367 icon
= "privatemess_16x.gif" ;
3370 icon
= "chatrooms_16x.gif" ;
3373 if (fold
[i
].selectable
) {
3374 wprintf("<a href=\"dotgoto?room=");
3375 urlescputs(fold
[i
].room
);
3377 wprintf("<img border=0 src=\"static/%s\" alt=\"\"> ", icon
);
3382 if (fold
[i
].hasnewmsgs
) {
3383 wprintf("<span class=\"ib_roomlist_new\">");
3386 wprintf("<span class=\"ib_roomlist_old\">");
3388 extract_token(buf
, fold
[i
].name
, levels
-1, '|', sizeof buf
);
3390 if (!strcasecmp(fold
[i
].name
, "My Folders|Mail")) {
3391 wprintf(" (INBOX)");
3394 if (fold
[i
].selectable
) {
3401 wprintf("</div>\n"); /** roomdiv */
3404 wprintf("</div>\n"); /** floordiv */
3412 * \brief Burn the cached folder list.
3413 * \param age How old the cahce needs to be before we burn it.
3416 void burn_folder_cache(time_t age
)
3418 /** If our cached folder list is very old, burn it. */
3419 if (WC
->cache_fold
!= NULL
) {
3420 if ((time(NULL
) - WC
->cache_timestamp
) > age
) {
3421 free(WC
->cache_fold
);
3422 WC
->cache_fold
= NULL
;
3431 * \brief Show the room list.
3432 * (only should get called by
3433 * knrooms() because that's where output_headers() is called from)
3434 * \param viewpref the view preferences???
3437 void list_all_rooms_by_floor(const char *viewpref
) {
3440 struct folder
*fold
= NULL
;
3442 int max_folders
= 0;
3443 int alloc_folders
= 0;
3447 int ShowEmptyFloors
;
3450 int num_floors
= 1; /** add an extra one for private folders */
3453 /** If our cached folder list is very old, burn it. */
3454 burn_folder_cache(300);
3456 /** Can we do the iconbar roomlist from cache? */
3457 if ((WC
->cache_fold
!= NULL
) && (!strcasecmp(viewpref
, "iconbar"))) {
3458 do_iconbar_view(WC
->cache_fold
, WC
->cache_max_folders
, WC
->cache_num_floors
);
3462 /** Grab the floor table so we know how to build the list... */
3465 /** Start with the mailboxes */
3468 fold
= malloc(sizeof(struct folder
));
3469 memset(fold
, 0, sizeof(struct folder
));
3470 strcpy(fold
[0].name
, "My folders");
3471 fold
[0].is_mailbox
= 1;
3473 /** Then add floors */
3475 serv_getln(buf
, sizeof buf
);
3476 if (buf
[0]=='1') while(serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
3477 if (max_folders
>= alloc_folders
) {
3478 alloc_folders
= max_folders
+ 100;
3479 fold
= realloc(fold
,
3480 alloc_folders
* sizeof(struct folder
));
3482 memset(&fold
[max_folders
], 0, sizeof(struct folder
));
3483 extract_token(fold
[max_folders
].name
, buf
, 1, '|', sizeof fold
[max_folders
].name
);
3484 extract_token(buf3
, buf
, 0, '|', SIZ
);
3485 fold
[max_folders
].floor
= atol (buf3
);
3490 for (i
=0; i
<num_floors
; i
++)
3491 if (IDMax
< fold
[i
].floor
)
3492 IDMax
= fold
[i
].floor
;
3493 floor_mapping
= malloc (sizeof (int) * (IDMax
+ 1));
3494 memset (floor_mapping
, 0, sizeof (int) * (IDMax
+ 1));
3495 for (i
=0; i
<num_floors
; i
++)
3496 floor_mapping
[fold
[i
].floor
]=i
;
3498 /** refresh the messages index for this room */
3499 /* TODO serv_puts("GOTO ");
3500 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")); */
3501 /** Now add rooms */
3503 serv_getln(buf
, sizeof buf
);
3504 if (buf
[0]=='1') while(serv_getln(buf
, sizeof buf
), strcmp(buf
, "000")) {
3505 if (max_folders
>= alloc_folders
) {
3506 alloc_folders
= max_folders
+ 100;
3507 fold
= realloc(fold
,
3508 alloc_folders
* sizeof(struct folder
));
3510 memset(&fold
[max_folders
], 0, sizeof(struct folder
));
3511 extract_token(fold
[max_folders
].room
, buf
, 0, '|', sizeof fold
[max_folders
].room
);
3512 ra_flags
= extract_int(buf
, 5);
3513 flags
= extract_int(buf
, 1);
3514 fold
[max_folders
].floor
= extract_int(buf
, 2);
3515 fold
[max_folders
].hasnewmsgs
=
3516 ((ra_flags
& UA_HASNEWMSGS
) ? 1 : 0 );
3517 if (flags
& QR_MAILBOX
) {
3518 fold
[max_folders
].is_mailbox
= 1;
3520 fold
[max_folders
].view
= extract_int(buf
, 6);
3521 room_to_folder(fold
[max_folders
].name
,
3522 fold
[max_folders
].room
,
3523 fold
[max_folders
].floor
,
3524 fold
[max_folders
].is_mailbox
);
3525 fold
[max_folders
].selectable
= 1;
3526 /* Increase the room count for the associtaed floor */
3527 if (fold
[max_folders
].is_mailbox
) {
3528 fold
[0].num_rooms
++;
3531 i
= floor_mapping
[fold
[max_folders
].floor
];
3532 fold
[i
].num_rooms
++;
3538 * Remove any floors that don't have rooms
3540 get_pref_yesno("emptyfloors", &ShowEmptyFloors
, 0);
3541 if (ShowEmptyFloors
)
3543 for (i
=0; i
<num_floors
; i
++)
3545 if (fold
[i
].num_rooms
== 0) {
3546 for (j
=i
; j
<max_folders
; j
++) {
3547 memcpy(&fold
[j
], &fold
[j
+1], sizeof(struct folder
));
3556 /** Bubble-sort the folder list */
3557 for (i
=0; i
<max_folders
; ++i
) {
3558 for (j
=0; j
<(max_folders
-1)-i
; ++j
) {
3559 if (fold
[j
].is_mailbox
== fold
[j
+1].is_mailbox
) {
3560 swap
= strcasecmp(fold
[j
].name
, fold
[j
+1].name
);
3563 if ( (fold
[j
+1].is_mailbox
)
3564 && (!fold
[j
].is_mailbox
)) {
3572 memcpy(&ftmp
, &fold
[j
], sizeof(struct folder
));
3573 memcpy(&fold
[j
], &fold
[j
+1],
3574 sizeof(struct folder
));
3575 memcpy(&fold
[j
+1], &ftmp
,
3576 sizeof(struct folder
));
3582 if (!strcasecmp(viewpref
, "folders")) {
3583 do_folder_view(fold
, max_folders
, num_floors
);
3585 else if (!strcasecmp(viewpref
, "hackish_view")) {
3586 for (i
=0; i
<max_folders
; ++i
) {
3587 escputs(fold
[i
].name
);
3588 wprintf("<br />\n");
3591 else if (!strcasecmp(viewpref
, "iconbar")) {
3592 do_iconbar_view(fold
, max_folders
, num_floors
);
3595 do_rooms_view(fold
, max_folders
, num_floors
);
3598 /* Don't free the folder list ... cache it for future use! */
3599 if (WC
->cache_fold
!= NULL
) {
3600 free(WC
->cache_fold
);
3602 WC
->cache_fold
= fold
;
3603 WC
->cache_max_folders
= max_folders
;
3604 WC
->cache_num_floors
= num_floors
;
3605 WC
->cache_timestamp
= time(NULL
);
3606 free(floor_mapping
);
3611 * \brief Do either a known rooms list or a folders list, depending on the
3616 StrBuf
*ListView
= NULL
;
3618 output_headers(1, 1, 2, 0, 0, 0);
3620 /** Determine whether the user is trying to change views */
3621 if (havebstr("view")) {
3622 ListView
= NewStrBufPlain(bstr("view"), -1);
3623 set_preference("roomlistview", ListView
, 1);
3625 /** Sanitize the input so its safe */
3626 if(!get_preference("roomlistview", &ListView
) ||
3627 ((strcasecmp(ChrPtr(ListView
), "folders") != 0) &&
3628 (strcasecmp(ChrPtr(ListView
), "table") != 0)))
3630 if (ListView
== NULL
) {
3631 ListView
= NewStrBufPlain("rooms", sizeof("rooms") - 1);
3632 set_preference("roomlistview", ListView
, 0);
3635 StrBufPrintf(ListView
, "rooms");
3641 wprintf("<div id=\"banner\">\n");
3642 wprintf("<div class=\"room_banner\" id=\"room_banner\">");
3644 if (!strcasecmp(ChrPtr(ListView
), "rooms")) {
3645 wprintf(_("Room list"));
3647 else if (!strcasecmp(ChrPtr(ListView
), "folders")) {
3648 wprintf(_("Folder list"));
3650 else if (!strcasecmp(ChrPtr(ListView
), "table")) {
3651 wprintf(_("Room list"));
3653 wprintf("</h1></div>\n");
3655 /** offer the ability to switch views */
3656 wprintf("<div id=\"actiondiv\">");
3657 wprintf("<ul class=\"room_actions\">\n");
3658 wprintf("<li class=\"start_page\">");
3659 offer_start_page(NULL
, &NoCtx
);
3661 wprintf("<li><form name=\"roomlistomatic\">\n"
3662 "<select name=\"newview\" size=\"1\" "
3663 "OnChange=\"location.href=roomlistomatic.newview.options"
3664 "[selectedIndex].value\">\n");
3666 wprintf("<option %s value=\"knrooms&view=rooms\">"
3669 ( !strcasecmp(ChrPtr(ListView
), "rooms") ? "SELECTED" : "" )
3672 wprintf("<option %s value=\"knrooms&view=folders\">"
3673 "View as folder list"
3675 ( !strcasecmp(ChrPtr(ListView
), "folders") ? "SELECTED" : "" )
3678 wprintf("</select>");
3679 wprintf("</form></li>");
3680 wprintf("</ul></div></div>\n");
3682 wprintf("<div id=\"content\" class=\"service\">\n");
3684 /** Display the room list in the user's preferred format */
3685 list_all_rooms_by_floor(ChrPtr(ListView
));
3692 * \brief Set the message expire policy for this room and/or floor
3694 void set_room_policy(void) {
3697 if (!havebstr("ok_button")) {
3698 strcpy(WC
->ImportantMessage
,
3699 _("Cancelled. Changes were not saved."));
3704 serv_printf("SPEX room|%d|%d", ibstr("roompolicy"), ibstr("roomvalue"));
3705 serv_getln(buf
, sizeof buf
);
3706 strcpy(WC
->ImportantMessage
, &buf
[4]);
3708 if (WC
->axlevel
>= 6) {
3709 strcat(WC
->ImportantMessage
, "<br />\n");
3710 serv_printf("SPEX floor|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue"));
3711 serv_getln(buf
, sizeof buf
);
3712 strcat(WC
->ImportantMessage
, &buf
[4]);
3718 HashList
*GetFloorListHash(StrBuf
*Target
, WCTemplputParams
*TP
) {
3719 /* todo: check context */
3725 floors
= NewHash(1, NULL
);
3727 serv_puts("LFLR"); /* get floors */
3728 StrBufTCP_read_line(Buf
, &WC
->serv_sock
, 0, &Err
); /* '100', we hope */
3729 if (ChrPtr(Buf
)[0] == '1') while(StrBufTCP_read_line(Buf
, &WC
->serv_sock
, 0, &Err
), strcmp(ChrPtr(Buf
), "000")) {
3731 const char *floorNum
;
3732 floor
= NewHash(1, NULL
);
3733 for(a
=0; a
<FLOOR_PARAM_LEN
; a
++) {
3735 StrBufExtract_token(Buf2
, Buf
, a
, '|');
3737 floorNum
= ChrPtr(Buf2
); /* hmm, should we copy Buf2 first? */
3739 Put(floor
, FPKEY(a
), Buf2
, NULL
);
3741 Put(floors
, HKEY(floorNum
), floor
, NULL
);
3747 void tmplput_FLOOR_Value(StrBuf
*TemplBuffer
, WCTemplputParams
*TP
)
3750 HashList
*floor
= (HashList
*)(TP
->Context
);
3752 GetHash(floor
, TKEY(0), &value
);
3753 val
= (StrBuf
*)value
;
3754 StrECMAEscAppend(TemplBuffer
, val
, 0);
3756 HashList
*GetRoomListHashLKRA(StrBuf
*Target
, WCTemplputParams
*TP
)
3759 return GetRoomListHash(Target
, TP
);
3761 HashList
*GetRoomListHash(StrBuf
*Target
, WCTemplputParams
*TP
)
3763 /* TODO: Check context */
3770 rooms
= NewHash(1, NULL
);
3771 StrBufTCP_read_line(buf
, &WC
->serv_sock
, 0, &Err
);
3772 if (ChrPtr(buf
)[0] == '1') while(StrBufTCP_read_line(buf
, &WC
->serv_sock
, 0, &Err
), strcmp(ChrPtr(buf
), "000")) {
3775 room
= NewHash(1, NULL
);
3776 for(i
=0; i
<ROOM_PARAM_LEN
; i
++) {
3778 StrBufExtract_token(buf2
, buf
, i
, '|');
3780 rmName
= ChrPtr(buf2
);
3782 Put(room
, RPKEY(i
), buf2
, NULL
);
3784 Put(rooms
, rmName
, strlen(rmName
), room
, NULL
);
3786 SortByHashKey(rooms
, 1);
3787 /*SortByPayload(rooms, SortRoomsByListOrder); */
3791 /** Unused function that orders rooms by the listorder flag */
3792 int SortRoomsByListOrder(const void *room1
, const void *room2
)
3796 HashList
*r1
= (HashList
*)GetSearchPayload(room1
);
3797 HashList
*r2
= (HashList
*)GetSearchPayload(room2
);
3798 StrBuf
*listOrderBuf1
;
3799 StrBuf
*listOrderBuf2
;
3801 GetHash(r1
, RPKEY(3), (void *)&listOrderBuf1
);
3802 GetHash(r2
, RPKEY(3), (void *)&listOrderBuf2
);
3803 l1
= atoi(ChrPtr(listOrderBuf1
));
3804 l2
= atoi(ChrPtr(listOrderBuf2
));
3805 if (l1
< l2
) return -1;
3806 else if (l1
> l2
) return +1;
3809 void tmplput_ROOM_Value(StrBuf
*TemplBuffer
, WCTemplputParams
*TP
)
3813 HashList
*room
= (HashList
*)(TP
->Context
);
3815 GetHash(room
, TKEY(0), &value
);
3816 val
= (StrBuf
*)value
;
3817 StrECMAEscAppend(TemplBuffer
, val
, 0);
3819 void jsonRoomFlr(void) {
3820 /* Send as our own (application/json) content type */
3821 hprintf("HTTP/1.1 200 OK\r\n");
3822 hprintf("Content-type: application/json; charset=utf-8\r\n");
3823 hprintf("Server: %s / %s\r\n", PACKAGE_STRING
, ChrPtr(serv_info
.serv_software
));
3824 hprintf("Connection: close\r\n");
3825 hprintf("Pragma: no-cache\r\nCache-Control: no-store\r\nExpires:-1\r\n");
3827 DoTemplate(HKEY("json_roomflr"),NULL
,&NoCtx
);
3830 void tmplput_RoomName(StrBuf
*Target
, WCTemplputParams
*TP
)
3832 StrBufAppendTemplate(Target
, TP
, WC
->wc_roomname
, 0);
3835 void _gotonext(void) { slrp_highest(); gotonext(); }
3836 void dotskip(void) {smart_goto(sbstr("room"));}
3837 void _display_private(void) { display_private("", 0); }
3838 void dotgoto(void) {
3839 if (WC
->wc_view
!= VIEW_MAILBOX
) { /* dotgoto acts like dotskip when we're in a mailbox view */
3842 smart_goto(sbstr("room"));
3845 void tmplput_roombanner(StrBuf
*Target
, WCTemplputParams
*TP
)
3847 wprintf("<div id=\"banner\">\n");
3848 embed_room_banner(NULL
, navbar_default
);
3849 wprintf("</div>\n");
3853 void tmplput_ungoto(StrBuf
*Target
, WCTemplputParams
*TP
)
3855 wcsession
*WCC
= WC
;
3858 (!IsEmptyStr(WCC
->ugname
)))
3859 StrBufAppendBufPlain(Target
, WCC
->ugname
, -1, 0);
3863 int ConditionalHaveUngoto(StrBuf
*Target
, WCTemplputParams
*TP
)
3865 wcsession
*WCC
= WC
;
3867 return ((WCC
!=NULL
) &&
3868 (!IsEmptyStr(WCC
->ugname
)) &&
3869 (strcasecmp(WCC
->ugname
, ChrPtr(WCC
->wc_roomname
)) == 0));
3872 int ConditionalRoomHas_QR_PERMANENT(StrBuf
*Target
, WCTemplputParams
*TP
)
3874 wcsession
*WCC
= WC
;
3876 return ((WCC
!=NULL
) &&
3877 ((WCC
->room_flags
& QR_PERMANENT
) != 0));
3880 int ConditionalRoomHas_QR_INUSE(StrBuf
*Target
, WCTemplputParams
*TP
)
3882 wcsession
*WCC
= WC
;
3884 return ((WCC
!=NULL
) &&
3885 ((WCC
->room_flags
& QR_INUSE
) != 0));
3888 int ConditionalRoomHas_QR_PRIVATE(StrBuf
*Target
, WCTemplputParams
*TP
)
3890 wcsession
*WCC
= WC
;
3892 return ((WCC
!=NULL
) &&
3893 ((WCC
->room_flags
& QR_PRIVATE
) != 0));
3896 int ConditionalRoomHas_QR_PASSWORDED(StrBuf
*Target
, WCTemplputParams
*TP
)
3898 wcsession
*WCC
= WC
;
3900 return ((WCC
!=NULL
) &&
3901 ((WCC
->room_flags
& QR_PASSWORDED
) != 0));
3904 int ConditionalRoomHas_QR_GUESSNAME(StrBuf
*Target
, WCTemplputParams
*TP
)
3906 wcsession
*WCC
= WC
;
3908 return ((WCC
!=NULL
) &&
3909 ((WCC
->room_flags
& QR_GUESSNAME
) != 0));
3912 int ConditionalRoomHas_QR_DIRECTORY(StrBuf
*Target
, WCTemplputParams
*TP
)
3914 wcsession
*WCC
= WC
;
3916 return ((WCC
!=NULL
) &&
3917 ((WCC
->room_flags
& QR_DIRECTORY
) != 0));
3920 int ConditionalRoomHas_QR_UPLOAD(StrBuf
*Target
, WCTemplputParams
*TP
)
3922 wcsession
*WCC
= WC
;
3924 return ((WCC
!=NULL
) &&
3925 ((WCC
->room_flags
& QR_UPLOAD
) != 0));
3928 int ConditionalRoomHas_QR_DOWNLOAD(StrBuf
*Target
, WCTemplputParams
*TP
)
3930 wcsession
*WCC
= WC
;
3932 return ((WCC
!=NULL
) &&
3933 ((WCC
->room_flags
& QR_DOWNLOAD
) != 0));
3936 int ConditionalRoomHas_QR_VISDIR(StrBuf
*Target
, WCTemplputParams
*TP
)
3938 wcsession
*WCC
= WC
;
3940 return ((WCC
!=NULL
) &&
3941 ((WCC
->room_flags
& QR_VISDIR
) != 0));
3944 int ConditionalRoomHas_QR_ANONONLY(StrBuf
*Target
, WCTemplputParams
*TP
)
3946 wcsession
*WCC
= WC
;
3948 return ((WCC
!=NULL
) &&
3949 ((WCC
->room_flags
& QR_ANONONLY
) != 0));
3952 int ConditionalRoomHas_QR_ANONOPT(StrBuf
*Target
, WCTemplputParams
*TP
)
3954 wcsession
*WCC
= WC
;
3956 return ((WCC
!=NULL
) &&
3957 ((WCC
->room_flags
& QR_ANONOPT
) != 0));
3960 int ConditionalRoomHas_QR_NETWORK(StrBuf
*Target
, WCTemplputParams
*TP
)
3962 wcsession
*WCC
= WC
;
3964 return ((WCC
!=NULL
) &&
3965 ((WCC
->room_flags
& QR_NETWORK
) != 0));
3968 int ConditionalRoomHas_QR_PREFONLY(StrBuf
*Target
, WCTemplputParams
*TP
)
3970 wcsession
*WCC
= WC
;
3972 return ((WCC
!=NULL
) &&
3973 ((WCC
->room_flags
& QR_PREFONLY
) != 0));
3976 int ConditionalRoomHas_QR_READONLY(StrBuf
*Target
, WCTemplputParams
*TP
)
3978 wcsession
*WCC
= WC
;
3980 return ((WCC
!=NULL
) &&
3981 ((WCC
->room_flags
& QR_READONLY
) != 0));
3984 int ConditionalRoomHas_QR_MAILBOX(StrBuf
*Target
, WCTemplputParams
*TP
)
3986 wcsession
*WCC
= WC
;
3988 return ((WCC
!=NULL
) &&
3989 ((WCC
->room_flags
& QR_MAILBOX
) != 0));
3993 int ConditionalHaveRoomeditRights(StrBuf
*Target
, WCTemplputParams
*TP
)
3995 wcsession
*WCC
= WC
;
3997 return ( (WCC
!= NULL
) &&
3998 ((WCC
->axlevel
>= 6) ||
3999 (WCC
->is_room_aide
) ||
4000 (WCC
->is_mailbox
) ));
4007 RegisterPreference(HKEY("roomlistview"),
4008 _("Room list view"),
4011 RegisterPreference(HKEY("emptyfloors"), _("Show empty floors"), PRF_YESNO
, NULL
);
4013 RegisterNamespace("ROOMNAME", 0, 1, tmplput_RoomName
, 0);
4015 WebcitAddUrlHandler(HKEY("knrooms"), knrooms
, 0);
4016 WebcitAddUrlHandler(HKEY("gotonext"), _gotonext
, NEED_URL
);
4017 WebcitAddUrlHandler(HKEY("skip"), gotonext
, NEED_URL
);
4018 WebcitAddUrlHandler(HKEY("ungoto"), ungoto
, NEED_URL
);
4019 WebcitAddUrlHandler(HKEY("dotgoto"), dotgoto
, NEED_URL
);
4020 WebcitAddUrlHandler(HKEY("dotskip"), dotskip
, NEED_URL
);
4021 WebcitAddUrlHandler(HKEY("display_private"), _display_private
, 0);
4022 WebcitAddUrlHandler(HKEY("goto_private"), goto_private
, NEED_URL
);
4023 WebcitAddUrlHandler(HKEY("zapped_list"), zapped_list
, 0);
4024 WebcitAddUrlHandler(HKEY("display_zap"), display_zap
, 0);
4025 WebcitAddUrlHandler(HKEY("zap"), zap
, 0);
4026 WebcitAddUrlHandler(HKEY("display_entroom"), display_entroom
, 0);
4027 WebcitAddUrlHandler(HKEY("entroom"), entroom
, 0);
4028 WebcitAddUrlHandler(HKEY("display_whok"), display_whok
, 0);
4029 WebcitAddUrlHandler(HKEY("do_invt_kick"), do_invt_kick
, 0);
4030 WebcitAddUrlHandler(HKEY("display_editroom"), display_editroom
, 0);
4031 WebcitAddUrlHandler(HKEY("netedit"), netedit
, 0);
4032 WebcitAddUrlHandler(HKEY("editroom"), editroom
, 0);
4033 WebcitAddUrlHandler(HKEY("delete_room"), delete_room
, 0);
4034 WebcitAddUrlHandler(HKEY("set_room_policy"), set_room_policy
, 0);
4035 WebcitAddUrlHandler(HKEY("set_floordiv_expanded"), set_floordiv_expanded
, NEED_URL
|AJAX
);
4036 WebcitAddUrlHandler(HKEY("changeview"), change_view
, 0);
4037 WebcitAddUrlHandler(HKEY("toggle_self_service"), toggle_self_service
, 0);
4038 WebcitAddUrlHandler(HKEY("json_roomflr"), jsonRoomFlr
, 0);
4039 RegisterNamespace("ROOMBANNER", 0, 1, tmplput_roombanner
, 0);
4041 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PERMANENT"), 0, ConditionalRoomHas_QR_PERMANENT
, CTX_NONE
);
4042 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_INUSE"), 0, ConditionalRoomHas_QR_INUSE
, CTX_NONE
);
4043 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PRIVATE"), 0, ConditionalRoomHas_QR_PRIVATE
, CTX_NONE
);
4044 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PASSWORDED"), 0, ConditionalRoomHas_QR_PASSWORDED
, CTX_NONE
);
4045 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_GUESSNAME"), 0, ConditionalRoomHas_QR_GUESSNAME
, CTX_NONE
);
4046 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_DIRECTORY"), 0, ConditionalRoomHas_QR_DIRECTORY
, CTX_NONE
);
4047 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_UPLOAD"), 0, ConditionalRoomHas_QR_UPLOAD
, CTX_NONE
);
4048 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_DOWNLOAD"), 0, ConditionalRoomHas_QR_DOWNLOAD
, CTX_NONE
);
4049 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_VISIDIR"), 0, ConditionalRoomHas_QR_VISDIR
, CTX_NONE
);
4050 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_ANONONLY"), 0, ConditionalRoomHas_QR_ANONONLY
, CTX_NONE
);
4051 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_ANONOPT"), 0, ConditionalRoomHas_QR_ANONOPT
, CTX_NONE
);
4052 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_NETWORK"), 0, ConditionalRoomHas_QR_NETWORK
, CTX_NONE
);
4053 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PREFONLY"), 0, ConditionalRoomHas_QR_PREFONLY
, CTX_NONE
);
4054 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_READONLY"), 0, ConditionalRoomHas_QR_READONLY
, CTX_NONE
);
4055 RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_MAILBOX"), 0, ConditionalRoomHas_QR_MAILBOX
, CTX_NONE
);
4057 RegisterConditional(HKEY("COND:UNGOTO"), 0, ConditionalHaveUngoto
, CTX_NONE
);
4058 RegisterConditional(HKEY("COND:ROOM:EDITACCESS"), 0, ConditionalHaveRoomeditRights
, CTX_NONE
);
4060 RegisterNamespace("ROOM:UNGOTO", 0, 0, tmplput_ungoto
, 0);
4061 RegisterIterator("FLOORS", 0, NULL
, GetFloorListHash
, NULL
, DeleteHash
, CTX_FLOORS
, CTX_NONE
, IT_NOFLAG
);
4062 RegisterNamespace("FLOOR:INFO", 1, 2, tmplput_FLOOR_Value
, CTX_FLOORS
);
4063 RegisterIterator("LKRA", 0, NULL
, GetRoomListHashLKRA
, NULL
, NULL
, CTX_ROOMS
, CTX_NONE
, IT_NOFLAG
);
4064 RegisterNamespace("ROOM:INFO", 1, 2, tmplput_ROOM_Value
, CTX_ROOMS
);