]> code.citadel.org Git - citadel.git/blob - webcit/groupdav_main.c
* Initial implementation of GroupDAV PROPFIND
[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         for (rptr=req; rptr!=NULL; rptr=rptr->next) {
51                 lprintf(9, "> %s\n", rptr->line);
52         }
53
54         if (!WC->logged_in) {
55                 wprintf("HTTP/1.1 401 Unauthorized\n");
56                 groupdav_common_headers();
57                 wprintf("WWW-Authenticate: Basic realm=\"%s\"\n", serv_info.serv_humannode);
58                 wprintf("Content-Type: text/plain\n");
59                 wprintf("\n");
60                 wprintf("GroupDAV sessions require HTTP authentication.\n");
61                 return;
62         }
63
64         extract_token(dav_method, req->line, 0, ' ');
65         extract_token(dav_pathname, req->line, 1, ' ');
66         unescape_input(dav_pathname);
67
68         /*
69          * We like the GET method ... it's nice and simple.
70          */
71         if (!strcasecmp(dav_method, "GET")) {
72                 groupdav_get(dav_pathname);
73                 return;
74         }
75
76         /*
77          * The PROPFIND method is basically used to list all objects in a room.
78          */
79         if (!strcasecmp(dav_method, "PROPFIND")) {
80                 groupdav_propfind(dav_pathname);
81                 return;
82         }
83
84         /*
85          * Couldn't find what we were looking for.  Die in a car fire.
86          */
87         wprintf("HTTP/1.1 501 Method not implemented\n");
88         groupdav_common_headers();
89         wprintf("Content-Type: text/plain\n"
90                 "\n"
91                 "GroupDAV method \"%s\" is not implemented.\n",
92                 dav_method
93         );
94 }