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