X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Froomops.c;h=2dc7865b8763b5ae4201dd0ce9824554956a7f35;hp=8217b2a1ed984c8fcaf99ca5278e47417c267934;hb=c73091a2ae896b6be5aa94b911c1c89d76a85688;hpb=0045daaad451656903c81b0d9aa1862cc22027ed diff --git a/webcit/roomops.c b/webcit/roomops.c index 8217b2a1e..2dc7865b8 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -1,57 +1,20 @@ /* - * $Id$ * Lots of different room-related operations. + * + * Copyright (c) 1996-2016 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" -char *viewdefs[VIEW_MAX]; /* the different kinds of available views */ - -ROOM_VIEWS exchangeable_views[VIEW_MAX][VIEW_MAX] = { /* the different kinds of available views for a view */ -{VIEW_BBS, VIEW_MAILBOX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX }, -{VIEW_BBS, VIEW_MAILBOX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX }, -{VIEW_MAX, VIEW_MAX, VIEW_ADDRESSBOOK, VIEW_CALENDAR, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX }, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_CALENDAR, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX /*VIEW_CALBRIEF*/, VIEW_MAX, VIEW_MAX }, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_TASKS, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, }, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_NOTES, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, }, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_WIKI, VIEW_MAX, VIEW_MAX, VIEW_MAX}, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_CALENDAR, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX/*VIEW_CALBRIEF*/, VIEW_MAX, VIEW_MAX}, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_JOURNAL, VIEW_MAX }, -{VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_MAX, VIEW_BLOG }, - }; -/* the brief calendar view is disabled: VIEW_CALBRIEF */ - -ROOM_VIEWS allowed_default_views[VIEW_MAX] = { - 1, /* VIEW_BBS Bulletin board view */ - 1, /* VIEW_MAILBOX Mailbox summary */ - 1, /* VIEW_ADDRESSBOOK Address book view */ - 1, /* VIEW_CALENDAR Calendar view */ - 1, /* VIEW_TASKS Tasks view */ - 1, /* VIEW_NOTES Notes view */ - 1, /* VIEW_WIKI Wiki view */ - 0, /* VIEW_CALBRIEF Brief Calendar view */ - 0, /* VIEW_JOURNAL Journal view */ - 0 /* VIEW_BLOG Blog view (not yet implemented) */ -}; - - -/* - * Initialize the viewdefs with localized strings - */ -void initialize_viewdefs(void) { - viewdefs[VIEW_BBS] = _("Bulletin Board"); - viewdefs[VIEW_MAILBOX] = _("Mail Folder"); - viewdefs[VIEW_ADDRESSBOOK] = _("Address Book"); - viewdefs[VIEW_CALENDAR] = _("Calendar"); - viewdefs[VIEW_TASKS] = _("Task List"); - viewdefs[VIEW_NOTES] = _("Notes List"); - viewdefs[VIEW_WIKI] = _("Wiki"); - viewdefs[VIEW_CALBRIEF] = _("Calendar List"); - viewdefs[VIEW_JOURNAL] = _("Journal"); - viewdefs[VIEW_BLOG] = _("Blog"); -} - ConstStr QRFlagList[] = { {HKEY(strof(QR_PERMANENT))}, {HKEY(strof(QR_INUSE))}, @@ -76,7 +39,7 @@ ConstStr QR2FlagList[] = { {HKEY(strof(QR2_SUBJECTREQ))}, {HKEY(strof(QR2_SMTP_PUBLIC))}, {HKEY(strof(QR2_MODERATED))}, - {HKEY("")}, + {HKEY(strof(QR2_NOUPLMSG))}, {HKEY("")}, {HKEY("")}, {HKEY("")}, @@ -87,7 +50,7 @@ ConstStr QR2FlagList[] = { {HKEY("")} }; -void DBG_QR(long QR) +void _DBG_QR(long QR) { int i = 1; int j=0; @@ -104,13 +67,13 @@ void DBG_QR(long QR) i = i << 1; j++; } - lprintf(9, "DBG: QR-Vec [%ld] [%s]\n", QR, ChrPtr(QRVec)); + syslog(LOG_DEBUG, "DBG: QR-Vec [%ld] [%s]\n", QR, ChrPtr(QRVec)); FreeStrBuf(&QRVec); } -void DBG_QR2(long QR2) +void _DBG_QR2(long QR2) { int i = 1; int j=0; @@ -127,55 +90,89 @@ void DBG_QR2(long QR2) i = i << 1; j++; } - lprintf(9, "DBG: QR2-Vec [%ld] [%s]\n", QR2, ChrPtr(QR2Vec)); + syslog(LOG_DEBUG, "DBG: QR2-Vec [%ld] [%s]\n", QR2, ChrPtr(QR2Vec)); FreeStrBuf(&QR2Vec); } -/* - * 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(void) -{ - wcsession *WCC = WC; - char buf[256]; - /* refresh current room states... */ - /* dosen't work??? gotoroom(NULL); */ - /* The browser needs some information for its own use */ - wc_printf("\n", - ((WC->CurRoom.RAFlags & UA_ISTRASH) != 0) - ); - /* - * 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(); - } - StrBufPrintf(WCC->Hdr->this_page, - "dotskip?room=%s", - ChrPtr(WC->CurRoom.name) - ); - do_template("roombanner", NULL); - /* roombanner contains this for mobile */ - if (WC->is_mobile) + + + + +/******************************************************************************* + ***************************** Goto Commands *********************************** + ******************************************************************************/ + +void dotskip(void) { + smart_goto(sbstr("room")); +} + +void dotgoto(void) { + if (!havebstr("room")) { + readloop(readnew, eUseDefault); return; + } + if (WC->CurRoom.view != VIEW_MAILBOX) { + /* dotgoto acts like dotskip when we're in a mailbox view */ + slrp_highest(); + } + smart_goto(sbstr("room")); +} - do_template("navbar", NULL); +/* + * goto next room + */ +void smart_goto(const StrBuf *next_room) { + if (gotoroom(next_room) / 100 == 2) + readloop(readnew, eUseDefault); + else + do_404(); } +/* + * goto a private room + */ +void goto_private(void) +{ + char hold_rm[SIZ]; + StrBuf *Buf; + const StrBuf *gr_name; + long err; + + if (!havebstr("ok_button")) { + display_main_menu(); + return; + } + 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; + } + 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 @@ -186,20 +183,40 @@ long gotoroom(const StrBuf *gname) StrBuf *Buf; static long ls = (-1L); long err = 0; + int room_name_supplied = 0; + int is_baseroom = 0; + int failvisibly; + + /* on fail, should we fallback to _BASEROOM_? */ + failvisibly = ibstr("failvisibly"); /* store ungoto information */ - if (StrLength(gname) > 0) + 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 */ - if (StrLength(gname) > 0) + if (room_name_supplied) { serv_printf("GOTO %s", ChrPtr(gname)); - else /* or just refresh the current state... */ + } + else { + /* or just refresh the current state... */ serv_printf("GOTO 00000000000000000000"); + } StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, &err) != 2) { + if (failvisibly) { + FreeStrBuf(&Buf); + return err; + } serv_puts("GOTO _BASEROOM_"); StrBuf_ServGetln(Buf); /* @@ -215,11 +232,11 @@ long gotoroom(const StrBuf *gname) FlushFolder(&WCC->CurRoom); ParseGoto(&WCC->CurRoom, Buf); - if (StrLength(gname) > 0) - { + if (room_name_supplied) { remove_march(WCC->CurRoom.name); - if (!strcasecmp(ChrPtr(gname), "_BASEROOM_")) + if (is_baseroom) { remove_march(gname); + } } FreeStrBuf(&Buf); @@ -260,7 +277,7 @@ void ParseGoto(folder *room, StrBuf *Line) memset(room, 0, sizeof(folder)); room->name = pBuf; - StrBufExtract_NextToken(room->name, Line, &Pos, '|'); // WC->CurRoom->name + StrBufExtract_NextToken(room->name, Line, &Pos, '|'); room->nNewMessages = StrBufExtractNext_long(Line, &Pos, '|'); if (room->nNewMessages > 0) @@ -270,14 +287,14 @@ void ParseGoto(folder *room, StrBuf *Line) room->ShowInfo = StrBufExtractNext_long(Line, &Pos, '|'); - room->QRFlags = StrBufExtractNext_long(Line, &Pos, '|'); //CurRoom->QRFlags + room->QRFlags = StrBufExtractNext_long(Line, &Pos, '|'); DBG_QR(room->QRFlags); room->HighestRead = StrBufExtractNext_long(Line, &Pos, '|'); room->LastMessageRead = StrBufExtractNext_long(Line, &Pos, '|'); - room->is_inbox = StrBufExtractNext_long(Line, &Pos, '|'); // is_mailbox + room->is_inbox = StrBufExtractNext_long(Line, &Pos, '|'); flag = StrBufExtractNext_long(Line, &Pos, '|'); if (WCC->is_aide || flag) { @@ -286,17 +303,17 @@ void ParseGoto(folder *room, StrBuf *Line) room->UsersNewMAilboxMessages = StrBufExtractNext_long(Line, &Pos, '|'); - room->floorid = StrBufExtractNext_int(Line, &Pos, '|'); // wc_floor + room->floorid = StrBufExtractNext_int(Line, &Pos, '|'); - room->view = StrBufExtractNext_long(Line, &Pos, '|'); // CurRoom->view + room->view = StrBufExtractNext_long(Line, &Pos, '|'); - room->defview = StrBufExtractNext_long(Line, &Pos, '|'); // CurRoom->defview + room->defview = StrBufExtractNext_long(Line, &Pos, '|'); flag = StrBufExtractNext_long(Line, &Pos, '|'); if (flag) - room->RAFlags |= UA_ISTRASH; // wc_is_trash + room->RAFlags |= UA_ISTRASH; - room->QRFlags2 = StrBufExtractNext_long(Line, &Pos, '|'); // CurRoom->QRFlags2 + room->QRFlags2 = StrBufExtractNext_long(Line, &Pos, '|'); DBG_QR2(room->QRFlags2); /* find out, whether we are in a sub-room */ @@ -337,6 +354,102 @@ void ParseGoto(folder *room, StrBuf *Line) room->Floor = (const Floor*) vFloor; } +/* + * Delete the current room + */ +void delete_room(void) +{ + 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); +} + +/* + * zap a room + */ +void zap(void) +{ + 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->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); +} + + +/* + * 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); +} + + + + + + + + + + + + + + +/******************************************************************************* + ***************************** Modify Rooms ************************************ + ******************************************************************************/ + + + + + void LoadRoomAide(void) { wcsession *WCC = WC; @@ -382,32 +495,8 @@ int SaveRoomAide(folder *Room) return 1; } -void tmplput_CurrentRoomFloorName(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - folder *Folder = &WCC->CurRoom; - const Floor *pFloor; - - if (Folder == NULL) - return; - - pFloor = Folder->Floor; - if (pFloor == NULL) - return; - - StrBufAppendTemplate(Target, TP, pFloor->Name, 0); -} - -void tmplput_CurrentRoomAide(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - LoadRoomAide(); - - StrBufAppendTemplate(Target, TP, WCC->CurRoom.RoomAide, 0); -} -int GetCurrentRoomFlags(folder *Room) +int GetCurrentRoomFlags(folder *Room, int CareForStatusMessage) { StrBuf *Buf; @@ -418,8 +507,10 @@ int GetCurrentRoomFlags(folder *Room) FlushStrBuf(Room->XAPass); FlushStrBuf(Room->Directory); StrBufCutLeft(Buf, 4); - AppendImportantMessage (SKEY(Buf)); + if (CareForStatusMessage) + AppendImportantMessage (SKEY(Buf)); FreeStrBuf(&Buf); + Room->XALoaded = 2; return 0; } else { const char *Pos; @@ -486,10 +577,10 @@ void LoadRoomXA (void) { wcsession *WCC = WC; - if (WCC->CurRoom.XALoaded) + if (WCC->CurRoom.XALoaded > 0) return; - GetCurrentRoomFlags(&WCC->CurRoom); + GetCurrentRoomFlags(&WCC->CurRoom, 0); } @@ -497,35 +588,27 @@ void LoadXRoomPic(void) { wcsession *WCC = WC; StrBuf *Buf; + off_t bytes; - if (WCC->CurRoom.XHaveRoomPicLoaded) + if (WCC->CurRoom.XHaveRoomPicLoaded) { return; + } WCC->CurRoom.XHaveRoomPicLoaded = 1; Buf = NewStrBuf(); - serv_puts("OIMG _roompic_"); + serv_puts("DLRI"); StrBuf_ServGetln(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - WCC->CurRoom.XHaveRoomPic = 0; - } else { + if (GetServerStatus(Buf, NULL) == 6) { + StrBufCutLeft(Buf, 4); + bytes = StrBufExtract_long(Buf, 0, '|'); WCC->CurRoom.XHaveRoomPic = 1; + StrBuf_ServGetBLOBBuffered(Buf, bytes); // discard the data + } else { + WCC->CurRoom.XHaveRoomPic = 0; } - serv_puts("CLOS"); - StrBuf_ServGetln(Buf); - GetServerStatus(Buf, NULL); FreeStrBuf (&Buf); } -int ConditionalThisRoomXHavePic(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if (WCC == NULL) - return 0; - - LoadXRoomPic(); - return WCC->CurRoom.XHaveRoomPic == 1; -} void LoadXRoomInfoText(void) { @@ -533,8 +616,9 @@ void LoadXRoomInfoText(void) StrBuf *Buf; int Done = 0; - if (WCC->CurRoom.XHaveInfoTextLoaded) + if (WCC->CurRoom.XHaveInfoTextLoaded) { return; + } WCC->CurRoom.XHaveInfoTextLoaded = 1; Buf = NewStrBuf(); @@ -554,28 +638,9 @@ void LoadXRoomInfoText(void) } } - FreeStrBuf (&Buf); -} - -int ConditionalThisRoomXHaveInfoText(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if (WCC == NULL) - return 0; - - LoadXRoomInfoText(); - return (StrLength(WCC->CurRoom.XInfoText)>0); + FreeStrBuf(&Buf); } -void tmplput_CurrentRoomInfoText(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - LoadXRoomInfoText(); - - StrBufAppendTemplate(Target, TP, WCC->CurRoom.XAPass, 1); -} void LoadXRoomXCountFiles(void) { @@ -605,300 +670,48 @@ void LoadXRoomXCountFiles(void) FreeStrBuf (&Buf); } -void tmplput_CurrentRoomXNFiles(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - LoadXRoomXCountFiles(); - - StrBufAppendPrintf(Target, "%d", WCC->CurRoom.XDownloadCount); -} -void tmplput_CurrentRoomX_FileString(StrBuf *Target, WCTemplputParams *TP) -{ +/* + * Toggle self-service list subscription + */ +void toggle_self_service(void) { wcsession *WCC = WC; - LoadXRoomXCountFiles(); + if (GetCurrentRoomFlags (&WCC->CurRoom, 1) == 0) + return; + + if (yesbstr("QR2_SelfList")) + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SELFLIST; + else + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SELFLIST; - if (WCC->CurRoom.XDownloadCount == 1) - StrBufAppendBufPlain(Target, _("file"), -1, 0); + if (yesbstr("QR2_SMTP_PUBLIC")) + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SMTP_PUBLIC; else - StrBufAppendBufPlain(Target, _("files"), -1, 0); -} + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SMTP_PUBLIC; -void tmplput_CurrentRoomPass(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; + if (yesbstr("QR2_Moderated")) + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_MODERATED; + else + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_MODERATED; + if (yesbstr("QR2_SubsOnly")) + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SMTP_PUBLIC; + else + WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SMTP_PUBLIC; - LoadRoomXA(); + SetCurrentRoomFlags (&WCC->CurRoom); - StrBufAppendTemplate(Target, TP, WCC->CurRoom.XAPass, 0); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); } -void tmplput_CurrentRoomDirectory(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - LoadRoomXA(); - - StrBufAppendTemplate(Target, TP, WCC->CurRoom.Directory, 0); -} -void tmplput_CurrentRoomOrder(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - LoadRoomXA(); - StrBufAppendPrintf(Target, "%d", WCC->CurRoom.Order); -} -void tmplput_CurrentRoomDefView(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - StrBufAppendPrintf(Target, "%d", WCC->CurRoom.defview); -} - -void tmplput_CurrentRoom_nNewMessages(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - LoadRoomXA(); - - StrBufAppendPrintf(Target, "%d", WCC->CurRoom.nNewMessages); -} - -void tmplput_CurrentRoom_nTotalMessages(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - LoadRoomXA(); - - StrBufAppendPrintf(Target, "%d", WCC->CurRoom.nTotalMessages); -} - -int ConditionalThisRoomOrder(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - long CheckThis; - - if (WCC == NULL) - return 0; - - LoadRoomXA(); - - CheckThis = GetTemplateTokenNumber(Target, TP, 2, 0); - return CheckThis == WCC->CurRoom.Order; -} - -int ConditionalThisRoomDefView(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - long CheckThis; - - if (WCC == NULL) - return 0; - - CheckThis = GetTemplateTokenNumber(Target, TP, 2, 0); - return CheckThis == WCC->CurRoom.defview; -} - -int ConditionalThisRoomCurrView(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - long CheckThis; - - if (WCC == NULL) - return 0; - - CheckThis = GetTemplateTokenNumber(Target, TP, 2, 0); - return CheckThis == WCC->CurRoom.view; -} - -int ConditionalThisRoomHaveView(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 exchangeable_views [WCC->CurRoom.defview][CheckThis] != VIEW_MAX; -} - -void tmplput_CurrentRoomViewString(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - 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); -} - - - -/* - * 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; - wcsession *WCC = WC; - - if (GetCurrentRoomFlags (&WCC->CurRoom) == 0) - { - return 0; - } - - if ((WCC->CurRoom.QRFlags2 & QR2_SELFLIST) != 0) { - current_value = 1; - } - else { - current_value = 0; - } - - 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); - } - - return(newval); - -} - - - -/* - * Toggle self-service list subscription - */ -void toggle_self_service(void) { - wcsession *WCC = WC; - - if (GetCurrentRoomFlags (&WCC->CurRoom) == 0) - return; - - if (yesbstr("QR2_SelfList")) - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SELFLIST; - else - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SELFLIST; - - if (yesbstr("QR2_SMTP_PUBLIC")) - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SMTP_PUBLIC; - else - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SMTP_PUBLIC; - - if (yesbstr("QR2_Moderated")) - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_MODERATED; - else - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_MODERATED; - if (yesbstr("QR2_SubsOnly")) - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 | QR2_SMTP_PUBLIC; - else - WCC->CurRoom.QRFlags2 = WCC->CurRoom.QRFlags2 & ~QR2_SMTP_PUBLIC; - - SetCurrentRoomFlags (&WCC->CurRoom); - - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); -} - - - -/* - * save new parameters for a room - */ -void editroom(void) +/* + * save new parameters for a room + */ +void editroom(void) { wcsession *WCC = WC; const StrBuf *Ptr; @@ -906,113 +719,133 @@ void editroom(void) const StrBuf *er_password; const StrBuf *er_dirname; const StrBuf *er_roomaide; - unsigned er_flags; - unsigned er_flags2; + const StrBuf *templ; int succ1, succ2; + templ = sbstr("template"); if (!havebstr("ok_button")) { - strcpy(WC->ImportantMessage, - _("Cancelled. Changes were not saved.")); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + putlbstr("success", 0); + AppendImportantMessage(_("Cancelled. Changes were not saved."), -1); + if (templ != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(templ), NULL, &NoCtx); + end_burst(); + } + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } return; } - if (GetCurrentRoomFlags (&WCC->CurRoom) == 0) + + if (GetCurrentRoomFlags (&WCC->CurRoom, 1) == 0) { + putlbstr("success", 0); + if (templ != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(templ), NULL, &NoCtx); + end_burst(); + } + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } return; + } LoadRoomAide(); - - er_flags = WCC->CurRoom.QRFlags; - er_flags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME); - - er_flags2 = WCC->CurRoom.QRFlags2; + WCC->CurRoom.QRFlags &= !(QR_PRIVATE | QR_PASSWORDED | QR_GUESSNAME); Ptr = sbstr("type"); 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; + if (yesbstr("ulmsg")) { + WCC->CurRoom.QRFlags2 |= QR2_NOUPLMSG; } else { - er_flags &= ~QR_VISDIR; + WCC->CurRoom.QRFlags2 &= ~QR2_NOUPLMSG; } + if (yesbstr("visdir")) { + WCC->CurRoom.QRFlags |= QR_VISDIR; + } else { + 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; + WCC->CurRoom.QRFlags |= QR_ANONOPT; er_name = sbstr("er_name"); er_dirname = sbstr("er_dirname"); @@ -1039,13 +872,28 @@ void editroom(void) succ2 = SaveRoomAide (&WCC->CurRoom); - if (succ1 + succ2 == 0) + if (succ1 + succ2 == 0) { + putlbstr("success", 1); AppendImportantMessage (_("Your changes have been saved."), -1); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + } + else { + putlbstr("success", 0); + } + if (templ != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(templ), NULL, &NoCtx); + end_burst(); + } + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); + } return; } + /* * Display form for Invite, Kick, and show Who Knows a room */ @@ -1057,7 +905,7 @@ void do_invt_kick(void) wcsession *WCC = WC; - if (GetCurrentRoomFlags(&WCC->CurRoom) == 1) + if (GetCurrentRoomFlags(&WCC->CurRoom, 1) == 1) { const char *Pos; UserNames = sbstr("username"); @@ -1075,7 +923,8 @@ void do_invt_kick(void) if ((StrLength(User) > 0) && (Kick)) { serv_printf("KICK %s", ChrPtr(User)); - StrBuf_ServGetln(Buf); + if (StrBuf_ServGetln(Buf) < 0) + break; if (GetServerStatus(Buf, NULL) != 2) { StrBufCutLeft(Buf, 4); AppendImportantMessage(SKEY(Buf)); @@ -1091,7 +940,8 @@ void do_invt_kick(void) else if ((StrLength(User) > 0) && (Invite)) { serv_printf("INVT %s", ChrPtr(User)); - StrBuf_ServGetln(Buf); + if (StrBuf_ServGetln(Buf) < 0) + break; if (GetServerStatus(Buf, NULL) != 2) { StrBufCutLeft(Buf, 4); AppendImportantMessage(SKEY(Buf)); @@ -1107,63 +957,39 @@ void do_invt_kick(void) } } - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); } -/* - * 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; + const StrBuf *template; 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.")); - display_main_menu(); + template = sbstr("template"); + if ((WCC == NULL) || !havebstr("ok_button")) { + putlbstr("success", 0); + AppendImportantMessage(_("Cancelled. No new room was created."), -1); + if (template != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(template), NULL, &NoCtx); + end_burst(); + } + else { + display_main_menu(); + } return; } er_name = sbstr("er_name"); @@ -1190,135 +1016,103 @@ void entroom(void) 0, er_view); - serv_getln(buf, sizeof buf); - if (buf[0] != '2') { - strcpy(WCC->ImportantMessage, &buf[4]); - display_main_menu(); + Line = NewStrBuf(); + StrBuf_ServGetln(Line); + if (GetServerStatusMsg(Line, NULL, 1, 2) != 2) { + putlbstr("success", 0); + FreeStrBuf(&Line); + if (template != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(template), NULL, &NoCtx); + end_burst(); + } + else { + display_main_menu(); + } return; } /** TODO: Room created, now update the left hand icon bar for this user */ gotoroom(er_name); serv_printf("VIEW %d", er_view); - serv_getln(buf, sizeof buf); + 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) ) { - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + putlbstr("success", 1); + if (template != NULL) { + output_headers(1, 0, 0, 0, 0, 0); + DoTemplate(SKEY(template), NULL, &NoCtx); + end_burst(); + } + else if ( (WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); } else { - do_change_view(er_view); /* Now go there */ + smart_goto(WCC->CurRoom.name); } - + FreeStrBuf(&Line); } -/** - * \brief goto a private room - */ -void goto_private(void) -{ - char hold_rm[SIZ]; - StrBuf *Buf; - const StrBuf *gr_name; - long err; - if (!havebstr("ok_button")) { - display_main_menu(); - return; - } - 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; - } - 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; -} - -/** - * \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->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); + 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]; - - - serv_puts("KILL 1"); - serv_getln(buf, sizeof buf); +void set_room_policy(void) { + StrBuf *Line; - 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; - - FlushRoomlist (); - Buf = NewStrBufPlain(HKEY("_BASEROOM_")); - smart_goto(Buf); - FreeStrBuf(&Buf); } + + 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]; @@ -1326,6 +1120,17 @@ void netedit(void) { char cmpb0[SIZ]; char cmpb1[SIZ]; int i, num_addrs; + StrBuf *Line; + StrBuf *TmpBuf; + int malias = 0; + int malias_set_default = 0; + char sepchar = '|'; + int Done; + + line[0] = '\0'; + if (havebstr("force_room")) { + gotoroom(sbstr("force_room")); + } /*/ TODO: do line dynamic! */ if (havebstr("line_pop3host")) { strcpy(line, bstr("prefix")); @@ -1345,51 +1150,107 @@ void netedit(void) { strcat(line, bstr("line")); strcat(line, bstr("suffix")); } - else { - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); - return; + else if (havebstr("alias")) { + const char *domain; + domain = bstr("aliasdomain"); + if ((domain == NULL) || IsEmptyStr(domain)) + { + malias_set_default = 1; + strcpy(line, bstr("prefix")); + strcat(line, bstr("default_aliasdomain")); + } + else + { + malias = 1; + sepchar = ','; + strcat(line, bstr("prefix")); + if (!IsEmptyStr(domain)) + { + strcat(line, "@"); + strcat(line, domain); + } + strcat(line, ","); + strcat(line, "room_"); + strcat(line, ChrPtr(WC->CurRoom.name)); + } } - - - fp = tmpfile(); - if (fp == NULL) { - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + else { + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); return; } - serv_puts("GNET"); - serv_getln(buf, sizeof buf); - if (buf[0] != '1') { - fclose(fp); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + Line = NewStrBuf(); + TmpBuf = NewStrBuf(); + if (malias) + serv_puts("GNET "FILE_MAILALIAS); + else + serv_puts("GNET"); + 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, sepchar, sizeof cmpb0); + extract_token(cmpb1, line, 1, sepchar, sizeof cmpb1); + while (!Done && StrBuf_ServGetln(Line)>=0) { + if ( (StrLength(Line)==3) && + !strcmp(ChrPtr(Line), "000")) + { + Done = 1; + } + else + { + if (StrLength(Line) == 0) + continue; + + if (malias_set_default) + { + if (strncasecmp(ChrPtr(Line), HKEY("roommailalias|")) != 0) + { + StrBufAppendBufPlain(Line, HKEY("\n"), 0); + StrBufAppendBuf(TmpBuf, Line, 0); + } + } + else + { + extract_token(cmpa0, ChrPtr(Line), 0, sepchar, sizeof cmpa0); + extract_token(cmpa1, ChrPtr(Line), 1, sepchar, 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); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); + if (malias) + serv_puts("SNET "FILE_MAILALIAS); + else + serv_puts("SNET"); + 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"), ','); @@ -1411,12 +1272,56 @@ void netedit(void) { } serv_puts("000"); - fclose(fp); + serv_puts("NOOP"); + StrBuf_ServGetln(Line); + if (GetServerStatus(Line, NULL) != 2) { /* WHOOOPS? ERROR? */ + AppendImportantMessage(SRV_STATUS_MSG(Line)); + StrBuf_ServGetln(Line); /* resync... */ + } + + FlushIgnetCfgs(&WC->CurRoom); + FreeStrBuf(&Line); + + output_headers(1, 1, 1, 0, 0, 0); + do_template("room_edit"); + wDumpContent(1); +} - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); +/* + * Known rooms list (box style) + */ +void knrooms(void) +{ + DeleteHash(&WC->Rooms); + output_headers(1, 1, 1, 0, 0, 0); + do_template("knrooms"); + wDumpContent(1); } + + + + + + + + + + + + + + + + + +/******************************************************************************* + ********************** FLOOR Coomands ***************************************** + ******************************************************************************/ + + + /* * delete the actual floor */ @@ -1440,7 +1345,7 @@ void delete_floor(void) { AppendImportantMessage (SKEY(Buf)); FlushRoomlist(); - http_transmit_thing(ChrPtr(do_template("floors", NULL)), 0); + http_transmit_thing(ChrPtr(do_template("floors")), 0); FreeStrBuf(&Buf); } @@ -1463,7 +1368,7 @@ void create_floor(void) { } AppendImportantMessage (SKEY(Buf)); FlushRoomlist(); - http_transmit_thing(ChrPtr(do_template("floors", NULL)), 0); + http_transmit_thing(ChrPtr(do_template("floors")), 0); FreeStrBuf(&Buf); } @@ -1483,329 +1388,25 @@ void rename_floor(void) { StrBufCutLeft(Buf, 4); AppendImportantMessage (SKEY(Buf)); - http_transmit_thing(ChrPtr(do_template("floors", NULL)), 0); + http_transmit_thing(ChrPtr(do_template("floors")), 0); FreeStrBuf(&Buf); } -/** - * \brief Back end for change_view() - * \param newview set newview??? - */ -void do_change_view(int newview) { - char buf[SIZ]; - - serv_printf("VIEW %d", newview); - serv_getln(buf, sizeof buf); - WC->CurRoom.view = newview; - smart_goto(WC->CurRoom.name); -} - - - -/** - * \brief Change the view for this room - */ -void change_view(void) { - int view; - - view = lbstr("view"); - do_change_view(view); -} - -/** - * \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) != 0)|| - ((strcasecmp(ChrPtr(ListView), "folders") != 0) && - (strcasecmp(ChrPtr(ListView), "table") != 0))) - { - if (ListView == NULL) { - ListView = NewStrBufPlain(HKEY("rooms")); - set_preference("roomlistview", ListView, 0); - ListView = NULL; - } - else { - ListView = NewStrBufPlain(HKEY("rooms")); - set_preference("roomlistview", ListView, 0); - ListView = NULL; - } - } - FreeStrBuf(&ListView); - url_do_template(); -} - - - -/** - * \brief Set the message expire policy for this room and/or floor - */ -void set_room_policy(void) { - char buf[SIZ]; - - if (!havebstr("ok_button")) { - strcpy(WC->ImportantMessage, - _("Cancelled. Changes were not saved.")); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); - return; - } - - serv_printf("SPEX roompolicy|%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 floorpolicy|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); - serv_getln(buf, sizeof buf); - strcat(WC->ImportantMessage, &buf[4]); - } - ReloadCurrentRoom(); - http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); -} - -void tmplput_RoomName(StrBuf *Target, WCTemplputParams *TP) -{ - StrBufAppendTemplate(Target, TP, WC->CurRoom.name, 0); -} - -void dotgoto(void) { - if (!havebstr("room")) { - readloop(readnew, eUseDefault); - return; - } - if (WC->CurRoom.view != VIEW_MAILBOX) { /* dotgoto acts like dotskip when we're in a mailbox view */ - slrp_highest(); - } - smart_goto(sbstr("room")); -} - - - -void tmplput_current_room(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if (WCC != NULL) - StrBufAppendTemplate(Target, TP, - WCC->CurRoom.name, - 0); -} - -void tmplput_roombanner(StrBuf *Target, WCTemplputParams *TP) -{ - wc_printf("
\n"); - embed_room_banner(); - wc_printf("
\n"); -} - - -void tmplput_ungoto(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if ((WCC!=NULL) && - (!IsEmptyStr(WCC->ugname))) - StrBufAppendBufPlain(Target, WCC->ugname, -1, 0); -} - -int ConditionalRoomAide(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - return (WCC != NULL)? - ((WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) : 0; -} - -int ConditionalRoomAcessDelete(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - return (WCC == NULL)? 0 : - ( ((WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) || - (WCC->CurRoom.is_inbox) || - (WCC->CurRoom.QRFlags2 & QR2_COLLABDEL) ); -} - -int ConditionalHaveUngoto(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ((WCC!=NULL) && - (!IsEmptyStr(WCC->ugname)) && - (strcasecmp(WCC->ugname, ChrPtr(WCC->CurRoom.name)) == 0)); -} - - -int ConditionalRoomHas_UAFlag(StrBuf *Target, WCTemplputParams *TP) -{ - folder *Folder = (folder *)(TP->Context); - long UA_CheckFlag; - - UA_CheckFlag = GetTemplateTokenNumber(Target, TP, 2, 0); - if (UA_CheckFlag == 0) - LogTemplateError(Target, "Conditional", ERR_PARM1, TP, - "requires one of the #\"UA_*\"- defines or an integer flag 0 is invalid!"); - - return ((Folder->RAFlags & UA_CheckFlag) != 0); -} - - - -int ConditionalCurrentRoomHas_QRFlag(StrBuf *Target, WCTemplputParams *TP) -{ - long QR_CheckFlag; - wcsession *WCC = WC; - - QR_CheckFlag = GetTemplateTokenNumber(Target, TP, 2, 0); - if (QR_CheckFlag == 0) - LogTemplateError(Target, "Conditional", ERR_PARM1, TP, - "requires one of the #\"QR*\"- defines or an integer flag 0 is invalid!"); - - if (WCC == NULL) - return 0; - - if ((TP->Tokens->Params[2]->MaskBy == eOR) || - (TP->Tokens->Params[2]->MaskBy == eNO)) - return (WCC->CurRoom.QRFlags & QR_CheckFlag) != 0; - else - return (WCC->CurRoom.QRFlags & QR_CheckFlag) == QR_CheckFlag; -} - -int ConditionalRoomHas_QRFlag(StrBuf *Target, WCTemplputParams *TP) -{ - long QR_CheckFlag; - folder *Folder = (folder *)(TP->Context); - - QR_CheckFlag = GetTemplateTokenNumber(Target, TP, 2, 0); - if (QR_CheckFlag == 0) - LogTemplateError(Target, "Conditional", ERR_PARM1, TP, - "requires one of the #\"QR*\"- defines or an integer flag 0 is invalid!"); - - if ((TP->Tokens->Params[2]->MaskBy == eOR) || - (TP->Tokens->Params[2]->MaskBy == eNO)) - return (Folder->QRFlags & QR_CheckFlag) != 0; - else - return (Folder->QRFlags & QR_CheckFlag) == QR_CheckFlag; -} - - -int ConditionalCurrentRoomHas_QRFlag2(StrBuf *Target, WCTemplputParams *TP) -{ - long QR2_CheckFlag; - wcsession *WCC = WC; - - QR2_CheckFlag = GetTemplateTokenNumber(Target, TP, 2, 0); - if (QR2_CheckFlag == 0) - LogTemplateError(Target, "Conditional", ERR_PARM1, TP, - "requires one of the #\"QR2*\"- defines or an integer flag 0 is invalid!"); - - - if (WCC == NULL) - return 0; - - if ((TP->Tokens->Params[2]->MaskBy == eOR) || - (TP->Tokens->Params[2]->MaskBy == eNO)) - return (WCC->CurRoom.QRFlags2 & QR2_CheckFlag) != 0; - else - return (WCC->CurRoom.QRFlags2 & QR2_CheckFlag) == QR2_CheckFlag; -} - -int ConditionalRoomHas_QRFlag2(StrBuf *Target, WCTemplputParams *TP) -{ - long QR2_CheckFlag; - folder *Folder = (folder *)(TP->Context); - - QR2_CheckFlag = GetTemplateTokenNumber(Target, TP, 2, 0); - if (QR2_CheckFlag == 0) - LogTemplateError(Target, "Conditional", ERR_PARM1, TP, - "requires one of the #\"QR2*\"- defines or an integer flag 0 is invalid!"); - return ((Folder->QRFlags2 & QR2_CheckFlag) != 0); -} - - -int ConditionalHaveRoomeditRights(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - return ( (WCC!= NULL) && - ((WCC->axlevel >= 6) || - ((WCC->CurRoom.RAFlags & UA_ADMINALLOWED) != 0) || - (WCC->CurRoom.is_inbox) )); -} - -int ConditionalIsRoomtype(StrBuf *Target, WCTemplputParams *TP) -{ - wcsession *WCC = WC; - - if ((WCC == NULL) || - (TP->Tokens->nParameters < 3)) - { - return ((WCC->CurRoom.view < VIEW_BBS) || - (WCC->CurRoom.view > VIEW_MAX)); - } - - return WCC->CurRoom.view == GetTemplateTokenNumber(Target, TP, 2, VIEW_BBS); -} - - -HashList *GetWhoKnowsHash(StrBuf *Target, WCTemplputParams *TP) +void jsonRoomFlr(void) { - wcsession *WCC = WC; - StrBuf *Line; - StrBuf *Token; - long State; - HashList *Whok = NULL; - int Done = 0; - int n; - - serv_puts("WHOK"); - Line = NewStrBuf(); - StrBuf_ServGetln(Line); - if (GetServerStatus(Line, &State) == 1) - { - Whok = NewHash(1, Flathash); - while(!Done && StrBuf_ServGetln(Line)) - if ( (StrLength(Line)==3) && - !strcmp(ChrPtr(Line), "000")) - { - Done = 1; - } - else - { - - const char *Pos = NULL; - Token = NewStrBufPlain (NULL, StrLength(Line)); - StrBufExtract_NextToken(Token, Line, &Pos, '|'); - - Put(Whok, - IKEY(n), - Token, - HFreeStrBuf); - n++; - } - } - else if (State == 550) - StrBufAppendBufPlain(WCC->ImportantMsg, - _("Higher access is required to access this function."), -1, 0); - - - FreeStrBuf(&Line); - return Whok; + /* 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) { free_march_list(WCC); @@ -1838,21 +1439,19 @@ void InitModule_ROOMOPS (void) { - initialize_viewdefs(); RegisterPreference("roomlistview", _("Room list view"), PRF_STRING, NULL); RegisterPreference("emptyfloors", _("Show empty floors"), PRF_YESNO, NULL); - RegisterNamespace("ROOMNAME", 0, 1, tmplput_RoomName, NULL, CTX_NONE); - + 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, 0); + WebcitAddUrlHandler(HKEY("knrooms"), "", 0, knrooms, ANONYMOUS); WebcitAddUrlHandler(HKEY("dotgoto"), "", 0, dotgoto, NEED_URL); WebcitAddUrlHandler(HKEY("dotskip"), "", 0, dotskip, NEED_URL); @@ -1867,40 +1466,7 @@ InitModule_ROOMOPS 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); - RegisterNamespace("ROOMBANNER", 0, 1, tmplput_roombanner, NULL, CTX_NONE); - - RegisterConditional(HKEY("COND:ROOM:TYPE_IS"), 0, ConditionalIsRoomtype, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:FLAG:QR"), 0, ConditionalCurrentRoomHas_QRFlag, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAG:QR"), 0, ConditionalRoomHas_QRFlag, CTX_ROOMS); - - RegisterConditional(HKEY("COND:THISROOM:FLAG:QR2"), 0, ConditionalCurrentRoomHas_QRFlag2, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:FLAG:QR2"), 0, ConditionalRoomHas_QRFlag2, CTX_ROOMS); - RegisterConditional(HKEY("COND:ROOM:FLAG:UA"), 0, ConditionalRoomHas_UAFlag, CTX_ROOMS); - - RegisterIterator("ITERATE:THISROOM:WHO_KNOWS", 0, NULL, GetWhoKnowsHash, NULL, DeleteHash, CTX_STRBUF, CTX_NONE, IT_NOFLAG); - RegisterNamespace("THISROOM:MSGS:NEW", 0, 0, tmplput_CurrentRoom_nNewMessages, NULL, CTX_NONE); - RegisterNamespace("THISROOM:MSGS:TOTAL", 0, 0, tmplput_CurrentRoom_nTotalMessages, NULL, CTX_NONE); - - RegisterNamespace("THISROOM:FLOOR:NAME", 0, 1, tmplput_CurrentRoomFloorName, NULL, CTX_NONE); - RegisterNamespace("THISROOM:AIDE", 0, 1, tmplput_CurrentRoomAide, NULL, CTX_NONE); - RegisterNamespace("THISROOM:PASS", 0, 1, tmplput_CurrentRoomPass, NULL, CTX_NONE); - RegisterNamespace("THISROOM:DIRECTORY", 0, 1, tmplput_CurrentRoomDirectory, NULL, CTX_NONE); - RegisterNamespace("THISROOM:ORDER", 0, 0, tmplput_CurrentRoomOrder, NULL, CTX_NONE); - RegisterNamespace("THISROOM:DEFAULT_VIEW", 0, 0, tmplput_CurrentRoomDefView, NULL, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:HAVE_VIEW"), 0, ConditionalThisRoomHaveView, CTX_NONE); - RegisterConditional(HKEY("COND:ALLOWED_DEFAULT_VIEW"), 0, ConditionalIsAllowedDefaultView, CTX_NONE); - - RegisterNamespace("THISROOM:VIEW_STRING", 0, 1, tmplput_CurrentRoomViewString, NULL, CTX_NONE); - RegisterNamespace("ROOM:VIEW_STRING", 1, 2, tmplput_RoomViewString, NULL, CTX_NONE); - - RegisterNamespace("THISROOM:INFOTEXT", 1, 2, tmplput_CurrentRoomInfoText, NULL, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:ORDER"), 0, ConditionalThisRoomOrder, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:DEFAULT_VIEW"), 0, ConditionalThisRoomDefView, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:CURR_VIEW"), 0, ConditionalThisRoomCurrView, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:HAVE_PIC"), 0, ConditionalThisRoomXHavePic, CTX_NONE); - RegisterConditional(HKEY("COND:THISROOM:HAVE_INFOTEXT"), 0, ConditionalThisRoomXHaveInfoText, CTX_NONE); - RegisterNamespace("THISROOM:FILES:N", 0, 1, tmplput_CurrentRoomXNFiles, NULL, CTX_NONE); - RegisterNamespace("THISROOM:FILES:STR", 0, 1, tmplput_CurrentRoomX_FileString, NULL, CTX_NONE); + REGISTERTokenParamDefine(QR_PERMANENT); REGISTERTokenParamDefine(QR_INUSE); @@ -1923,6 +1489,7 @@ InitModule_ROOMOPS REGISTERTokenParamDefine(QR2_SUBJECTREQ); REGISTERTokenParamDefine(QR2_SMTP_PUBLIC); REGISTERTokenParamDefine(QR2_MODERATED); + REGISTERTokenParamDefine(QR2_NOUPLMSG); REGISTERTokenParamDefine(UA_KNOWN); REGISTERTokenParamDefine(UA_GOTOALLOWED); @@ -1931,6 +1498,7 @@ InitModule_ROOMOPS REGISTERTokenParamDefine(UA_POSTALLOWED); REGISTERTokenParamDefine(UA_ADMINALLOWED); REGISTERTokenParamDefine(UA_DELETEALLOWED); + REGISTERTokenParamDefine(UA_REPLYALLOWED); REGISTERTokenParamDefine(UA_ISTRASH); REGISTERTokenParamDefine(US_NEEDVALID); @@ -1958,6 +1526,8 @@ InitModule_ROOMOPS REGISTERTokenParamDefine(VIEW_CALBRIEF); REGISTERTokenParamDefine(VIEW_JOURNAL); REGISTERTokenParamDefine(VIEW_BLOG); + REGISTERTokenParamDefine(VIEW_QUEUE); + REGISTERTokenParamDefine(VIEW_WIKIMD); /* GNET types: */ /* server internal, we need to know but ignore them. */ @@ -1981,16 +1551,8 @@ InitModule_ROOMOPS } REGISTERTokenParamDefine(rssclient); REGISTERTokenParamDefine(participate); + REGISTERTokenParamDefine(roommailalias); - RegisterConditional(HKEY("COND:ROOMAIDE"), 2, ConditionalRoomAide, CTX_NONE); - RegisterConditional(HKEY("COND:ACCESS:DELETE"), 2, ConditionalRoomAcessDelete, CTX_NONE); - - RegisterConditional(HKEY("COND:UNGOTO"), 0, ConditionalHaveUngoto, CTX_NONE); - RegisterConditional(HKEY("COND:ROOM:EDITACCESS"), 0, ConditionalHaveRoomeditRights, CTX_NONE); - - RegisterNamespace("CURRENT_ROOM", 0, 1, tmplput_current_room, NULL, 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); } @@ -2003,5 +1565,3 @@ SessionDestroyModule_ROOMOPS _FlushRoomList (sess); } - -/*@}*/