Remove $Id$ tags from most of webcit
[citadel.git] / webcit / summary.c
index f5a4896b72220935f7da0e051be76b376334a106..b9803a084dd1ab942e58b1083be3effb584c7b84 100644 (file)
@@ -1,26 +1,9 @@
-/* $Id$ */
-
-#include <ctype.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <fcntl.h>
-#include <signal.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <sys/socket.h>
-#include <sys/time.h>
-#include <limits.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <string.h>
-#include <time.h>
-#include <pwd.h>
-#include <errno.h>
-#include <stdarg.h>
-#include <pthread.h>
-#include <signal.h>
+/*
+ * Displays the "Summary Page"
+ */
+
 #include "webcit.h"
+#include "calendar.h"
 
 /*
  * Display today's date in a friendly format
 void output_date(void) {
        struct tm tm;
        time_t now;
-
-       static char *wdays[] = {
-               "Sunday", "Monday", "Tuesday", "Wednesday",
-               "Thursday", "Friday", "Saturday"
-       };
-       static char *months[] = {
-               "January", "February", "March", "April", "May", "June", "July",
-               "August", "September", "October", "November", "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);
 }
 
-
-
-/*
- * Display the title bar for a section
- */
-void section_title(char *title) {
-
-       wprintf("<TABLE width=100%% border=0 cellpadding=5 cellspacing=0>"
-               "<TR><TD BGCOLOR=444455>"
-               "<FONT COLOR=FFFFEE>");
-       escputs(title);
-       wprintf("</FONT></TD></TR></TABLE>\n");
-}
-
-
-/*
- * Dummy section
- */
-void dummy_section(void) {
-       section_title("---");
-}
-
-
 /*
  * New messages section
  */
@@ -82,49 +30,30 @@ void new_messages_section(void) {
        int number_of_rooms_to_check;
        char *rooms_to_check = "Mail|Lobby";
 
-       section_title("Messages");
 
        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(room, rooms_to_check, i);
+               extract_token(room, rooms_to_check, i, '|', sizeof room);
 
                serv_printf("GOTO %s", room);
-               serv_gets(buf);
+               serv_getln(buf, sizeof buf);
                if (buf[0] == '2') {
-                       extract(room, &buf[4], 0);
-                       wprintf("<TR><TD><A HREF=\"/dotgoto?room=");
+                       extract_token(room, &buf[4], 0, '|', sizeof 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");
-
-}
-
+       wc_printf("</table>\n");
 
-/*
- * Wholist section
- */
-void wholist_section(void) {
-       char buf[SIZ];
-       char user[SIZ];
-
-       section_title("Who's online now");
-       serv_puts("RWHO");
-       serv_gets(buf);
-       if (buf[0] == '1') while(serv_gets(buf), strcmp(buf, "000")) {
-               extract(user, buf, 1);
-               escputs(user);
-               wprintf("<BR>\n");
-       }
 }
 
 
@@ -133,26 +62,45 @@ void wholist_section(void) {
  */
 void tasks_section(void) {
        int num_msgs = 0;
-       int i;
-
-       section_title("Tasks");
-       gotoroom("Tasks", 0);
-       if (strcasecmp(WC->wc_roomname, "Tasks")) {
-               wprintf("<i>(You do not have a task list)</i><BR>\n");
-               return;
+       HashPos *at;
+       const char *HashKey;
+       long HKLen;
+       void *vMsg;
+       message_summary *Msg;
+       wcsession *WCC = WC;
+       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 (WCC->CurRoom.view != VIEW_TASKS) {
+               num_msgs = 0;
+       }
+       else {
+               num_msgs = load_msg_ptrs("MSGS ALL", &Stat, NULL);
        }
 
-       num_msgs = load_msg_ptrs("MSGS ALL");
-       if (num_msgs < 1) {
-               wprintf("<i>(None)</i><BR>\n");
-               return;
+       if (num_msgs > 0) {
+               at = GetNewHashPos(WCC->summ, 0);
+               while (GetNextHashPos(WCC->summ, at, &HKLen, &HashKey, &vMsg)) {
+                       Msg = (message_summary*) vMsg;          
+                       tasks_LoadMsgFromServer(NULL, NULL, Msg, 0, 0);
+               }
+               DeleteHashPos(&at);
        }
 
-       wprintf("<UL>");
-       for (i=0; i<num_msgs; ++i) {
-               display_task(WC->msgarr[i]);
+       if (calendar_summary_view() < 1) {
+               wc_printf("<i>");
+               wc_printf(_("(None)"));
+               wc_printf("</i><br />\n");
        }
-       wprintf("</UL>\n");
 }
 
 
@@ -160,121 +108,217 @@ void tasks_section(void) {
  * Calendar section
  */
 void calendar_section(void) {
+       char cmd[SIZ];
        int num_msgs = 0;
-       int i;
-
-       section_title("Today on your calendar");
-#ifdef HAVE_ICAL_H
-       gotoroom("Calendar", 0);
-       if (strcasecmp(WC->wc_roomname, "Calendar")) {
-               wprintf("<i>(You do not have a calendar)</i><BR>\n");
-               return;
+       HashPos *at;
+       const char *HashKey;
+       long HKLen;
+       void *vMsg;
+       message_summary *Msg;
+       wcsession *WCC = WC;
+       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;
        }
-
-       num_msgs = load_msg_ptrs("MSGS ALL");
-       if (num_msgs < 1) {
-               wprintf("<i>(Nothing)</i><BR>\n");
-               return;
+       else {
+               num_msgs = load_msg_ptrs("MSGS ALL", &Stat, NULL);
        }
-
-       for (i=0; i<num_msgs; ++i) {
-               display_calendar(WC->msgarr[i]);
+       calendar_GetParamsGetServerCall(&Stat, 
+                                       &v,
+                                       readnew, 
+                                       cmd, 
+                                       sizeof(cmd));
+
+       if (num_msgs > 0) {
+               at = GetNewHashPos(WCC->summ, 0);
+               while (GetNextHashPos(WCC->summ, at, &HKLen, &HashKey, &vMsg)) {
+                       Msg = (message_summary*) vMsg;          
+                       calendar_LoadMsgFromServer(NULL, &v, Msg, 0, 0);
+               }
+               DeleteHashPos(&at);
        }
-
-       calendar_summary_view();
-#endif /* HAVE_ICAL_H */
+       if (calendar_summary_view() < 1) {
+               wc_printf("<i>");
+               wc_printf(_("(Nothing)"));
+               wc_printf("</i><br />\n");
+       }
+       __calendar_Cleanup(&v);
 }
 
-
 /*
  * Server info section (fluff, really)
  */
 void server_info_section(void) {
-       char buf[SIZ];
-       int i = 0;
-
-       section_title("About this server");
-       serv_puts("INFO");
-       serv_gets(buf);
-       if (buf[0] == '1') while(serv_gets(buf), strcmp(buf, "000")) {
-               switch(i) {
-                       case 2:
-                               wprintf("You are connected to ");
-                               escputs(buf);
-                               wprintf(", ");
-                               break;
-                       case 4: wprintf("running ");
-                               escputs(buf);
-                               wprintf(", ");
-                               break;
-                       case 6: wprintf("and located in ");
-                               escputs(buf);
-                               wprintf(".<BR>\n");
-                               break;
-                       case 7: wprintf("Your system administrator is ");
-                               escputs(buf);
-                               wprintf(".\n");
-                               break;
-               }
-               ++i;
-       }
+       char message[512];
+       wcsession *WCC = WC;
+
+       snprintf(message, sizeof message,
+               _("You are connected to %s, running %s with %s, server build %s and located in %s.  Your system administrator is %s."),
+                ChrPtr(WCC->serv_info->serv_humannode),
+                ChrPtr(WCC->serv_info->serv_software),
+                PACKAGE_STRING,
+                ChrPtr(WCC->serv_info->serv_svn_revision),
+                ChrPtr(WCC->serv_info->serv_bbs_city),
+                ChrPtr(WCC->serv_info->serv_sysadm));
+       escputs(message);
 }
-       
-
-
 
 /*
- * Display this user's summary page
+ * 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.
  */
-void summary(void) {
-       output_headers(7);
-
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=007700><TR><TD>"
-               "<FONT SIZE=+1 COLOR=\"FFFFFF\">"
-               "<B>Summary page for ");
-       escputs(WC->wc_username);
-       wprintf("</B><FONT></TD><TD>\n");
-       offer_start_page();
-       wprintf("</TD><TD ALIGN=RIGHT><FONT COLOR=\"FFFFFF\">");
-       output_date();
-       wprintf("</FONT></TD></TR></TABLE>\n");
+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("<TABLE WIDTH=100%% BORDER=0 CELLPADDING=10><TR VALIGN=TOP>");
+       wc_printf("<table width=\"98%%\" cellspacing=\"3\" cellpadding=\"0\">");
+       wc_printf("<tr valign=top>");
 
        /*
         * Column One
         */
-       wprintf("<TD WIDTH=33%%>");
-       wholist_section();
+       wc_printf("<td width=33%%>");
+       wc_printf("<div class=\"box\">");       
+       wc_printf("<div class=\"boxlabel\">");  
+       wc_printf(_("Messages"));
+       wc_printf("</div><div class=\"boxcontent\">");  
+       wc_printf("<div id=\"msg_inner\">");    
+       new_messages_section();
+       wc_printf("</div></div></div>");
+       wc_printf("</td>");
 
        /*
-        * Column Two
+        * Column Two 
         */
-       wprintf("</TD><TD WIDTH=33%%>");
-       server_info_section();
-       wprintf("<BR><BR>");
+       wc_printf("<td width=33%%>");
+       wc_printf("<div class=\"box\">");       
+       wc_printf("<div class=\"boxlabel\">");  
+       wc_printf(_("Tasks"));
+       wc_printf("</div><div class=\"boxcontent\">");  
+       wc_printf("<div id=\"tasks_inner\">");  
        tasks_section();
+       wc_printf("</div></div></div>");
+       wc_printf("</td>");
 
        /*
         * Column Three
         */
-       wprintf("</TD><TD WIDTH=33%%>");
-       new_messages_section();
-       wprintf("<BR><BR>");
+       wc_printf("<td width=33%%>");
+       wc_printf("<div class=\"box\">");       
+       wc_printf("<div class=\"boxlabel\">");  
+       wc_printf(_("Today&nbsp;on&nbsp;your&nbsp;calendar"));
+       wc_printf("</div><div class=\"boxcontent\">");  
+       wc_printf("<div id=\"calendar_inner\">");       
        calendar_section();
+       wc_printf("</div></div></div>");
+       wc_printf("</td>");
+
+       wc_printf("</tr><tr valign=top>");
+
+       /*
+        * Row Two - Column One
+        */
+       wc_printf("<td colspan=2>");
+       wc_printf("<div class=\"box\">");       
+       wc_printf("<div class=\"boxlabel\">");  
+       wc_printf(_("Who's&nbsp;online&nbsp;now"));
+       wc_printf("</div><div class=\"boxcontent\">");  
+       wc_printf("<div id=\"who_inner\">");    
+       do_template("who_summary", NULL);
+       wc_printf("</div></div></div>");
+       wc_printf("</td>");
+
+       /*
+        * Row Two - Column Two
+        */
+       wc_printf("<td width=33%%>");
+       wc_printf("<div class=\"box\">");       
+       wc_printf("<div class=\"boxlabel\">");  
+       wc_printf(_("About&nbsp;this&nbsp;server"));
+       wc_printf("</div><div class=\"boxcontent\">");  
+       wc_printf("<div id=\"info_inner\">");   
+       server_info_section();
+       wc_printf("</div></div></div>");
+       wc_printf("</td>");
+
 
        /*
         * End of columns
         */
-       wprintf("</TD></TR></TABLE>\n");
+       wc_printf("</tr></table>");
+}
+
+
+/*
+ * Display this user's summary page
+ */
+void summary(void) {
+       char title[256];
+
+       output_headers(1, 1, 2, 0, 0, 0);
+       wc_printf("<div id=\"banner\" class=\"banner\">\n");
+       wc_printf("<table border=0><tr>");
+        wc_printf("<td><img src=\"static/summscreen_48x.gif\"></td>");
+        wc_printf("<td><h1>");
+        snprintf(title, sizeof title, _("Summary page for %s"), ChrPtr(WC->wc_fullname));
+        escputs(title);
+        wc_printf("</h1><h2>");
+        output_date();
+        wc_printf("</h2></td></tr></table>");
+       wc_printf("<div id=\"actiondiv\">");
+       wc_printf("<ul class=\"room_actions\">\n");
+       wc_printf("<li class=\"start_page\">");
+       offer_start_page(NULL, &NoCtx);
+        wc_printf("</li></ul>");
+        wc_printf("</div>");   /* actiondiv */
+        wc_printf("</div>");   /* banner */
+
+       /*
+        * 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.
+        */
+       wc_printf("<div id=\"content\" class=\"service\">\n");
+       summary_inner_div();
+       wc_printf("</div>\n");
+
+       wc_printf(
+               "<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('do_template', 'template=who_summary',     "
+               "                            { method: 'get', frequency: 30 }  );       "
+               "</script>                                                              \n"
+       );
 
        wDumpContent(1);
 }
+
+void 
+InitModule_SUMMARY
+(void)
+{
+       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);
+       WebcitAddUrlHandler(HKEY("mini_calendar"), "", 0, ajax_mini_calendar, AJAX);
+       WebcitAddUrlHandler(HKEY("summary"), "", 0, summary, 0);
+       WebcitAddUrlHandler(HKEY("summary_inner_div"), "", 0, summary_inner_div, AJAX);
+}
+