]> code.citadel.org Git - citadel.git/blob - webcit/summary.c
* Add "Tasks" to the summary page
[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  * Display the title bar for a section
56  */
57 void section_title(char *title) {
58
59         wprintf("<TABLE width=100%% border=0 cellpadding=5 cellspacing=0>"
60                 "<TR><TD BGCOLOR=444455>"
61                 "<FONT COLOR=FFFFEE>");
62         escputs(title);
63         wprintf("</FONT></TD></TR></TABLE>\n");
64 }
65
66
67 /*
68  * Dummy section
69  */
70 void dummy_section(void) {
71         section_title("---");
72 }
73
74
75 /*
76  * New messages section
77  */
78 void new_messages_section(void) {
79         char buf[SIZ];
80         char room[SIZ];
81         int i;
82         int number_of_rooms_to_check;
83         char *rooms_to_check = "Mail|Lobby";
84
85         section_title("Messages");
86
87         number_of_rooms_to_check = num_tokens(rooms_to_check, '|');
88         if (number_of_rooms_to_check == 0) return;
89
90         wprintf("<TABLE BORDER=0 WIDTH=100%%>\n");
91         for (i=0; i<number_of_rooms_to_check; ++i) {
92                 extract(room, rooms_to_check, i);
93
94                 serv_printf("GOTO %s", room);
95                 serv_gets(buf);
96                 if (buf[0] == '2') {
97                         extract(room, &buf[4], 0);
98                         wprintf("<TR><TD><A HREF=\"/dotgoto?room=");
99                         urlescputs(room);
100                         wprintf("\">");
101                         escputs(room);
102                         wprintf("</A></TD><TD>%d/%d</TD></TR>\n",
103                                 extract_int(&buf[4], 1),
104                                 extract_int(&buf[4], 2)
105                         );
106                 }
107         }
108         wprintf("</TABLE>\n");
109
110 }
111
112
113 /*
114  * Wholist section
115  */
116 void wholist_section(void) {
117         char buf[SIZ];
118         char user[SIZ];
119
120         section_title("Who's online now");
121         serv_puts("RWHO");
122         serv_gets(buf);
123         if (buf[0] == '1') while(serv_gets(buf), strcmp(buf, "000")) {
124                 extract(user, buf, 1);
125                 escputs(user);
126                 wprintf("<BR>\n");
127         }
128 }
129
130
131 /*
132  * Task list section
133  */
134 void tasks_section(void) {
135         int num_msgs = 0;
136         int i;
137
138         gotoroom("Tasks", 0);
139         if (strcasecmp(WC->wc_roomname, "Tasks")) {
140                 wprintf("<i>(You do not have a task list)</i><BR>\n");
141                 return;
142         }
143
144         num_msgs = load_msg_ptrs("MSGS ALL");
145         if (num_msgs < 1) {
146                 wprintf("<i>(None)</i><BR>\n");
147                 return;
148         }
149
150         for (i=0; i<num_msgs; ++i) {
151                 display_task(WC->msgarr[i]);
152         }
153 }
154
155
156 /*
157  * Server info section (fluff, really)
158  */
159 void server_info_section(void) {
160         char buf[SIZ];
161         int i = 0;
162
163         section_title("About this server");
164         serv_puts("INFO");
165         serv_gets(buf);
166         if (buf[0] == '1') while(serv_gets(buf), strcmp(buf, "000")) {
167                 switch(i) {
168                         case 2:
169                                 wprintf("You are connected to ");
170                                 escputs(buf);
171                                 wprintf(", ");
172                                 break;
173                         case 4: wprintf("running ");
174                                 escputs(buf);
175                                 wprintf(", ");
176                                 break;
177                         case 6: wprintf("and located in ");
178                                 escputs(buf);
179                                 wprintf(".<BR>\n");
180                                 break;
181                         case 7: wprintf("Your system administrator is ");
182                                 escputs(buf);
183                                 wprintf(".\n");
184                                 break;
185                 }
186                 ++i;
187         }
188 }
189         
190
191
192
193 /*
194  * Display this user's summary page
195  */
196 void summary(void) {
197         output_headers(7);
198
199         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=007700><TR><TD>"
200                 "<FONT SIZE=+1 COLOR=\"FFFFFF\""
201                 "<B>Summary page for ");
202         escputs(WC->wc_username);
203         wprintf("</B><FONT></TD><TD>\n");
204         offer_start_page();
205         wprintf("</TD></TR></TABLE>\n");
206
207         wprintf("<DIV ALIGN=RIGHT>");
208         output_date();
209         wprintf("</DIV>\n");
210
211         /*
212          * Now let's do three columns of crap.  All portals and all groupware
213          * clients seem to want to do three columns, so we'll do three
214          * columns too.  Conformity is not inherently a virtue, but there are
215          * a lot of really shallow people out there, and even though they're
216          * not people I consider worthwhile, I still want them to use WebCit.
217          */
218
219         wprintf("<TABLE WIDTH=100%% BORDER=0 CELLPADDING=10><TR VALIGN=TOP>");
220
221         /*
222          * Column One
223          */
224         wprintf("<TD>");
225         wholist_section();
226
227         /*
228          * Column Two
229          */
230         wprintf("</TD><TD>");
231         server_info_section();
232         wprintf("<BR><BR>");
233         tasks_section();
234
235         /*
236          * Column Three
237          */
238         wprintf("</TD><TD>");
239         new_messages_section();
240
241         /*
242          * End of columns
243          */
244         wprintf("</TD></TR></TABLE>\n");
245
246         wDumpContent(1);
247 }