X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fpreferences.c;h=b66a3bd383536baff970c2289aecc72a67ec49e0;hb=77ad06c3f4bf4d2a4e3a7ff82ec94fcdff343273;hp=f6e4bab1458695743eebb7633ebb3ab62486f670;hpb=c5d32a4b382cc366776eb0ec06c93ab15245c6da;p=citadel.git diff --git a/webcit/preferences.c b/webcit/preferences.c index f6e4bab14..b66a3bd38 100644 --- a/webcit/preferences.c +++ b/webcit/preferences.c @@ -45,13 +45,51 @@ inline const char *PrintPref(void *Prefstr) } #endif + +void ParsePref(HashList **List, StrBuf *ReadBuf) +{ + StrBuf *Key; + StrBuf *Data = NULL; + StrBuf *LastData = NULL; + + Key = NewStrBuf(); + while (StrBuf_ServGetln(ReadBuf), + strcmp(ChrPtr(ReadBuf), "000")) + { + if ((ChrPtr(ReadBuf)[0] == ' ') && + (Data != NULL)) { + StrBufAppendBuf(Data, ReadBuf, 1); + } + else { + LastData = Data = NewStrBuf(); + StrBufExtract_token(Key, ReadBuf, 0, '|'); + StrBufExtract_token(Data, ReadBuf, 1, '|'); + if (!IsEmptyStr(ChrPtr(Key))) + { + Put(*List, + ChrPtr(Key), StrLength(Key), + Data, + HFreeStrBuf); + } + else + { + FreeStrBuf(&Data); + LastData = NULL; + } + } + } + FreeStrBuf(&Key); +} + + /* * display preferences dialog */ -void load_preferences(void) { +void load_preferences(void) +{ + StrBuf *ReadBuf; char buf[SIZ]; long msgnum = 0L; - StrBuf *ReadBuf; serv_printf("GOTO %s", USERCONFIGROOM); serv_getln(buf, sizeof buf); @@ -77,40 +115,10 @@ void load_preferences(void) { strcmp(ChrPtr(ReadBuf), "000"))) { } if (!strcmp(ChrPtr(ReadBuf), "text")) { - StrBuf *Key; - StrBuf *Data = NULL; - StrBuf *LastData = NULL; - - Key = NewStrBuf(); - while (StrBuf_ServGetln(ReadBuf), - strcmp(ChrPtr(ReadBuf), "000")) - { - if ((ChrPtr(ReadBuf)[0] == ' ') && - (Data != NULL)) { - StrBufAppendBuf(Data, ReadBuf, 1); - } - else { - LastData = Data = NewStrBuf(); - StrBufExtract_token(Key, ReadBuf, 0, '|'); - StrBufExtract_token(Data, ReadBuf, 1, '|'); - if (!IsEmptyStr(ChrPtr(Key))) - { - Put(WC->hash_prefs, - ChrPtr(Key), StrLength(Key), - Data, - HFreeStrBuf); - } - else - { - FreeStrBuf(&Data); - LastData = NULL; - } - } - } - FreeStrBuf(&Key); + ParsePref(&WC->hash_prefs, ReadBuf); } - FreeStrBuf(&ReadBuf); } + FreeStrBuf(&ReadBuf); } /* Go back to the room we're supposed to be in */ @@ -137,6 +145,62 @@ int goto_config_room(void) { return(0); } +void WritePrefsToServer(HashList *Hash) +{ + long len; + HashPos *HashPos; + void *Value; + const char *Key; + StrBuf *Buf; + StrBuf *SubBuf = NULL; + + Hash = WC->hash_prefs; +#ifdef DBG_PREFS_HASH + dbg_PrintHash(Hash, PrintPref, NULL); +#endif + HashPos = GetNewHashPos(Hash, 0); + while (GetNextHashPos(Hash, HashPos, &len, &Key, &Value)!=0) + { + size_t nchars; + Buf = (StrBuf*) Value; + if (Buf == NULL) + continue; + nchars = StrLength(Buf); + if (nchars > 80){ + int n = 0; + size_t offset, nchars; + if (SubBuf == NULL) + SubBuf = NewStrBuf(); + nchars = 1; + offset = 0; + while (nchars > 0) { + if (n == 0) + nchars = 70; + else + nchars = 80; + + nchars = StrBufSub(SubBuf, Buf, offset, nchars); + + if (n == 0) + serv_printf("%s|%s", Key, ChrPtr(SubBuf)); + else + serv_printf(" %s", ChrPtr(SubBuf)); + + offset += nchars; + nchars = StrLength(Buf) - offset; + n++; + } + + } + else + serv_printf("%s|%s", Key, ChrPtr(Buf)); + + } + if (SubBuf != NULL) + FreeStrBuf(&SubBuf); + DeleteHashPos(&HashPos); +} + /** * \brief save the modifications */ @@ -163,61 +227,10 @@ void save_preferences(void) { serv_printf("ENT0 1||0|1|__ WebCit Preferences __|"); serv_getln(buf, sizeof buf); if (buf[0] == '4') { - long len; - HashPos *HashPos; - HashList *Hash; - void *Value; - const char *Key; - StrBuf *Buf; - StrBuf *SubBuf = NULL; - - Hash = WC->hash_prefs; -#ifdef DBG_PREFS_HASH - dbg_PrintHash(Hash, PrintPref, NULL); -#endif - HashPos = GetNewHashPos(); - while (GetNextHashPos(Hash, HashPos, &len, &Key, &Value)!=0) - { - size_t nchars; - Buf = (StrBuf*) Value; - if (Buf == NULL) - continue; - nchars = StrLength(Buf); - if (nchars > 80){ - int n = 0; - size_t offset, nchars; - if (SubBuf == NULL) - SubBuf = NewStrBuf(); - nchars = 1; - offset = 0; - while (nchars > 0) { - if (n == 0) - nchars = 70; - else - nchars = 80; - - nchars = StrBufSub(SubBuf, Buf, offset, nchars); - - if (n == 0) - serv_printf("%s|%s", Key, ChrPtr(SubBuf)); - else - serv_printf(" %s", ChrPtr(SubBuf)); - - offset += nchars; - nchars = StrLength(Buf) - offset; - n++; - } - - } - else - serv_printf("%s|%s", Key, ChrPtr(Buf)); - - } - if (SubBuf != NULL) - FreeStrBuf(&SubBuf); + + WritePrefsToServer(WC->hash_prefs); serv_puts(""); serv_puts("000"); - DeleteHashPos(&HashPos); } /** Go back to the room we're supposed to be in */ @@ -344,279 +357,47 @@ void set_ROOM_PREFS(const char *key, size_t keylen, StrBuf *value, int save_to_s FreeStrBuf(&pref_name); } -/** - * \brief display form for changing your preferences and settings +/* + * Offer to make any page the user's "start page." */ -void display_preferences(void) -{ - output_headers(1, 1, 1, 0, 0, 0); - StrBuf *ebuf = NULL; - int i; - long DayEnd, DayStart, WeekStart; - int UseSig, ShowEmptyFloors; - int time_format; - time_t tt; - struct tm tm; - char daylabel[32]; - StrBuf *Buf; - StrBuf *Signature; - - time_format = get_time_format_cached (); - - wprintf("
\n"); - wprintf("
"); - wprintf(_("Preferences and settings")); - wprintf("
"); - - wprintf("
"); - - /** begin form */ - wprintf("
\n"); - wprintf("\n", WC->nonce); - - /** begin table */ - wprintf("\n"); - - /** - * Room list view - */ - get_preference("roomlistview", &Buf); - wprintf("\n"); - - /** - * Time hour format - */ - - wprintf("\n"); - - /** - * Calendar day view -- day start time - */ - get_pref_long("daystart", &DayStart, 8); - - wprintf("\n"); - - /** - * Calendar day view -- day end time - */ - get_pref_long("dayend", &DayEnd, 17); - - wprintf("\n"); - - /** - * Day of week to begin calendar month view - */ - get_pref_long("weekstart", &WeekStart, 17); - wprintf("\n"); - - /** - * Signature - */ - get_pref_yesno("use_sig", &UseSig, 0); - wprintf("\n"); - - wprintf(" " - ); - - /** Character set to assume is in use for improperly encoded headers */ - if (!get_preference("default_header_charset", &Buf)) { - Buf = NewStrBuf(); - StrBufPrintf(Buf, "%s", "UTF-8"); - set_preference("default_header_charset", Buf, 0); + if (bstr("startpage") == NULL) { + safestrncpy(WC->ImportantMessage, + _("You no longer have a start page selected."), + sizeof WC->ImportantMessage); + display_main_menu(); + return; } - wprintf(""); - - /** - * Show empty floors? - */ - - get_pref_yesno("emptyfloors", &ShowEmptyFloors, 0); - wprintf("\n"); - - /** end table */ - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("roomlistview"))); - wprintf(""); - - wprintf(""); - wprintf(_("Tree (folders) view")); - wprintf("   "); - - wprintf(""); - wprintf(_("Table (rooms) view")); - wprintf("\n"); - - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("calhourformat"))); - wprintf(""); - - wprintf(""); - wprintf(_("12 hour (am/pm)")); - wprintf("   "); - - wprintf(""); - wprintf(_("24 hour")); - wprintf("\n"); - - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("daystart"))); - wprintf(""); - - wprintf("\n"); - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("dayend"))); - wprintf(""); - - wprintf("\n"); - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("weekstart"))); - wprintf(""); - - wprintf("\n"); - wprintf("
"); - wprintf(_("Attach signature to email messages?")); - wprintf(""); - - wprintf(" " - ); - - wprintf(PrefGetLocalStr(HKEY("use_sig"))); - - wprintf(""); - wprintf(_("No signature")); - wprintf(" ,  \n"); - - wprintf(""); - wprintf(PrefGetLocalStr(HKEY("signature"))); - wprintf("
" - "
" - "
" - ); - - wprintf("\n"); - - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("default_header_charset"))); - wprintf(""); - wprintf(""); - wprintf("
"); - wprintf(PrefGetLocalStr(HKEY("emptyfloors"))); - wprintf(""); - - wprintf(""); - wprintf(_("Yes")); - wprintf("   "); - - wprintf(""); - wprintf(_("No")); - wprintf("\n"); - - wprintf("
\n"); - - /** submit buttons */ - wprintf("
"); - wprintf("" - " " - "\n", - _("Change"), - _("Cancel") - ); - wprintf("
\n"); - - /** end form */ - wprintf("
\n"); - wprintf("
\n"); + + set_preference("startpage", NewStrBufPlain(bstr("startpage"), -1), 1); + + output_headers(1, 1, 0, 0, 0, 0); + do_template("newstartpage", NULL); wDumpContent(1); } + + /** * \brief Commit new preferences and settings */ @@ -626,34 +407,38 @@ void set_preferences(void) StrBuf *buf, *encBuf; int *time_format_cache; - time_format_cache = &(WC->time_format_cache); - - if (!havebstr("change_button")) { - safestrncpy(WC->ImportantMessage, - _("Cancelled. No settings were changed."), - sizeof WC->ImportantMessage); - display_main_menu(); - return; - } + time_format_cache = &(WC->time_format_cache); + + if (!havebstr("change_button")) { + safestrncpy(WC->ImportantMessage, + _("Cancelled. No settings were changed."), + sizeof WC->ImportantMessage); + display_main_menu(); + return; + } + + /** + * Set the last argument to 1 only for the final setting, so + * we don't send the prefs file to the server repeatedly + */ + set_preference("roomlistview", NewStrBufPlain(bstr("roomlistview"), -1), 0); + fmt = lbstr("calhourformat"); + set_pref_long("calhourformat", fmt, 0); + if (fmt == 24) + *time_format_cache = WC_TIMEFORMAT_24; + else + *time_format_cache = WC_TIMEFORMAT_AMPM; + + set_pref_long("weekstart", lbstr("weekstart"), 0); + set_pref_yesno("use_sig", yesbstr("use_sig"), 0); + set_pref_long("daystart", lbstr("daystart"), 0); + set_pref_long("dayend", lbstr("dayend"), 0); + set_preference("default_header_charset", NewStrBufPlain(bstr("default_header_charset"), -1), 0); + set_preference("emptyfloors", NewStrBufPlain(bstr("emptyfloors"), -1), 0); + set_preference("defaultfrom", NewStrBufDup(sbstr("defaultfrom")), 0); + set_preference("defaultname", NewStrBufDup(sbstr("defaultname")), 0); + set_preference("defaulthandle", NewStrBufDup(sbstr("defaulthandle")), 0); - /** - * Set the last argument to 1 only for the final setting, so - * we don't send the prefs file to the server repeatedly - */ - set_preference("roomlistview", NewStrBufPlain(bstr("roomlistview"), -1), 0); - fmt = lbstr("calhourformat"); - set_pref_long("calhourformat", fmt, 0); - if (fmt == 24) - *time_format_cache = WC_TIMEFORMAT_24; - else - *time_format_cache = WC_TIMEFORMAT_AMPM; - - set_pref_long("weekstart", lbstr("weekstart"), 0); - set_pref_yesno("use_sig", yesbstr("use_sig"), 0); - set_pref_long("daystart", lbstr("daystart"), 0); - set_pref_long("dayend", lbstr("dayend"), 0); - set_preference("default_header_charset", NewStrBufPlain(bstr("default_header_charset"), -1), 0); - set_preference("emptyfloors", NewStrBufPlain(bstr("emptyfloors"), -1), 0); buf = NewStrBufPlain(bstr("signature"), -1); encBuf = NewStrBuf(); @@ -671,20 +456,17 @@ void set_preferences(void) #define PRF_YESNO 4 -void tmplput_CFG_Value(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType) +void tmplput_CFG_Value(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType) { StrBuf *Setting; - if (get_PREFERENCE(Token->Params[0]->Start, - Token->Params[0]->len, - &Setting)) - StrBufAppendBuf(Target, Setting, 0); + if (get_PREFERENCE(TKEY(0), &Setting)) + StrBufAppendTemplate(Target, nArgs, Tokens, Context, ContextType, Setting, 1); } -void tmplput_CFG_Descr(StrBuf *Target, int nArgs, WCTemplateToken *Token, void *Context, int ContextType) +void tmplput_CFG_Descr(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType) { const char *SettingStr; - SettingStr = PrefGetLocalStr(Token->Params[0]->Start, - Token->Params[0]->len); + SettingStr = PrefGetLocalStr(TKEY(0)); if (SettingStr != NULL) StrBufAppendBufPlain(Target, SettingStr, -1, 0); } @@ -697,23 +479,106 @@ void CfgZoneTempl(StrBuf *TemplBuffer, void *vContext, WCTemplateToken *Token) SVPutBuf("ZONENAME", Zone, 1); } -int ConditionalPreference(WCTemplateToken *Token, void *Context, int ContextType) +int ConditionalPreference(WCTemplateToken *Tokens, void *Context, int ContextType) { StrBuf *Pref; - if (!get_PREFERENCE(Token->Params[2]->Start, - Token->Params[2]->len, - &Pref)) + if (!get_PREFERENCE(TKEY(2), &Pref)) return 0; - if (Token->nParameters == 3) { + if (Tokens->nParameters == 3) { return 1; } - else if (Token->Params[3]->Type == TYPE_STR) - return ((Token->Params[3]->len == StrLength(Pref)) && - (strcmp(Token->Params[3]->Start, ChrPtr(Pref)) == 0)); + else if (Tokens->Params[3]->Type == TYPE_STR) + return ((Tokens->Params[3]->len == StrLength(Pref)) && + (strcmp(Tokens->Params[3]->Start, ChrPtr(Pref)) == 0)); else - return (StrTol(Pref) == Token->Params[3]->lvalue); + return (StrTol(Pref) == Tokens->Params[3]->lvalue); +} + +int ConditionalHazePreference(WCTemplateToken *Tokens, void *Context, int ContextType) +{ + StrBuf *Pref; + + if (!get_PREFERENCE(TKEY(2), &Pref) || + (Pref == NULL)) + return 0; + else + return 1; +} + +HashList *GetGVEAHash(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType) +{ + StrBuf *Rcp; + HashList *List = NULL; + int Done = 0; + int i, n = 1; + char N[64]; + + Rcp = NewStrBuf(); + serv_puts("GVEA"); + StrBuf_ServGetln(Rcp); + if (ChrPtr(Rcp)[0] == '1') { + FlushStrBuf(Rcp); + List = NewHash(1, NULL); + while (!Done && (StrBuf_ServGetln(Rcp)>=0)) { + if ( (StrLength(Rcp)==3) && + !strcmp(ChrPtr(Rcp), "000")) + { + Done = 1; + } + else { + i = snprintf(N, sizeof(N), "%d", n); + StrBufTrim(Rcp); + Put(List, N, i, Rcp, HFreeStrBuf); + Rcp = NewStrBuf(); + } + n++; + } + } + FreeStrBuf(&Rcp); + return List; +} +void DeleteGVEAHash(HashList **KillMe) +{ + DeleteHash(KillMe); +} + +HashList *GetGVSNHash(StrBuf *Target, int nArgs, WCTemplateToken *Tokens, void *Context, int ContextType) +{ + StrBuf *Rcp; + HashList *List = NULL; + int Done = 0; + int i, n = 1; + char N[64]; + + Rcp = NewStrBuf(); + serv_puts("GVSN"); + StrBuf_ServGetln(Rcp); + if (ChrPtr(Rcp)[0] == '1') { + FlushStrBuf(Rcp); + List = NewHash(1, NULL); + while (!Done && (StrBuf_ServGetln(Rcp)>=0)) { + if ( (StrLength(Rcp)==3) && + !strcmp(ChrPtr(Rcp), "000")) + { + Done = 1; + } + else { + i = snprintf(N, sizeof(N), "%d", n); + StrBufTrim(Rcp); + Put(List, N, i, Rcp, HFreeStrBuf); + Rcp = NewStrBuf(); + } + n++; + } + } + FreeStrBuf(&Rcp); + return List; +} +void DeleteGVSNHash(HashList **KillMe) +{ + DeleteHash(KillMe); } @@ -721,8 +586,8 @@ void InitModule_PREFERENCES (void) { - WebcitAddUrlHandler(HKEY("display_preferences"), display_preferences, 0); WebcitAddUrlHandler(HKEY("set_preferences"), set_preferences, 0); + WebcitAddUrlHandler(HKEY("change_start_page"), change_start_page, 0); RegisterPreference("roomlistview",_("Room list view"),PRF_STRING); RegisterPreference("calhourformat",_("Time format"), PRF_INT); @@ -734,11 +599,22 @@ InitModule_PREFERENCES RegisterPreference("signature",_("Use this signature:"),PRF_QP_STRING); RegisterPreference("default_header_charset", _("Default character set for email headers:") ,PRF_STRING); RegisterPreference("emptyfloors", _("Show empty floors"), PRF_YESNO); + RegisterPreference("defaultfrom", _("Prefered Email Address"), PRF_STRING); + RegisterPreference("defaultname", _("Prefered Email Sendername"), PRF_STRING); + RegisterPreference("defaulthandle", _("Prefered Name for posting messages"), PRF_STRING); + - RegisterNamespace("PREF:VALUE", 1, 1, tmplput_CFG_Value, CTX_SESSION); - RegisterNamespace("PREF:DESCR", 1, 1, tmplput_CFG_Descr, CTX_SESSION); + RegisterNamespace("PREF:VALUE", 1, 2, tmplput_CFG_Value, CTX_NONE); + RegisterNamespace("PREF:DESCR", 1, 1, tmplput_CFG_Descr, CTX_NONE); RegisterIterator("PREF:ZONE", 0, ZoneHash, NULL, CfgZoneTempl, NULL, CTX_PREF, CTX_NONE); RegisterConditional(HKEY("COND:PREF"), 4, ConditionalPreference, CTX_NONE); + RegisterConditional(HKEY("COND:PREF:SET"), 4, ConditionalHazePreference, CTX_NONE); + + RegisterIterator("PREF:VALID:EMAIL:ADDR", 0, NULL, + GetGVEAHash, NULL, DeleteGVEAHash, CTX_STRBUF, CTX_NONE); + RegisterIterator("PREF:VALID:EMAIL:NAME", 0, NULL, + GetGVSNHash, NULL, DeleteGVSNHash, CTX_STRBUF, CTX_NONE); + } /*@}*/