final touches on dkim test harness
[citadel.git] / webcit / summary.c
index c2df827a3fe33f9379e990d72f05187eb7bbe707..5dbe60435631534f2125b8ded2ee956d8d8eb1f4 100644 (file)
@@ -1,15 +1,24 @@
 /*
- * $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.
  */
-/**
- * \defgroup SymaryFuncs Displays the "Summary Page"
- * \ingroup WebcitDisplayItems
- */
-/*@{*/
+
 #include "webcit.h"
+#include "calendar.h"
 
-/**
- * \brief Display today's date in a friendly format
+extern int calendar_summary_view(void);
+
+/*
+ * Display today's date in a friendly format
  */
 void output_date(void) {
        struct tm tm;
@@ -20,25 +29,26 @@ void output_date(void) {
        localtime_r(&now, &tm);
 
        wc_strftime(buf, 32, "%A, %x", &tm);
-       wprintf("%s", buf);
+       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);
 
-
-/**
- * \brief 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);
 }
 
 
-/**
- * \brief New messages section
+/*
+ * New messages section
  */
 void new_messages_section(void) {
        char buf[SIZ];
@@ -51,7 +61,7 @@ void new_messages_section(void) {
        number_of_rooms_to_check = num_tokens(rooms_to_check, '|');
        if (number_of_rooms_to_check == 0) return;
 
-       wprintf("<table border=0 width=100%%>\n");
+       wc_printf("<table border=\"0\" width=\"100%%\">\n");
        for (i=0; i<number_of_rooms_to_check; ++i) {
                extract_token(room, rooms_to_check, i, '|', sizeof room);
 
@@ -59,293 +69,152 @@ void new_messages_section(void) {
                serv_getln(buf, sizeof buf);
                if (buf[0] == '2') {
                        extract_token(room, &buf[4], 0, '|', sizeof room);
-                       wprintf("<tr><td><a href=\"dotgoto?room=");
+                       wc_printf("<tr><td><a href=\"dotgoto?room=");
                        urlescputs(room);
-                       wprintf("\">");
+                       wc_printf("\">");
                        escputs(room);
-                       wprintf("</a></td><td>%d/%d</td></tr>\n",
+                       wc_printf("</a></td><td>%d/%d</td></tr>\n",
                                extract_int(&buf[4], 1),
                                extract_int(&buf[4], 2)
                        );
                }
        }
-       wprintf("</table>\n");
-
-}
-
-
-/**
- * \brief Wholist section
- */
-void wholist_section(void) {
-       char buf[SIZ];
-       char user[SIZ];
-        time_t last_activity;
-        time_t now;
-
-       serv_puts("TIME");
-       serv_getln(buf, sizeof buf);
-       if (buf[0] == '2') {
-               now = extract_long(&buf[4], 0);
-       }
-       else {
-               now = time(NULL);
-       }
+       wc_printf("</table>\n");
 
-       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);
-                last_activity = extract_long(buf, 5);
-               if (strcmp(user, NLI)) {
-                       wprintf("<li class=\"");
-                        if ((now - last_activity) > 900L) {
-                                wprintf("inactiveuser");
-                        }
-                        else {
-                                wprintf("activeuser");
-                        }
-                       wprintf("\"><a href=\"showuser?who=");
-                       urlescputs(user);
-                       wprintf("\">");
-                       escputs(user);
-                       wprintf("</a></li>");
-               }
-       }
 }
 
 
-/**
- * \brief Task list section
+/*
+ * Task list section
  */
 void tasks_section(void) {
-#ifdef WEBCIT_WITH_CALENDAR_SERVICE
        int num_msgs = 0;
-       int i;
-#endif
-
-#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("<i>");
-               wprintf(_("(None)"));
-               wprintf("</i><br />\n");
-       }
-       else {
-               for (i=0; i<num_msgs; ++i) {
-                       display_task(WC->msgarr[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("<i>");
-       wprintf(_("(This server does not support task lists)"));
-       wprintf("</i>\n");
-#endif /* WEBCIT_WITH_CALENDAR_SERVICE */
+       if (calendar_summary_view() < 1) {
+               wc_printf("<i>");
+               wc_printf(_("(None)"));
+               wc_printf("</i><br>\n");
+       }
 }
 
 
-/**
- * \brief Calendar section
+/*
+ * Calendar section
  */
 void calendar_section(void) {
-#ifdef WEBCIT_WITH_CALENDAR_SERVICE
+       char cmd[SIZ];
+       char filter[SIZ];
        int num_msgs = 0;
-       int i;
-#endif
-
-#ifdef WEBCIT_WITH_CALENDAR_SERVICE
-       gotoroom("_CALENDAR_");
-       if ( (WC->wc_view != VIEW_CALENDAR) && (WC->wc_view != VIEW_CALBRIEF) ) {
+       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);
+               num_msgs = load_msg_ptrs("MSGS ALL", NULL, NULL, &Stat, NULL, NULL, NULL, NULL, 0);
        }
-
-       if (num_msgs < 1) {
-               wprintf("<i>");
-               wprintf(_("(Nothing)"));
-               wprintf("</i><br />\n");
-       }
-       else {
-               for (i=0; i<num_msgs; ++i) {
-                       display_calendar(WC->msgarr[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("<i>");
-       wprintf(_("(This server does not support calendars)"));
-       wprintf("</i>\n");
-#endif /* WEBCIT_WITH_CALENDAR_SERVICE */
-}
-
-/**
- * \brief Server info section (fluff, really)
- */
-void server_info_section(void) {
-       char message[512];
-
-       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);
+       if (calendar_summary_view() < 1) {
+               wc_printf("<i>");
+               wc_printf(_("(Nothing)"));
+               wc_printf("</i><br>\n");
+       }
+       __calendar_Cleanup(&v);
 }
 
-/**
- * \brief summary of inner div????
- */
-
-
-
-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("<div class=\"fix_scrollbar_bug\">"
-               "<table border=0 width=100%%><tr valign=top>");
-
-       /**
-        * Column One
-        */
-       wprintf("<td width=33%%>");
-       wprintf("<div class=\"box\">"); 
-       wprintf("<div class=\"boxlabel\">");    
-       wprintf(_("Messages"));
-       wprintf("</div><div class=\"boxcontent\">");    
-       wprintf("<div id=\"msg_inner\">");      
+void tmplput_new_messages_section(StrBuf *Target, WCTemplputParams *TP) {
        new_messages_section();
-       wprintf("</div></div></div>");
-       wprintf("</td>");
-
-       /**
-        * Column Two 
-        */
-       wprintf("<td width=33%%>");
-       wprintf("<div class=\"box\">"); 
-       wprintf("<div class=\"boxlabel\">");    
-       wprintf(_("Tasks"));
-       wprintf("</div><div class=\"boxcontent\">");    
-       wprintf("<div id=\"tasks_inner\">");    
+}
+void tmplput_tasks_section(StrBuf *Target, WCTemplputParams *TP) {
        tasks_section();
-       wprintf("</div></div></div>");
-       wprintf("</td>");
-
-       /**
-        * Column Three
-        */
-       wprintf("<td width=33%%>");
-       wprintf("<div class=\"box\">"); 
-       wprintf("<div class=\"boxlabel\">");    
-       wprintf(_("Today&nbsp;on&nbsp;your&nbsp;calendar"));
-       wprintf("</div><div class=\"boxcontent\">");    
-       wprintf("<div id=\"calendar_inner\">"); 
+}
+void tmplput_calendar_section(StrBuf *Target, WCTemplputParams *TP) {
        calendar_section();
-       wprintf("</div></div></div>");
-       wprintf("</td>");
-
-       wprintf("</tr><tr valign=top>");
-       wprintf("<td colspan=3><br/></td>");
-       wprintf("</tr><tr valign=top>");
-
-       /**
-        * Row Two - Column One
-        */
-       wprintf("<td colspan=2>");
-       wprintf("<div class=\"box\">"); 
-       wprintf("<div class=\"boxlabel\">");    
-       wprintf(_("Who's&nbsp;online&nbsp;now"));
-       wprintf("</div><div class=\"boxcontent\">");    
-       wprintf("<div id=\"who_inner\">");      
-       who_inner_div(); 
-       wprintf("</div></div></div>");
-       wprintf("</td>");
-
-       /**
-        * Row Two - Column Two
-        */
-       wprintf("<td width=33%%>");
-       wprintf("<div class=\"box\">"); 
-       wprintf("<div class=\"boxlabel\">");    
-       wprintf(_("About&nbsp;this&nbsp;server"));
-       wprintf("</div><div class=\"boxcontent\">");    
-       wprintf("<div id=\"info_inner\">");     
-       server_info_section();
-       wprintf("</div></div></div>");
-       wprintf("</td>");
-
-
-       /**
-        * End of columns
-        */
-       wprintf("</tr></table>");
 }
 
 
-/**
- * \brief Display this user's summary page
+/*
+ * summary page
  */
-void summary(void) {
-       char title[256];
-
-       output_headers(1, 1, 2, 0, 0, 0);
-       wprintf("<div id=\"banner\" class=\"service\">\n");
-        wprintf("<img src=\"static/summscreen_48x.gif\">");
-        wprintf("<h1>");
-        snprintf(title, sizeof title, _("Summary page for %s"), WC->wc_fullname);
-        escputs(title);
-        wprintf("</h1><h2>\n");
-        output_date();
-        wprintf("</h2>");
-        wprintf("<ul><li class=\"start_page\">");
-        offer_start_page();
-        wprintf("</li></ul>");
-        wprintf("</div>");
-
-       /**
-        * 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("<div id=\"content\">\n");
-       summary_inner_div();
-       wprintf("</div>\n");
-
-       wprintf(
-               "<script type=\"text/javascript\">                                      "
-               " new Ajax.PeriodicalUpdater('msg_inner', 'new_messages_html',          "
-               "                            { method: 'get', frequency: 60 }  );       "
-               " new Ajax.PeriodicalUpdater('tasks_inner', 'tasks_inner_html',         "
-               "                            { method: 'get', frequency: 120 }  );      "
-               " new Ajax.PeriodicalUpdater('calendar_inner', 'calendar_inner_html',           "
-               "                            { method: 'get', frequency: 90 }  );       "
-               " new Ajax.PeriodicalUpdater('who_inner', 'who_inner_html',             "
-               "                            { method: 'get', frequency: 30 }  );       "
-               "</script>                                                              \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);
+}
+