From d2e4ed1ae2bf6deb60280974ec1b29544c5de49f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 15 Aug 2010 21:18:31 +0000 Subject: [PATCH] * cleanup & shuffle 'folders' struct (make clean!); Order and listorder are the same; follow this change in roomlist.c * remove unused entries from wcsession * streamline when we flush the rooms & folder cache * remove old roomediting code * extract SaveRoomAide(SETA), GetCurrentRoomFlags(GETR), SetCurrentRoomFlags(SETR) into their own functions, use them all over the place; use folder struct instead of local structs / var to save state between GETR & SETR * tab_expire.html: fix policy names we show. --- webcit/roomlist.c | 8 +- webcit/roomops.c | 1882 +++-------------- webcit/roomops.h | 18 +- .../static/t/menu/advanced_roomcommands.html | 1 - webcit/static/t/room/edit/tab_expire.html | 6 +- webcit/webcit.h | 3 - 6 files changed, 349 insertions(+), 1569 deletions(-) diff --git a/webcit/roomlist.c b/webcit/roomlist.c index 24017f291..0a8e7fb9d 100644 --- a/webcit/roomlist.c +++ b/webcit/roomlist.c @@ -214,7 +214,7 @@ HashList *GetRoomListHash(StrBuf *Target, WCTemplputParams *TP) room->QRFlags = StrBufExtractNext_long(Buf, &Pos, '|'); room->floorid = StrBufExtractNext_int(Buf, &Pos, '|'); - room->listorder = StrBufExtractNext_long(Buf, &Pos, '|'); + room->Order = StrBufExtractNext_long(Buf, &Pos, '|'); room->QRFlags2 = StrBufExtractNext_long(Buf, &Pos, '|'); room->RAFlags = StrBufExtractNext_long(Buf, &Pos, '|'); @@ -348,8 +348,8 @@ int SortRoomsByListOrder(const void *room1, const void *room2) folder *r1 = (folder*) GetSearchPayload(room1); folder *r2 = (folder*) GetSearchPayload(room2); - if (r1->listorder == r2->listorder) return 0; - if (r1->listorder > r2->listorder) return 1; + if (r1->Order == r2->Order) return 0; + if (r1->Order > r2->Order) return 1; return -1; } @@ -607,7 +607,7 @@ void tmplput_ROOM_FLOORID(StrBuf *Target, WCTemplputParams *TP) void tmplput_ROOM_LISTORDER(StrBuf *Target, WCTemplputParams *TP) { folder *Folder = (folder *)CTX; - StrBufAppendPrintf(Target, "%d", Folder->listorder); + StrBufAppendPrintf(Target, "%d", Folder->Order); } void tmplput_ROOM_VIEW(StrBuf *Target, WCTemplputParams *TP) { diff --git a/webcit/roomops.c b/webcit/roomops.c index 79323c9f8..a68f896f2 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -5,17 +5,6 @@ #include "webcit.h" #include "webserver.h" -#define MAX_FLOORS 128 - -char floorlist[MAX_FLOORS][SIZ]; /* list of our floor names */ - -/* 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); -int ConditionalHaveRoomeditRights(StrBuf *Target, WCTemplputParams *TP); - char *viewdefs[VIEW_MAX]; /* the different kinds of available views */ @@ -63,35 +52,84 @@ void initialize_viewdefs(void) { viewdefs[VIEW_BLOG] = _("Blog"); } +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("")} +}; - -/* - * load the list of floors - * / -void load_floorlist(StrBuf *Buf) +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; + 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); + } + i = i << 1; + j++; } - while (!Done && (StrBuf_ServGetln(Buf)>=0)) { - if ( (StrLength(Buf)==3) && - !strcmp(ChrPtr(Buf), "000")) { - Done = 1; - break; + lprintf(9, "DBG: QR-Vec [%ld] [%s]\n", QR, ChrPtr(QRVec)); + FreeStrBuf(&QRVec); +} + + + +void DBG_QR2(long QR2) +{ + int i = 1; + int j=0; + StrBuf *QR2Vec; + + 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); } - extract_token(floorlist[StrBufExtract_int(Buf, 0, '|')], ChrPtr(Buf), 1, '|', sizeof floorlist[0]); + i = i << 1; + j++; } + lprintf(9, "DBG: QR2-Vec [%ld] [%s]\n", QR2, ChrPtr(QR2Vec)); + FreeStrBuf(&QR2Vec); } -*/ /* @@ -438,84 +476,6 @@ long gotoroom(const StrBuf *gname) return err; } -void DBG_QR(long QR) -{ - const char *QRFlagList[15] = { - strof(QR_PERMANENT), - strof(QR_INUSE), - strof(QR_PRIVATE), - strof(QR_PASSWORDED), - strof(QR_GUESSNAME), - strof(QR_DIRECTORY), - strof(QR_UPLOAD), - strof(QR_DOWNLOAD), - strof(QR_VISDIR), - strof(QR_ANONONLY), - strof(QR_ANONOPT), - strof(QR_NETWORK), - strof(QR_PREFONLY), - strof(QR_READONLY), - strof(QR_MAILBOX) - }; - int i = 1; - int j=0; - StrBuf *QRVec; - - QRVec = NewStrBufPlain(NULL, 256); - while (i != 0) - { - if ((QR & i) != 0) { - if (StrLength(QRVec) > 0) - StrBufAppendBufPlain(QRVec, HKEY(" | "), 0); - StrBufAppendBufPlain(QRVec, QRFlagList[j], -1, 0); - } - i = i << 1; - j++; - } - lprintf(9, "DBG: QR-Vec [%ld] [%s]\n", QR, ChrPtr(QRVec)); - FreeStrBuf(&QRVec); -} - - - -void DBG_QR2(long QR2) -{ - const char *QR2FlagList[15] = { - strof(QR2_SYSTEM), - strof(QR2_SELFLIST), - strof(QR2_COLLABDEL), - strof(QR2_SUBJECTREQ), - strof(QR2_SMTP_PUBLIC), - strof(QR2_MODERATED), - "", - "", - "", - "", - "", - "", - "", - "", - "" - }; - int i = 1; - int j=0; - StrBuf *QR2Vec; - - QR2Vec = NewStrBufPlain(NULL, 256); - while (i != 0) - { - if ((QR2 & i) != 0) { - if (StrLength(QR2Vec) > 0) - StrBufAppendBufPlain(QR2Vec, HKEY(" | "), 0); - StrBufAppendBufPlain(QR2Vec, QR2FlagList[j], -1, 0); - } - i = i << 1; - j++; - } - lprintf(9, "DBG: QR2-Vec [%ld] [%s]\n", QR2, ChrPtr(QR2Vec)); - FreeStrBuf(&QR2Vec); -} - void ParseGoto(folder *room, StrBuf *Line) @@ -655,12 +615,33 @@ void LoadRoomAide(void) } FreeStrBuf (&Buf); } + +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; +} + void tmplput_CurrentRoomFloorName(StrBuf *Target, WCTemplputParams *TP) { wcsession *WCC = WC; folder *Folder = &WCC->CurRoom; - const Floor *pFloor = Folder->Floor; + const Floor *pFloor; + + if (Folder == NULL) + return; + pFloor = Folder->Floor; if (pFloor == NULL) return; @@ -676,46 +657,86 @@ void tmplput_CurrentRoomAide(StrBuf *Target, WCTemplputParams *TP) StrBufAppendTemplate(Target, TP, WCC->CurRoom.RoomAide, 0); } - -void LoadRoomXA (void) +int GetCurrentRoomFlags(folder *Room) { - wcsession *WCC = WC; StrBuf *Buf; - - if (WCC->CurRoom.XALoaded) - return; - WCC->CurRoom.XALoaded = 1; Buf = NewStrBuf(); serv_puts("GETR"); StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, NULL) != 2) { - FlushStrBuf(WCC->CurRoom.XAPass); - FlushStrBuf(WCC->CurRoom.Directory); - - AppendImportantMessage (ChrPtr(Buf) + 4, - StrLength(Buf) - 4); + FlushStrBuf(Room->XAPass); + FlushStrBuf(Room->Directory); + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); + FreeStrBuf(&Buf); + return 0; } else { const char *Pos; Pos = ChrPtr(Buf) + 4; - FreeStrBuf(&WCC->CurRoom.XAPass); - FreeStrBuf(&WCC->CurRoom.Directory); + FreeStrBuf(&Room->XAPass); + FreeStrBuf(&Room->Directory); - WCC->CurRoom.XAPass = NewStrBufPlain (NULL, StrLength (Buf)); - WCC->CurRoom.Directory = NewStrBufPlain (NULL, StrLength (Buf)); + Room->XAPass = NewStrBufPlain (NULL, StrLength (Buf)); + Room->Directory = NewStrBufPlain (NULL, StrLength (Buf)); - StrBufSkip_NTokenS(Buf, &Pos, '|', 1); /* The Name, we already know... */ - StrBufExtract_NextToken(WCC->CurRoom.XAPass, Buf, &Pos, '|'); - StrBufExtract_NextToken(WCC->CurRoom.Directory, Buf, &Pos, '|'); - StrBufSkip_NTokenS(Buf, &Pos, '|', 2); /* QRFlags, FloorNum we already know... */ - WCC->CurRoom.Order = StrBufExtractNext_long(Buf, &Pos, '|'); - /* defview, we already know you. */ - /* QR2Flags, we already know them... */ + 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, '|'); + + 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; + } +} + +int SetCurrentRoomFlags(folder *Room) +{ + StrBuf *Buf; + + Buf = NewStrBuf(); + 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); + + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) != 2) { + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); + FreeStrBuf(&Buf); + return 0; + } else { + FreeStrBuf(&Buf); + return 1; } - FreeStrBuf (&Buf); +} + +void LoadRoomXA (void) +{ + wcsession *WCC = WC; + + if (WCC->CurRoom.XALoaded) + return; + + GetCurrentRoomFlags(&WCC->CurRoom); } @@ -965,1195 +986,156 @@ void tmplput_CurrentRoomViewString(StrBuf *Target, WCTemplputParams *TP) StrBuf *Buf; if ((WCC == NULL) || - (WCC->CurRoom.defview >= VIEW_MAX) || - (WCC->CurRoom.defview < VIEW_BBS)) - { - LogTemplateError(Target, "Token", ERR_PARM2, TP, - "Roomview [%ld] not valid\n", - (WCC != NULL)? - WCC->CurRoom.defview : -1); - return; - } - - Buf = NewStrBufPlain(_(viewdefs[WCC->CurRoom.defview]), -1); - StrBufAppendTemplate(Target, TP, Buf, 0); - FreeStrBuf(&Buf); -} - -void tmplput_RoomViewString(StrBuf *Target, WCTemplputParams *TP) -{ - long CheckThis; - StrBuf *Buf; - - CheckThis = GetTemplateTokenNumber(Target, TP, 0, 0); - if ((CheckThis >= VIEW_MAX) || (CheckThis < VIEW_BBS)) - { - LogTemplateError(Target, "Token", ERR_PARM2, TP, - "Roomview [%ld] not valid\n", - CheckThis); - return; - } - - Buf = NewStrBufPlain(_(viewdefs[CheckThis]), -1); - StrBufAppendTemplate(Target, TP, Buf, 0); - FreeStrBuf(&Buf); -} - - -int ConditionalIsAllowedDefaultView(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - long CheckThis; - - if (WCC == NULL) - return 0; - - CheckThis = GetTemplateTokenNumber(Target, TP, 2, 0); - if ((CheckThis >= VIEW_MAX) || (CheckThis < VIEW_BBS)) - { - LogTemplateError(Target, "Conditional", ERR_PARM2, TP, - "Roomview [%ld] not valid\n", - CheckThis); - return 0; - } - - return allowed_default_views[CheckThis] != 0; -} - -/* - * goto next room - */ -void smart_goto(const StrBuf *next_room) { - gotoroom(next_room); - readloop(readnew, eUseDefault); -} - - - -/* - * mark all messages in current room as having been read - */ -void slrp_highest(void) -{ - char buf[256]; - - serv_puts("SLRP HIGHEST"); - serv_getln(buf, sizeof buf); -} - - -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; - - - - -/* - * 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. - */ - -int self_service(int newval) { - int current_value = 0; - char buf[SIZ]; - - char name[SIZ]; - char password[SIZ]; - char dirname[SIZ]; - int flags, floor, order, view, flags2; - - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') return(0); - - 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); - - if (flags2 & QR2_SELFLIST) { - current_value = 1; - } - else { - current_value = 0; - } - - if (newval == 1) { - flags2 = flags2 | QR2_SELFLIST; - } - else if (newval == 0) { - flags2 = flags2 & ~QR2_SELFLIST; - } - else { - return(current_value); - } - - 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); - } - - FlushRoomlist (); - return(newval); - -} - -int is_selflist(room_states *RoomFlags) -{ - return ((RoomFlags->flags2 & QR2_SELFLIST) != 0); -} - -int is_publiclist(room_states *RoomFlags) -{ - return ((RoomFlags->flags2 & QR2_SMTP_PUBLIC) != 0); -} - -int is_moderatedlist(room_states *RoomFlags) -{ - return ((RoomFlags->flags2 & QR2_MODERATED) != 0); -} - -/* - * 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. - */ - -int get_roomflags(room_states *RoomOps) -{ - 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); -} - -int set_roomflags(room_states *RoomOps) -{ - char buf[SIZ]; - - 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_getln(buf, sizeof buf); - FlushRoomlist (); - - return (1); -} - - - - - - -/* - * display the form for editing a room - */ -void display_editroom(void) -{ - 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 = NULL; - 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); - - wc_printf("
"); - - wc_printf("
\n"); - - /* print the tabbed dialog */ - wc_printf("
"); - wc_printf("" - "" - ); - - wc_printf("\n"); - wc_printf("\n"); - - if ( ConditionalHaveRoomeditRights(NULL, NULL)) { - - wc_printf("\n"); - wc_printf("\n"); - - wc_printf("\n"); - wc_printf("\n"); - - wc_printf("\n"); - wc_printf("\n"); - - wc_printf("\n"); - wc_printf("\n"); - - wc_printf("\n"); - wc_printf("\n"); - - } - - wc_printf("\n"); - wc_printf("\n"); - - wc_printf("
 "); - wc_printf(_("Administration")); - } - else { - wc_printf("< tab_cell_edit\">"); - wc_printf(_("Administration")); - wc_printf(""); - } - wc_printf(" "); - wc_printf(_("Configuration")); - } - else { - wc_printf(" tab_cell_edit\">"); - wc_printf(_("Configuration")); - wc_printf(""); - } - wc_printf(" "); - wc_printf(_("Message expire policy")); - } - else { - wc_printf(" tab_cell_edit\">"); - wc_printf(_("Message expire policy")); - wc_printf(""); - } - wc_printf(" "); - wc_printf(_("Access controls")); - } - else { - wc_printf(" tab_cell_edit\">"); - wc_printf(_("Access controls")); - wc_printf(""); - } - wc_printf(" "); - wc_printf(_("Sharing")); - } - else { - wc_printf(" tab_cell_edit\">"); - wc_printf(_("Sharing")); - wc_printf(""); - } - wc_printf(" "); - wc_printf(_("Mailing list service")); - } - else { - wc_printf("< tab_cell_edit\">"); - wc_printf(_("Mailing list service")); - wc_printf(""); - } - wc_printf(" "); - wc_printf(_("Remote retrieval")); - } - else { - wc_printf("< tab_cell_edit\">"); - wc_printf(_("Remote retrieval")); - wc_printf(""); - } - wc_printf(" 
\n"); - wc_printf("
\n"); - /* end tabbed dialog */ - - wc_printf("" - ); - - /* begin content of whatever tab is open now */ - - if (!strcmp(tab, "admin")) { - wc_printf(""); - } - - if (!strcmp(tab, "config")) { - wc_printf("
"); - serv_puts("GETR"); - serv_getln(buf, sizeof buf); - - if (!strncmp(buf, "550", 3)) { - wc_printf("

%s


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

%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); - - wc_printf("
\n"); - wc_printf("\n", WC->nonce); - - wc_printf("
  • "); - wc_printf(_("Name of room: ")); - wc_printf("\n", - er_name, - (sizeof(er_name)-1) - ); - - wc_printf("
  • "); - wc_printf(_("Resides on floor: ")); - wc_printf("\n"); - - wc_printf("
  • "); - wc_printf(_("Type of room:")); - wc_printf("
      \n"); - - wc_printf("
    • "); - wc_printf(_("Public (automatically appears to everyone)")); - wc_printf("\n"); - - wc_printf("
    • "); - wc_printf(_("Private - hidden (accessible to anyone who knows its name)")); - - wc_printf("\n
    • "); - wc_printf(_("Private - require password: ")); - wc_printf("\n\n", - er_password); - - wc_printf("
    • "); - wc_printf(_("Private - invitation only")); - - wc_printf("\n
    • "); - wc_printf(_("Personal (mailbox for you only)")); - - wc_printf("\n
    • "); - wc_printf(_("If private, cause current users to forget room")); - - wc_printf("\n
    \n"); - - wc_printf("
  • "); - wc_printf(_("Preferred users only")); - - wc_printf("\n
  • "); - wc_printf(_("Read-only room")); - - wc_printf("\n
  • "); - wc_printf(_("All users allowed to post may also delete messages")); - - /** directory stuff */ - wc_printf("\n
  • "); - wc_printf(_("File directory room")); - - wc_printf("\n
    • "); - wc_printf(_("Directory name: ")); - wc_printf("\n", - er_dirname); - - wc_printf("
    • "); - wc_printf(_("Uploading allowed")); - - wc_printf("\n
    • "); - wc_printf(_("Downloading allowed")); - - wc_printf("\n
    • "); - wc_printf(_("Visible directory")); - wc_printf("
    \n"); - - /** end of directory stuff */ - - wc_printf("
  • "); - wc_printf(_("Network shared room")); - - wc_printf("\n
  • "); - wc_printf(_("Permanent (does not auto-purge)")); - - wc_printf("\n
  • "); - wc_printf(_("Subject Required (Force users to specify a message subject)")); - - /** start of anon options */ - - wc_printf("\n
  • "); - wc_printf(_("Anonymous messages")); - wc_printf("
      \n"); - - wc_printf("
    • "); - wc_printf(_("No anonymous messages")); - - wc_printf("\n
    • "); - wc_printf(_("All messages are anonymous")); - - wc_printf("\n
    • "); - wc_printf(_("Prompt user when entering messages")); - wc_printf("
    \n"); - - /* end of anon options */ - - wc_printf("
  • "); - wc_printf(_("Room aide: ")); - serv_puts("GETA"); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') { - wc_printf("%s\n", &buf[4]); - } else { - extract_token(er_roomaide, &buf[4], 0, '|', sizeof er_roomaide); - wc_printf("\n", er_roomaide); - } - - wc_printf("
\n"); - wc_printf("\n" - "" - " " - "" - "
\n", - _("Save changes"), - _("Cancel") - ); - } - wc_printf("
"); - } - - - /* Sharing the room with other Citadel nodes... */ - if (!strcmp(tab, "sharing")) { - wc_printf("
"); - - shared_with = strdup(""); - not_shared_with = strdup(""); - - /** 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"); - } - - 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; i
" - "" - "" - "\n" - "" - "
"); - wc_printf(_("Shared with")); - wc_printf(""); - wc_printf(_("Not shared with")); - wc_printf("
\n"); - - wc_printf("\n"); - - for (i=0; i"); - wc_printf("\n", WC->nonce); - wc_printf("\n", node); - - wc_printf(""); - - wc_printf("\n"); - } - } - - wc_printf("
"); - wc_printf(_("Remote node name")); - wc_printf(""); - wc_printf(_("Remote room name")); - wc_printf(""); - wc_printf(_("Actions")); - wc_printf("
%s"); - if (!IsEmptyStr(remote_room)) { - escputs(remote_room); - } - wc_printf(""); - - wc_printf(""); - wc_printf("\n"); - wc_printf("\n"); - wc_printf("", _("Unshare")); - wc_printf("
\n"); - wc_printf("
\n"); - wc_printf("\n"); - - for (i=0; i"); - wc_printf("\n", WC->nonce); - wc_printf("\n"); - } - } - - wc_printf("
"); - wc_printf(_("Remote node name")); - wc_printf(""); - wc_printf(_("Remote room name")); - wc_printf(""); - wc_printf(_("Actions")); - wc_printf("
"); - escputs(node); - wc_printf("" - "" - ""); - wc_printf(""); - wc_printf("\n"); - wc_printf("\n"); - wc_printf("", _("Share")); - wc_printf("
\n"); - wc_printf("

\n" - "%s
  • ", _("Notes:")); - wc_printf(_("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" - )); - - wc_printf("
"); - } - - if (not_shared_with != NULL) - free (not_shared_with); - - /* Mailing list management */ - if (!strcmp(tab, "listserv")) { - room_states RoomFlags; - wc_printf("
"); - - wc_printf("
" - "" - "
"); - - wc_printf(_("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); - wc_printf(" "); - wc_printf(_("(remove)")); - wc_printf("
"); - } - } - wc_printf("
\n" - "\n" - "\n"); - wc_printf("\n", WC->nonce); - wc_printf("\n"); - wc_printf("", _("Add")); - wc_printf("
\n"); - - wc_printf("
\n"); - - wc_printf(_("The contents of this room are being " - "mailed in digest form " - "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, "digestrecp")) { - extract_token(recp, buf, 1, '|', sizeof recp); - - escputs(recp); - wc_printf(" "); - wc_printf(_("(remove)")); - wc_printf("
"); - } - } - wc_printf("
\n" - "\n" - "\n"); - wc_printf("\n", WC->nonce); - wc_printf("\n"); - wc_printf("", _("Add")); - wc_printf("
\n"); - - wc_printf("
\n"); - - /** Pop open an address book -- begin **/ - wc_printf("
" - "" - "" - " %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 **/ - - wc_printf("
\n
\n"); - - get_roomflags (&RoomFlags); - - /* Self Service subscription? */ - wc_printf("\n" - " \n", - (is_https ? "https" : "http"), - ChrPtr(WC->Hdr->HR.http_host)); - /* Public posting? */ - wc_printf("\n", - (is_publiclist(&RoomFlags))?"checked":""); - - /* Moderated List? */ - wc_printf("\n", - (is_moderatedlist(&RoomFlags))?"checked":""); + (WCC->CurRoom.defview >= VIEW_MAX) || + (WCC->CurRoom.defview < VIEW_BBS)) + { + LogTemplateError(Target, "Token", ERR_PARM2, TP, + "Roomview [%ld] not valid\n", + (WCC != NULL)? + WCC->CurRoom.defview : -1); + return; + } + Buf = NewStrBufPlain(_(viewdefs[WCC->CurRoom.defview]), -1); + StrBufAppendTemplate(Target, TP, Buf, 0); + FreeStrBuf(&Buf); +} - wc_printf("", _("Save changes")); - wc_printf("
\n"); - wc_printf(_("Allow self-service subscribe/unsubscribe requests.")); - wc_printf("
\n", - (is_selflist(&RoomFlags))?"checked":""); - wc_printf(_("The URL for subscribe/unsubscribe is: ")); - wc_printf("%s://%s/listsub
"); - wc_printf(_("Allow non-subscribers to mail to this room.")); - wc_printf("
"); - wc_printf(_("Room post publication needs Aide permission.")); - wc_printf("
" - "
"); - +void tmplput_RoomViewString(StrBuf *Target, WCTemplputParams *TP) +{ + long CheckThis; + StrBuf *Buf; - wc_printf("
\n"); - wc_printf("
"); + CheckThis = GetTemplateTokenNumber(Target, TP, 0, 0); + if ((CheckThis >= VIEW_MAX) || (CheckThis < VIEW_BBS)) + { + LogTemplateError(Target, "Token", ERR_PARM2, TP, + "Roomview [%ld] not valid\n", + CheckThis); + return; } + Buf = NewStrBufPlain(_(viewdefs[CheckThis]), -1); + StrBufAppendTemplate(Target, TP, Buf, 0); + FreeStrBuf(&Buf); +} - /* Configuration of The Dreaded Auto-Purger */ - if (!strcmp(tab, "expire")) { - wc_printf("
"); - serv_puts("GPEX room"); - serv_getln(buf, sizeof buf); - if (!strncmp(buf, "550", 3)) { - wc_printf("

%s


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

%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); - } - - wc_printf("
\n"); - wc_printf("\n", WC->nonce); - wc_printf("\n"); - wc_printf("\n"); - - if (WC->axlevel >= 6) { - wc_printf("\n"); - wc_printf("\n"); +int ConditionalIsAllowedDefaultView(StrBuf *Target, WCTemplputParams *TP) +{ + wcsession *WCC = WC; + long CheckThis; - wc_printf("
"); - wc_printf(_("Message expire policy for this room")); - wc_printf("
("); - escputs(ChrPtr(WC->CurRoom.name)); - wc_printf(")
"); - wc_printf("", - ((roompolicy == 0) ? "CHECKED" : "") ); - wc_printf(_("Use the default policy for this floor")); - wc_printf("
\n"); - wc_printf("", - ((roompolicy == 1) ? "CHECKED" : "") ); - wc_printf(_("Never automatically expire messages")); - wc_printf("
\n"); - wc_printf("", - ((roompolicy == 2) ? "CHECKED" : "") ); - wc_printf(_("Expire by message count")); - wc_printf("
\n"); - wc_printf("", - ((roompolicy == 3) ? "CHECKED" : "") ); - wc_printf(_("Expire by message age")); - wc_printf("
"); - wc_printf(_("Number of messages or days: ")); - wc_printf("", roomvalue); - wc_printf("

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

\n"); - wc_printf("", _("Save changes")); - wc_printf(" "); - wc_printf("", _("Cancel")); - wc_printf("
\n" - "\n" - "
\n" - ); - } - - wc_printf("
"); - } + if (WCC == NULL) + return 0; - /* Access controls */ - if (!strcmp(tab, "access")) { - wc_printf("
"); - display_whok(); - wc_printf("
"); + CheckThis = GetTemplateTokenNumber(Target, TP, 2, 0); + if ((CheckThis >= VIEW_MAX) || (CheckThis < VIEW_BBS)) + { + LogTemplateError(Target, "Conditional", ERR_PARM2, TP, + "Roomview [%ld] not valid\n", + CheckThis); + return 0; } - /* Fetch messages from remote locations */ - if (!strcmp(tab, "feeds")) { - wc_printf("
"); + return allowed_default_views[CheckThis] != 0; +} - wc_printf(""); - wc_printf(_("Retrieve messages from these remote POP3 accounts and store them in this room:")); - wc_printf("
\n"); +/* + * goto next room + */ +void smart_goto(const StrBuf *next_room) { + gotoroom(next_room); + readloop(readnew, eUseDefault); +} - wc_printf("" - ""); - 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; - wc_printf("", - (bg ? "even" : "odd") - ); +/* + * mark all messages in current room as having been read + */ +void slrp_highest(void) +{ + char buf[256]; - wc_printf(""); + serv_puts("SLRP HIGHEST"); + serv_getln(buf, sizeof buf); +} - wc_printf(""); - wc_printf(""); /* Don't show the password */ - wc_printf("", extract_int(buf, 4) ? _("Yes") : _("No")); +/* + * 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. + */ - wc_printf("", extract_long(buf, 5)); /* Fetching interval */ - - wc_printf(""); - - wc_printf(""); - } - } +int self_service(int newval) { + int current_value = 0; + wcsession *WCC = WC; - wc_printf("\n" - "" - "" - "\n"); - wc_printf("\n", WC->nonce); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf("
"); - wc_printf(_("Remote host")); - wc_printf(""); - wc_printf(_("User name")); - wc_printf(""); - wc_printf(_("Password")); - wc_printf(""); - wc_printf(_("Keep messages on server?")); - wc_printf(""); - wc_printf(_("Interval")); - wc_printf("
"); - extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); - escputs(pop3_host); - wc_printf(""); - extract_token(pop3_user, buf, 2, '|', sizeof pop3_user); - escputs(pop3_user); - wc_printf("*****%s%ld"); - wc_printf(" "); - wc_printf(_("(remove)")); - wc_printf("
"); - wc_printf("\n"); - wc_printf(""); - wc_printf("\n"); - wc_printf(""); - wc_printf("\n"); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf(""); - wc_printf("", _("Add")); - wc_printf("
\n"); - - wc_printf("
\n"); - - wc_printf(""); - wc_printf(_("Fetch the following RSS feeds and store them in this room:")); - wc_printf("
\n"); - - wc_printf("" - ""); - - 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; - wc_printf("", - (bg ? "even" : "odd") - ); - - wc_printf(""); - - wc_printf(""); - - wc_printf(""); - } - } + if (GetCurrentRoomFlags (&WCC->CurRoom) == 0) + { + return 0; + } - wc_printf("\n" - "" - "" - "\n"); - wc_printf("\n", WC->nonce); - wc_printf(""); - wc_printf(""); - wc_printf("
"); - wc_printf("\" "); - wc_printf(_("Feed URL")); - wc_printf(""); - wc_printf("
"); - extract_token(pop3_host, buf, 1, '|', sizeof pop3_host); - escputs(pop3_host); - wc_printf(""); - wc_printf(" "); - wc_printf(_("(remove)")); - wc_printf("
"); - wc_printf("\n"); - wc_printf(""); - wc_printf("", _("Add")); - wc_printf("
\n"); + if ((WCC->CurRoom.QRFlags2 & QR2_SELFLIST) != 0) { + current_value = 1; + } + else { + current_value = 0; + } - wc_printf("
"); + if (newval == 1) { + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SELFLIST; + } + else if (newval == 0) { + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SELFLIST; + } + else { + return(current_value); } + if (newval != current_value) { + SetCurrentRoomFlags(&WCC->CurRoom); + } - /* end content of whatever tab is open now */ - wc_printf("
\n"); + return(newval); - address_book_popup(); - wDumpContent(1); } + /* * Toggle self-service list subscription */ void toggle_self_service(void) { - room_states RoomFlags; + wcsession *WCC = WC; - get_roomflags (&RoomFlags); + if (GetCurrentRoomFlags (&WCC->CurRoom) == 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); + SetCurrentRoomFlags (&WCC->CurRoom); http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); } @@ -2165,19 +1147,15 @@ 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; + const StrBuf *er_name; + const StrBuf *er_password; + const StrBuf *er_dirname; + const StrBuf *er_roomaide; unsigned er_flags; - int er_listingorder; - int er_defaultview; unsigned er_flags2; - int bump; - + int succ1, succ2; if (!havebstr("ok_button")) { strcpy(WC->ImportantMessage, @@ -2185,67 +1163,17 @@ void editroom(void) http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); return; } - serv_puts("GETR"); - Buf = NewStrBuf(); - StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - StrBufCutLeft(Buf, 4); - strcpy(WC->ImportantMessage, ChrPtr(Buf)); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); - FreeStrBuf(&Buf); + if (GetCurrentRoomFlags (&WCC->CurRoom) == 0) return; - } - FlushRoomlist (); - - 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); - } - + LoadRoomAide(); - Ptr = sbstr("er_dirname"); - if (StrLength(Ptr) > 0) { /* todo: cut 15 */ - FlushStrBuf(er_dirname); - StrBufAppendBuf(er_dirname, Ptr, 0); - } + er_flags = WCC->CurRoom.QRFlags; + er_flags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME); + er_flags2 = WCC->CurRoom.QRFlags2; Ptr = sbstr("type"); - er_flags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME); - if (!strcmp(ChrPtr(Ptr), "invonly")) { er_flags |= (QR_PRIVATE); } @@ -2260,6 +1188,8 @@ void editroom(void) } else { er_flags &= ~QR_MAILBOX; } + + if (yesbstr("prefonly")) { er_flags |= QR_PREFONLY; @@ -2322,6 +1252,7 @@ void editroom(void) er_flags &= ~QR_VISDIR; } + Ptr = sbstr("anon"); er_flags &= ~(QR_ANONONLY | QR_ANONOPT); @@ -2330,56 +1261,34 @@ void editroom(void) if (!strcmp(ChrPtr(Ptr), "anon2")) er_flags |= QR_ANONOPT; - bump = yesbstr("bump"); + er_name = sbstr("er_name"); + er_dirname = sbstr("er_dirname"); + er_roomaide = sbstr("er_roomaide"); + er_password = sbstr("er_password"); - er_floor = ibstr("er_floor"); + FlushStrBuf(WCC->CurRoom.name); + StrBufAppendBuf(WCC->CurRoom.name, er_name, 0); - 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]); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); - FreeStrBuf(&Buf); - FreeStrBuf(&er_name); - FreeStrBuf(&er_password); - FreeStrBuf(&er_dirname); - FreeStrBuf(&er_roomaide); - return; - } - gotoroom(er_name); + FlushStrBuf(WCC->CurRoom.Directory); + StrBufAppendBuf(WCC->CurRoom.Directory, er_dirname, 0); - 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.")); + 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"); + + WCC->CurRoom.floorid = ibstr("er_floor"); + + succ1 = SetCurrentRoomFlags(&WCC->CurRoom); + + succ2 = SaveRoomAide (&WCC->CurRoom); + + if (succ1 + succ2 == 0) + AppendImportantMessage (_("Your changes have been saved."), -1); http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); - FreeStrBuf(&Buf); - FreeStrBuf(&er_name); - FreeStrBuf(&er_password); - FreeStrBuf(&er_dirname); - FreeStrBuf(&er_roomaide); return; } @@ -2432,80 +1341,6 @@ void do_invt_kick(void) { http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); } - - -/* - * Display form for Invite, Kick, and show Who Knows a room - */ -void display_whok(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); - - - wc_printf("
"); - wc_printf(_("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'.")); - wc_printf("

"); - - wc_printf("
\n"); - wc_printf("\n", WC->nonce); - wc_printf("\n"); - wc_printf("
\n"); - - wc_printf("", _("Kick")); - wc_printf("
\n"); - - wc_printf("
"); - wc_printf(_("To grant another user access to this room, enter the " - "user name in the box below and click 'Invite'.")); - wc_printf("

"); - - wc_printf("
\n"); - wc_printf("\n"); - wc_printf("\n", WC->nonce); - wc_printf(_("Invite:")); - wc_printf(" "); - wc_printf("
\n" - "" - "" - "
\n", _("Invite")); - /* Pop open an address book -- begin **/ - wc_printf( - "" - "" - " %s", - _("User"), - _("Users"), _("Users") - ); - /* Pop open an address book -- end **/ - - wc_printf("
\n"); - address_book_popup(); - wDumpContent(1); -} - /* * support function for entroom() -- sets the default view */ @@ -2593,8 +1428,6 @@ void entroom(void) return; } /** TODO: Room created, now update the left hand icon bar for this user */ - burn_folder_cache(0); /* burn the old folder cache */ - gotoroom(er_name); serv_printf("VIEW %d", er_view); @@ -2616,30 +1449,37 @@ void entroom(void) void goto_private(void) { char hold_rm[SIZ]; - char buf[SIZ]; + StrBuf *Buf; + const StrBuf *gr_name; + long err; if (!havebstr("ok_button")) { display_main_menu(); return; } - FlushRoomlist(); + gr_name = sbstr("gr_name"); + Buf = NewStrBuf(); strcpy(hold_rm, ChrPtr(WC->CurRoom.name)); serv_printf("GOTO %s|%s", - bstr("gr_name"), + ChrPtr(gr_name), bstr("gr_pass")); - serv_getln(buf, sizeof buf); - - if (buf[0] == '2') { - smart_goto(sbstr("gr_name")); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, &err) == 2) { + FlushRoomlist(); + smart_goto(gr_name); + FreeStrBuf(&Buf); return; } - if (!strncmp(buf, "540", 3)) { + if (err == 540) { DoTemplate(HKEY("room_display_private"), NULL, &NoCtx); + FreeStrBuf(&Buf); return; } - output_headers(1, 1, 1, 0, 0, 0); - wc_printf("%s\n", &buf[4]); - wDumpContent(1); + StrBufCutLeft(Buf, 4); + AppendImportantMessage (SKEY(Buf)); + Buf = NewStrBufPlain(HKEY("_BASEROOM_")); + smart_goto(Buf); + FreeStrBuf(&Buf); return; } @@ -2688,8 +1528,7 @@ void delete_room(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 */ - FlushRoomlist (); + if (buf[0] != '2') { strcpy(WC->ImportantMessage, &buf[4]); display_main_menu(); @@ -2697,6 +1536,7 @@ void delete_room(void) } else { StrBuf *Buf; + FlushRoomlist (); Buf = NewStrBufPlain(HKEY("_BASEROOM_")); smart_goto(Buf); FreeStrBuf(&Buf); @@ -2807,50 +1647,6 @@ void netedit(void) { } - -/** - * \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? - */ -void room_to_folder(char *folder, char *room, int floor, int is_mailbox) -{ - int i, len; - - /** - * 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; icache_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 @@ -2952,7 +1730,7 @@ void set_room_policy(void) { serv_getln(buf, sizeof buf); strcat(WC->ImportantMessage, &buf[4]); } - FlushRoomlist(); + ReloadCurrentRoom(); http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); } @@ -3183,12 +1961,27 @@ HashList *GetWhoKnowsHash(StrBuf *Target, WCTemplputParams *TP) return Whok; } + + void _FlushRoomList(wcsession *WCC) { free_march_list(WCC); DeleteHash(&WCC->Floors); DeleteHash(&WCC->Rooms); DeleteHash(&WCC->FloorsByName); + FlushFolder(&WCC->CurRoom); +} + +void ReloadCurrentRoom(void) +{ + wcsession *WCC = WC; + StrBuf *CurRoom; + + CurRoom = WCC->CurRoom.name; + WCC->CurRoom.name = NULL; + _FlushRoomList(WCC); + gotoroom(CurRoom); + FreeStrBuf(&CurRoom); } void FlushRoomlist(void) @@ -3220,7 +2013,7 @@ InitModule_ROOMOPS WebcitAddUrlHandler(HKEY("zap"), "", 0, zap, 0); WebcitAddUrlHandler(HKEY("entroom"), "", 0, entroom, 0); WebcitAddUrlHandler(HKEY("do_invt_kick"), "", 0, do_invt_kick, 0); - WebcitAddUrlHandler(HKEY("display_editroom"), "", 0, display_editroom, 0); + WebcitAddUrlHandler(HKEY("netedit"), "", 0, netedit, 0); WebcitAddUrlHandler(HKEY("editroom"), "", 0, editroom, 0); WebcitAddUrlHandler(HKEY("delete_room"), "", 0, delete_room, 0); @@ -3355,11 +2148,6 @@ void SessionDestroyModule_ROOMOPS (wcsession *sess) { - FlushFolder(&sess->CurRoom); - if (sess->cache_fold != NULL) { - free(sess->cache_fold); - } - _FlushRoomList (sess); } diff --git a/webcit/roomops.h b/webcit/roomops.h index 865ad5dcb..0917a41d4 100644 --- a/webcit/roomops.h +++ b/webcit/roomops.h @@ -56,13 +56,8 @@ struct __ofolder { */ typedef struct _folder { /* Data citserver tells us about the room */ - StrBuf *name; /* the full name of the room we're talking about */ long QRFlags; /* roomflags */ - int floorid; /* which floor is it on */ - - long listorder; /* todo */ long QRFlags2; /* Bitbucket NO2 */ - long RAFlags; int view; /* whats its default view? inbox/calendar.... */ @@ -70,9 +65,11 @@ typedef struct _folder { long lastchange; /* todo... */ /* later evaluated data from the serverdata */ + StrBuf *name; /* the full name of the room we're talking about */ long nRoomNameParts; StrBuf **RoomNameParts; + int floorid; /* which floor is it on */ const Floor *Floor; /* point to the floor we're on.. */ int hasnewmsgs; /* are there unread messages inside */ @@ -81,15 +78,12 @@ typedef struct _folder { int RoomAideLoaded; StrBuf *RoomAide; +/* only available if GETR was run */ int XALoaded; StrBuf *XAPass; StrBuf *Directory; long Order; - int selectable; /* can we select it ??? */ - long num_rooms; /* If this is a floor, how many rooms does it have */ - - /* Only available from the GOTO context... */ long nNewMessages; long nTotalMessages; @@ -98,7 +92,7 @@ typedef struct _folder { int ShowInfo; int UsersNewMAilboxMessages; /* should we notify the user about new messages? */ int IsTrash; - +/* Only available if certain other commands ran */ int XHaveRoomPic; int XHaveRoomPicLoaded; @@ -107,9 +101,10 @@ typedef struct _folder { int XHaveDownloadCount; int XDownloadCount; + + int BumpUsers; /* if SETR set to 1 to make all users who knew this room to forget about it. */ HashList *IgnetCfgs[maxRoomNetCfg]; - }folder; HashList *GetFloorListHash(StrBuf *Target, WCTemplputParams *TP); @@ -117,6 +112,7 @@ void vDeleteFolder(void *vFolder); void FlushFolder(folder *room); void ParseGoto(folder *proom, StrBuf *Line); void FlushRoomlist(void); /* release our caches, so a deleted / zapped room disapears */ +void ReloadCurrentRoom(void); /* Flush cache; reload current state */ /* * wrapper around usual sort-comparator; private rooms will allways be prefered, -1 if one of them NULL diff --git a/webcit/static/t/menu/advanced_roomcommands.html b/webcit/static/t/menu/advanced_roomcommands.html index ca6e1006f..cdb8e2151 100644 --- a/webcit/static/t/menu/advanced_roomcommands.html +++ b/webcit/static/t/menu/advanced_roomcommands.html @@ -1,7 +1,6 @@