* Cleanups to summary page when running on a non ical enabled system
[citadel.git] / webcit / summary.c
1 /* $Id$ */
2
3 #include <ctype.h>
4 #include <stdlib.h>
5 #include <unistd.h>
6 #include <stdio.h>
7 #include <fcntl.h>
8 #include <signal.h>
9 #include <sys/types.h>
10 #include <sys/wait.h>
11 #include <sys/socket.h>
12 #include <sys/time.h>
13 #include <limits.h>
14 #include <netinet/in.h>
15 #include <netdb.h>
16 #include <string.h>
17 #include <time.h>
18 #include <pwd.h>
19 #include <errno.h>
20 #include <stdarg.h>
21 #include <pthread.h>
22 #include <signal.h>
23 #include "webcit.h"
24
25 /*
26  * Display today's date in a friendly format
27  */
28 void output_date(void) {
29         struct tm tm;
30         time_t now;
31
32         static char *wdays[] = {
33                 "Sunday", "Monday", "Tuesday", "Wednesday",
34                 "Thursday", "Friday", "Saturday"
35         };
36         static char *months[] = {
37                 "January", "February", "March", "April", "May", "June", "July",
38                 "August", "September", "October", "November", "December"
39         };
40
41         time(&now);
42         localtime_r(&now, &tm);
43
44         wprintf("%s, %s %d, %d",
45                 wdays[tm.tm_wday],
46                 months[tm.tm_mon],
47                 tm.tm_mday,
48                 tm.tm_year + 1900
49         );
50 }
51
52
53
54
55 /*
56  * Dummy section
57  */
58 void dummy_section(void) {
59         svprintf("BOXTITLE", WCS_STRING, "(dummy&nbsp;section)");
60         do_template("beginbox");
61         wprintf("(nothing)");
62         do_template("endbox");
63 }
64
65
66 /*
67  * New messages section
68  */
69 void new_messages_section(void) {
70         char buf[SIZ];
71         char room[SIZ];
72         int i;
73         int number_of_rooms_to_check;
74         char *rooms_to_check = "Mail|Lobby";
75
76         svprintf("BOXTITLE", WCS_STRING, "Messages");
77         do_template("beginbox");
78
79         number_of_rooms_to_check = num_tokens(rooms_to_check, '|');
80         if (number_of_rooms_to_check == 0) return;
81
82         wprintf("<TABLE BORDER=0 WIDTH=100%%>\n");
83         for (i=0; i<number_of_rooms_to_check; ++i) {
84                 extract(room, rooms_to_check, i);
85
86                 serv_printf("GOTO %s", room);
87                 serv_gets(buf);
88                 if (buf[0] == '2') {
89                         extract(room, &buf[4], 0);
90                         wprintf("<TR><TD><A HREF=\"/dotgoto?room=");
91                         urlescputs(room);
92                         wprintf("\">");
93                         escputs(room);
94                         wprintf("</A></TD><TD>%d/%d</TD></TR>\n",
95                                 extract_int(&buf[4], 1),
96                                 extract_int(&buf[4], 2)
97                         );
98                 }
99         }
100         wprintf("</TABLE>\n");
101         do_template("endbox");
102
103 }
104
105
106 /*
107  * Wholist section
108  */
109 void wholist_section(void) {
110         char buf[SIZ];
111         char user[SIZ];
112
113         svprintf("BOXTITLE", WCS_STRING, "Who's&nbsp;online&nbsp;now");
114         do_template("beginbox");
115         serv_puts("RWHO");
116         serv_gets(buf);
117         if (buf[0] == '1') while(serv_gets(buf), strcmp(buf, "000")) {
118                 extract(user, buf, 1);
119                 escputs(user);
120                 wprintf("<BR>\n");
121         }
122         do_template("endbox");
123 }
124
125
126 /*
127  * Task list section
128  */
129 void tasks_section(void) {
130         int num_msgs = 0;
131         int i;
132
133         svprintf("BOXTITLE", WCS_STRING, "Tasks");
134         do_template("beginbox");
135 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
136         gotoroom("Tasks", 0);
137         if (strcasecmp(WC->wc_roomname, "Tasks")) {
138                 num_msgs = 0;
139         }
140         else {
141                 num_msgs = load_msg_ptrs("MSGS ALL");
142         }
143
144         if (num_msgs < 1) {
145                 wprintf("<i>(None)</i><BR>\n");
146         }
147         else {
148                 wprintf("<UL>");
149                 for (i=0; i<num_msgs; ++i) {
150                         display_task(WC->msgarr[i]);
151                 }
152                 wprintf("</UL>\n");
153         }
154
155 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
156         wprintf("<I>(This server does not support task lists)</I>\n");
157 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */
158         do_template("endbox");
159 }
160
161
162 /*
163  * Calendar section
164  */
165 void calendar_section(void) {
166         int num_msgs = 0;
167         int i;
168
169         svprintf("BOXTITLE", WCS_STRING, "Today&nbsp;on&nbsp;your&nbsp;calendar");
170         do_template("beginbox");
171 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
172         gotoroom("Calendar", 0);
173         if (strcasecmp(WC->wc_roomname, "Calendar")) {
174                 num_msgs = 0;
175         }
176         else {
177                 num_msgs = load_msg_ptrs("MSGS ALL");
178         }
179
180         if (num_msgs < 1) {
181                 wprintf("<i>(Nothing)</i><BR>\n");
182         }
183         else {
184                 for (i=0; i<num_msgs; ++i) {
185                         display_calendar(WC->msgarr[i]);
186                 }
187                 calendar_summary_view();
188         }
189
190 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
191         wprintf("<I>(This server does not support calendars)</I>\n");
192 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */
193         do_template("endbox");
194 }
195
196
197 /*
198  * Server info section (fluff, really)
199  */
200 void server_info_section(void) {
201         svprintf("BOXTITLE", WCS_STRING, "About&nbsp;this&nbsp;server");
202         do_template("beginbox");
203         wprintf("You are connected to ");
204         escputs(serv_info.serv_humannode);
205         wprintf(", running ");
206         escputs(serv_info.serv_software);
207         wprintf(", and located in ");
208         escputs(serv_info.serv_bbs_city);
209         wprintf(".<BR>\nYour system administrator is ");
210         escputs(serv_info.serv_sysadm);
211         wprintf(".\n");
212         do_template("endbox");
213 }
214
215
216 /*
217  * Display this user's summary page
218  */
219 void summary(void) {
220         output_headers(7);
221
222         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=#007700><TR><TD>"
223                 "<SPAN CLASS=\"titlebar\">"
224                 "Summary page for ");
225         escputs(WC->wc_username);
226         wprintf("</SPAN></TD><TD>\n");
227         offer_start_page();
228         wprintf("</TD><TD ALIGN=RIGHT><SPAN CLASS=\"titlebar\">");
229         output_date();
230         wprintf("</SPAN></TD></TR></TABLE>\n");
231
232         /*
233          * Now let's do three columns of crap.  All portals and all groupware
234          * clients seem to want to do three columns, so we'll do three
235          * columns too.  Conformity is not inherently a virtue, but there are
236          * a lot of really shallow people out there, and even though they're
237          * not people I consider worthwhile, I still want them to use WebCit.
238          */
239
240         wprintf("<TABLE WIDTH=100%% BORDER=0 CELLPADDING=10><TR VALIGN=TOP>");
241
242         /*
243          * Column One
244          */
245         wprintf("<TD WIDTH=33%%>");
246         wholist_section();
247
248         /*
249          * Column Two
250          */
251         wprintf("</TD><TD WIDTH=33%%>");
252         server_info_section();
253         wprintf("<BR>");
254         tasks_section();
255
256         /*
257          * Column Three
258          */
259         wprintf("</TD><TD WIDTH=33%%>");
260         new_messages_section();
261         wprintf("<BR>");
262         calendar_section();
263
264         /*
265          * End of columns
266          */
267         wprintf("</TD></TR></TABLE>\n");
268
269         wDumpContent(1);
270 }