mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-13 03:02:22 -05:00
build inbox responses for iCal
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@247 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
6ca58fdbcc
commit
8dd5e178c9
@ -239,6 +239,37 @@ public class CaldavConnection extends AbstractConnection {
|
||||
HashMap<String, String> responseHeaders = new HashMap<String, String>();
|
||||
sendHttpResponse(HttpStatus.SC_MULTI_STATUS, responseHeaders, "text/xml;charset=UTF-8", buffer.toString(), true);
|
||||
|
||||
// inbox is always empty
|
||||
} else if ("PROPFIND".equals(command)
|
||||
&& ("/inbox/".equals(path) || "/inbox".equals(path))
|
||||
&& body != null) {
|
||||
CaldavRequest request = new CaldavRequest(body);
|
||||
|
||||
StringBuilder buffer = new StringBuilder();
|
||||
buffer.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
|
||||
buffer.append("<D:multistatus xmlns:D=\"DAV:\" xmlns:CS=\"http://calendarserver.org/ns/\">\n");
|
||||
buffer.append(" <D:response>\n");
|
||||
buffer.append(" <D:href>/inbox</D:href>\n");
|
||||
buffer.append(" <D:propstat>\n");
|
||||
buffer.append(" <D:prop>\n");
|
||||
|
||||
if (request.hasProperty("resourcetype")) {
|
||||
buffer.append(" <D:resourcetype>\n");
|
||||
buffer.append(" <D:collection/>\n");
|
||||
buffer.append(" <C:calendar xmlns:C=\"urn:ietf:params:xml:ns:caldav\"/>\n");
|
||||
buffer.append(" </D:resourcetype>\n");
|
||||
}
|
||||
if (request.hasProperty("getctag")) {
|
||||
buffer.append(" <CS:getctag>0</CS:getctag>\n");
|
||||
}
|
||||
buffer.append(" </D:prop>\n");
|
||||
buffer.append(" <D:status>HTTP/1.1 200 OK</D:status>\n");
|
||||
buffer.append(" </D:propstat>\n");
|
||||
buffer.append(" </D:response>\n");
|
||||
buffer.append("</D:multistatus>\n");
|
||||
|
||||
HashMap<String, String> responseHeaders = new HashMap<String, String>();
|
||||
sendHttpResponse(HttpStatus.SC_MULTI_STATUS, responseHeaders, "text/xml;charset=UTF-8", buffer.toString(), true);
|
||||
} else if ("REPORT".equals(command)
|
||||
&& ("/calendar/".equals(path) || "/calendar".equals(path))
|
||||
&& depth == 1 && body != null) {
|
||||
@ -300,6 +331,17 @@ public class CaldavConnection extends AbstractConnection {
|
||||
buffer.append("</D:multistatus>");
|
||||
|
||||
sendHttpResponse(HttpStatus.SC_MULTI_STATUS, null, "text/xml;charset=UTF-8", buffer.toString(), true);
|
||||
|
||||
} else if ("REPORT".equals(command)
|
||||
&& ("/inbox/".equals(path) || "/inbox".equals(path))) {
|
||||
// inbox is always empty
|
||||
StringBuilder buffer = new StringBuilder();
|
||||
buffer.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
|
||||
"<D:multistatus xmlns:D=\"DAV:\">\n");
|
||||
buffer.append("</D:multistatus>");
|
||||
|
||||
sendHttpResponse(HttpStatus.SC_MULTI_STATUS, null, "text/xml;charset=UTF-8", buffer.toString(), true);
|
||||
|
||||
} else if ("PUT".equals(command) && path.startsWith("/calendar/")) {
|
||||
String etag = headers.get("if-match");
|
||||
int status = session.createOrUpdateEvent(path.substring("/calendar/".length()), body, etag);
|
||||
|
Loading…
Reference in New Issue
Block a user