X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Froomops.c;h=301d83c5f55e00453403af932803054e9ee8cdbd;hb=7d37340257d55a5a09d6955cd082e94976ed6492;hp=cd707622737b7e42e291f720391872e198079334;hpb=24fb51aa089fb0d81bfe455789e99aec52b2d413;p=citadel.git diff --git a/webcit/roomops.c b/webcit/roomops.c index cd7076227..301d83c5f 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -1,748 +1,209 @@ /* - * $Id$ * Lots of different room-related operations. + * + * Copyright (c) 1996-2012 by the citadel.org team + * + * This program is open source software. You can redistribute it and/or + * modify it under the terms of the GNU General Public License, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. */ #include "webcit.h" #include "webserver.h" -#define MAX_FLOORS 128 - -char floorlist[MAX_FLOORS][SIZ]; /* list of our floor names */ - -char *viewdefs[9]; /* the different kinds of available views */ - -/* See GetFloorListHash and GetRoomListHash for info on these. - * Basically we pull LFLR/LKRA etc. and set up a room HashList with these keys. - */ - -void display_whok(void); - -/* - * Initialize the viewdefs with localized strings - */ -void initialize_viewdefs(void) { - viewdefs[0] = _("Bulletin Board"); - viewdefs[1] = _("Mail Folder"); - viewdefs[2] = _("Address Book"); - viewdefs[3] = _("Calendar"); - viewdefs[4] = _("Task List"); - viewdefs[5] = _("Notes List"); - viewdefs[6] = _("Wiki"); - viewdefs[7] = _("Calendar List"); - viewdefs[8] = _("Journal"); -} -/* - * Determine which views are allowed as the default for creating a new room. - */ -int is_view_allowed_as_default(int which_view) -{ - switch(which_view) { - case VIEW_BBS: return(1); - case VIEW_MAILBOX: return(1); - case VIEW_ADDRESSBOOK: return(1); - case VIEW_CALENDAR: return(1); - case VIEW_TASKS: return(1); - case VIEW_NOTES: return(1); - case VIEW_WIKI: return(0); /* because it isn't finished yet */ - case VIEW_CALBRIEF: return(0); - case VIEW_JOURNAL: return(0); - default: return(0); /* should never get here */ - } -} - - -/* - * load the list of floors - */ -void load_floorlist(StrBuf *Buf) +ConstStr QRFlagList[] = { + {HKEY(strof(QR_PERMANENT))}, + {HKEY(strof(QR_INUSE))}, + {HKEY(strof(QR_PRIVATE))}, + {HKEY(strof(QR_PASSWORDED))}, + {HKEY(strof(QR_GUESSNAME))}, + {HKEY(strof(QR_DIRECTORY))}, + {HKEY(strof(QR_UPLOAD))}, + {HKEY(strof(QR_DOWNLOAD))}, + {HKEY(strof(QR_VISDIR))}, + {HKEY(strof(QR_ANONONLY))}, + {HKEY(strof(QR_ANONOPT))}, + {HKEY(strof(QR_NETWORK))}, + {HKEY(strof(QR_PREFONLY))}, + {HKEY(strof(QR_READONLY))}, + {HKEY(strof(QR_MAILBOX))} +}; +ConstStr QR2FlagList[] = { + {HKEY(strof(QR2_SYSTEM))}, + {HKEY(strof(QR2_SELFLIST))}, + {HKEY(strof(QR2_COLLABDEL))}, + {HKEY(strof(QR2_SUBJECTREQ))}, + {HKEY(strof(QR2_SMTP_PUBLIC))}, + {HKEY(strof(QR2_MODERATED))}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")}, + {HKEY("")} +}; + +void _DBG_QR(long QR) { - int a; - int Done = 0; - - for (a = 0; a < MAX_FLOORS; ++a) - floorlist[a][0] = 0; + int i = 1; + int j=0; + StrBuf *QRVec; - serv_puts("LFLR"); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 1) { - strcpy(floorlist[0], "Main Floor"); - return; - } - while (!Done && (StrBuf_ServGetln(Buf)>=0)) { - if ( (StrLength(Buf)==3) && - !strcmp(ChrPtr(Buf), "000")) { - Done = 1; - break; + QRVec = NewStrBufPlain(NULL, 256); + while (i != 0) + { + if ((QR & i) != 0) { + if (StrLength(QRVec) > 0) + StrBufAppendBufPlain(QRVec, HKEY(" | "), 0); + StrBufAppendBufPlain(QRVec, CKEY(QRFlagList[j]), 0); } - extract_token(floorlist[StrBufExtract_int(Buf, 0, '|')], ChrPtr(Buf), 1, '|', sizeof floorlist[0]); + i = i << 1; + j++; } + syslog(9, "DBG: QR-Vec [%ld] [%s]\n", QR, ChrPtr(QRVec)); + FreeStrBuf(&QRVec); } - -/* - * display rooms in tree structure - */ -void room_tree_list(struct roomlisting *rp) +void _DBG_QR2(long QR2) { - char rmname[64]; - int f; + int i = 1; + int j=0; + StrBuf *QR2Vec; - if (rp == NULL) { - return; + QR2Vec = NewStrBufPlain(NULL, 256); + while (i != 0) + { + if ((QR2 & i) != 0) { + if (StrLength(QR2Vec) > 0) + StrBufAppendBufPlain(QR2Vec, HKEY(" | "), 0); + StrBufAppendBufPlain(QR2Vec, CKEY(QR2FlagList[j]), 0); + } + i = i << 1; + j++; } - - room_tree_list(rp->lnext); - - strcpy(rmname, rp->rlname); - f = rp->rlflags; - - wprintf(""); - escputs1(rmname, 1, 1); - if ((f & QR_DIRECTORY) && (f & QR_NETWORK)) - wprintf("}"); - else if (f & QR_DIRECTORY) - wprintf("]"); - else if (f & QR_NETWORK) - wprintf(")"); - else - wprintf(">"); - wprintf(" \n"); - - room_tree_list(rp->rnext); - free(rp); + syslog(9, "DBG: QR2-Vec [%ld] [%s]\n", QR2, ChrPtr(QR2Vec)); + FreeStrBuf(&QR2Vec); } -/* - * Room ordering stuff (compare first by floor, then by order) - */ -int rordercmp(struct roomlisting *r1, struct roomlisting *r2) -{ - if ((r1 == NULL) && (r2 == NULL)) - return (0); - if (r1 == NULL) - return (-1); - if (r2 == NULL) - return (1); - if (r1->rlfloor < r2->rlfloor) - return (-1); - if (r1->rlfloor > r2->rlfloor) - return (1); - if (r1->rlorder < r2->rlorder) - return (-1); - if (r1->rlorder > r2->rlorder) - return (1); - return (0); -} - - -/* - * Common code for all room listings - */ -void listrms(char *variety) -{ - char buf[SIZ]; - int num_rooms = 0; - - struct roomlisting *rl = NULL; - struct roomlisting *rp; - struct roomlisting *rs; - - /* Ask the server for a room list */ - serv_puts(variety); - serv_getln(buf, sizeof buf); - if (buf[0] != '1') { - wprintf(" "); - return; - } - - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - ++num_rooms; - rp = malloc(sizeof(struct roomlisting)); - extract_token(rp->rlname, buf, 0, '|', sizeof rp->rlname); - rp->rlflags = extract_int(buf, 1); - rp->rlfloor = extract_int(buf, 2); - rp->rlorder = extract_int(buf, 3); - rp->lnext = NULL; - rp->rnext = NULL; - - rs = rl; - if (rl == NULL) { - rl = rp; - } else - while (rp != NULL) { - if (rordercmp(rp, rs) < 0) { - if (rs->lnext == NULL) { - rs->lnext = rp; - rp = NULL; - } else { - rs = rs->lnext; - } - } else { - if (rs->rnext == NULL) { - rs->rnext = rp; - rp = NULL; - } else { - rs = rs->rnext; - } - } - } - } - room_tree_list(rl); - /* - * If no rooms were listed, print an nbsp to make the cell - * borders show up anyway. - */ - if (num_rooms == 0) wprintf(" "); -} -/* - * list all forgotten rooms - */ -void zapped_list(void) -{ - WCTemplputParams SubTP; - StrBuf *Buf; - output_headers(1, 1, 1, 0, 0, 0); - memset(&SubTP, 0, sizeof(WCTemplputParams)); - Buf = NewStrBufPlain(_("Zapped (forgotten) rooms"), -1); - SubTP.Filter.ContextType = CTX_STRBUF; - SubTP.Context = Buf; - DoTemplate(HKEY("beginbox"), NULL, &SubTP); - FreeStrBuf(&Buf); - listrms("LZRM -1"); - wprintf("

\n"); - wprintf(_("Click on any room to un-zap it and goto that room.\n")); - do_template("endbox", NULL); - wDumpContent(1); -} +/******************************************************************************* + ***************************** Goto Commands *********************************** + ******************************************************************************/ -/* - * read this room's info file (set v to 1 for verbose mode) - */ -void readinfo(StrBuf *Target, WCTemplputParams *TP) -{ - char buf[256]; - char briefinfo[128]; - char fullinfo[8192]; - int fullinfo_len = 0; - - serv_puts("RINF"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - if (fullinfo_len < (sizeof fullinfo - sizeof buf)) { - strcpy(&fullinfo[fullinfo_len], buf); - fullinfo_len += strlen(buf); - } - } - - safestrncpy(briefinfo, fullinfo, sizeof briefinfo); - strcpy(&briefinfo[50], "..."); - - wprintf("
" - ); - escputs(briefinfo); - wprintf("
"); - wprintf("\"%s\"", - _("Close window") - ); - escputs(fullinfo); - wprintf("
"); - } - else { - wprintf(" "); - } +void dotskip(void) { + smart_goto(sbstr("room")); } - - - -/* - * Display room banner icon. - * The server doesn't actually need the room name, but we supply it in - * order to keep the browser from using a cached icon from another room. - */ -void embed_room_graphic(StrBuf *Target, WCTemplputParams *TP) -{ - char buf[SIZ]; - - serv_puts("OIMG _roompic_"); - serv_getln(buf, sizeof buf); - if (buf[0] == '2') { - wprintf("wc_roomname)); - wprintf("\">"); - serv_puts("CLOS"); - serv_getln(buf, sizeof buf); - } - else if (WC->wc_view == VIEW_ADDRESSBOOK) { - wprintf("\"\"" - ); - } - else if ( (WC->wc_view == VIEW_CALENDAR) || (WC->wc_view == VIEW_CALBRIEF) ) { - wprintf("\"\"" - ); - } - else if (WC->wc_view == VIEW_TASKS) { - wprintf("\"\"" - ); - } - else if (WC->wc_view == VIEW_NOTES) { - wprintf("\"\"" - ); - } - else if (WC->wc_view == VIEW_MAILBOX) { - wprintf("\"\"" - ); +void dotgoto(void) { + if (!havebstr("room")) { + readloop(readnew, eUseDefault); + return; } - else { - wprintf("\"\"" - ); + if (WC->CurRoom.view != VIEW_MAILBOX) { /* dotgoto acts like dotskip when we're in a mailbox view */ + slrp_highest(); } - + smart_goto(sbstr("room")); } - - /* - * Display the current view and offer an option to change it + * goto next room */ -void embed_view_o_matic(StrBuf *Target, WCTemplputParams *TP) -{ - int i; - - wprintf("
\n"); - wprintf("\t
\n\t\n", WC->nonce); - wprintf(" " - "
\n"); +void smart_goto(const StrBuf *next_room) { + gotoroom(next_room); + readloop(readnew, eUseDefault); } - /* - * Display a search box + * goto a private room */ -void embed_search_o_matic(StrBuf *Target, WCTemplputParams *TP) +void goto_private(void) { - wprintf("
\n"); - wprintf("
\n", WC->nonce); - wprintf("serv_info->serv_fulltext_enabled ? "" : "disabled "); - wprintf("type=\"text\" name=\"query\" id=\"srchquery\" size=\"15\" maxlength=\"128\" class=\"inputbox\">\n" - ); - wprintf("
\n"); -} - - -/* - * Embed the room banner - * - * got The information returned from a GOTO server command - * navbar_style Determines which navigation buttons to display - * - */ - -void embed_room_banner(char *got, int navbar_style) { - wcsession *WCC = WC; - char buf[256]; - char buf2[1024]; - char with_files[256]; - int file_count=0; - - /* - * We need to have the information returned by a GOTO server command. - * If it isn't supplied, we fake it by issuing our own GOTO. - */ - if (got == NULL) { - memset(buf, '0', 20); - buf[20] = '\0'; - serv_printf("GOTO %s", ChrPtr(WC->wc_roomname)); - serv_getln(buf, sizeof buf); - got = buf; - } - - /* The browser needs some information for its own use */ - wprintf("\n", - WC->wc_is_trash - ); + char hold_rm[SIZ]; + StrBuf *Buf; + const StrBuf *gr_name; + long err; - /* - * If the user happens to select the "make this my start page" link, - * we want it to remember the URL as a "/dotskip" one instead of - * a "skip" or "gotonext" or something like that. - */ - if (WCC->Hdr->this_page == NULL) { - WCC->Hdr->this_page = NewStrBuf(); + if (!havebstr("ok_button")) { + display_main_menu(); + return; } - StrBufPrintf(WCC->Hdr->this_page, - "dotskip?room=%s", - ChrPtr(WC->wc_roomname) - ); - - /* Check for new mail. */ - WC->new_mail = extract_int(&got[4], 9); - WC->wc_view = extract_int(&got[4], 11); - - /* Is this a directory room and does it contain files and how many? */ - if ((WC->room_flags & QR_DIRECTORY) && (WC->room_flags & QR_VISDIR)) - { - serv_puts("RDIR"); - serv_getln(buf2, sizeof buf2); - if (buf2[0] == '1') while (serv_getln(buf2, sizeof buf2), strcmp(buf2, "000")) - file_count++; - snprintf (with_files, sizeof with_files, - "; %d %s ", - file_count, - ((file_count>1) || (file_count == 0) ? _("files") : _("file"))); + gr_name = sbstr("gr_name"); + Buf = NewStrBuf(); + strcpy(hold_rm, ChrPtr(WC->CurRoom.name)); + serv_printf("GOTO %s|%s", + ChrPtr(gr_name), + bstr("gr_pass")); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, &err) == 2) { + FlushRoomlist(); + smart_goto(gr_name); + FreeStrBuf(&Buf); + return; } - else - strcpy (with_files, ""); - - svprintf(HKEY("NUMMSGS"), WCS_STRING, - _("%d new of %d messages%s"), - extract_int(&got[4], 1), - extract_int(&got[4], 2), - with_files - ); - svcallback("ROOMPIC", embed_room_graphic); - svcallback("ROOMINFO", readinfo); - svcallback("VIEWOMATIC", embed_view_o_matic); - svcallback("SEARCHOMATIC", embed_search_o_matic); - svcallback("START", offer_start_page); - - do_template("roombanner", NULL); - /* roombanner contains this for mobile */ - if (navbar_style != navbar_none && !WC->is_mobile) { - - wprintf("
\n"); + if (err == 540) { + DoTemplate(HKEY("room_display_private"), NULL, &NoCtx); + FreeStrBuf(&Buf); + return; } - + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); + Buf = NewStrBufPlain(HKEY("_BASEROOM_")); + smart_goto(Buf); + FreeStrBuf(&Buf); + return; } - /* * back end routine to take the session to a new room */ long gotoroom(const StrBuf *gname) { + wcsession *WCC = WC; StrBuf *Buf; static long ls = (-1L); long err = 0; + int room_name_supplied = 0; + int is_baseroom = 0; /* store ungoto information */ - strcpy(WC->ugname, ChrPtr(WC->wc_roomname)); - WC->uglsn = ls; + if (StrLength(gname) > 0) { + room_name_supplied = 1; + } + if (room_name_supplied) { + strcpy(WCC->ugname, ChrPtr(WCC->CurRoom.name)); + if (!strcasecmp(ChrPtr(gname), "_BASEROOM_")) { + is_baseroom = 1; + } + } + WCC->uglsn = ls; Buf = NewStrBuf(); /* move to the new room */ - serv_printf("GOTO %s", ChrPtr(gname)); + if (room_name_supplied) { + serv_printf("GOTO %s", ChrPtr(gname)); + } + else { + /* or just refresh the current state... */ + serv_printf("GOTO 00000000000000000000"); + } StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, &err) != 2) { serv_puts("GOTO _BASEROOM_"); @@ -757,189 +218,204 @@ long gotoroom(const StrBuf *gname) return err; } } + FlushFolder(&WCC->CurRoom); + ParseGoto(&WCC->CurRoom, Buf); - if (WC->wc_roomname == NULL) - WC->wc_roomname = NewStrBuf(); - else - FlushStrBuf(WC->wc_roomname); - - StrBufExtract_token(WC->wc_roomname, Buf, 0, '|'); - StrBufCutLeft(WC->wc_roomname, 4); - WC->room_flags = StrBufExtract_int(Buf, 4, '|'); - /* highest_msg_read = extract_int(&buf[4],6); - maxmsgnum = extract_int(&buf[4],5); - */ - WC->is_mailbox = StrBufExtract_int(Buf, 7, '|'); - ls = StrBufExtract_long(Buf, 6, '|'); - WC->wc_floor = StrBufExtract_int(Buf, 10, '|'); - WC->wc_view = StrBufExtract_int(Buf, 11, '|'); - WC->wc_default_view = StrBufExtract_int(Buf, 12, '|'); - WC->wc_is_trash = StrBufExtract_int(Buf, 13, '|'); - WC->room_flags2 = StrBufExtract_int(Buf, 14, '|'); - - if (WC->is_aide) - WC->is_room_aide = WC->is_aide; - else - WC->is_room_aide = (char) StrBufExtract_int(Buf, 8, '|'); - - remove_march(WC->wc_roomname); - if (!strcasecmp(ChrPtr(gname), "_BASEROOM_")) - remove_march(gname); + if (room_name_supplied) { + remove_march(WCC->CurRoom.name); + if (is_baseroom) { + remove_march(gname); + } + } FreeStrBuf(&Buf); return err; } -/* - * goto next room - */ -void smart_goto(const StrBuf *next_room) { - gotoroom(next_room); - readloop(readnew); -} - - -/* - * mark all messages in current room as having been read - */ -void slrp_highest(void) +void ParseGoto(folder *room, StrBuf *Line) { - char buf[256]; - - serv_puts("SLRP HIGHEST"); - serv_getln(buf, sizeof buf); -} + wcsession *WCC = WC; + const char *Pos; + int flag; + void *vFloor = NULL; + StrBuf *pBuf; + if (StrLength(Line) < 4) { + return; + } + + /* ignore the commandstate... */ + Pos = ChrPtr(Line) + 4; -typedef struct __room_states { - char password[SIZ]; - char dirname[SIZ]; - char name[SIZ]; - int flags; - int floor; - int order; - int view; - int flags2; -} room_states; + if (room->RoomNameParts != NULL) + { + int i; + for (i=0; i < room->nRoomNameParts; i++) + FreeStrBuf(&room->RoomNameParts[i]); + free(room->RoomNameParts); + room->RoomNameParts = NULL; + } + pBuf = room->name; + if (pBuf == NULL) + pBuf = NewStrBufPlain(NULL, StrLength(Line)); + else + FlushStrBuf(pBuf); + memset(room, 0, sizeof(folder)); + room->name = pBuf; + StrBufExtract_NextToken(room->name, Line, &Pos, '|'); + room->nNewMessages = StrBufExtractNext_long(Line, &Pos, '|'); + if (room->nNewMessages > 0) + room->RAFlags |= UA_HASNEWMSGS; -/* - * Set/clear/read the "self-service list subscribe" flag for a room - * - * set newval to 0 to clear, 1 to set, any other value to leave unchanged. - * returns the new value. - */ + room->nTotalMessages = StrBufExtractNext_long(Line, &Pos, '|'); -int self_service(int newval) { - int current_value = 0; - char buf[SIZ]; + room->ShowInfo = StrBufExtractNext_long(Line, &Pos, '|'); - char name[SIZ]; - char password[SIZ]; - char dirname[SIZ]; - int flags, floor, order, view, flags2; + room->QRFlags = StrBufExtractNext_long(Line, &Pos, '|'); - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') return(0); + DBG_QR(room->QRFlags); - extract_token(name, &buf[4], 0, '|', sizeof name); - extract_token(password, &buf[4], 1, '|', sizeof password); - extract_token(dirname, &buf[4], 2, '|', sizeof dirname); - flags = extract_int(&buf[4], 3); - floor = extract_int(&buf[4], 4); - order = extract_int(&buf[4], 5); - view = extract_int(&buf[4], 6); - flags2 = extract_int(&buf[4], 7); + room->HighestRead = StrBufExtractNext_long(Line, &Pos, '|'); + room->LastMessageRead = StrBufExtractNext_long(Line, &Pos, '|'); - if (flags2 & QR2_SELFLIST) { - current_value = 1; - } - else { - current_value = 0; - } + room->is_inbox = StrBufExtractNext_long(Line, &Pos, '|'); - if (newval == 1) { - flags2 = flags2 | QR2_SELFLIST; - } - else if (newval == 0) { - flags2 = flags2 & ~QR2_SELFLIST; - } - else { - return(current_value); + flag = StrBufExtractNext_long(Line, &Pos, '|'); + if (WCC->is_aide || flag) { + room->RAFlags |= UA_ADMINALLOWED; } - if (newval != current_value) { - serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d", - name, password, dirname, flags, - floor, order, view, flags2); - serv_getln(buf, sizeof buf); - } + room->UsersNewMAilboxMessages = StrBufExtractNext_long(Line, &Pos, '|'); - return(newval); + room->floorid = StrBufExtractNext_int(Line, &Pos, '|'); -} + room->view = StrBufExtractNext_long(Line, &Pos, '|'); -int is_selflist(room_states *RoomFlags) -{ - return ((RoomFlags->flags2 & QR2_SELFLIST) != 0); -} + room->defview = StrBufExtractNext_long(Line, &Pos, '|'); -int is_publiclist(room_states *RoomFlags) -{ - return ((RoomFlags->flags2 & QR2_SMTP_PUBLIC) != 0); + flag = StrBufExtractNext_long(Line, &Pos, '|'); + if (flag) + room->RAFlags |= UA_ISTRASH; + + room->QRFlags2 = StrBufExtractNext_long(Line, &Pos, '|'); + DBG_QR2(room->QRFlags2); + + /* find out, whether we are in a sub-room */ + room->nRoomNameParts = StrBufNum_tokens(room->name, '\\'); + if (room->nRoomNameParts > 1) + { + int i; + + Pos = NULL; + room->RoomNameParts = malloc(sizeof(StrBuf*) * (room->nRoomNameParts + 1)); + memset(room->RoomNameParts, 0, sizeof(StrBuf*) * (room->nRoomNameParts + 1)); + for (i=0; i < room->nRoomNameParts; i++) + { + room->RoomNameParts[i] = NewStrBuf(); + StrBufExtract_NextToken(room->RoomNameParts[i], + room->name, &Pos, '\\'); + } + } + + /* Private mailboxes on the main floor get remapped to the personal folder */ + if ((room->QRFlags & QR_MAILBOX) && + (room->floorid == 0)) + { + room->floorid = VIRTUAL_MY_FLOOR; + if ((room->nRoomNameParts == 1) && + (StrLength(room->name) == 4) && + (strcmp(ChrPtr(room->name), "Mail") == 0)) + { + room->is_inbox = 1; + } + + } + /* get a pointer to the floor we're on: */ + if (WCC->Floors == NULL) + GetFloorListHash(NULL, NULL); + + GetHash(WCC->Floors, IKEY(room->floorid), &vFloor); + room->Floor = (const Floor*) vFloor; } -int is_moderatedlist(room_states *RoomFlags) +/* + * Delete the current room + */ +void delete_room(void) { - return ((RoomFlags->flags2 & QR2_MODERATED) != 0); + StrBuf *Line = NewStrBuf(); + const StrBuf *GoBstr; + + GoBstr = sbstr("go"); + + if (GoBstr != NULL) + { + if (gotoroom(GoBstr) == 200) + { + serv_puts("KILL 1"); + StrBuf_ServGetln(Line); + if (GetServerStatusMsg(Line, NULL, 1, 2) == 2) { + StrBuf *Buf; + + FlushRoomlist (); + Buf = NewStrBufPlain(HKEY("_BASEROOM_")); + smart_goto(Buf); + FreeStrBuf(&Buf); + FreeStrBuf(&Line); + return; + } + } + } + display_main_menu(); + FreeStrBuf(&Line); } /* - * Set/clear/read the "self-service list subscribe" flag for a room - * - * set newval to 0 to clear, 1 to set, any other value to leave unchanged. - * returns the new value. + * zap a room */ - -int get_roomflags(room_states *RoomOps) +void zap(void) { char buf[SIZ]; - - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') return(0); - - extract_token(RoomOps->name, &buf[4], 0, '|', sizeof RoomOps->name); - extract_token(RoomOps->password, &buf[4], 1, '|', sizeof RoomOps->password); - extract_token(RoomOps->dirname, &buf[4], 2, '|', sizeof RoomOps->dirname); - RoomOps->flags = extract_int(&buf[4], 3); - RoomOps->floor = extract_int(&buf[4], 4); - RoomOps->order = extract_int(&buf[4], 5); - RoomOps->view = extract_int(&buf[4], 6); - RoomOps->flags2 = extract_int(&buf[4], 7); - return (1); + StrBuf *final_destination; + + /** + * If the forget-room routine fails for any reason, we fall back + * to the current room; otherwise, we go to the Lobby + */ + final_destination = NewStrBufDup(WC->CurRoom.name); + + if (havebstr("ok_button")) { + serv_printf("GOTO %s", ChrPtr(WC->CurRoom.name)); + serv_getln(buf, sizeof buf); + if (buf[0] == '2') { + serv_puts("FORG"); + serv_getln(buf, sizeof buf); + if (buf[0] == '2') { + FlushStrBuf(final_destination); + StrBufAppendBufPlain(final_destination, HKEY("_BASEROOM_"), 0); + } + } + FlushRoomlist (); + } + smart_goto(final_destination); + FreeStrBuf(&final_destination); } -int set_roomflags(room_states *RoomOps) + +/* + * mark all messages in current room as having been read + */ +void slrp_highest(void) { - char buf[SIZ]; + char buf[256]; - serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d", - RoomOps->name, - RoomOps->password, - RoomOps->dirname, - RoomOps->flags, - RoomOps->floor, - RoomOps->order, - RoomOps->view, - RoomOps->flags2); + serv_puts("SLRP HIGHEST"); serv_getln(buf, sizeof buf); - return (1); } @@ -947,948 +423,238 @@ int set_roomflags(room_states *RoomOps) -/* - * display the form for editing a room - */ -void display_editroom(void) -{ - StrBuf *Buf; - char buf[SIZ]; - char cmd[1024]; - char node[256]; - char remote_room[128]; - char recp[1024]; - char er_name[128]; - char er_password[10]; - char er_dirname[15]; - char er_roomaide[26]; - unsigned er_flags; - unsigned er_flags2; - int er_floor; - int i, j; - char *tab; - char *shared_with; - char *not_shared_with; - int roompolicy = 0; - int roomvalue = 0; - int floorpolicy = 0; - int floorvalue = 0; - char pop3_host[128]; - char pop3_user[32]; - int bg = 0; - - tab = bstr("tab"); - if (IsEmptyStr(tab)) tab = "admin"; - Buf = NewStrBuf(); - load_floorlist(Buf); - FreeStrBuf(&Buf); - output_headers(1, 1, 1, 0, 0, 0); - wprintf("
"); - wprintf("
\n"); - /* print the tabbed dialog */ - wprintf("
"); - wprintf("" - "" - ); - wprintf("\n"); - wprintf("\n"); - if ( (WC->axlevel >= 6) || (WC->is_room_aide) ) { - wprintf("\n"); - wprintf("\n"); - wprintf("\n"); - wprintf("\n"); - - wprintf("\n"); - wprintf("\n"); +/******************************************************************************* + ***************************** Modify Rooms ************************************ + ******************************************************************************/ - wprintf("\n"); - wprintf("\n"); - wprintf("\n"); - wprintf("\n"); - } - wprintf("\n"); - wprintf("\n"); - - wprintf("
 "); - wprintf(_("Administration")); - } - else { - wprintf("< tab_cell_edit\">"); - wprintf(_("Administration")); - wprintf(""); - } - wprintf(" "); - wprintf(_("Configuration")); - } - else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Configuration")); - wprintf(""); - } - wprintf(" "); - wprintf(_("Message expire policy")); - } - else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Message expire policy")); - wprintf(""); - } - wprintf(" "); - wprintf(_("Access controls")); - } - else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Access controls")); - wprintf(""); - } - wprintf(" "); - wprintf(_("Sharing")); - } - else { - wprintf(" tab_cell_edit\">"); - wprintf(_("Sharing")); - wprintf(""); - } - wprintf(" "); - wprintf(_("Mailing list service")); - } - else { - wprintf("< tab_cell_edit\">"); - wprintf(_("Mailing list service")); - wprintf(""); - } - wprintf(" "); - wprintf(_("Remote retrieval")); - } - else { - wprintf("< tab_cell_edit\">"); - wprintf(_("Remote retrieval")); - wprintf(""); - } - wprintf(" 
\n"); - wprintf("
\n"); - /* end tabbed dialog */ - - wprintf("" - ); - - /* begin content of whatever tab is open now */ - - if (!strcmp(tab, "admin")) { - wprintf("
"); - wprintf(""); - wprintf("
"); - } - - if (!strcmp(tab, "config")) { - wprintf("
"); - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - if (!strncmp(buf, "550", 3)) { - wprintf("

%s


\n", - _("Higher access is required to access this function.") - ); - } - else if (buf[0] != '2') { - wprintf("

%s


\n", &buf[4]); - } - else { - extract_token(er_name, &buf[4], 0, '|', sizeof er_name); - extract_token(er_password, &buf[4], 1, '|', sizeof er_password); - extract_token(er_dirname, &buf[4], 2, '|', sizeof er_dirname); - er_flags = extract_int(&buf[4], 3); - er_floor = extract_int(&buf[4], 4); - er_flags2 = extract_int(&buf[4], 7); +void LoadRoomAide(void) +{ + wcsession *WCC = WC; + StrBuf *Buf; - wprintf("
\n"); - wprintf("\n", WC->nonce); - - wprintf("
  • "); - wprintf(_("Name of room: ")); - wprintf("\n", - er_name, - (sizeof(er_name)-1) - ); - - wprintf("
  • "); - wprintf(_("Resides on floor: ")); - wprintf("\n"); + if (WCC->CurRoom.RoomAideLoaded) + return; - wprintf("
  • "); - wprintf(_("Type of room:")); - wprintf("
      \n"); - - wprintf("
    • "); - wprintf(_("Public (automatically appears to everyone)")); - wprintf("\n"); - - wprintf("
    • "); - wprintf(_("Private - hidden (accessible to anyone who knows its name)")); - - wprintf("\n
    • "); - wprintf(_("Private - require password: ")); - wprintf("\n\n", - er_password); - - wprintf("
    • "); - wprintf(_("Private - invitation only")); - - wprintf("\n
    • "); - wprintf(_("Personal (mailbox for you only)")); - - wprintf("\n
    • "); - wprintf(_("If private, cause current users to forget room")); - - wprintf("\n
    \n"); - - wprintf("
  • "); - wprintf(_("Preferred users only")); - - wprintf("\n
  • "); - wprintf(_("Read-only room")); - - wprintf("\n
  • "); - wprintf(_("All users allowed to post may also delete messages")); - - /** directory stuff */ - wprintf("\n
  • "); - wprintf(_("File directory room")); - - wprintf("\n
    • "); - wprintf(_("Directory name: ")); - wprintf("\n", - er_dirname); - - wprintf("
    • "); - wprintf(_("Uploading allowed")); - - wprintf("\n
    • "); - wprintf(_("Downloading allowed")); - - wprintf("\n
    • "); - wprintf(_("Visible directory")); - wprintf("
    \n"); - - /** end of directory stuff */ - - wprintf("
  • "); - wprintf(_("Network shared room")); - - wprintf("\n
  • "); - wprintf(_("Permanent (does not auto-purge)")); - - wprintf("\n
  • "); - wprintf(_("Subject Required (Force users to specify a message subject)")); - - /** start of anon options */ - - wprintf("\n
  • "); - wprintf(_("Anonymous messages")); - wprintf("
      \n"); - - wprintf("
    • "); - wprintf(_("No anonymous messages")); - - wprintf("\n
    • "); - wprintf(_("All messages are anonymous")); - - wprintf("\n
    • "); - wprintf(_("Prompt user when entering messages")); - wprintf("
    \n"); - - /* end of anon options */ - - wprintf("
  • "); - wprintf(_("Room aide: ")); - serv_puts("GETA"); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') { - wprintf("%s\n", &buf[4]); - } else { - extract_token(er_roomaide, &buf[4], 0, '|', sizeof er_roomaide); - wprintf("\n", er_roomaide); - } - - wprintf("
\n"); - wprintf("\n" - "" - " " - "" - "
\n", - _("Save changes"), - _("Cancel") - ); - } - wprintf("
"); - } + WCC->CurRoom.RoomAideLoaded = 1; + Buf = NewStrBuf(); + serv_puts("GETA"); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) != 2) { + FlushStrBuf(WCC->CurRoom.RoomAide); + AppendImportantMessage (ChrPtr(Buf) + 4, + StrLength(Buf) - 4); + } else { + const char *Pos; + Pos = ChrPtr(Buf) + 4; - /* Sharing the room with other Citadel nodes... */ - if (!strcmp(tab, "sharing")) { - wprintf("
"); + FreeStrBuf(&WCC->CurRoom.RoomAide); + WCC->CurRoom.RoomAide = NewStrBufPlain (NULL, StrLength (Buf)); - shared_with = strdup(""); - not_shared_with = strdup(""); + StrBufExtract_NextToken(WCC->CurRoom.RoomAide, Buf, &Pos, '|'); + } + FreeStrBuf (&Buf); +} - /** Learn the current configuration */ - serv_puts("CONF getsys|application/x-citadel-ignet-config"); - serv_getln(buf, sizeof buf); - if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(node, buf, 0, '|', sizeof node); - not_shared_with = realloc(not_shared_with, - strlen(not_shared_with) + 32); - strcat(not_shared_with, node); - strcat(not_shared_with, "\n"); - } +int SaveRoomAide(folder *Room) +{ + StrBuf *Buf; + Buf = NewStrBuf (); + serv_printf("SETA %s", ChrPtr(Room->RoomAide)); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) != 2) { + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); + FreeStrBuf(&Buf); + return 0; + } + FreeStrBuf(&Buf); + return 1; +} - serv_puts("GNET"); - serv_getln(buf, sizeof buf); - if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cmd, buf, 0, '|', sizeof cmd); - extract_token(node, buf, 1, '|', sizeof node); - extract_token(remote_room, buf, 2, '|', sizeof remote_room); - if (!strcasecmp(cmd, "ignet_push_share")) { - shared_with = realloc(shared_with, - strlen(shared_with) + 32); - strcat(shared_with, node); - if (!IsEmptyStr(remote_room)) { - strcat(shared_with, "|"); - strcat(shared_with, remote_room); - } - strcat(shared_with, "\n"); - } - } - for (i=0; iXAPass); + FlushStrBuf(Room->Directory); + StrBufCutLeft(Buf, 4); + if (CareForStatusMessage) + AppendImportantMessage (SKEY(Buf)); + FreeStrBuf(&Buf); + Room->XALoaded = 2; + return 0; + } else { + const char *Pos; - /* Display the stuff */ - wprintf("

" - "" - "" - "\n" - "" - "
"); - wprintf(_("Shared with")); - wprintf(""); - wprintf(_("Not shared with")); - wprintf("
\n"); - - wprintf("\n"); - - for (i=0; i"); - wprintf("\n", WC->nonce); - wprintf("\n", node); - - wprintf(""); + Pos = ChrPtr(Buf) + 4; - wprintf("\n"); - } - } + FreeStrBuf(&Room->XAPass); + FreeStrBuf(&Room->Directory); - wprintf("
"); - wprintf(_("Remote node name")); - wprintf(""); - wprintf(_("Remote room name")); - wprintf(""); - wprintf(_("Actions")); - wprintf("
%s"); - if (!IsEmptyStr(remote_room)) { - escputs(remote_room); - } - wprintf(""); - - wprintf(""); - wprintf("\n"); - wprintf("\n"); - wprintf("", _("Unshare")); - wprintf("
\n"); - wprintf("
\n"); - wprintf("\n"); - - for (i=0; i"); - wprintf("\n", WC->nonce); - wprintf("\n"); - } - } + Room->XAPass = NewStrBufPlain (NULL, StrLength (Buf)); + Room->Directory = NewStrBufPlain (NULL, StrLength (Buf)); - wprintf("
"); - wprintf(_("Remote node name")); - wprintf(""); - wprintf(_("Remote room name")); - wprintf(""); - wprintf(_("Actions")); - wprintf("
"); - escputs(node); - wprintf("" - "" - ""); - wprintf(""); - wprintf("\n"); - wprintf("\n"); - wprintf("", _("Share")); - wprintf("
\n"); - wprintf("

\n" - "%s
  • ", _("Notes:")); - wprintf(_("When sharing a room, " - "it must be shared from both ends. Adding a node to " - "the 'shared' list sends messages out, but in order to" - " receive messages, the other nodes must be configured" - " to send messages out to your system as well. " - "
  • If the remote room name is blank, it is assumed " - "that the room name is identical on the remote node." - "
  • If the remote room name is different, the remote " - "node must also configure the name of the room here." - "

\n" - )); - - wprintf("
"); - } - - /* Mailing list management */ - if (!strcmp(tab, "listserv")) { - room_states RoomFlags; - wprintf("
"); - - wprintf("
" - "" - "
"); - - wprintf(_("The contents of this room are being " - "mailed as individual messages " - "to the following list recipients:" - "

\n")); - - serv_puts("GNET"); - serv_getln(buf, sizeof buf); - if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cmd, buf, 0, '|', sizeof cmd); - if (!strcasecmp(cmd, "listrecp")) { - extract_token(recp, buf, 1, '|', sizeof recp); - - escputs(recp); - wprintf(" "); - wprintf(_("(remove)")); - wprintf("
"); - } - } - wprintf("
\n" - "\n" - "\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("", _("Add")); - wprintf("
\n"); - - wprintf("
\n"); + FreeStrBuf(&Room->name); + Room->name = NewStrBufPlain(NULL, StrLength(Buf)); + StrBufExtract_NextToken(Room->name, Buf, &Pos, '|'); + + StrBufExtract_NextToken(Room->XAPass, Buf, &Pos, '|'); + StrBufExtract_NextToken(Room->Directory, Buf, &Pos, '|'); - wprintf(_("The contents of this room are being " - "mailed in digest form " - "to the following list recipients:" - "

\n")); + Room->QRFlags = StrBufExtractNext_long(Buf, &Pos, '|'); + Room->floorid = StrBufExtractNext_long(Buf, &Pos, '|'); + Room->Order = StrBufExtractNext_long(Buf, &Pos, '|'); + Room->defview = StrBufExtractNext_long(Buf, &Pos, '|'); + Room->QRFlags2 = StrBufExtractNext_long(Buf, &Pos, '|'); + FreeStrBuf (&Buf); + Room->XALoaded = 1; + return 1; + } +} - serv_puts("GNET"); - serv_getln(buf, sizeof buf); - if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cmd, buf, 0, '|', sizeof cmd); - if (!strcasecmp(cmd, "digestrecp")) { - extract_token(recp, buf, 1, '|', sizeof recp); - - escputs(recp); - wprintf(" "); - wprintf(_("(remove)")); - wprintf("
"); - } - } - wprintf("
\n" - "\n" - "\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("", _("Add")); - wprintf("
\n"); - - wprintf("
\n"); - - /** Pop open an address book -- begin **/ - wprintf("
" - "" - "" - " %s" - "
", - _("List"), - _("Digest"), - _("Add recipients from Contacts or other address books"), - _("Add recipients from Contacts or other address books") - ); - /* Pop open an address book -- end **/ - - wprintf("
\n
\n"); - - get_roomflags (&RoomFlags); - - /* Self Service subscription? */ - wprintf("\n" - " \n", - (is_https ? "https" : "http"), - ChrPtr(WC->Hdr->HR.http_host)); - /* Public posting? */ - wprintf("\n", - (is_publiclist(&RoomFlags))?"checked":""); - - /* Moderated List? */ - wprintf("\n", - (is_moderatedlist(&RoomFlags))?"checked":""); +int SetCurrentRoomFlags(folder *Room) +{ + StrBuf *Buf; - wprintf("", _("Save changes")); - wprintf("
\n"); - wprintf(_("Allow self-service subscribe/unsubscribe requests.")); - wprintf("
\n", - (is_selflist(&RoomFlags))?"checked":""); - wprintf(_("The URL for subscribe/unsubscribe is: ")); - wprintf("%s://%s/listsub
"); - wprintf(_("Allow non-subscribers to mail to this room.")); - wprintf("
"); - wprintf(_("Room post publication needs Aide permission.")); - wprintf("
" - "
"); - + Buf = NewStrBuf(); + DBG_QR(Room->QRFlags); + DBG_QR2(Room->QRFlags2); + + serv_printf("SETR %s|%s|%s|%ld|%d|%d|%ld|%ld|%ld", + ChrPtr(Room->name), + ChrPtr(Room->XAPass), + ChrPtr(Room->Directory), + Room->QRFlags, + Room->BumpUsers, + Room->floorid, + Room->Order, + Room->defview, + Room->QRFlags2); - wprintf("
\n"); - wprintf("
"); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) != 2) { + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); + FreeStrBuf(&Buf); + return 0; + } else { + FreeStrBuf(&Buf); + return 1; } +} + +void LoadRoomXA (void) +{ + wcsession *WCC = WC; + + if (WCC->CurRoom.XALoaded > 0) + return; + GetCurrentRoomFlags(&WCC->CurRoom, 0); +} - /* Configuration of The Dreaded Auto-Purger */ - if (!strcmp(tab, "expire")) { - wprintf("
"); - serv_puts("GPEX room"); - serv_getln(buf, sizeof buf); - if (!strncmp(buf, "550", 3)) { - wprintf("

%s


\n", - _("Higher access is required to access this function.") - ); - } - else if (buf[0] != '2') { - wprintf("

%s


\n", &buf[4]); - } - else { - roompolicy = extract_int(&buf[4], 0); - roomvalue = extract_int(&buf[4], 1); - - serv_puts("GPEX floor"); - serv_getln(buf, sizeof buf); - if (buf[0] == '2') { - floorpolicy = extract_int(&buf[4], 0); - floorvalue = extract_int(&buf[4], 1); - } - - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("\n"); - - if (WC->axlevel >= 6) { - wprintf("\n"); - wprintf("\n"); +void LoadXRoomPic(void) +{ + wcsession *WCC = WC; + StrBuf *Buf; - wprintf("
"); - wprintf(_("Message expire policy for this room")); - wprintf("
("); - escputs(ChrPtr(WC->wc_roomname)); - wprintf(")
"); - wprintf("", - ((roompolicy == 0) ? "CHECKED" : "") ); - wprintf(_("Use the default policy for this floor")); - wprintf("
\n"); - wprintf("", - ((roompolicy == 1) ? "CHECKED" : "") ); - wprintf(_("Never automatically expire messages")); - wprintf("
\n"); - wprintf("", - ((roompolicy == 2) ? "CHECKED" : "") ); - wprintf(_("Expire by message count")); - wprintf("
\n"); - wprintf("", - ((roompolicy == 3) ? "CHECKED" : "") ); - wprintf(_("Expire by message age")); - wprintf("
"); - wprintf(_("Number of messages or days: ")); - wprintf("", roomvalue); - wprintf("

"); - wprintf(_("Message expire policy for this floor")); - wprintf("
("); - escputs(floorlist[WC->wc_floor]); - wprintf(")
"); - wprintf("", - ((floorpolicy == 0) ? "CHECKED" : "") ); - wprintf(_("Use the system default")); - wprintf("
\n"); - wprintf("", - ((floorpolicy == 1) ? "CHECKED" : "") ); - wprintf(_("Never automatically expire messages")); - wprintf("
\n"); - wprintf("", - ((floorpolicy == 2) ? "CHECKED" : "") ); - wprintf(_("Expire by message count")); - wprintf("
\n"); - wprintf("", - ((floorpolicy == 3) ? "CHECKED" : "") ); - wprintf(_("Expire by message age")); - wprintf("
"); - wprintf(_("Number of messages or days: ")); - wprintf("", - floorvalue); - } - - wprintf("
\n"); - wprintf("

\n"); - wprintf("", _("Save changes")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("
\n" - "\n" - "
\n" - ); - } + if (WCC->CurRoom.XHaveRoomPicLoaded) + return; - wprintf("
"); + WCC->CurRoom.XHaveRoomPicLoaded = 1; + Buf = NewStrBuf(); + serv_puts("OIMG _roompic_"); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) != 2) { + WCC->CurRoom.XHaveRoomPic = 0; + } else { + WCC->CurRoom.XHaveRoomPic = 1; } + serv_puts("CLOS"); + StrBuf_ServGetln(Buf); + GetServerStatus(Buf, NULL); + FreeStrBuf (&Buf); +} - /* Access controls */ - if (!strcmp(tab, "access")) { - wprintf("
"); - display_whok(); - wprintf("
"); - } - /* Fetch messages from remote locations */ - if (!strcmp(tab, "feeds")) { - wprintf("
"); +void LoadXRoomInfoText(void) +{ + wcsession *WCC = WC; + StrBuf *Buf; + int Done = 0; + + if (WCC->CurRoom.XHaveInfoTextLoaded) { + return; + } - wprintf(""); - wprintf(_("Retrieve messages from these remote POP3 accounts and store them in this room:")); - wprintf("
\n"); + WCC->CurRoom.XHaveInfoTextLoaded = 1; + Buf = NewStrBuf(); - wprintf("" - ""); + serv_puts("RINF"); - serv_puts("GNET"); - serv_getln(buf, sizeof buf); - bg = 1; - if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cmd, buf, 0, '|', sizeof cmd); - if (!strcasecmp(cmd, "pop3client")) { - safestrncpy(recp, &buf[11], sizeof recp); - - bg = 1 - bg; - wprintf("", - (bg ? "even" : "odd") - ); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) == 1) { + WCC->CurRoom.XInfoText = NewStrBuf (); + + while (!Done && StrBuf_ServGetln(Buf)>=0) { + if ( (StrLength(Buf)==3) && + !strcmp(ChrPtr(Buf), "000")) + Done = 1; + else + StrBufAppendBuf(WCC->CurRoom.XInfoText, Buf, 0); + } + } - wprintf(""); - - wprintf(""); - - wprintf(""); /* Don't show the password */ - - wprintf("", extract_int(buf, 4) ? _("Yes") : _("No")); - - wprintf("", extract_long(buf, 5)); /* Fetching interval */ - - wprintf(""); - - wprintf(""); - } - } + FreeStrBuf(&Buf); +} - wprintf("\n" - "" - "" - "\n"); - wprintf("\n", WC->nonce); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf("
"); - wprintf(_("Remote host")); - wprintf(""); - wprintf(_("User name")); - wprintf(""); - wprintf(_("Password")); - wprintf(""); - wprintf(_("Keep messages on server?")); - wprintf(""); - wprintf(_("Interval")); - wprintf("
"); - extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); - escputs(pop3_host); - wprintf(""); - extract_token(pop3_user, buf, 2, '|', sizeof pop3_user); - escputs(pop3_user); - wprintf("*****%s%ld"); - wprintf(" "); - wprintf(_("(remove)")); - wprintf("
"); - wprintf("\n"); - wprintf(""); - wprintf("\n"); - wprintf(""); - wprintf("\n"); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf(""); - wprintf("", _("Add")); - wprintf("
\n"); - - wprintf("
\n"); - - wprintf(""); - wprintf(_("Fetch the following RSS feeds and store them in this room:")); - wprintf("
\n"); - - wprintf("" - ""); - - serv_puts("GNET"); - serv_getln(buf, sizeof buf); - bg = 1; - if (buf[0]=='1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cmd, buf, 0, '|', sizeof cmd); - if (!strcasecmp(cmd, "rssclient")) { - safestrncpy(recp, &buf[10], sizeof recp); - - bg = 1 - bg; - wprintf("", - (bg ? "even" : "odd") - ); - wprintf(""); - - wprintf(""); - - wprintf(""); - } - } +void LoadXRoomXCountFiles(void) +{ + wcsession *WCC = WC; + StrBuf *Buf; + int Done = 0; + + if (WCC->CurRoom.XHaveDownloadCount) + return; - wprintf("\n" - "" - "" - "\n"); - wprintf("\n", WC->nonce); - wprintf(""); - wprintf(""); - wprintf("
"); - wprintf("\" "); - wprintf(_("Feed URL")); - wprintf(""); - wprintf("
"); - extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); - escputs(pop3_host); - wprintf(""); - wprintf(" "); - wprintf(_("(remove)")); - wprintf("
"); - wprintf("\n"); - wprintf(""); - wprintf("", _("Add")); - wprintf("
\n"); + WCC->CurRoom.XHaveDownloadCount = 1; - wprintf("
"); + Buf = NewStrBuf(); + serv_puts("RDIR"); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) == 1) { + + while (!Done && StrBuf_ServGetln(Buf)>=0) { + if ( (StrLength(Buf)==3) && + !strcmp(ChrPtr(Buf), "000")) + Done = 1; + else + WCC->CurRoom.XDownloadCount++; + } } - - /* end content of whatever tab is open now */ - wprintf("
\n"); - - address_book_popup(); - wDumpContent(1); + FreeStrBuf (&Buf); } @@ -1896,32 +662,35 @@ void display_editroom(void) * Toggle self-service list subscription */ void toggle_self_service(void) { - room_states RoomFlags; + wcsession *WCC = WC; - get_roomflags (&RoomFlags); + if (GetCurrentRoomFlags (&WCC->CurRoom, 1) == 0) + return; if (yesbstr("QR2_SelfList")) - RoomFlags.flags2 = RoomFlags.flags2 | QR2_SELFLIST; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SELFLIST; else - RoomFlags.flags2 = RoomFlags.flags2 & ~QR2_SELFLIST; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SELFLIST; if (yesbstr("QR2_SMTP_PUBLIC")) - RoomFlags.flags2 = RoomFlags.flags2 | QR2_SMTP_PUBLIC; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SMTP_PUBLIC; else - RoomFlags.flags2 = RoomFlags.flags2 & ~QR2_SMTP_PUBLIC; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SMTP_PUBLIC; if (yesbstr("QR2_Moderated")) - RoomFlags.flags2 = RoomFlags.flags2 | QR2_MODERATED; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_MODERATED; else - RoomFlags.flags2 = RoomFlags.flags2 & ~QR2_MODERATED; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_MODERATED; if (yesbstr("QR2_SubsOnly")) - RoomFlags.flags2 = RoomFlags.flags2 | QR2_SMTP_PUBLIC; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SMTP_PUBLIC; else - RoomFlags.flags2 = RoomFlags.flags2 & ~QR2_SMTP_PUBLIC; + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SMTP_PUBLIC; - set_roomflags (&RoomFlags); - - display_editroom(); + SetCurrentRoomFlags (&WCC->CurRoom); + + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); } @@ -1931,553 +700,237 @@ void toggle_self_service(void) { */ void editroom(void) { + wcsession *WCC = WC; const StrBuf *Ptr; - StrBuf *Buf; - StrBuf *er_name; - StrBuf *er_password; - StrBuf *er_dirname; - StrBuf *er_roomaide; - int er_floor; - unsigned er_flags; - int er_listingorder; - int er_defaultview; - unsigned er_flags2; - int bump; - + const StrBuf *er_name; + const StrBuf *er_password; + const StrBuf *er_dirname; + const StrBuf *er_roomaide; + int succ1, succ2; if (!havebstr("ok_button")) { - strcpy(WC->ImportantMessage, - _("Cancelled. Changes were not saved.")); - display_editroom(); - return; - } - serv_puts("GETR"); - Buf = NewStrBuf(); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - StrBufCutLeft(Buf, 4); - strcpy(WC->ImportantMessage, ChrPtr(Buf)); - display_editroom(); - FreeStrBuf(&Buf); + AppendImportantMessage(_("Cancelled. Changes were not saved."), -1); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); return; } - er_name = NewStrBuf(); - er_password = NewStrBuf(); - er_dirname = NewStrBuf(); - er_roomaide = NewStrBuf(); - - StrBufCutLeft(Buf, 4); - StrBufExtract_token(er_name, Buf, 0, '|'); - StrBufExtract_token(er_password, Buf, 1, '|'); - StrBufExtract_token(er_dirname, Buf, 2, '|'); - er_flags = StrBufExtract_int(Buf, 3, '|'); - er_listingorder = StrBufExtract_int(Buf, 5, '|'); - er_defaultview = StrBufExtract_int(Buf, 6, '|'); - er_flags2 = StrBufExtract_int(Buf, 7, '|'); - - er_roomaide = NewStrBufDup(sbstr("er_roomaide")); - if (StrLength(er_roomaide) == 0) { - serv_puts("GETA"); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - FlushStrBuf(er_roomaide); - } else { - StrBufCutLeft(Buf, 4); - StrBufExtract_token(er_roomaide, Buf, 0, '|'); - } - } - Ptr = sbstr("er_name"); - if (StrLength(Ptr) > 0) { - FlushStrBuf(er_name); - StrBufAppendBuf(er_name, Ptr, 0); - } - - Ptr = sbstr("er_password"); - if (StrLength(Ptr) > 0) { - FlushStrBuf(er_password); - StrBufAppendBuf(er_password, Ptr, 0); - } - - - Ptr = sbstr("er_dirname"); - if (StrLength(Ptr) > 0) { /* todo: cut 15 */ - FlushStrBuf(er_dirname); - StrBufAppendBuf(er_dirname, Ptr, 0); + if (GetCurrentRoomFlags (&WCC->CurRoom, 1) == 0) { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + return; } + LoadRoomAide(); + WCC->CurRoom.QRFlags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME); Ptr = sbstr("type"); - er_flags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME); - if (!strcmp(ChrPtr(Ptr), "invonly")) { - er_flags |= (QR_PRIVATE); + WCC->CurRoom.QRFlags |= (QR_PRIVATE); } if (!strcmp(ChrPtr(Ptr), "hidden")) { - er_flags |= (QR_PRIVATE | QR_GUESSNAME); + WCC->CurRoom.QRFlags |= (QR_PRIVATE | QR_GUESSNAME); } if (!strcmp(ChrPtr(Ptr), "passworded")) { - er_flags |= (QR_PRIVATE | QR_PASSWORDED); + WCC->CurRoom.QRFlags |= (QR_PRIVATE | QR_PASSWORDED); } if (!strcmp(ChrPtr(Ptr), "personal")) { - er_flags |= QR_MAILBOX; + WCC->CurRoom.QRFlags |= QR_MAILBOX; } else { - er_flags &= ~QR_MAILBOX; + WCC->CurRoom.QRFlags &= ~QR_MAILBOX; } - + if (yesbstr("prefonly")) { - er_flags |= QR_PREFONLY; + WCC->CurRoom.QRFlags |= QR_PREFONLY; } else { - er_flags &= ~QR_PREFONLY; + WCC->CurRoom.QRFlags &= ~QR_PREFONLY; } if (yesbstr("readonly")) { - er_flags |= QR_READONLY; + WCC->CurRoom.QRFlags |= QR_READONLY; } else { - er_flags &= ~QR_READONLY; + WCC->CurRoom.QRFlags &= ~QR_READONLY; } - if (yesbstr("collabdel")) { - er_flags2 |= QR2_COLLABDEL; + WCC->CurRoom.QRFlags2 |= QR2_COLLABDEL; } else { - er_flags2 &= ~QR2_COLLABDEL; + WCC->CurRoom.QRFlags2 &= ~QR2_COLLABDEL; } if (yesbstr("permanent")) { - er_flags |= QR_PERMANENT; + WCC->CurRoom.QRFlags |= QR_PERMANENT; } else { - er_flags &= ~QR_PERMANENT; + WCC->CurRoom.QRFlags &= ~QR_PERMANENT; } if (yesbstr("subjectreq")) { - er_flags2 |= QR2_SUBJECTREQ; + WCC->CurRoom.QRFlags2 |= QR2_SUBJECTREQ; } else { - er_flags2 &= ~QR2_SUBJECTREQ; + WCC->CurRoom.QRFlags2 &= ~QR2_SUBJECTREQ; } if (yesbstr("network")) { - er_flags |= QR_NETWORK; + WCC->CurRoom.QRFlags |= QR_NETWORK; } else { - er_flags &= ~QR_NETWORK; + WCC->CurRoom.QRFlags &= ~QR_NETWORK; } if (yesbstr("directory")) { - er_flags |= QR_DIRECTORY; + WCC->CurRoom.QRFlags |= QR_DIRECTORY; } else { - er_flags &= ~QR_DIRECTORY; + WCC->CurRoom.QRFlags &= ~QR_DIRECTORY; } if (yesbstr("ulallowed")) { - er_flags |= QR_UPLOAD; + WCC->CurRoom.QRFlags |= QR_UPLOAD; } else { - er_flags &= ~QR_UPLOAD; + WCC->CurRoom.QRFlags &= ~QR_UPLOAD; } if (yesbstr("dlallowed")) { - er_flags |= QR_DOWNLOAD; + WCC->CurRoom.QRFlags |= QR_DOWNLOAD; } else { - er_flags &= ~QR_DOWNLOAD; + WCC->CurRoom.QRFlags &= ~QR_DOWNLOAD; } if (yesbstr("visdir")) { - er_flags |= QR_VISDIR; + WCC->CurRoom.QRFlags |= QR_VISDIR; } else { - er_flags &= ~QR_VISDIR; + WCC->CurRoom.QRFlags &= ~QR_VISDIR; } Ptr = sbstr("anon"); - er_flags &= ~(QR_ANONONLY | QR_ANONOPT); + WCC->CurRoom.QRFlags &= ~(QR_ANONONLY | QR_ANONOPT); if (!strcmp(ChrPtr(Ptr), "anononly")) - er_flags |= QR_ANONONLY; + WCC->CurRoom.QRFlags |= QR_ANONONLY; if (!strcmp(ChrPtr(Ptr), "anon2")) - er_flags |= QR_ANONOPT; - - bump = yesbstr("bump"); - - er_floor = ibstr("er_floor"); - - StrBufPrintf(Buf, "SETR %s|%s|%s|%u|%d|%d|%d|%d|%u", - ChrPtr(er_name), - ChrPtr(er_password), - ChrPtr(er_dirname), - er_flags, - bump, - er_floor, - er_listingorder, - er_defaultview, - er_flags2); - serv_putbuf(Buf); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - strcpy(WC->ImportantMessage, &ChrPtr(Buf)[4]); - display_editroom(); - FreeStrBuf(&Buf); - FreeStrBuf(&er_name); - FreeStrBuf(&er_password); - FreeStrBuf(&er_dirname); - FreeStrBuf(&er_roomaide); - return; - } - gotoroom(er_name); - - if (StrLength(er_roomaide) > 0) { - serv_printf("SETA %s", ChrPtr(er_roomaide)); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - strcpy(WC->ImportantMessage, &ChrPtr(Buf)[4]); - display_main_menu(); - FreeStrBuf(&Buf); - FreeStrBuf(&er_name); - FreeStrBuf(&er_password); - FreeStrBuf(&er_dirname); - FreeStrBuf(&er_roomaide); - return; - } - } - gotoroom(er_name); - strcpy(WC->ImportantMessage, _("Your changes have been saved.")); - display_editroom(); - FreeStrBuf(&Buf); - FreeStrBuf(&er_name); - FreeStrBuf(&er_password); - FreeStrBuf(&er_dirname); - FreeStrBuf(&er_roomaide); - return; -} - - -/* - * Display form for Invite, Kick, and show Who Knows a room - */ -void do_invt_kick(void) { - char buf[SIZ], room[SIZ], username[SIZ]; - - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - - if (buf[0] != '2') { - escputs(&buf[4]); - return; - } - extract_token(room, &buf[4], 0, '|', sizeof room); + WCC->CurRoom.QRFlags |= QR_ANONOPT; - strcpy(username, bstr("username")); - - if (havebstr("kick_button")) { - sprintf(buf, "KICK %s", username); - serv_puts(buf); - serv_getln(buf, sizeof buf); + er_name = sbstr("er_name"); + er_dirname = sbstr("er_dirname"); + er_roomaide = sbstr("er_roomaide"); + er_password = sbstr("er_password"); - if (buf[0] != '2') { - strcpy(WC->ImportantMessage, &buf[4]); - } else { - sprintf(WC->ImportantMessage, - _("User %s kicked out of room %s.\n"), - username, room); - } - } + FlushStrBuf(WCC->CurRoom.name); + StrBufAppendBuf(WCC->CurRoom.name, er_name, 0); - if (havebstr("invite_button")) { - sprintf(buf, "INVT %s", username); - serv_puts(buf); - serv_getln(buf, sizeof buf); - - if (buf[0] != '2') { - strcpy(WC->ImportantMessage, &buf[4]); - } else { - sprintf(WC->ImportantMessage, - _("User %s invited to room %s.\n"), - username, room); - } - } + FlushStrBuf(WCC->CurRoom.Directory); + StrBufAppendBuf(WCC->CurRoom.Directory, er_dirname, 0); - display_editroom(); -} + FlushStrBuf(WCC->CurRoom.RoomAide); + StrBufAppendBuf(WCC->CurRoom.RoomAide, er_roomaide, 0); + FlushStrBuf(WCC->CurRoom.XAPass); + StrBufAppendBuf(WCC->CurRoom.XAPass, er_password, 0); + WCC->CurRoom.BumpUsers = yesbstr("bump"); -/* - * Display form for Invite, Kick, and show Who Knows a room - */ -void display_whok(void) -{ - char buf[SIZ], room[SIZ], username[SIZ]; + WCC->CurRoom.floorid = ibstr("er_floor"); - serv_puts("GETR"); - serv_getln(buf, sizeof buf); + succ1 = SetCurrentRoomFlags(&WCC->CurRoom); - if (buf[0] != '2') { - escputs(&buf[4]); - return; - } - extract_token(room, &buf[4], 0, '|', sizeof room); - - - wprintf("
"); - wprintf(_("The users listed below have access to this room. " - "To remove a user from the access list, select the user " - "name from the list and click 'Kick'.")); - wprintf("

"); + succ2 = SaveRoomAide (&WCC->CurRoom); - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("\n"); - wprintf("
\n"); - - wprintf("", _("Kick")); - wprintf("
\n"); - - wprintf("
"); - wprintf(_("To grant another user access to this room, enter the " - "user name in the box below and click 'Invite'.")); - wprintf("

"); - - wprintf("
\n"); - wprintf("\n"); - wprintf("\n", WC->nonce); - wprintf(_("Invite:")); - wprintf(" "); - wprintf("
\n" - "" - "" - "
\n", _("Invite")); - /* Pop open an address book -- begin **/ - wprintf( - "" - "" - " %s", - _("User"), - _("Users"), _("Users") - ); - /* Pop open an address book -- end **/ - - wprintf("
\n"); - address_book_popup(); - wDumpContent(1); + if (succ1 + succ2 == 0) { + AppendImportantMessage (_("Your changes have been saved."), -1); + } + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + return; } /* - * display the form for entering a new room + * Display form for Invite, Kick, and show Who Knows a room */ -void display_entroom(void) +void do_invt_kick(void) { - StrBuf *Buf; - int i; - char buf[SIZ]; - - Buf = NewStrBuf(); - serv_puts("CRE8 0"); - serv_getln(buf, sizeof buf); - - if (buf[0] != '2') { - strcpy(WC->ImportantMessage, &buf[4]); - display_main_menu(); - FreeStrBuf(&Buf); - return; - } - - output_headers(1, 1, 1, 0, 0, 0); - - svprintf(HKEY("BOXTITLE"), WCS_STRING, _("Create a new room")); - do_template("beginbox", NULL); - - wprintf("
\n"); - wprintf("\n", WC->nonce); + StrBuf *Buf, *User; + const StrBuf *UserNames; + int Kick, Invite; + wcsession *WCC = WC; - wprintf(" "); - wprintf(""); + if (GetCurrentRoomFlags(&WCC->CurRoom, 1) == 1) + { + const char *Pos; + UserNames = sbstr("username"); + Kick = havebstr("kick_button"); + Invite = havebstr("invite_button"); - wprintf(""); - - /* - * Our clever little snippet of JavaScript automatically selects - * a public room if the view is set to Bulletin Board or wiki, and - * it selects a mailbox room otherwise. The user can override this, - * of course. We also disable the floor selector for mailboxes. - */ - wprintf(""); - - wprintf("
"); - wprintf(_("Name of room: ")); - wprintf(""); - wprintf("\n"); - wprintf("
"); - wprintf(_("Resides on floor: ")); - wprintf(""); - load_floorlist(Buf); - wprintf("\n"); - wprintf("
"); - wprintf(_("Default view for room: ")); - wprintf(""); - wprintf("\n"); - wprintf("
"); - wprintf(_("Type of room:")); - wprintf(""); - wprintf("
    \n"); - - wprintf("
  • "); - wprintf(_("Public (automatically appears to everyone)")); - wprintf("
  • "); - - wprintf("\n
  • "); - wprintf(_("Private - hidden (accessible to anyone who knows its name)")); - wprintf("
  • "); - - wprintf("\n
  • "); - wprintf(_("Private - require password: ")); - wprintf("\n"); - wprintf("
  • "); - - wprintf("
  • "); - wprintf(_("Private - invitation only")); - wprintf("
  • "); - - wprintf("\n
  • "); - wprintf(_("Personal (mailbox for you only)")); - wprintf("
  • "); - - wprintf("\n
\n"); - wprintf("
\n"); - - wprintf("
\n"); - wprintf("", _("Create new room")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("
\n"); - wprintf("
\n
"); - serv_printf("MESG roomaccess"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') { - fmout("LEFT"); - } - - do_template("endbox", NULL); + } + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); wDumpContent(1); - FreeStrBuf(&Buf); -} - - - - -/* - * support function for entroom() -- sets the default view - */ -void er_set_default_view(int newview) { - - char buf[SIZ]; - - char rm_name[SIZ]; - char rm_pass[SIZ]; - char rm_dir[SIZ]; - int rm_bits1; - int rm_floor; - int rm_listorder; - int rm_bits2; - - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') return; - - extract_token(rm_name, &buf[4], 0, '|', sizeof rm_name); - extract_token(rm_pass, &buf[4], 1, '|', sizeof rm_pass); - extract_token(rm_dir, &buf[4], 2, '|', sizeof rm_dir); - rm_bits1 = extract_int(&buf[4], 3); - rm_floor = extract_int(&buf[4], 4); - rm_listorder = extract_int(&buf[4], 5); - rm_bits2 = extract_int(&buf[4], 7); - - serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d", - rm_name, rm_pass, rm_dir, rm_bits1, rm_floor, - rm_listorder, newview, rm_bits2 - ); - serv_getln(buf, sizeof buf); } - /* * Create a new room */ void entroom(void) { - char buf[SIZ]; + StrBuf *Line; const StrBuf *er_name; const StrBuf *er_type; const StrBuf *er_password; int er_floor; int er_num_type; int er_view; + wcsession *WCC = WC; if (!havebstr("ok_button")) { - strcpy(WC->ImportantMessage, - _("Cancelled. No new room was created.")); + AppendImportantMessage(_("Cancelled. No new room was created."), -1); display_main_menu(); return; } @@ -2503,205 +956,90 @@ void entroom(void) ChrPtr(er_password), er_floor, 0, - er_view); - - serv_getln(buf, sizeof buf); - if (buf[0] != '2') { - strcpy(WC->ImportantMessage, &buf[4]); - display_main_menu(); - return; - } - /** TODO: Room created, now udate the left hand icon bar for this user */ - burn_folder_cache(0); /* burn the old folder cache */ - - - gotoroom(er_name); - do_change_view(er_view); /* Now go there */ -} - - -/** - * \brief display the screen to enter a private room - */ -void display_private(char *rname, int req_pass) -{ - WCTemplputParams SubTP; - StrBuf *Buf; - output_headers(1, 1, 1, 0, 0, 0); - - Buf = NewStrBufPlain(_("Go to a hidden room"), -1); - memset(&SubTP, 0, sizeof(WCTemplputParams)); - SubTP.Filter.ContextType = CTX_STRBUF; - SubTP.Context = Buf; - DoTemplate(HKEY("beginbox"), NULL, &SubTP); - - FreeStrBuf(&Buf); - - wprintf("

"); - wprintf(_("If you know the name of a hidden (guess-name) or " - "passworded room, you can enter that room by typing " - "its name below. Once you gain access to a private " - "room, it will appear in your regular room listings " - "so you don't have to keep returning here.")); - wprintf("

"); - - wprintf("
\n"); - wprintf("\n", WC->nonce); - - wprintf(" " - "
"); - wprintf(_("Enter room name:")); - wprintf("" - "\n", rname); - - if (req_pass) { - wprintf("
"); - wprintf(_("Enter room password:")); - wprintf(""); - wprintf("\n"); - } - wprintf("
\n"); - - wprintf("
\n"); - wprintf("" - " " - "", - _("Go there"), - _("Cancel") - ); - wprintf("
\n"); - - do_template("endbox", NULL); - - wDumpContent(1); -} - -/** - * \brief goto a private room - */ -void goto_private(void) -{ - char hold_rm[SIZ]; - char buf[SIZ]; + er_view); - if (!havebstr("ok_button")) { + Line = NewStrBuf(); + StrBuf_ServGetln(Line); + if (GetServerStatusMsg(Line, NULL, 1, 2) != 2) { + FreeStrBuf(&Line); display_main_menu(); return; } - strcpy(hold_rm, ChrPtr(WC->wc_roomname)); - serv_printf("GOTO %s|%s", - bstr("gr_name"), - bstr("gr_pass")); - serv_getln(buf, sizeof buf); + /** TODO: Room created, now update the left hand icon bar for this user */ + gotoroom(er_name); - if (buf[0] == '2') { - smart_goto(sbstr("gr_name")); - return; - } - if (!strncmp(buf, "540", 3)) { - display_private(bstr("gr_name"), 1); - return; + serv_printf("VIEW %d", er_view); + StrBuf_ServGetln(Line); + FreeStrBuf(&Line); /* TODO: should we care about errors? */ + WCC->CurRoom.view = er_view; + + if ( (WCC != NULL) && ( (WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) ) { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } else { + smart_goto(WCC->CurRoom.name); } - output_headers(1, 1, 1, 0, 0, 0); - wprintf("%s\n", &buf[4]); - wDumpContent(1); - return; + FreeStrBuf(&Line); } -/** - * \brief display the screen to zap a room - */ -void display_zap(void) -{ - output_headers(1, 1, 2, 0, 0, 0); - - wprintf("
\n"); - wprintf("

"); - wprintf(_("Zap (forget/unsubscribe) the current room")); - wprintf("

\n"); - wprintf("
\n"); - - wprintf("
\n"); - - wprintf(_("If you select this option, %s will " - "disappear from your room list. Is this what you wish " - "to do?
\n"), ChrPtr(WC->wc_roomname)); - - wprintf("
\n"); - wprintf("\n", WC->nonce); - wprintf("", _("Zap this room")); - wprintf(" "); - wprintf("", _("Cancel")); - wprintf("
\n"); - wDumpContent(1); -} -/** - * \brief zap a room + +/* + * Change the view for this room */ -void zap(void) -{ +void change_view(void) { + int newview; char buf[SIZ]; - StrBuf *final_destination; - - /** - * If the forget-room routine fails for any reason, we fall back - * to the current room; otherwise, we go to the Lobby - */ - final_destination = NewStrBufDup(WC->wc_roomname); - if (havebstr("ok_button")) { - serv_printf("GOTO %s", ChrPtr(WC->wc_roomname)); - serv_getln(buf, sizeof buf); - if (buf[0] == '2') { - serv_puts("FORG"); - serv_getln(buf, sizeof buf); - if (buf[0] == '2') { - FlushStrBuf(final_destination); - StrBufAppendBufPlain(final_destination, HKEY("_BASEROOM_"), 0); - } - } - } - smart_goto(final_destination); - FreeStrBuf(&final_destination); + newview = lbstr("view"); + serv_printf("VIEW %d", newview); + serv_getln(buf, sizeof buf); + WC->CurRoom.view = newview; + smart_goto(WC->CurRoom.name); } -/** - * \brief Delete the current room +/* + * Set the message expire policy for this room and/or floor */ -void delete_room(void) -{ - char buf[SIZ]; +void set_room_policy(void) { - - serv_puts("KILL 1"); - serv_getln(buf, sizeof buf); - burn_folder_cache(0); /* Burn the cahce of known rooms to update the icon bar */ - if (buf[0] != '2') { - strcpy(WC->ImportantMessage, &buf[4]); - display_main_menu(); + if (!havebstr("ok_button")) { + AppendImportantMessage(_("Cancelled. Changes were not saved."), -1); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); return; - } else { - StrBuf *Buf; - - Buf = NewStrBufPlain(HKEY("_BASEROOM_")); - smart_goto(Buf); - FreeStrBuf(&Buf); } + + StrBuf *Line = NewStrBuf(); + + serv_printf("SPEX room|%d|%d", ibstr("roompolicy"), ibstr("roomvalue")); + StrBuf_ServGetln(Line); + GetServerStatusMsg(Line, NULL, 1, 0); + if (WC->axlevel >= 6) { + serv_printf("SPEX floor|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); + StrBuf_ServGetln(Line); + GetServerStatusMsg(Line, NULL, 1, 0); + } + FreeStrBuf(&Line); + ReloadCurrentRoom(); + + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); } -/** - * \brief Perform changes to a room's network configuration +/* + * Perform changes to a room's network configuration */ void netedit(void) { - FILE *fp; char buf[SIZ]; char line[SIZ]; char cmpa0[SIZ]; @@ -2709,6 +1047,13 @@ void netedit(void) { char cmpb0[SIZ]; char cmpb1[SIZ]; int i, num_addrs; + StrBuf *Line; + StrBuf *TmpBuf; + int Done; + + if (havebstr("force_room")) { + gotoroom(sbstr("force_room")); + } /*/ TODO: do line dynamic! */ if (havebstr("line_pop3host")) { strcpy(line, bstr("prefix")); @@ -2729,50 +1074,62 @@ void netedit(void) { strcat(line, bstr("suffix")); } else { - display_editroom(); - return; - } - - - fp = tmpfile(); - if (fp == NULL) { - display_editroom(); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); return; } + Line = NewStrBuf(); + TmpBuf = NewStrBuf(); serv_puts("GNET"); - serv_getln(buf, sizeof buf); - if (buf[0] != '1') { - fclose(fp); - display_editroom(); + StrBuf_ServGetln(Line); + if (GetServerStatus(Line, NULL) != 1) { + AppendImportantMessage(SRV_STATUS_MSG(Line)); + FreeStrBuf(&Line); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); return; } /** This loop works for add *or* remove. Spiffy, eh? */ - while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(cmpa0, buf, 0, '|', sizeof cmpa0); - extract_token(cmpa1, buf, 1, '|', sizeof cmpa1); - extract_token(cmpb0, line, 0, '|', sizeof cmpb0); - extract_token(cmpb1, line, 1, '|', sizeof cmpb1); - if ( (strcasecmp(cmpa0, cmpb0)) - || (strcasecmp(cmpa1, cmpb1)) ) { - fprintf(fp, "%s\n", buf); + Done = 0; + extract_token(cmpb0, line, 0, '|', sizeof cmpb0); + extract_token(cmpb1, line, 1, '|', sizeof cmpb1); + while (!Done && StrBuf_ServGetln(Line)>=0) { + if ( (StrLength(Line)==3) && + !strcmp(ChrPtr(Line), "000")) + { + Done = 1; + } + else + { + extract_token(cmpa0, ChrPtr(Line), 0, '|', sizeof cmpa0); + extract_token(cmpa1, ChrPtr(Line), 1, '|', sizeof cmpa1); + if ( (strcasecmp(cmpa0, cmpb0)) + || (strcasecmp(cmpa1, cmpb1)) ) { + StrBufAppendBufPlain(Line, HKEY("\n"), 0); + StrBufAppendBuf(TmpBuf, Line, 0); + } } } - rewind(fp); serv_puts("SNET"); - serv_getln(buf, sizeof buf); - if (buf[0] != '4') { - fclose(fp); - display_editroom(); + StrBuf_ServGetln(Line); + if (GetServerStatus(Line, NULL) != 4) { + + AppendImportantMessage(SRV_STATUS_MSG(Line)); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + FreeStrBuf(&Line); + FreeStrBuf(&TmpBuf); return; } - while (fgets(buf, sizeof buf, fp) != NULL) { - buf[strlen(buf)-1] = 0; - serv_puts(buf); - } + serv_putbuf(TmpBuf); + FreeStrBuf(&TmpBuf); if (havebstr("add_button")) { num_addrs = num_tokens(bstr("line"), ','); @@ -2794,372 +1151,160 @@ void netedit(void) { } serv_puts("000"); - fclose(fp); - display_editroom(); -} - + FlushIgnetCfgs(&WC->CurRoom); + FreeStrBuf(&Line); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); +} -/** - * \brief Convert a room name to a folder-ish-looking name. - * \param folder the folderish name - * \param room the room name - * \param floor the floor name - * \param is_mailbox is it a mailbox? +/* + * Known rooms list (box style) */ -void room_to_folder(char *folder, char *room, int floor, int is_mailbox) +void knrooms(void) { - int i, len; + DeleteHash(&WC->Rooms); + output_headers(1, 1, 1, 0, 0, 0); + do_template("knrooms"); + wDumpContent(1); +} - /** - * For mailboxes, just do it straight... - */ - if (is_mailbox) { - sprintf(folder, "My folders|%s", room); - } - /** - * Otherwise, prefix the floor name as a "public folders" moniker - */ - else { - if (floor > MAX_FLOORS) { - wc_backtrace (); - sprintf(folder, "%%%%%%|%s", room); - } - else { - sprintf(folder, "%s|%s", floorlist[floor], room); - } - } - /** - * Replace "\" characters with "|" for pseudo-folder-delimiting - */ - len = strlen (folder); - for (i=0; iwc_view = newview; - smart_goto(WC->wc_roomname); -} -/** - * \brief Change the view for this room - */ -void change_view(void) { - int view; - view = lbstr("view"); - do_change_view(view); -} -/** - * \brief Burn the cached folder list. - * \param age How old the cahce needs to be before we burn it. - */ -void burn_folder_cache(time_t age) -{ - /** If our cached folder list is very old, burn it. */ - if (WC->cache_fold != NULL) { - if ((time(NULL) - WC->cache_timestamp) > age) { - free(WC->cache_fold); - WC->cache_fold = NULL; - } - } -} -/** - * \brief Do either a known rooms list or a folders list, depending on the - * user's preference - */ -void knrooms(void) -{ - StrBuf *ListView = NULL; - /** Determine whether the user is trying to change views */ - if (havebstr("view")) { - ListView = NewStrBufDup(SBSTR("view")); - set_preference("roomlistview", ListView, 1); - } - /** Sanitize the input so its safe */ - if(!get_preference("roomlistview", &ListView) || - ((strcasecmp(ChrPtr(ListView), "folders") != 0) && - (strcasecmp(ChrPtr(ListView), "table") != 0))) - { - if (ListView == NULL) { - ListView = NewStrBufPlain(HKEY("rooms")); - set_preference("roomlistview", ListView, 0); - } - else { - StrBufPlain(ListView, HKEY("rooms")); - save_preferences(); - } - } - url_do_template(); -} +/******************************************************************************* + ********************** FLOOR Coomands ***************************************** + ******************************************************************************/ -/** - * \brief Set the message expire policy for this room and/or floor +/* + * delete the actual floor */ -void set_room_policy(void) { - char buf[SIZ]; +void delete_floor(void) { + int floornum; + StrBuf *Buf; + const char *Err; + + floornum = ibstr("floornum"); + Buf = NewStrBuf(); + serv_printf("KFLR %d|1", floornum); + + StrBufTCP_read_line(Buf, &WC->serv_sock, 0, &Err); - if (!havebstr("ok_button")) { - strcpy(WC->ImportantMessage, - _("Cancelled. Changes were not saved.")); - display_editroom(); - return; + if (GetServerStatus(Buf, NULL) == 2) { + StrBufPlain(Buf, _("Floor has been deleted."),-1); } - - serv_printf("SPEX room|%d|%d", ibstr("roompolicy"), ibstr("roomvalue")); - serv_getln(buf, sizeof buf); - strcpy(WC->ImportantMessage, &buf[4]); - - if (WC->axlevel >= 6) { - strcat(WC->ImportantMessage, "
\n"); - serv_printf("SPEX floor|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); - serv_getln(buf, sizeof buf); - strcat(WC->ImportantMessage, &buf[4]); + else { + StrBufCutLeft(Buf, 4); } + AppendImportantMessage (SKEY(Buf)); - display_editroom(); -} - -void tmplput_RoomName(StrBuf *Target, WCTemplputParams *TP) -{ - StrBufAppendTemplate(Target, TP, WC->wc_roomname, 0); + FlushRoomlist(); + http_transmit_thing(ChrPtr(do_template("floors")), 0); + FreeStrBuf(&Buf); } +/* + * start creating a new floor + */ +void create_floor(void) { + StrBuf *Buf; + const char *Err; -void _display_private(void) { - display_private("", 0); -} + Buf = NewStrBuf(); + serv_printf("CFLR %s|1", bstr("floorname")); + StrBufTCP_read_line(Buf, &WC->serv_sock, 0, &Err); -void dotgoto(void) { - if (!havebstr("room")) { - readloop(readnew); - return; + if (GetServerStatus(Buf, NULL) == 2) { + StrBufPlain(Buf, _("New floor has been created."),-1); } - if (WC->wc_view != VIEW_MAILBOX) { /* dotgoto acts like dotskip when we're in a mailbox view */ - slrp_highest(); + else { + StrBufCutLeft(Buf, 4); } - smart_goto(sbstr("room")); -} - -void tmplput_roombanner(StrBuf *Target, WCTemplputParams *TP) -{ - wprintf("
\n"); - embed_room_banner(NULL, navbar_default); - wprintf("
\n"); -} - - -void tmplput_ungoto(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if ((WCC!=NULL) && - (!IsEmptyStr(WCC->ugname))) - StrBufAppendBufPlain(Target, WCC->ugname, -1, 0); -} - - -int ConditionalHaveUngoto(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - (!IsEmptyStr(WCC->ugname)) && - (strcasecmp(WCC->ugname, ChrPtr(WCC->wc_roomname)) == 0)); -} - -int ConditionalRoomHas_QR_PERMANENT(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_PERMANENT) != 0)); -} - -int ConditionalRoomHas_QR_INUSE(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_INUSE) != 0)); -} - -int ConditionalRoomHas_QR_PRIVATE(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_PRIVATE) != 0)); + AppendImportantMessage (SKEY(Buf)); + FlushRoomlist(); + http_transmit_thing(ChrPtr(do_template("floors")), 0); + FreeStrBuf(&Buf); } -int ConditionalRoomHas_QR_PASSWORDED(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_PASSWORDED) != 0)); -} -int ConditionalRoomHas_QR_GUESSNAME(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_GUESSNAME) != 0)); -} +/* + * rename this floor + */ +void rename_floor(void) { + StrBuf *Buf; -int ConditionalRoomHas_QR_DIRECTORY(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_DIRECTORY) != 0)); -} + Buf = NewStrBuf(); + FlushRoomlist(); -int ConditionalRoomHas_QR_UPLOAD(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_UPLOAD) != 0)); -} + serv_printf("EFLR %d|%s", ibstr("floornum"), bstr("floorname")); + StrBuf_ServGetln(Buf); -int ConditionalRoomHas_QR_DOWNLOAD(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_DOWNLOAD) != 0)); -} + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); -int ConditionalRoomHas_QR_VISDIR(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_VISDIR) != 0)); + http_transmit_thing(ChrPtr(do_template("floors")), 0); + FreeStrBuf(&Buf); } -int ConditionalRoomHas_QR_ANONONLY(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_ANONONLY) != 0)); -} -int ConditionalRoomHas_QR_ANONOPT(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_ANONOPT) != 0)); -} -int ConditionalRoomHas_QR_NETWORK(StrBuf *Target, WCTemplputParams *TP) +void jsonRoomFlr(void) { - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_NETWORK) != 0)); -} - -int ConditionalRoomHas_QR_PREFONLY(StrBuf *Target, WCTemplputParams *TP) + /* Send as our own (application/json) content type */ + hprintf("HTTP/1.1 200 OK\r\n"); + hprintf("Content-type: application/json; charset=utf-8\r\n"); + hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software)); + hprintf("Connection: close\r\n"); + hprintf("Pragma: no-cache\r\nCache-Control: no-store\r\nExpires:-1\r\n"); + begin_burst(); + DoTemplate(HKEY("json_roomflr"),NULL,&NoCtx); + end_burst(); +} + +void _FlushRoomList(wcsession *WCC) { - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_PREFONLY) != 0)); + free_march_list(WCC); + DeleteHash(&WCC->Floors); + DeleteHash(&WCC->Rooms); + DeleteHash(&WCC->FloorsByName); + FlushFolder(&WCC->CurRoom); } -int ConditionalRoomHas_QR_READONLY(StrBuf *Target, WCTemplputParams *TP) +void ReloadCurrentRoom(void) { wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_READONLY) != 0)); -} + StrBuf *CurRoom; -int ConditionalRoomHas_QR_MAILBOX(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - ((WCC->room_flags & QR_MAILBOX) != 0)); + CurRoom = WCC->CurRoom.name; + WCC->CurRoom.name = NULL; + _FlushRoomList(WCC); + gotoroom(CurRoom); + FreeStrBuf(&CurRoom); } - - - - -int ConditionalHaveRoomeditRights(StrBuf *Target, WCTemplputParams *TP) +void FlushRoomlist(void) { wcsession *WCC = WC; - - return ( (WCC!= NULL) && - ((WCC->axlevel >= 6) || - (WCC->is_room_aide) || - (WCC->is_mailbox) )); + _FlushRoomList(WCC); } -int ConditionalIsRoomtype(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if ((WCC == NULL) || - (TP->Tokens->nParameters < 3) || - (TP->Tokens->Params[2]->Type != TYPE_STR)|| - (TP->Tokens->Params[2]->len < 7)) - return 0; - - switch(WCC->wc_view) { - case VIEW_BBS: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_BBS")); - case VIEW_MAILBOX: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_MAILBOX")); - case VIEW_ADDRESSBOOK: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_ADDRESSBOOK")); - case VIEW_TASKS: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_TASKS")); - case VIEW_NOTES: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_NOTES")); - case VIEW_WIKI: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_WIKI")); - case VIEW_JOURNAL: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_JOURNAL")); - case VIEW_CALENDAR: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_CALENDAR")); - case VIEW_CALBRIEF: - return (!strcasecmp(TP->Tokens->Params[2]->Start, "VIEW_CALBRIEF")); - default: - return 0; - } -} void InitModule_ROOMOPS @@ -3171,51 +1316,109 @@ InitModule_ROOMOPS NULL); RegisterPreference("emptyfloors", _("Show empty floors"), PRF_YESNO, NULL); - RegisterNamespace("ROOMNAME", 0, 1, tmplput_RoomName, NULL, CTX_NONE); - - WebcitAddUrlHandler(HKEY("knrooms"), knrooms, 0); - WebcitAddUrlHandler(HKEY("dotgoto"), dotgoto, NEED_URL); - WebcitAddUrlHandler(HKEY("dotskip"), dotskip, NEED_URL); - WebcitAddUrlHandler(HKEY("display_private"), _display_private, 0); - WebcitAddUrlHandler(HKEY("goto_private"), goto_private, NEED_URL); - WebcitAddUrlHandler(HKEY("zapped_list"), zapped_list, 0); - WebcitAddUrlHandler(HKEY("display_zap"), display_zap, 0); - WebcitAddUrlHandler(HKEY("zap"), zap, 0); - WebcitAddUrlHandler(HKEY("display_entroom"), display_entroom, 0); - WebcitAddUrlHandler(HKEY("entroom"), entroom, 0); - WebcitAddUrlHandler(HKEY("display_whok"), display_whok, 0); - WebcitAddUrlHandler(HKEY("do_invt_kick"), do_invt_kick, 0); - WebcitAddUrlHandler(HKEY("display_editroom"), display_editroom, 0); - WebcitAddUrlHandler(HKEY("netedit"), netedit, 0); - WebcitAddUrlHandler(HKEY("editroom"), editroom, 0); - WebcitAddUrlHandler(HKEY("delete_room"), delete_room, 0); - WebcitAddUrlHandler(HKEY("set_room_policy"), set_room_policy, 0); - WebcitAddUrlHandler(HKEY("changeview"), change_view, 0); - WebcitAddUrlHandler(HKEY("toggle_self_service"), toggle_self_service, 0); - RegisterNamespace("ROOMBANNER", 0, 1, tmplput_roombanner, NULL, CTX_NONE); - - RegisterConditional(HKEY("COND:ROOM:TYPE_IS"), 0, ConditionalIsRoomtype, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PERMANENT"), 0, ConditionalRoomHas_QR_PERMANENT, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_INUSE"), 0, ConditionalRoomHas_QR_INUSE, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PRIVATE"), 0, ConditionalRoomHas_QR_PRIVATE, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PASSWORDED"), 0, ConditionalRoomHas_QR_PASSWORDED, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_GUESSNAME"), 0, ConditionalRoomHas_QR_GUESSNAME, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_DIRECTORY"), 0, ConditionalRoomHas_QR_DIRECTORY, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_UPLOAD"), 0, ConditionalRoomHas_QR_UPLOAD, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_DOWNLOAD"), 0, ConditionalRoomHas_QR_DOWNLOAD, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_VISIDIR"), 0, ConditionalRoomHas_QR_VISDIR, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_ANONONLY"), 0, ConditionalRoomHas_QR_ANONONLY, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_ANONOPT"), 0, ConditionalRoomHas_QR_ANONOPT, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_NETWORK"), 0, ConditionalRoomHas_QR_NETWORK, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_PREFONLY"), 0, ConditionalRoomHas_QR_PREFONLY, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_READONLY"), 0, ConditionalRoomHas_QR_READONLY, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAGS:QR_MAILBOX"), 0, ConditionalRoomHas_QR_MAILBOX, CTX_NONE); - - RegisterConditional(HKEY("COND:UNGOTO"), 0, ConditionalHaveUngoto, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:EDITACCESS"), 0, ConditionalHaveRoomeditRights, CTX_NONE); - - RegisterNamespace("ROOM:UNGOTO", 0, 0, tmplput_ungoto, NULL, CTX_NONE); - RegisterIterator("FLOORS", 0, NULL, GetFloorListHash, NULL, NULL, CTX_FLOORS, CTX_NONE, IT_NOFLAG); + WebcitAddUrlHandler(HKEY("json_roomflr"), "", 0, jsonRoomFlr, 0); + + WebcitAddUrlHandler(HKEY("delete_floor"), "", 0, delete_floor, 0); + WebcitAddUrlHandler(HKEY("rename_floor"), "", 0, rename_floor, 0); + WebcitAddUrlHandler(HKEY("create_floor"), "", 0, create_floor, 0); + + WebcitAddUrlHandler(HKEY("knrooms"), "", 0, knrooms, ANONYMOUS); + WebcitAddUrlHandler(HKEY("dotgoto"), "", 0, dotgoto, NEED_URL); + WebcitAddUrlHandler(HKEY("dotskip"), "", 0, dotskip, NEED_URL); + + WebcitAddUrlHandler(HKEY("goto_private"), "", 0, goto_private, NEED_URL); + WebcitAddUrlHandler(HKEY("zap"), "", 0, zap, 0); + WebcitAddUrlHandler(HKEY("entroom"), "", 0, entroom, 0); + WebcitAddUrlHandler(HKEY("do_invt_kick"), "", 0, do_invt_kick, 0); + + WebcitAddUrlHandler(HKEY("netedit"), "", 0, netedit, 0); + WebcitAddUrlHandler(HKEY("editroom"), "", 0, editroom, 0); + WebcitAddUrlHandler(HKEY("delete_room"), "", 0, delete_room, 0); + WebcitAddUrlHandler(HKEY("set_room_policy"), "", 0, set_room_policy, 0); + WebcitAddUrlHandler(HKEY("changeview"), "", 0, change_view, 0); + WebcitAddUrlHandler(HKEY("toggle_self_service"), "", 0, toggle_self_service, 0); + + + REGISTERTokenParamDefine(QR_PERMANENT); + REGISTERTokenParamDefine(QR_INUSE); + REGISTERTokenParamDefine(QR_PRIVATE); + REGISTERTokenParamDefine(QR_PASSWORDED); + REGISTERTokenParamDefine(QR_GUESSNAME); + REGISTERTokenParamDefine(QR_DIRECTORY); + REGISTERTokenParamDefine(QR_UPLOAD); + REGISTERTokenParamDefine(QR_DOWNLOAD); + REGISTERTokenParamDefine(QR_VISDIR); + REGISTERTokenParamDefine(QR_ANONONLY); + REGISTERTokenParamDefine(QR_ANONOPT); + REGISTERTokenParamDefine(QR_NETWORK); + REGISTERTokenParamDefine(QR_PREFONLY); + REGISTERTokenParamDefine(QR_READONLY); + REGISTERTokenParamDefine(QR_MAILBOX); + REGISTERTokenParamDefine(QR2_SYSTEM); + REGISTERTokenParamDefine(QR2_SELFLIST); + REGISTERTokenParamDefine(QR2_COLLABDEL); + REGISTERTokenParamDefine(QR2_SUBJECTREQ); + REGISTERTokenParamDefine(QR2_SMTP_PUBLIC); + REGISTERTokenParamDefine(QR2_MODERATED); + + REGISTERTokenParamDefine(UA_KNOWN); + REGISTERTokenParamDefine(UA_GOTOALLOWED); + REGISTERTokenParamDefine(UA_HASNEWMSGS); + REGISTERTokenParamDefine(UA_ZAPPED); + REGISTERTokenParamDefine(UA_POSTALLOWED); + REGISTERTokenParamDefine(UA_ADMINALLOWED); + REGISTERTokenParamDefine(UA_DELETEALLOWED); + REGISTERTokenParamDefine(UA_ISTRASH); + + REGISTERTokenParamDefine(US_NEEDVALID); + REGISTERTokenParamDefine(US_PERM); + REGISTERTokenParamDefine(US_LASTOLD); + REGISTERTokenParamDefine(US_EXPERT); + REGISTERTokenParamDefine(US_UNLISTED); + REGISTERTokenParamDefine(US_NOPROMPT); + REGISTERTokenParamDefine(US_PROMPTCTL); + REGISTERTokenParamDefine(US_DISAPPEAR); + REGISTERTokenParamDefine(US_REGIS); + REGISTERTokenParamDefine(US_PAGINATOR); + REGISTERTokenParamDefine(US_INTERNET); + REGISTERTokenParamDefine(US_FLOORS); + REGISTERTokenParamDefine(US_COLOR); + REGISTERTokenParamDefine(US_USER_SET); + + REGISTERTokenParamDefine(VIEW_BBS); + REGISTERTokenParamDefine(VIEW_MAILBOX); + REGISTERTokenParamDefine(VIEW_ADDRESSBOOK); + REGISTERTokenParamDefine(VIEW_CALENDAR); + REGISTERTokenParamDefine(VIEW_TASKS); + REGISTERTokenParamDefine(VIEW_NOTES); + REGISTERTokenParamDefine(VIEW_WIKI); + REGISTERTokenParamDefine(VIEW_CALBRIEF); + REGISTERTokenParamDefine(VIEW_JOURNAL); + REGISTERTokenParamDefine(VIEW_BLOG); + + /* GNET types: */ + /* server internal, we need to know but ignore them. */ + REGISTERTokenParamDefine(subpending); + REGISTERTokenParamDefine(unsubpending); + REGISTERTokenParamDefine(lastsent); + + REGISTERTokenParamDefine(ignet_push_share); + { /* these are the parts of an IGNET push config */ + REGISTERTokenParamDefine(GNET_IGNET_NODE); + REGISTERTokenParamDefine(GNET_IGNET_ROOM); + } + REGISTERTokenParamDefine(listrecp); + REGISTERTokenParamDefine(digestrecp); + REGISTERTokenParamDefine(pop3client); + { /* These are the parts of a pop3 client line... */ + REGISTERTokenParamDefine(GNET_POP3_HOST); + REGISTERTokenParamDefine(GNET_POP3_USER); + REGISTERTokenParamDefine(GNET_POP3_DONT_DELETE_REMOTE); + REGISTERTokenParamDefine(GNET_POP3_INTERVAL); + } + REGISTERTokenParamDefine(rssclient); + REGISTERTokenParamDefine(participate); + } @@ -3225,11 +1428,6 @@ void SessionDestroyModule_ROOMOPS (wcsession *sess) { - if (sess->cache_fold != NULL) { - free(sess->cache_fold); - } - - free_march_list(sess); - DeleteHash(&sess->Floors); + _FlushRoomList (sess); } -/*@}*/ +