libical, expat, and libsieve are now *required*.
[citadel.git] / webcit / summary.c
1 /*
2  * $Id$
3  *
4  * Displays the "Summary Page"
5  */
6
7 #include "webcit.h"
8
9 /*
10  * Display today's date in a friendly format
11  */
12 void output_date(void) {
13         struct tm tm;
14         time_t now;
15         char buf[128];
16
17         time(&now);
18         localtime_r(&now, &tm);
19
20         wc_strftime(buf, 32, "%A, %x", &tm);
21         wprintf("%s", buf);
22 }
23
24
25
26
27 /**
28  * \brief Dummy section
29  */
30 void dummy_section(void) {
31         svprintf("BOXTITLE", WCS_STRING, "(dummy section)");
32         do_template("beginbox");
33         wprintf(_("(nothing)"));
34         do_template("endbox");
35 }
36
37
38 /**
39  * \brief New messages section
40  */
41 void new_messages_section(void) {
42         char buf[SIZ];
43         char room[SIZ];
44         int i;
45         int number_of_rooms_to_check;
46         char *rooms_to_check = "Mail|Lobby";
47
48
49         number_of_rooms_to_check = num_tokens(rooms_to_check, '|');
50         if (number_of_rooms_to_check == 0) return;
51
52         wprintf("<table border=0 width=100%%>\n");
53         for (i=0; i<number_of_rooms_to_check; ++i) {
54                 extract_token(room, rooms_to_check, i, '|', sizeof room);
55
56                 serv_printf("GOTO %s", room);
57                 serv_getln(buf, sizeof buf);
58                 if (buf[0] == '2') {
59                         extract_token(room, &buf[4], 0, '|', sizeof room);
60                         wprintf("<tr><td><a href=\"dotgoto?room=");
61                         urlescputs(room);
62                         wprintf("\">");
63                         escputs(room);
64                         wprintf("</a></td><td>%d/%d</td></tr>\n",
65                                 extract_int(&buf[4], 1),
66                                 extract_int(&buf[4], 2)
67                         );
68                 }
69         }
70         wprintf("</table>\n");
71
72 }
73
74
75 /**
76  * \brief Task list section
77  */
78 void tasks_section(void) {
79         int num_msgs = 0;
80         int i;
81
82         gotoroom("_TASKS_");
83         if (WC->wc_view != VIEW_TASKS) {
84                 num_msgs = 0;
85         }
86         else {
87                 num_msgs = load_msg_ptrs("MSGS ALL", 0);
88         }
89
90         if (num_msgs < 1) {
91                 wprintf("<i>");
92                 wprintf(_("(None)"));
93                 wprintf("</i><br />\n");
94         }
95         else {
96                 for (i=0; i<num_msgs; ++i) {
97                         display_task(WC->msgarr[i], 0);
98                 }
99         }
100
101         calendar_summary_view();
102 }
103
104
105 /**
106  * \brief Calendar section
107  */
108 void calendar_section(void) {
109         int num_msgs = 0;
110         int i;
111
112         gotoroom("_CALENDAR_");
113         if ( (WC->wc_view != VIEW_CALENDAR) && (WC->wc_view != VIEW_CALBRIEF) ) {
114                 num_msgs = 0;
115         }
116         else {
117                 num_msgs = load_msg_ptrs("MSGS ALL", 0);
118         }
119
120         if (num_msgs < 1) {
121                 wprintf("<i>");
122                 wprintf(_("(Nothing)"));
123                 wprintf("</i><br />\n");
124         }
125         else {
126                 for (i=0; i<num_msgs; ++i) {
127                         display_calendar(WC->msgarr[i], 0);
128                 }
129                 calendar_summary_view();
130         }
131 }
132
133 /**
134  * \brief Server info section (fluff, really)
135  */
136 void server_info_section(void) {
137         char message[512];
138
139         snprintf(message, sizeof message,
140                 _("You are connected to %s, running %s with %s, and located in %s.  Your system administrator is %s."),
141                 serv_info.serv_humannode,
142                 serv_info.serv_software,
143                 PACKAGE_STRING,
144                 serv_info.serv_bbs_city,
145                 serv_info.serv_sysadm);
146         escputs(message);
147 }
148
149 /**
150  * \brief summary of inner div????
151  */
152
153
154
155 void summary_inner_div(void) {
156         /**
157          * Now let's do three columns of crap.  All portals and all groupware
158          * clients seem to want to do three columns, so we'll do three
159          * columns too.  Conformity is not inherently a virtue, but there are
160          * a lot of really shallow people out there, and even though they're
161          * not people I consider worthwhile, I still want them to use WebCit.
162          */
163
164         wprintf("<div class=\"fix_scrollbar_bug\">"
165                 "<table width=\"100%%\" cellspacing=\"10px\" cellpadding=\"0\">"
166                 "<tr valign=top>");
167
168         /**
169          * Column One
170          */
171         wprintf("<td width=33%%>");
172         wprintf("<div class=\"box\">"); 
173         wprintf("<div class=\"boxlabel\">");    
174         wprintf(_("Messages"));
175         wprintf("</div><div class=\"boxcontent\">");    
176         wprintf("<div id=\"msg_inner\">");      
177         new_messages_section();
178         wprintf("</div></div></div>");
179         wprintf("</td>");
180
181         /**
182          * Column Two 
183          */
184         wprintf("<td width=33%%>");
185         wprintf("<div class=\"box\">"); 
186         wprintf("<div class=\"boxlabel\">");    
187         wprintf(_("Tasks"));
188         wprintf("</div><div class=\"boxcontent\">");    
189         wprintf("<div id=\"tasks_inner\">");    
190         tasks_section();
191         wprintf("</div></div></div>");
192         wprintf("</td>");
193
194         /**
195          * Column Three
196          */
197         wprintf("<td width=33%%>");
198         wprintf("<div class=\"box\">"); 
199         wprintf("<div class=\"boxlabel\">");    
200         wprintf(_("Today&nbsp;on&nbsp;your&nbsp;calendar"));
201         wprintf("</div><div class=\"boxcontent\">");    
202         wprintf("<div id=\"calendar_inner\">"); 
203         calendar_section();
204         wprintf("</div></div></div>");
205         wprintf("</td>");
206
207         wprintf("</tr><tr valign=top>");
208
209         /**
210          * Row Two - Column One
211          */
212         wprintf("<td colspan=2>");
213         wprintf("<div class=\"box\">"); 
214         wprintf("<div class=\"boxlabel\">");    
215         wprintf(_("Who's&nbsp;online&nbsp;now"));
216         wprintf("</div><div class=\"boxcontent\">");    
217         wprintf("<div id=\"who_inner\">");      
218         who_inner_div(); 
219         wprintf("</div></div></div>");
220         wprintf("</td>");
221
222         /**
223          * Row Two - Column Two
224          */
225         wprintf("<td width=33%%>");
226         wprintf("<div class=\"box\">"); 
227         wprintf("<div class=\"boxlabel\">");    
228         wprintf(_("About&nbsp;this&nbsp;server"));
229         wprintf("</div><div class=\"boxcontent\">");    
230         wprintf("<div id=\"info_inner\">");     
231         server_info_section();
232         wprintf("</div></div></div>");
233         wprintf("</td>");
234
235
236         /**
237          * End of columns
238          */
239         wprintf("</tr></table>");
240 }
241
242
243 /**
244  * \brief Display this user's summary page
245  */
246 void summary(void) {
247         char title[256];
248
249         output_headers(1, 1, 2, 0, 0, 0);
250         wprintf("<div id=\"banner\">\n");
251         wprintf("<div class=\"room_banner\">");
252         wprintf("<img src=\"static/summscreen_48x.gif\">");
253         wprintf("<h1>");
254         snprintf(title, sizeof title, _("Summary page for %s"), WC->wc_fullname);
255         escputs(title);
256         wprintf("</h1><h2>");
257         output_date();
258         wprintf("</h2></div>");
259         wprintf("<ul class=\"room_actions\">\n");
260         wprintf("<li class=\"start_page\">");
261         offer_start_page();
262         wprintf("</li></ul>");
263         wprintf("</div>");
264
265         /**
266          * You guessed it ... we're going to refresh using ajax.
267          * In the future we might consider updating individual sections of the summary
268          * instead of the whole thing.
269          */
270         wprintf("<div id=\"content\" class=\"service\">\n");
271         summary_inner_div();
272         wprintf("</div>\n");
273
274         wprintf(
275                 "<script type=\"text/javascript\">                                      "
276                 " new Ajax.PeriodicalUpdater('msg_inner', 'new_messages_html',          "
277                 "                            { method: 'get', frequency: 60 }  );       "
278                 " new Ajax.PeriodicalUpdater('tasks_inner', 'tasks_inner_html',         "
279                 "                            { method: 'get', frequency: 120 }  );      "
280                 " new Ajax.PeriodicalUpdater('calendar_inner', 'calendar_inner_html',           "
281                 "                            { method: 'get', frequency: 90 }  );       "
282                 " new Ajax.PeriodicalUpdater('who_inner', 'who_inner_html',             "
283                 "                            { method: 'get', frequency: 30 }  );       "
284                 "</script>                                                              \n"
285         );
286
287         wDumpContent(1);
288 }
289
290
291 /*@}*/