X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsummary.c;h=faa4f45b2d82b02e59316919d1d2e7247ce4dc88;hb=HEAD;hp=4a13e339b0df88dc1c415e53f16def881f3c7197;hpb=63deece5bd2380725f32c42b5af0e74272afa140;p=citadel.git diff --git a/webcit/summary.c b/webcit/summary.c index 4a13e339b..5dbe60435 100644 --- a/webcit/summary.c +++ b/webcit/summary.c @@ -1,10 +1,21 @@ /* - * $Id$ - * * Displays the "Summary Page" + * + * Copyright (c) 1996-2021 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 "calendar.h" + +extern int calendar_summary_view(void); /* * Display today's date in a friendly format @@ -12,53 +23,27 @@ void output_date(void) { struct tm tm; time_t now; - - static char *wdays[7]; - static char *months[12]; - - wdays[0] = _("Sunday"); - wdays[1] = _("Monday"); - wdays[2] = _("Tuesday"); - wdays[3] = _("Wednesday"); - wdays[4] = _("Thursday"); - wdays[5] = _("Friday"); - wdays[6] = _("Saturday"); - - months[0] = _("January"); - months[1] = _("February"); - months[2] = _("March"); - months[3] = _("April"); - months[4] = _("May"); - months[5] = _("June"); - months[6] = _("July"); - months[7] = _("August"); - months[8] = _("September"); - months[9] = _("October"); - months[10] = _("November"); - months[11] = _("December"); + char buf[128]; time(&now); localtime_r(&now, &tm); - wprintf("%s, %s %d, %d", - wdays[tm.tm_wday], - months[tm.tm_mon], - tm.tm_mday, - tm.tm_year + 1900 - ); + wc_strftime(buf, 32, "%A, %x", &tm); + wc_printf("%s", buf); } +void tmplput_output_date(StrBuf *Target, WCTemplputParams *TP) +{ + struct tm tm; + time_t now; + char buf[128]; + size_t n; + time(&now); + localtime_r(&now, &tm); - -/* - * Dummy section - */ -void dummy_section(void) { - svprintf("BOXTITLE", WCS_STRING, "(dummy section)"); - do_template("beginbox"); - wprintf(_("(nothing)")); - do_template("endbox"); + n = wc_strftime(buf, 32, "%A, %x", &tm); + StrBufAppendBufPlain(Target, buf, n, 0); } @@ -72,13 +57,11 @@ void new_messages_section(void) { int number_of_rooms_to_check; char *rooms_to_check = "Mail|Lobby"; - svprintf("BOXTITLE", WCS_STRING, _("Messages")); - do_template("beginbox"); number_of_rooms_to_check = num_tokens(rooms_to_check, '|'); if (number_of_rooms_to_check == 0) return; - wprintf("\n"); + wc_printf("
\n"); for (i=0; i\n", + wc_printf("\n", extract_int(&buf[4], 1), extract_int(&buf[4], 2) ); } } - wprintf("
"); + wc_printf("\">"); escputs(room); - wprintf("%d/%d
%d/%d
\n"); - do_template("endbox"); + wc_printf("\n"); } -/* - * Wholist section - */ -void wholist_section(void) { - char buf[SIZ]; - char user[SIZ]; - - svprintf("BOXTITLE", WCS_STRING, _("Who's online now")); - do_template("beginbox"); - serv_puts("RWHO"); - serv_getln(buf, sizeof buf); - if (buf[0] == '1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) { - extract_token(user, buf, 1, '|', sizeof user); - escputs(user); - wprintf("
\n"); - } - do_template("endbox"); -} - - /* * Task list section */ void tasks_section(void) { -#ifdef WEBCIT_WITH_CALENDAR_SERVICE int num_msgs = 0; - int i; -#endif - - svprintf("BOXTITLE", WCS_STRING, _("Tasks")); - do_template("beginbox"); -#ifdef WEBCIT_WITH_CALENDAR_SERVICE - gotoroom("_TASKS_"); - if (WC->wc_view != VIEW_TASKS) { + HashPos *at; + const char *HashKey; + long HKLen; + void *vMsg; + message_summary *Msg; + StrBuf *Buf; + SharedMessageStatus Stat; + + memset(&Stat, 0, sizeof(SharedMessageStatus)); + Stat.maxload = 10000; + Stat.lowest_found = (-1); + Stat.highest_found = (-1); + + Buf = NewStrBufPlain(HKEY("_TASKS_")); + gotoroom(Buf); + FreeStrBuf(&Buf); + + if (WC->CurRoom.view != VIEW_TASKS) { num_msgs = 0; } else { - num_msgs = load_msg_ptrs("MSGS ALL", 0); + num_msgs = load_msg_ptrs("MSGS ALL", NULL, NULL, &Stat, NULL, NULL, NULL, NULL, 0); } - if (num_msgs < 1) { - wprintf(""); - wprintf(_("(None)")); - wprintf("
\n"); - } - else { - for (i=0; imsgarr[i]); + if (num_msgs > 0) { + at = GetNewHashPos(WC->summ, 0); + while (GetNextHashPos(WC->summ, at, &HKLen, &HashKey, &vMsg)) { + Msg = (message_summary*) vMsg; + tasks_LoadMsgFromServer(NULL, NULL, Msg, 0, 0); } + DeleteHashPos(&at); } - calendar_summary_view(); - -#else /* WEBCIT_WITH_CALENDAR_SERVICE */ - wprintf(""); - wprintf(_("(This server does not support task lists)")); - wprintf("\n"); -#endif /* WEBCIT_WITH_CALENDAR_SERVICE */ - do_template("endbox"); + if (calendar_summary_view() < 1) { + wc_printf(""); + wc_printf(_("(None)")); + wc_printf("
\n"); + } } @@ -168,140 +134,87 @@ void tasks_section(void) { * Calendar section */ void calendar_section(void) { -#ifdef WEBCIT_WITH_CALENDAR_SERVICE + char cmd[SIZ]; + char filter[SIZ]; int num_msgs = 0; - int i; -#endif - - svprintf("BOXTITLE", WCS_STRING, _("Today on your calendar")); - do_template("beginbox"); -#ifdef WEBCIT_WITH_CALENDAR_SERVICE - gotoroom("_CALENDAR_"); - if (WC->wc_view != VIEW_CALENDAR) { + HashPos *at; + const char *HashKey; + long HKLen; + void *vMsg; + message_summary *Msg; + StrBuf *Buf; + void *v = NULL; + SharedMessageStatus Stat; + + memset(&Stat, 0, sizeof(SharedMessageStatus)); + Stat.maxload = 10000; + Stat.lowest_found = (-1); + Stat.highest_found = (-1); + + Buf = NewStrBufPlain(HKEY("_CALENDAR_")); + gotoroom(Buf); + FreeStrBuf(&Buf); + if ( (WC->CurRoom.view != VIEW_CALENDAR) && (WC->CurRoom.view != VIEW_CALBRIEF) ) { num_msgs = 0; } else { - num_msgs = load_msg_ptrs("MSGS ALL", 0); - } - - if (num_msgs < 1) { - wprintf(""); - wprintf(_("(Nothing)")); - wprintf("
\n"); + num_msgs = load_msg_ptrs("MSGS ALL", NULL, NULL, &Stat, NULL, NULL, NULL, NULL, 0); } - else { - for (i=0; imsgarr[i]); + calendar_GetParamsGetServerCall(&Stat, + &v, + readnew, + cmd, + sizeof(cmd), + filter, + sizeof(filter)); + + + if (num_msgs > 0) { + at = GetNewHashPos(WC->summ, 0); + while (GetNextHashPos(WC->summ, at, &HKLen, &HashKey, &vMsg)) { + Msg = (message_summary*) vMsg; + calendar_LoadMsgFromServer(NULL, &v, Msg, 0, 0); } - calendar_summary_view(); + DeleteHashPos(&at); } - -#else /* WEBCIT_WITH_CALENDAR_SERVICE */ - wprintf(""); - wprintf(_("(This server does not support calendars)")); - wprintf("\n"); -#endif /* WEBCIT_WITH_CALENDAR_SERVICE */ - do_template("endbox"); + if (calendar_summary_view() < 1) { + wc_printf(""); + wc_printf(_("(Nothing)")); + wc_printf("
\n"); + } + __calendar_Cleanup(&v); } -/* - * Server info section (fluff, really) - */ -void server_info_section(void) { - char message[512]; - - svprintf("BOXTITLE", WCS_STRING, _("About this server")); - do_template("beginbox"); - - snprintf(message, sizeof message, - _("You are connected to %s, running %s with %s, and located in %s. Your system administrator is %s."), - serv_info.serv_humannode, - serv_info.serv_software, - SERVER, - serv_info.serv_bbs_city, - serv_info.serv_sysadm); - escputs(message); - do_template("endbox"); +void tmplput_new_messages_section(StrBuf *Target, WCTemplputParams *TP) { + new_messages_section(); } - -void summary_inner_div(void) { - /* - * Now let's do three columns of crap. All portals and all groupware - * clients seem to want to do three columns, so we'll do three - * columns too. Conformity is not inherently a virtue, but there are - * a lot of really shallow people out there, and even though they're - * not people I consider worthwhile, I still want them to use WebCit. - */ - - wprintf("
" - ""); - - /* - * Column One - */ - wprintf("
"); - wholist_section(); - - /* - * Column Two - */ - wprintf(""); - server_info_section(); - wprintf("
"); +void tmplput_tasks_section(StrBuf *Target, WCTemplputParams *TP) { tasks_section(); - - /* - * Column Three - */ - wprintf("
"); - new_messages_section(); - wprintf("
"); +} +void tmplput_calendar_section(StrBuf *Target, WCTemplputParams *TP) { calendar_section(); - - /* - * End of columns - */ - wprintf("
"); } /* - * Display this user's summary page + * summary page */ -void summary(void) { - char title[256]; - - output_headers(1, 1, 2, 0, 0, 0); - wprintf("
\n"); - wprintf("" - "
" - "" - ); - - snprintf(title, sizeof title, _("Summary page for %s"), WC->wc_username); - escputs(title); - wprintf("\n"); - wprintf(""); - output_date(); - wprintf("
"); - offer_start_page(); - wprintf("
\n"); - - /* - * You guessed it ... we're going to refresh using ajax. - * In the future we might consider updating individual sections of the summary - * instead of the whole thing. - */ - wprintf("
\n
\n"); - summary_inner_div(); - wprintf("
\n"); - - wprintf( - " \n" - ); - +void display_summary_page(void) +{ + output_headers(1, 1, 1, 0, 0, 0); + do_template("summary_page"); wDumpContent(1); } + + +void +InitModule_SUMMARY +(void) +{ + RegisterNamespace("TIME:NOW", 0, 0, tmplput_output_date, NULL, CTX_NONE); + WebcitAddUrlHandler(HKEY("summary"), "", 0, display_summary_page, ANONYMOUS); + WebcitAddUrlHandler(HKEY("new_messages_html"), "", 0, new_messages_section, AJAX); + WebcitAddUrlHandler(HKEY("tasks_inner_html"), "", 0, tasks_section, AJAX); + WebcitAddUrlHandler(HKEY("calendar_inner_html"), "", 0, calendar_section, AJAX); +} +