* ReadPostData(): abort if we fail to read the whole content
[citadel.git] / webcit / webcit.c
1 /*
2  * $Id$
3  *
4  * This is the main transaction loop of the web service.  It maintains a
5  * persistent session to the Citadel server, handling HTTP WebCit requests as
6  * they arrive and presenting a user interface.
7  */
8 #define SHOW_ME_VAPPEND_PRINTF
9 #include <stdio.h>
10 #include <stdarg.h>
11 #include "webcit.h"
12 #include "groupdav.h"
13 #include "webserver.h"
14
15
16 StrBuf *csslocal = NULL;
17 HashList *HandlerHash = NULL;
18
19
20 void DeleteWebcitHandler(void *vHandler)
21 {
22         WebcitHandler *Handler = (WebcitHandler*) vHandler;
23         FreeStrBuf(&Handler->Name);
24         FreeStrBuf(&Handler->DisplayName);
25         free (Handler);
26 }
27
28 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, 
29                          const char *DisplayName, long dslen,
30                          WebcitHandlerFunc F, 
31                          long Flags)
32 {
33         WebcitHandler *NewHandler;      
34         NewHandler = (WebcitHandler*) malloc(sizeof(WebcitHandler));
35         NewHandler->F = F;
36         NewHandler->Flags = Flags;
37         NewHandler->Name = NewStrBufPlain(UrlString, UrlSLen);
38         StrBufShrinkToFit(NewHandler->Name, 1);
39         NewHandler->DisplayName = NewStrBufPlain(DisplayName, dslen);
40         StrBufShrinkToFit(NewHandler->DisplayName, 1);
41         Put(HandlerHash, UrlString, UrlSLen, NewHandler, DeleteWebcitHandler);
42 }
43
44 void tmplput_HANDLER_DISPLAYNAME(StrBuf *Target, WCTemplputParams *TP) 
45 {
46         wcsession *WCC = WC;
47         if (WCC->Hdr->HR.Handler != NULL)
48                 StrBufAppendTemplate(Target, TP, WCC->Hdr->HR.Handler->DisplayName, 0);
49 }
50 /*
51  * web-printing funcion. uses our vsnprintf wrapper
52  */
53 #ifdef UBER_VERBOSE_DEBUGGING
54 void wcc_printf(const char *FILE, const char *FUNCTION, long LINE, const char *format,...)
55 #else
56 void wc_printf(const char *format,...)
57 #endif
58 {
59         wcsession *WCC = WC;
60         va_list arg_ptr;
61
62         if (WCC->WBuf == NULL)
63                 WCC->WBuf = NewStrBuf();
64 #ifdef UBER_VERBOSE_DEBUGGING
65         StrBufAppendPrintf(WCC->WBuf, "\n%s:%s:%d[", FILE, FUNCTION, LINE);
66 #endif
67
68         va_start(arg_ptr, format);
69         StrBufVAppendPrintf(WCC->WBuf, format, arg_ptr);
70         va_end(arg_ptr);
71 #ifdef UBER_VERBOSE_DEBUGGING
72         StrBufAppendPrintf(WCC->WBuf, "]\n");
73 #endif
74 }
75
76 /*
77  * http-header-printing funcion. uses our vsnprintf wrapper
78  */
79 void hprintf(const char *format,...)
80 {
81         wcsession *WCC = WC;
82         va_list arg_ptr;
83
84         va_start(arg_ptr, format);
85         StrBufVAppendPrintf(WCC->HBuf, format, arg_ptr);
86         va_end(arg_ptr);
87 }
88
89
90
91 /*
92  * wrap up an HTTP session, closes tags, etc.
93  *
94  * print_standard_html_footer should be set to:
95  * 0            - to transmit only,
96  * nonzero      - to append the closing tags
97  */
98 void wDumpContent(int print_standard_html_footer)
99 {
100         if (print_standard_html_footer) {
101                 wc_printf("</div> <!-- end of 'content' div -->\n");
102                 do_template("trailing", NULL);
103         }
104
105         /* If we've been saving it all up for one big output burst,
106          * go ahead and do that now.
107          */
108         end_burst();
109 }
110
111
112  
113
114 /*
115  * Output HTTP headers and leading HTML for a page
116  */
117 void output_headers(    int do_httpheaders,     /* 1 = output HTTP headers                          */
118                         int do_htmlhead,        /* 1 = output HTML <head> section and <body> opener */
119
120                         int do_room_banner,     /* 0=no, 1=yes,                                     
121                                                  * 2 = I'm going to embed my own, so don't open the 
122                                                  *     <div id="content"> either.                   
123                                                  */
124
125                         int unset_cookies,      /* 1 = session is terminating, so unset the cookies */
126                         int suppress_check,     /* 1 = suppress check for instant messages          */
127                         int cache               /* 1 = allow browser to cache this page             */
128 ) {
129         wcsession *WCC = WC;
130         char httpnow[128];
131
132         hprintf("HTTP/1.1 200 OK\n");
133         http_datestring(httpnow, sizeof httpnow, time(NULL));
134
135         if (do_httpheaders) {
136                 if (WCC->serv_info != NULL)
137                         hprintf("Content-type: text/html; charset=utf-8\r\n"
138                                 "Server: %s / %s\n"
139                                 "Connection: close\r\n",
140                                 PACKAGE_STRING, 
141                                 ChrPtr(WCC->serv_info->serv_software));
142                 else
143                         hprintf("Content-type: text/html; charset=utf-8\r\n"
144                                 "Server: %s / [n/a]\n"
145                                 "Connection: close\r\n",
146                                 PACKAGE_STRING);
147         }
148
149         if (cache > 0) {
150                 char httpTomorow[128];
151
152                 http_datestring(httpTomorow, sizeof httpTomorow, 
153                                 time(NULL) + 60 * 60 * 24 * 2);
154
155                 hprintf("Pragma: public\r\n"
156                         "Cache-Control: max-age=3600, must-revalidate\r\n"
157                         "Last-modified: %s\r\n"
158                         "Expires: %s\r\n",
159                         httpnow,
160                         httpTomorow
161                 );
162         }
163         else {
164                 hprintf("Pragma: no-cache\r\n"
165                         "Cache-Control: no-store\r\n"
166                         "Expires: -1\r\n"
167                 );
168         }
169
170         if (cache < 2) stuff_to_cookie(unset_cookies);
171
172         if (do_htmlhead) {
173                 begin_burst();
174                 do_template("head", NULL);
175
176                 /* check for ImportantMessages (these display in a div overlaying the main screen) */
177                 if (!IsEmptyStr(WCC->ImportantMessage)) {
178                         wc_printf("<div id=\"important_message\">\n"
179                                 "<span class=\"imsg\">");
180                         StrEscAppend(WCC->WBuf, NULL, WCC->ImportantMessage, 0, 0);
181                         wc_printf("</span><br />\n"
182                                 "</div>\n"
183                         );
184                         StrBufAppendBufPlain(WCC->trailing_javascript,
185                                              HKEY("setTimeout('hide_imsg_popup()', 5000);       \n"), 
186                                              0
187                         );
188                         WCC->ImportantMessage[0] = 0;
189                 }
190                 else if (StrLength(WCC->ImportantMsg) > 0) {
191                         wc_printf("<div id=\"important_message\">\n"
192                                 "<span class=\"imsg\">");
193                         StrEscAppend(WCC->WBuf, WCC->ImportantMsg, NULL, 0, 0);
194                         wc_printf("</span><br />\n"
195                                 "</div>\n"
196                         );
197                         StrBufAppendBufPlain(WCC->trailing_javascript,
198                                              HKEY("setTimeout('hide_imsg_popup()', 5000);       \n"),
199                                              0
200                         );
201                         FlushStrBuf(WCC->ImportantMsg);
202                 }
203                 if ( (WCC->logged_in) && (!unset_cookies) ) {
204                         DoTemplate(HKEY("paging"), NULL, &NoCtx);
205                 }
206
207                 if (do_room_banner == 1) {
208                         wc_printf("<div id=\"banner\">\n");
209                         embed_room_banner(NULL, navbar_default);
210                         wc_printf("</div>\n");
211                 }
212         }
213
214         if (do_room_banner == 1) {
215                 wc_printf("<div id=\"content\">\n");
216         }
217 }
218
219 void output_custom_content_header(const char *ctype) {
220   hprintf("HTTP/1.1 200 OK\r\n");
221   hprintf("Content-type: %s; charset=utf-8\r\n",ctype);
222   hprintf("Server: %s / %s\r\n", PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software));
223   hprintf("Connection: close\r\n");
224 }
225
226
227 /*
228  * Generic function to do an HTTP redirect.  Easy and fun.
229  */
230 void http_redirect(const char *whichpage) {
231         hprintf("HTTP/1.1 302 Moved Temporarily\n");
232         hprintf("Location: %s\r\n", whichpage);
233         hprintf("URI: %s\r\n", whichpage);
234         hprintf("Content-type: text/html; charset=utf-8\r\n");
235         begin_burst();
236         wc_printf("<html><body>");
237         wc_printf("Go <a href=\"%s\">here</A>.", whichpage);
238         wc_printf("</body></html>\n");
239         end_burst();
240 }
241
242
243
244 /*
245  * Output a piece of content to the web browser using conformant HTTP and MIME semantics
246  */
247 void http_transmit_thing(const char *content_type,
248                          int is_static) {
249
250 #ifndef TECH_PREVIEW
251         lprintf(9, "http_transmit_thing(%s)%s\n",
252                 content_type,
253                 ((is_static > 0) ? " (static)" : "")
254         );
255 #endif
256         output_headers(0, 0, 0, 0, 0, is_static);
257
258         hprintf("Content-type: %s\r\n"
259                 "Server: %s\r\n"
260                 "Connection: close\r\n",
261                 content_type,
262                 PACKAGE_STRING);
263
264         end_burst();
265 }
266
267
268 /*
269  * Convenience functions to display a page containing only a string
270  *
271  * titlebarcolor        color of the titlebar of the frame
272  * titlebarmsg          text to display in the title bar
273  * messagetext          body of the box
274  */
275 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext)
276 {
277         hprintf("HTTP/1.1 200 OK\n");
278         output_headers(1, 1, 2, 0, 0, 0);
279         wc_printf("<div id=\"banner\">\n");
280         wc_printf("<table width=100%% border=0 bgcolor=\"#%s\"><tr><td>", titlebarcolor);
281         wc_printf("<span class=\"titlebar\">%s</span>\n", titlebarmsg);
282         wc_printf("</td></tr></table>\n");
283         wc_printf("</div>\n<div id=\"content\">\n");
284         escputs(messagetext);
285
286         wc_printf("<hr />\n");
287         wDumpContent(1);
288 }
289
290
291 /*
292  * Display a blank page.
293  */
294 void blank_page(void) {
295         output_headers(1, 1, 0, 0, 0, 0);
296         wDumpContent(2);
297 }
298
299
300 /*
301  * A template has been requested
302  */
303 void url_do_template(void) {
304         const StrBuf *MimeType;
305         const StrBuf *Tmpl = sbstr("template");
306         begin_burst();
307         MimeType = DoTemplate(SKEY(Tmpl), NULL, &NoCtx);
308         http_transmit_thing(ChrPtr(MimeType), 0);
309 }
310
311
312
313 /*
314  * convenience function to indicate success
315  */
316 void display_success(char *successmessage)
317 {
318         convenience_page("007700", "OK", successmessage);
319 }
320
321
322 /*
323  * Authorization required page 
324  * This is probably temporary and should be revisited 
325  */
326 void authorization_required(void)
327 {
328         wcsession *WCC = WC;
329         const char *message = "";
330
331         hprintf("HTTP/1.1 401 Authorization Required\r\n");
332         hprintf(
333                 "Server: %s / %s\r\n"
334                 "Connection: close\r\n",
335                 PACKAGE_STRING, ChrPtr(WC->serv_info->serv_software)
336         );
337         hprintf("WWW-Authenticate: Basic realm=\"%s\"\r\n", ChrPtr(WC->serv_info->serv_humannode));
338         hprintf("Content-Type: text/html\r\n");
339         begin_burst();
340         wc_printf("<h1>");
341         wc_printf(_("Authorization Required"));
342         wc_printf("</h1>\r\n");
343         
344
345         if (WCC->ImportantMsg != NULL)
346                 message = ChrPtr(WCC->ImportantMsg);
347         else if (WCC->ImportantMessage != NULL)
348                 message = WCC->ImportantMessage;
349
350         wc_printf(_("The resource you requested requires a valid username and password. "
351                 "You could not be logged in: %s\n"), message);
352         wDumpContent(0);
353         end_webcit_session();
354 }
355
356 /*
357  * Convenience functions to wrap around asynchronous ajax responses
358  */
359 void begin_ajax_response(void) {
360         wcsession *WCC = WC;
361
362         FlushStrBuf(WCC->HBuf);
363         output_headers(0, 0, 0, 0, 0, 0);
364
365         hprintf("Content-type: text/html; charset=UTF-8\r\n"
366                 "Server: %s\r\n"
367                 "Connection: close\r\n"
368                 ,
369                 PACKAGE_STRING);
370         begin_burst();
371 }
372
373 /*
374  * print ajax response footer 
375  */
376 void end_ajax_response(void) {
377         wDumpContent(0);
378 }
379
380
381
382 /*
383  * Wraps a Citadel server command in an AJAX transaction.
384  */
385 void ajax_servcmd(void)
386 {
387         wcsession *WCC = WC;
388         int Done = 0;
389         StrBuf *Buf;
390         char *junk;
391         size_t len;
392
393         begin_ajax_response();
394         Buf = NewStrBuf();
395         serv_puts(bstr("g_cmd"));
396         StrBuf_ServGetln(Buf);
397         StrBufAppendBuf(WCC->WBuf, Buf, 0);
398         StrBufAppendBufPlain(WCC->WBuf, HKEY("\n"), 0);
399         
400         switch (GetServerStatus(Buf, NULL)) {
401         case 8:
402                 serv_puts("\n\n000");
403                 if ( (StrLength(Buf)==3) && 
404                      !strcmp(ChrPtr(Buf), "000")) {
405                         StrBufAppendBufPlain(WCC->WBuf, HKEY("\000"), 0);
406                         break;
407                 }
408         case 1:
409                 while (!Done) {
410                         StrBuf_ServGetln(Buf);
411                         if ( (StrLength(Buf)==3) && 
412                              !strcmp(ChrPtr(Buf), "000")) {
413                                 Done = 1;
414                         }
415                         StrBufAppendBuf(WCC->WBuf, Buf, 0);
416                         StrBufAppendBufPlain(WCC->WBuf, HKEY("\n"), 0);
417                 }
418                 break;
419         case 4:
420                 text_to_server(bstr("g_input"));
421                 serv_puts("000");
422                 break;
423         case 6:
424                 len = atol(&ChrPtr(Buf)[4]);
425                 StrBuf_ServGetBLOBBuffered(Buf, len);
426                 break;
427         case 7:
428                 len = atol(&ChrPtr(Buf)[4]);
429                 junk = malloc(len);
430                 memset(junk, 0, len);
431                 serv_write(junk, len);
432                 free(junk);
433         }
434         
435         end_ajax_response();
436         
437         /*
438          * This is kind of an ugly hack, but this is the only place it can go.
439          * If the command was GEXP, then the instant messenger window must be
440          * running, so reset the "last_pager_check" watchdog timer so
441          * that page_popup() doesn't try to open it a second time.
442          */
443         if (!strncasecmp(bstr("g_cmd"), "GEXP", 4)) {
444                 WCC->last_pager_check = time(NULL);
445         }
446         FreeStrBuf(&Buf);
447 }
448
449
450 /*
451  * Helper function for the asynchronous check to see if we need
452  * to open the instant messenger window.
453  */
454 void seconds_since_last_gexp(void)
455 {
456         char buf[256];
457
458         if ( (time(NULL) - WC->last_pager_check) < 30) {
459                 wc_printf("NO\n");
460         }
461         else {
462                 memset(buf, 0, 5);
463                 serv_puts("NOOP");
464                 serv_getln(buf, sizeof buf);
465                 if (buf[3] == '*') {
466                         wc_printf("YES");
467                 }
468                 else {
469                         wc_printf("NO");
470                 }
471         }
472 }
473
474
475
476 int ReadPostData(void)
477 {
478         int rc;
479         int body_start = 0;
480         wcsession *WCC = WC;
481         StrBuf *content = NULL;
482         
483         content = NewStrBufPlain(NULL, WCC->Hdr->HR.ContentLength + 256);
484
485         StrBufPrintf(content, 
486                      "Content-type: %s\n"
487                      "Content-length: %ld\n\n",
488                      ChrPtr(WCC->Hdr->HR.ContentType), 
489                              WCC->Hdr->HR.ContentLength);
490 /*
491   hprintf("Content-type: %s\n"
492   "Content-length: %d\n\n",
493   ContentType, ContentLength);
494 */
495         body_start = StrLength(content);
496
497         /** Read the entire input data at once. */
498         rc = client_read_to(WCC->Hdr, content, 
499                             WCC->Hdr->HR.ContentLength,
500                             SLEEPING);
501         if (rc < 0)
502                 return rc;
503                 
504         
505         if (!strncasecmp(ChrPtr(WCC->Hdr->HR.ContentType), "application/x-www-form-urlencoded", 33)) {
506                 StrBufCutLeft(content, body_start);
507                 ParseURLParams(content);
508         } else if (!strncasecmp(ChrPtr(WCC->Hdr->HR.ContentType), "multipart", 9)) {
509                 char *Buf;
510                 char *BufEnd;
511                 long len;
512
513                 len = StrLength(content);
514                 Buf = SmashStrBuf(&content);
515                 BufEnd = Buf + len;
516                 mime_parser(Buf, BufEnd, *upload_handler, NULL, NULL, NULL, 0);
517                 free(Buf);
518         } else if (WCC->Hdr->HR.ContentLength > 0) {
519                 WCC->upload = content;
520                 WCC->upload_length = StrLength(WCC->upload);
521                 content = NULL;
522         }
523         FreeStrBuf(&content);
524         return 1;
525 }
526
527
528 void ParseREST_URL(void)
529 {
530         StrBuf *Buf;
531         StrBuf *pFloor = NULL;
532         wcsession *WCC = WC;
533         long i = 0;
534         const char *pCh = NULL;
535         HashList *Floors;
536         void *vFloor;
537
538         lprintf(1, "parsing rest URL: %s\n", ChrPtr(WCC->Hdr->HR.ReqLine));
539
540         WCC->Directory = NewHash(1, Flathash);
541         WCC->CurrentFloor = NULL;
542
543         Buf = NewStrBuf();
544         while (StrBufExtract_NextToken(Buf, WCC->Hdr->HR.ReqLine, &pCh,  '/') >= 0)
545         {
546                 if (StrLength(Buf) != 0) {
547                         /* ignore empty path segments */
548                         StrBufUnescape(Buf, 1);
549                         Put(WCC->Directory, IKEY(i), Buf, HFreeStrBuf);
550                         if (i==0)
551                                 pFloor = Buf;
552                         Buf = NewStrBuf();
553                 }
554                 i++;
555         }
556
557         FreeStrBuf(&Buf);
558         if (pFloor != NULL)
559         {
560                 Floors = GetFloorListHash(NULL, NULL);
561                 
562                 if (Floors != NULL)
563                 {
564                         if (GetHash(WCC->FloorsByName, SKEY(pFloor), &vFloor))
565                                 WCC->CurrentFloor = (Floor*) vFloor;
566                 }
567         }
568 }
569
570 int Conditional_REST_DEPTH(StrBuf *Target, WCTemplputParams *TP)
571 {
572         long Depth, IsDepth;
573         long offset = 0;
574         wcsession *WCC = WC;
575
576         if (WCC->Hdr->HR.Handler != NULL)
577                 offset ++;
578         Depth = GetTemplateTokenNumber(Target, TP, 2, 0);
579         IsDepth = GetCount(WCC->Directory) + offset;
580
581 //      LogTemplateError(Target, "bla", 1, TP, "REST_DEPTH: %ld : %ld\n", Depth, IsDepth);
582         if (Depth < 0) {
583                 Depth = -Depth;
584                 return IsDepth > Depth;
585         }
586         else 
587                 return Depth == IsDepth;
588 }
589
590
591
592 /*
593  * Entry point for WebCit transaction
594  */
595 void session_loop(void)
596 {
597         int Flags = 0;
598         int xhttp;
599         StrBuf *Buf;
600         
601         /*
602          * We stuff these with the values coming from the client cookies,
603          * so we can use them to reconnect a timed out session if we have to.
604          */
605         wcsession *WCC;
606       
607         WCC= WC;
608         WCC->upload_length = 0;
609         WCC->upload = NULL;
610         WCC->is_mobile = 0;
611         WCC->Hdr->nWildfireHeaders = 0;
612         if (WCC->Hdr->HR.Handler != NULL)
613                 Flags = WCC->Hdr->HR.Handler->Flags; /* so we can temporarily add our own... */
614
615         if (WCC->Hdr->HR.ContentLength > 0) {
616                 if (ReadPostData() < 0) {
617                         return;
618                 }
619         }
620
621         Buf = NewStrBuf();
622         WCC->trailing_javascript = NewStrBuf();
623
624         /* If there are variables in the URL, we must grab them now */
625         if (WCC->Hdr->PlainArgs != NULL)
626                 ParseURLParams(WCC->Hdr->PlainArgs);
627
628         /* If the client sent a nonce that is incorrect, kill the request. */
629         if (havebstr("nonce")) {
630                 lprintf(9, "Comparing supplied nonce %s to session nonce %ld\n", 
631                         bstr("nonce"), WCC->nonce);
632                 if (ibstr("nonce") != WCC->nonce) {
633                         lprintf(9, "Ignoring request with mismatched nonce.\n");
634                         hprintf("HTTP/1.1 404 Security check failed\r\n");
635                         hprintf("Content-Type: text/plain\r\n");
636                         begin_burst();
637                         wc_printf("Security check failed.\r\n");
638                         end_burst();
639                         goto SKIP_ALL_THIS_CRAP;
640                 }
641         }
642
643         /*
644          * If we're not connected to a Citadel server, try to hook up the
645          * connection now.
646          */
647         if (!WCC->connected) {
648                 if (GetConnected ())
649                         goto SKIP_ALL_THIS_CRAP;
650         }
651
652
653         /*
654          * If we're not logged in, but we have authentication data (either from
655          * a cookie or from http-auth), try logging in to Citadel using that.
656          */
657         if ((!WCC->logged_in)
658             && (StrLength(WCC->Hdr->c_username) > 0)
659             && (StrLength(WCC->Hdr->c_password) > 0))
660         {
661                 FlushStrBuf(Buf);
662                 serv_printf("USER %s", ChrPtr(WCC->Hdr->c_username));
663                 StrBuf_ServGetln(Buf);
664                 if (GetServerStatus(Buf, NULL) == 3) {
665                         serv_printf("PASS %s", ChrPtr(WCC->Hdr->c_password));
666                         StrBuf_ServGetln(Buf);
667                         if (GetServerStatus(Buf, NULL) == 2) {
668                                 become_logged_in(WCC->Hdr->c_username,
669                                                  WCC->Hdr->c_password, Buf);
670                         } else {
671                                 /* Should only display when password is wrong */
672                                 WCC->ImportantMsg = NewStrBufPlain(ChrPtr(Buf) + 4, StrLength(Buf) - 4);
673                                 authorization_required();
674                                 FreeStrBuf(&Buf);
675                                 goto SKIP_ALL_THIS_CRAP;
676                         }
677                 }
678         }
679
680         xhttp = (WCC->Hdr->HR.eReqType != eGET) &&
681                 (WCC->Hdr->HR.eReqType != ePOST) &&
682                 (WCC->Hdr->HR.eReqType != eHEAD);
683
684         /*
685          * If a 'gotofirst' parameter has been specified, attempt to goto that room
686          * prior to doing anything else.
687          */
688         if (havebstr("gotofirst")) {
689                 int ret;
690                 ret = gotoroom(sbstr("gotofirst"));     /* do quietly to avoid session output! */
691                 if ((ret/100) != 2) {
692                         lprintf(1, "GOTOFIRST: Unable to change to [%s]; Reason: %d\n",
693                                 bstr("gotofirst"), ret);
694                 }
695         }
696
697         /*
698          * If we aren't in any room yet, but we have cookie data telling us where we're
699          * supposed to be, and 'gotofirst' was not specified, then go there.
700          */
701         else if ( (StrLength(WCC->CurRoom.name) == 0) && ( (StrLength(WCC->Hdr->c_roomname) > 0) )) {
702                 int ret;
703
704                 lprintf(9, "We are in '%s' but cookie indicates '%s', going there...\n",
705                         ChrPtr(WCC->CurRoom.name),
706                         ChrPtr(WCC->Hdr->c_roomname)
707                 );
708                 ret = gotoroom(WCC->Hdr->c_roomname);   /* do quietly to avoid session output! */
709                 if ((ret/100) != 2) {
710                         lprintf(1, "COOKIEGOTO: Unable to change to [%s]; Reason: %d\n",
711                                 ChrPtr(WCC->Hdr->c_roomname), ret);
712                 }
713         }
714
715         if (WCC->Hdr->HR.Handler != NULL) {
716                 if (!WCC->logged_in && ((WCC->Hdr->HR.Handler->Flags & ANONYMOUS) == 0)) {
717                         display_login();
718                 }
719                 else {
720 /*
721                         if ((WCC->Hdr->HR.Handler->Flags & PARSE_REST_URL) != 0)
722                                 ParseREST_URL();
723 */
724                         if ((WCC->Hdr->HR.Handler->Flags & AJAX) != 0)
725                                 begin_ajax_response();
726                         WCC->Hdr->HR.Handler->F();
727                         if ((WCC->Hdr->HR.Handler->Flags & AJAX) != 0)
728                                 end_ajax_response();
729                 }
730         }
731         /* When all else fais, display the main menu. */
732         else {
733                 /* 
734                  * ordinary browser users get a nice login screen, DAV etc. requsets
735                  * are given a 401 so they can handle it appropriate.
736                  */
737                 if (!WCC->logged_in)  {
738                         if (xhttp)
739                                 authorization_required();
740                         else 
741                                 display_login();
742                 }
743                 /*
744                  * Toplevel dav requests? or just a flat browser request? 
745                  */
746                 else {
747                         if (xhttp)
748                                 groupdav_main();
749                         else
750                                 display_main_menu();
751                 }
752         }
753
754 SKIP_ALL_THIS_CRAP:
755         FreeStrBuf(&Buf);
756         fflush(stdout);
757 }
758
759
760 /*
761  * Replacement for sleep() that uses select() in order to avoid SIGALRM
762  */
763 void sleeeeeeeeeep(int seconds)
764 {
765         struct timeval tv;
766
767         tv.tv_sec = seconds;
768         tv.tv_usec = 0;
769         select(0, NULL, NULL, NULL, &tv);
770 }
771
772 int Conditional_IS_HTTPS(StrBuf *Target, WCTemplputParams *TP)
773 {
774         return is_https != 0;
775 }
776
777 int ConditionalImportantMesage(StrBuf *Target, WCTemplputParams *TP)
778 {
779         wcsession *WCC = WC;
780         if (WCC != NULL)
781                 return ((!IsEmptyStr(WCC->ImportantMessage)) || 
782                         (StrLength(WCC->ImportantMsg) > 0));
783         else
784                 return 0;
785 }
786
787 void tmplput_importantmessage(StrBuf *Target, WCTemplputParams *TP)
788 {
789         wcsession *WCC = WC;
790         
791         if (WCC != NULL) {
792                 if (!IsEmptyStr(WCC->ImportantMessage)) {
793                         StrEscAppend(Target, NULL, WCC->ImportantMessage, 0, 0);
794                         WCC->ImportantMessage[0] = '\0';
795                 }
796                 else if (StrLength(WCC->ImportantMsg) > 0) {
797                         StrEscAppend(Target, WCC->ImportantMsg, NULL, 0, 0);
798                         FlushStrBuf(WCC->ImportantMsg);
799                 }
800         }
801 }
802
803 void tmplput_trailing_javascript(StrBuf *Target, WCTemplputParams *TP)
804 {
805         wcsession *WCC = WC;
806
807         if (WCC != NULL)
808                 StrBufAppendTemplate(Target, TP, WCC->trailing_javascript, 0);
809 }
810
811 void tmplput_csslocal(StrBuf *Target, WCTemplputParams *TP)
812 {
813         StrBufAppendBuf(Target, 
814                         csslocal, 0);
815 }
816
817 extern char static_local_dir[PATH_MAX];
818
819
820 void 
821 InitModule_WEBCIT
822 (void)
823 {
824         char dir[SIZ];
825         WebcitAddUrlHandler(HKEY("blank"), "", 0, blank_page, ANONYMOUS|COOKIEUNNEEDED|ISSTATIC);
826         WebcitAddUrlHandler(HKEY("do_template"), "", 0, url_do_template, ANONYMOUS);
827         WebcitAddUrlHandler(HKEY("sslg"), "", 0, seconds_since_last_gexp, AJAX|LOGCHATTY);
828         WebcitAddUrlHandler(HKEY("ajax_servcmd"), "", 0, ajax_servcmd, 0);
829         WebcitAddUrlHandler(HKEY("webcit"), "", 0, blank_page, URLNAMESPACE);
830
831         WebcitAddUrlHandler(HKEY("401"), "", 0, authorization_required, ANONYMOUS|COOKIEUNNEEDED);
832         RegisterConditional(HKEY("COND:IMPMSG"), 0, ConditionalImportantMesage, CTX_NONE);
833         RegisterConditional(HKEY("COND:REST:DEPTH"), 0, Conditional_REST_DEPTH, CTX_NONE);
834         RegisterConditional(HKEY("COND:IS_HTTPS"), 0, Conditional_IS_HTTPS, CTX_NONE);
835
836         RegisterNamespace("CSSLOCAL", 0, 0, tmplput_csslocal, NULL, CTX_NONE);
837         RegisterNamespace("IMPORTANTMESSAGE", 0, 0, tmplput_importantmessage, NULL, CTX_NONE);
838         RegisterNamespace("TRAILING_JAVASCRIPT", 0, 0, tmplput_trailing_javascript, NULL, CTX_NONE);
839         RegisterNamespace("URL:DISPLAYNAME", 0, 1, tmplput_HANDLER_DISPLAYNAME, NULL, CTX_NONE);
840
841         snprintf(dir, SIZ, "%s/webcit.css", static_local_dir);
842         if (!access(dir, R_OK)) {
843                 lprintf(9, "Using local Stylesheet [%s]\n", dir);
844                 csslocal = NewStrBufPlain(HKEY("<link href=\"static.local/webcit.css\" rel=\"stylesheet\" type=\"text/css\" />"));
845         }
846         else
847                 lprintf(9, "No Site-local Stylesheet [%s] installed. \n", dir);
848
849 }
850
851 void
852 ServerStartModule_WEBCIT
853 (void)
854 {
855         HandlerHash = NewHash(1, NULL);
856 }
857
858
859 void 
860 ServerShutdownModule_WEBCIT
861 (void)
862 {
863         FreeStrBuf(&csslocal);
864         DeleteHash(&HandlerHash);
865 }
866
867
868
869 void
870 SessionNewModule_WEBCIT
871 (wcsession *sess)
872 {
873         sess->ImportantMsg = NewStrBuf();
874         sess->WBuf = NewStrBufPlain(NULL, SIZ * 4);
875         sess->HBuf = NewStrBufPlain(NULL, SIZ / 4);
876 }
877
878 void
879 SessionDetachModule_WEBCIT
880 (wcsession *sess)
881 {
882         DeleteHash(&sess->Directory);
883
884         FreeStrBuf(&sess->upload);
885         sess->upload_length = 0;
886         
887         FreeStrBuf(&sess->trailing_javascript);
888
889         if (StrLength(sess->WBuf) > SIZ * 30) /* Bigger than 120K? release. */
890         {
891                 FreeStrBuf(&sess->WBuf);
892                 sess->WBuf = NewStrBuf();
893         }
894         else
895                 FlushStrBuf(sess->WBuf);
896         FlushStrBuf(sess->HBuf);
897 }
898
899 void 
900 SessionDestroyModule_WEBCIT
901 (wcsession *sess)
902 {
903         FreeStrBuf(&sess->WBuf);
904         FreeStrBuf(&sess->HBuf);
905         FreeStrBuf(&sess->ImportantMsg);
906 }
907