]> code.citadel.org Git - citadel.git/blob - webcit/groupdav_main.c
44701d0ad053d713fbb7acaef443e9116da9c93c
[citadel.git] / webcit / groupdav_main.c
1 /*
2  * $Id$
3  *
4  * Entry point for GroupDAV functions
5  *
6  */
7
8 #include <ctype.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/wait.h>
16 #include <sys/socket.h>
17 #include <limits.h>
18 #include <string.h>
19 #include <pwd.h>
20 #include <errno.h>
21 #include <stdarg.h>
22 #include <time.h>
23 #include <pthread.h>
24 #include "webcit.h"
25 #include "webserver.h"
26 #include "groupdav.h"
27
28
29 /*
30  * Output HTTP headers which are common to all requests.
31  */
32 void groupdav_common_headers(void) {
33         wprintf(
34                 "Server: %s / %s\n"
35                 "Connection: close\n",
36                 SERVER, serv_info.serv_software
37         );
38 }
39
40
41 /*
42  * Main entry point for GroupDAV requests
43  */
44 void groupdav_main(struct httprequest *req) {
45
46         struct httprequest *rptr;
47         char dav_method[SIZ];
48         char dav_pathname[SIZ];
49
50         if (!WC->logged_in) {
51                 wprintf("HTTP/1.1 401 Unauthorized\n");
52                 groupdav_common_headers();
53                 wprintf("WWW-Authenticate: Basic realm=\"%s\"\n", serv_info.serv_humannode);
54                 wprintf("Content-Type: text/plain\n");
55                 wprintf("\n");
56                 wprintf("GroupDAV sessions require HTTP authentication.\n");
57                 return;
58         }
59
60         extract_token(dav_method, req->line, 0, ' ');
61         extract_token(dav_pathname, req->line, 1, ' ');
62         unescape_input(dav_pathname);
63
64         /*
65          * We like the GET method ... it's nice and simple.
66          */
67         if (!strcasecmp(dav_method, "GET")) {
68                 groupdav_get(dav_pathname);
69                 return;
70         }
71
72         /*
73          * Couldn't find what we were looking for.  Die in a car fire.
74          */
75         wprintf("HTTP/1.1 501 Method not implemented\n");
76         groupdav_common_headers();
77         wprintf("Content-Type: text/plain\n"
78                 "\n"
79                 "GroupDAV method \"%s\" is not implemented.\n",
80                 dav_method
81         );
82
83         /*
84          * FIXME ... after development is finished, get rid of all this
85          */
86         wprintf("\n\n\n ** DEBUGGING INFO FOLLOWS ** \n\n");
87         wprintf("WC->httpauth_user = %s\n", WC->httpauth_user);
88         wprintf("WC->httpauth_pass = (%d characters)\n", strlen(WC->httpauth_pass));
89         wprintf("WC->wc_session    = %d\n", WC->wc_session);
90         
91         for (rptr=req; rptr!=NULL; rptr=rptr->next) {
92                 wprintf("> %s\n", rptr->line);
93         }
94 }