* *** HUGE CHANGES *** *** WARNING: NOT FULLY FUNCTIONAL ***
[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 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
131         int num_msgs = 0;
132         int i;
133 #endif
134
135         svprintf("BOXTITLE", WCS_STRING, "Tasks");
136         do_template("beginbox");
137 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
138         gotoroom("Tasks");
139         if (strcasecmp(WC->wc_roomname, "Tasks")) {
140                 num_msgs = 0;
141         }
142         else {
143                 num_msgs = load_msg_ptrs("MSGS ALL");
144         }
145
146         if (num_msgs < 1) {
147                 wprintf("<i>(None)</i><br />\n");
148         }
149         else {
150                 for (i=0; i<num_msgs; ++i) {
151                         display_task(WC->msgarr[i]);
152                 }
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 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
167         int num_msgs = 0;
168         int i;
169 #endif
170
171         svprintf("BOXTITLE", WCS_STRING, "Today&nbsp;on&nbsp;your&nbsp;calendar");
172         do_template("beginbox");
173 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
174         gotoroom("Calendar");
175         if (strcasecmp(WC->wc_roomname, "Calendar")) {
176                 num_msgs = 0;
177         }
178         else {
179                 num_msgs = load_msg_ptrs("MSGS ALL");
180         }
181
182         if (num_msgs < 1) {
183                 wprintf("<i>(Nothing)</i><br />\n");
184         }
185         else {
186                 for (i=0; i<num_msgs; ++i) {
187                         display_calendar(WC->msgarr[i]);
188                 }
189                 calendar_summary_view();
190         }
191
192 #else /* WEBCIT_WITH_CALENDAR_SERVICE */
193         wprintf("<I>(This server does not support calendars)</I>\n");
194 #endif /* WEBCIT_WITH_CALENDAR_SERVICE */
195         do_template("endbox");
196 }
197
198
199 /*
200  * Server info section (fluff, really)
201  */
202 void server_info_section(void) {
203         svprintf("BOXTITLE", WCS_STRING, "About&nbsp;this&nbsp;server");
204         do_template("beginbox");
205         wprintf("You are connected to ");
206         escputs(serv_info.serv_humannode);
207         wprintf(", running ");
208         escputs(serv_info.serv_software);
209         wprintf(", and located in ");
210         escputs(serv_info.serv_bbs_city);
211         wprintf(".<br />\nYour system administrator is ");
212         escputs(serv_info.serv_sysadm);
213         wprintf(".\n");
214         do_template("endbox");
215 }
216
217
218 /*
219  * Display this user's summary page
220  */
221 void summary(void) {
222
223         output_headers(1, 1, 2, 0, 1, 0, 0);
224         wprintf("<div id=\"banner\">\n");
225         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=#444455><TR>"
226                 "<TD><IMG SRC=\"/static/summary.gif\"></TD><TD>"
227                 "<SPAN CLASS=\"titlebar\">"
228                 "Summary page for ");
229         escputs(WC->wc_username);
230         wprintf("</SPAN></TD><TD>\n");
231         wprintf("</TD><TD ALIGN=RIGHT><SPAN CLASS=\"titlebar\">");
232         output_date();
233         wprintf("</SPAN><br />");
234         offer_start_page();
235         wprintf("</TD></TR></TABLE>\n");
236         wprintf("</div><div id=\"text\">\n");
237
238         /*
239          * Now let's do three columns of crap.  All portals and all groupware
240          * clients seem to want to do three columns, so we'll do three
241          * columns too.  Conformity is not inherently a virtue, but there are
242          * a lot of really shallow people out there, and even though they're
243          * not people I consider worthwhile, I still want them to use WebCit.
244          */
245
246         wprintf("<TABLE WIDTH=100%% BORDER=0 CELLPADDING=10><TR VALIGN=TOP>");
247
248         /*
249          * Column One
250          */
251         wprintf("<TD WIDTH=33%%>");
252         wholist_section();
253
254         /*
255          * Column Two
256          */
257         wprintf("</TD><TD WIDTH=33%%>");
258         server_info_section();
259         wprintf("<br />");
260         tasks_section();
261
262         /*
263          * Column Three
264          */
265         wprintf("</TD><TD WIDTH=33%%>");
266         new_messages_section();
267         wprintf("<br />");
268         calendar_section();
269
270         /*
271          * End of columns
272          */
273         wprintf("</TD></TR></TABLE>\n");
274
275         wDumpContent(1);
276 }