]> code.citadel.org Git - citadel.git/blobdiff - webcit-ng/server/caldav_reports.c
Moved multiget output into its own function.
[citadel.git] / webcit-ng / server / caldav_reports.c
index 1031a46859d80cfba4fc8331aef8ab1949d91638..2afade3515a952a5a69672f1cd4b01c9f638f6c3 100644 (file)
@@ -24,7 +24,7 @@ struct cr_parms {
        int tag_nesting_level;          // not needed, just kept for pretty-printing
        enum cr_type report_type;       // which RFC4791 section 7 REPORT are we generating
        StrBuf *Chardata;               // XML chardata in between tags is built up here
-       StrBuf *Hrefs;                  // list of items requested by a calendar-multiget report
+       StrBuf *Hrefs;                  // list of items requested by a `calendar-multiget` REPORT
 };
 
 
@@ -99,7 +99,7 @@ void caldav_xml_chardata(void *data, const XML_Char * s, int len) {
 }
 
 
-// Called by caldav_response() to fetch a message (by number) in the current room,
+// Called by caldav_report_one_item() to fetch a message (by number) in the current room,
 // and return only the icalendar data as a StrBuf.  Returns NULL if not found.
 //
 // NOTE: this function expects that "MSGP text/calendar" was issued at the beginning
@@ -115,7 +115,7 @@ StrBuf *fetch_ical(struct ctdlsession *c, long msgnum) {
        }
 
        while (ctdl_readline(c, buf, sizeof(buf)), strcmp(buf, "000")) {
-               if (Buf != NULL) {      // already in body
+               if (Buf != NULL) {              // already in body
                        StrBufAppendPrintf(Buf, "%s\n", buf);
                }
                else if (IsEmptyStr(buf)) {     // beginning of body
@@ -124,48 +124,12 @@ StrBuf *fetch_ical(struct ctdlsession *c, long msgnum) {
        }
 
        return Buf;
-
-// webcit[13039]: msgn=53CE87AF-00392161@uncensored.citadel.org
-// webcit[13039]: path=IGnatius T Foobar
-// webcit[13039]: time=1208008800
-// webcit[13039]: from=IGnatius T Foobar
-// webcit[13039]: room=0000000001.Calendar
-// webcit[13039]: node=uncnsrd
-// webcit[13039]: hnod=Uncensored
-// webcit[13039]: exti=040000E00074C5B7101A82E0080000000080C728F83E84C801000000000000000010000000E857E0DC57F53947ADF0BB91EE3A502F
-// webcit[13039]: subj==?UTF-8?B?V2VzbGV5J3MgYmlydGhkYXkgcGFydHk=
-// webcit[13039]: ?=
-// webcit[13039]: part=||1||text/calendar|1127||
-// webcit[13039]: text
-// webcit[13039]: Content-type: text/calendar
-// webcit[13039]: Content-length: 1127
-// webcit[13039]: Content-transfer-encoding: 7bit
-// webcit[13039]: X-Citadel-MSG4-Partnum: 1
-// webcit[13039]:
-// webcit[13039]: BEGIN:VCALENDAR
 }
 
 
-// Called by caldav_report() to output a single item.
-// Our policy is to throw away the list of properties the client asked for, and just send everything.
-void caldav_response(struct http_transaction *h, struct ctdlsession *c, StrBuf *ReportOut, StrBuf *ThisHref) {
-       long msgnum;
-       StrBuf *Caldata = NULL;
-       char *euid;
-
-       euid = strrchr(ChrPtr(ThisHref), '/');
-       if (euid != NULL) {
-               ++euid;
-       }
-       else {
-               euid = (char *) ChrPtr(ThisHref);
-       }
-
-       char *unescaped_euid = strdup(euid);
-       if (!unescaped_euid) {
-               return;
-       }
-       unescape_input(unescaped_euid);
+// Called by multiple REPORT types to actually perform the output in "multiget" format.
+// We need to already know the source message number and the href, but also already have the output data.
+void cal_multiget_out(long msgnum, StrBuf *ThisHref, StrBuf *Caldata, StrBuf *ReportOut) {
 
        StrBufAppendPrintf(ReportOut, "<D:response>");
        StrBufAppendPrintf(ReportOut, "<D:href>");
@@ -173,14 +137,8 @@ void caldav_response(struct http_transaction *h, struct ctdlsession *c, StrBuf *
        StrBufAppendPrintf(ReportOut, "</D:href>");
        StrBufAppendPrintf(ReportOut, "<D:propstat>");
 
-       msgnum = locate_message_by_uid(c, unescaped_euid);
-       free(unescaped_euid);
-       if (msgnum > 0) {
-               Caldata = fetch_ical(c, msgnum);
-       }
-
        if (Caldata != NULL) {
-               // syslog(LOG_DEBUG, "caldav_response(%s) 200 OK", ChrPtr(ThisHref));
+               // syslog(LOG_DEBUG, "caldav_report_one_item(%s) 200 OK", ChrPtr(ThisHref));
                StrBufAppendPrintf(ReportOut, "<D:status>");
                StrBufAppendPrintf(ReportOut, "HTTP/1.1 200 OK");
                StrBufAppendPrintf(ReportOut, "</D:status>");
@@ -196,7 +154,7 @@ void caldav_response(struct http_transaction *h, struct ctdlsession *c, StrBuf *
                Caldata = NULL;
        }
        else {
-               // syslog(LOG_DEBUG, "caldav_response(%s) 404 not found", ChrPtr(ThisHref));
+               // syslog(LOG_DEBUG, "caldav_report_one_item(%s) 404 not found", ChrPtr(ThisHref));
                StrBufAppendPrintf(ReportOut, "<D:status>");
                StrBufAppendPrintf(ReportOut, "HTTP/1.1 404 not found");
                StrBufAppendPrintf(ReportOut, "</D:status>");
@@ -207,6 +165,40 @@ void caldav_response(struct http_transaction *h, struct ctdlsession *c, StrBuf *
 }
 
 
+// Called by caldav_report() to output a single item.
+// Our policy is to throw away the list of properties the client asked for, and just send everything.
+void caldav_report_one_item(struct http_transaction *h, struct ctdlsession *c, StrBuf *ReportOut, StrBuf *ThisHref) {
+       long msgnum;
+       StrBuf *Caldata = NULL;
+       char *euid;
+
+       euid = strrchr(ChrPtr(ThisHref), '/');
+       if (euid != NULL) {
+               ++euid;
+       }
+       else {
+               euid = (char *) ChrPtr(ThisHref);
+       }
+
+       char *unescaped_euid = strdup(euid);
+       if (!unescaped_euid) {
+               return;
+       }
+       unescape_input(unescaped_euid);
+
+       msgnum = locate_message_by_uid(c, unescaped_euid);
+       free(unescaped_euid);
+       if (msgnum > 0) {
+               Caldata = fetch_ical(c, msgnum);
+       }
+       else {
+               Caldata = NULL;
+       }
+
+       cal_multiget_out(msgnum, ThisHref, Caldata, ReportOut);
+}
+
+
 // Called by report_the_room_itself() in room_functions.c when a CalDAV REPORT method
 // is requested on a calendar room.  We fire up an XML Parser to decode the request and
 // hopefully produce the correct output.
@@ -251,15 +243,50 @@ void caldav_report(struct http_transaction *h, struct ctdlsession *c) {
                ">"
        );
 
+       // RFC4791 7.8 "calendar-query" REPORT - Client will send a lot of search criteria.
+       if (crp.report_type == cr_calendar_query) {
+               int i = 0;
+               Array *msglist = get_msglist(c, "ALL");
+               if (msglist != NULL) {
+                       for (i = 0; i < array_len(msglist); ++i) {
+                               long m;
+                               memcpy(&m, array_get_element_at(msglist, i), sizeof(long));
+
+                               // Begin -- evaluate the calendar item
+
+                               syslog(LOG_DEBUG, "evaluating message %ld", m);
+                               StrBuf *one_item;
+                               one_item = fetch_ical(c, m);
+                               syslog(LOG_DEBUG, "calendar item:\n---\n\033[33m%s\n---\033[0m", ChrPtr(one_item));
+                               FreeStrBuf(&one_item);
+
+                               // End - evaluate the calendar item
+
+                       }
+                       array_free(msglist);
+               }
+       }
+
        // RFC4791 7.9 "calendar-multiget" REPORT - go get the specific Hrefs the client asked for.
-       if ( (crp.report_type == cr_calendar_multiget) && (crp.Hrefs != NULL) ) {
+       // Can we move this back into citserver too?
+       else if ( (crp.report_type == cr_calendar_multiget) && (crp.Hrefs != NULL) ) {
+
                StrBuf *ThisHref = NewStrBuf();
                const char *pvset = NULL;
                while (StrBufExtract_NextToken(ThisHref, crp.Hrefs, &pvset, '|') >= 0) {
                        StrBufTrim(ThisHref);                           // remove leading/trailing whitespace from the href
-                       caldav_response(h, c, ReportOut, ThisHref);
+                       caldav_report_one_item(h, c, ReportOut, ThisHref);
                }
                FreeStrBuf(&ThisHref);
+       }
+
+       // RFC4791 7.10 "free-busy-query" REPORT
+       else if (crp.report_type == cr_freebusy_query) {
+               // FIXME build this REPORT.  At the moment we send an empty multistatus.
+       }
+
+       // Free any query parameters that might have been allocated during the xml parse
+       if (crp.Hrefs != NULL) {
                FreeStrBuf(&crp.Hrefs);
                crp.Hrefs = NULL;
        }
@@ -272,63 +299,3 @@ void caldav_report(struct http_transaction *h, struct ctdlsession *c) {
        h->response_body_length = StrLength(ReportOut);
        h->response_body = SmashStrBuf(&ReportOut);
 }
-
-
-
-
-
-// Client is requesting a message list (make this code work for calendar-query REPORT)
-void XXXXXXXXXXXXXX(struct http_transaction *h, struct ctdlsession *c, char *range) {
-       char buf[SIZ];
-
-       // Determine the date/time range requested by the client
-       time_t lo = atol(range);
-       char *colon = strchr(range, ':');
-       time_t hi = colon ? atol(++colon) : LONG_MAX;
-
-       // Rule out impossible ranges
-       if (hi < lo) {
-               do_404(h);
-               return;
-       }
-
-       // Begin by requesting all messages in the room
-       int i = 0;
-       Array *msglist = get_msglist(c, "ALL");
-       if (msglist == NULL) {
-               do_404(h);
-               return;
-       }
-
-       // We're going to make a lot of MSG4 calls, and the preferred MIME type we want is "text/calendar".
-       // The iCalendar standard is mature now, and we are no longer interested in text/x-vcal or application/ics.
-       ctdl_printf(c, "MSGP text/calendar");
-       ctdl_readline(c, buf, sizeof buf);
-
-       // Iterate through our message list.
-       for (i = 0; i < array_len(msglist); ++i) {
-               long m;
-               memcpy(&m, array_get_element_at(msglist, i), sizeof(long));
-               syslog(LOG_DEBUG, "FIXME %ld", m);
-
-               // now we have to:
-               // 1. fetch the message from citadel server
-               // 2. parse the ical
-               // 3. figure out range
-               // we should steal code from webcit-classic for this
-
-               StrBuf *one_item;
-               one_item = fetch_ical(c, m);
-               syslog(LOG_DEBUG, "calendar item:\n---\n\033[33m%s\n---\033[0m", ChrPtr(one_item));
-               FreeStrBuf(&one_item);
-
-       }
-       array_free(msglist);
-
-       // FIXME we still fail because we aren't finished yet
-       add_response_header(h, strdup("Content-type"), strdup("application/json"));
-       h->response_code = 200;
-       h->response_string = strdup("OK");
-       h->response_body = "{ \"one\":111 , \"two\":222 , \"three\":333 }";
-       h->response_body_length = strlen(h->response_body);
-}