username = $user; $this->password = $pass; $this->url = $url; } private function set_data($s) { $this->request_data = $s; $this->filepos = 0; } public function curl_read($ch,$fh,$size) { if($this->filepos < 0) { unset($fh); return ''; } $s = substr($this->request_data,$this->filepos,$size); if(strlen($s) < $size) $this->filepos = (-1); else $this->filepos = $this->filepos + $size; return $s; } function ctag_fetch() { $headers = [ 'Depth: 0', 'Prefer: return-minimal', 'Content-Type: application/xml; charset=utf-8']; // recommended ctag fetch by sabre $this->set_data(' '); // thunderbird uses this - it's a bit more verbose on what capabilities // are provided by the server $this->set_data(' '); $auth = $this->username . ':' . $this->password; $recurse = 0; $x = z_fetch_url($this->url,true,$recurse, [ 'headers' => $headers, 'http_auth' => $auth, 'custom' => 'PROPFIND', 'upload' => true, 'infile' => 3, 'infilesize' => strlen($this->request_data), 'readfunc' => [ $this, 'curl_read' ] ]); return $x; } function detail_fetch() { $headers = [ 'Depth: 1', 'Prefer: return-minimal', 'Content-Type: application/xml; charset=utf-8']; // this query should return all objects in the given calendar, you can filter it appropriately // using filter options $this->set_data(' '); $auth = $this->username . ':' . $this->password; $recurse = 0; $x = z_fetch_url($this->url,true,$recurse, [ 'headers' => $headers, 'http_auth' => $auth, 'custom' => 'REPORT', 'upload' => true, 'infile' => 3, 'infilesize' => strlen($this->request_data), 'readfunc' => [ $this, 'curl_read' ] ]); return $x; } } /* PROPFIND /calendars/johndoe/home/ HTTP/1.1 Depth: 0 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 // Responses: success HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 /calendars/johndoe/home/ Home calendar 3145 HTTP/1.1 200 OK // Responses: fail HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 /calendars/johndoe/home/ HTTP/1.1 403 Forbidden // sample request body in DOM // prepare request body $doc = new DOMDocument('1.0', 'utf-8'); $doc->formatOutput = true; $query = $doc->createElement('c:calendar-query'); $query->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:c', 'urn:ietf:params:xml:ns:caldav'); $query->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:d', 'DAV:'); $prop = $doc->createElement('d:prop'); $prop->appendChild($doc->createElement('d:getetag')); $prop->appendChild($doc->createElement('c:calendar-data')); $query->appendChild($prop); $doc->appendChild($query); $body = $doc->saveXML(); echo "Body: " . $body . "
"; Now we download every single object in this calendar. To do this, we use a REPORT method. REPORT /calendars/johndoe/home/ HTTP/1.1 Depth: 1 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 This request will give us every object that's a VCALENDAR object, and its etag. If you're only interested in VTODO (because you're writing a todo app) you can also filter for just those: REPORT /calendars/johndoe/home/ HTTP/1.1 Depth: 1 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 Similarly it's also possible to filter to just events, or only get events within a specific time-range. This report will return a multi-status object again: HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 /calendars/johndoe/home/132456762153245.ics "2134-314" BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN BEGIN:VTODO UID:132456762153245 SUMMARY:Do the dishes DUE:20121028T115600Z END:VTODO END:VCALENDAR HTTP/1.1 200 OK /calendars/johndoe/home/132456-34365.ics "5467-323" BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN BEGIN:VEVENT UID:132456-34365 SUMMARY:Weekly meeting DTSTART:20120101T120000 DURATION:PT1H RRULE:FREQ=WEEKLY END:VEVENT END:VCALENDAR HTTP/1.1 200 OK This calendar only contained 2 objects. A todo and a weekly event. So after you retrieved and processed these, for each object you must retain: The calendar data itself The url The etag In this case all urls ended with .ics. This is often the case, but you must not rely on this. In this case the UID in the calendar object was also identical to a part of the url. This too is often the case, but again not something you can rely on, so don't make any assumptions. The url and the UID have no meaningful relationship, so treat both those items as separate unique identifiers. Finding out if anything changed To see if anything in a calendar changed, we simply request the ctag again on the calendar. If the ctag did not change, you still have the latest copy. If it did change, you must request all the etags in the entire calendar again: REPORT /calendars/johndoe/home/ HTTP/1.1 Depth: 1 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 Note that this last request is extremely similar to a previous one, but we are only asking fo the etag, not the calendar-data. The reason for this, is that calendars can be rather huge. It will save a TON of bandwidth to only check the etag first. HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 /calendars/johndoe/home/132456762153245.ics "xxxx-xxx" HTTP/1.1 200 OK /calendars/johndoe/home/fancy-caldav-client-1234253678.ics "5-12" HTTP/1.1 200 OK Judging from this last request, 3 things have changed: The etag for the task has changed, so the contents must be different There's a new url, some other client must have added an object One object is missing, something must have deleted it. So based on those 3 items we know that we need to delete an object from our local list, and fetch the contents for the new item, and the updated one. To fetch the data for these, you can simply issue GET requests: GET /calendars/johndoe/home/132456762153245.ics HTTP/1.1 But, because in a worst-case scenario this could result in a LOT of GET requests we can do a 'multiget'. REPORT /calendars/johndoe/home/ HTTP/1.1 Depth: 1 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 /calendars/johndoe/home/132456762153245.ics /calendars/johndoe/home/fancy-caldav-client-1234253678.ics This request will simply return a multi-status again with the calendar-data and etag. A small note about application design If you read this far and understood what's been said, you may have realized that it's a bit cumbersome to have a separate step for the initial sync, and subsequent updates. It would totally be possible to skip the 'initial sync', and just use calendar-query and calendar-multiget REPORTS for the initial sync as well. Updating a calendar object Updating a calendar object is rather simple: PUT /calendars/johndoe/home/132456762153245.ics HTTP/1.1 Content-Type: text/calendar; charset=utf-8 If-Match: "2134-314" BEGIN:VCALENDAR .... END:VCALENDAR A response to this will be something like this: HTTP/1.1 204 No Content ETag: "2134-315" The update gave us back the new ETag. SabreDAV gives this ETag on updates back most of the time, but not always. There are cases where the caldav server must modify the iCalendar object right after storage. In those cases an ETag will not be returned, and you should issue a GET request immediately to get the correct object. A few notes: You must not change the UID of the original object Every object should hold only 1 event or task. You cannot change an VEVENT into a VTODO. Creating a calendar object Creating a calendar object is almost identical, except that you don't have a url yet to a calendar object. Instead, it is up to you to determine the new url. PUT /calendars/johndoe/home/somerandomstring.ics HTTP/1.1 Content-Type: text/calendar; charset=utf-8 BEGIN:VCALENDAR .... END:VCALENDAR A response to this will be something like this: HTTP/1.1 201 Created ETag: "21345-324" Similar to updating, an ETag is often returned, but there are cases where this is not true. Deleting a calendar object Deleting is simple enough: DELETE /calendars/johndoe/home/132456762153245.ics HTTP/1.1 If-Match: "2134-314" Speeding up Sync with WebDAV-Sync WebDAV-Sync is a protocol extension that is defined in rfc6578. Because this extension was defined later, some servers may not support this yet. SabreDAV supports this since 2.0. WebDAV-Sync allows a client to ask just for calendars that have changed. The process on a high-level is as follows: Client requests sync-token from server. Server reports token 15. Some time passes. Client does a Sync REPORT on an calendar, and supplied token 15. Server returns vcard urls that have changed or have been deleted and returns token 17. As you can see, after the initial sync, only items that have been created, modified or deleted will ever be sent. This has a lot of advantages. The transmitted xml bodies can generally be a lot shorter, and is also easier on both client and server in terms of memory and CPU usage, because only a limited set of items will have to be compared. It's important to note, that a client should only do Sync operations, if the server reports that it has support for it. The quickest way to do so, is to request {DAV}sync-token on the calendar you wish to sync. Technically, a server may support 'sync' on one calendar, and it may not support it on another, although this is probably rare. Getting the first sync-token Initially, we just request a sync token when asking for calendar information: PROPFIND /calendars/johndoe/home/ HTTP/1.1 Depth: 0 Content-Type: application/xml; charset=utf-8 This would return something as follows: /calendars/johndoe/home/ My calendar 3145 http://sabredav.org/ns/sync-token/3145 HTTP/1.1 200 OK As you can see, the sync-token is a url. It always should be a url. Even though a number appears in the url, you are not allowed to attach any meaning to that url. Some servers may have use an increasing number, another server may use a completely random string. Receiving changes After a sync token has been obtained, and the client already has the initial copy of the calendar, the client is able to request all changes since the token was issued. This is done with a REPORT request that may look like this: REPORT /calendars/johndoe/home/ HTTP/1.1 Host: dav.example.org Content-Type: application/xml; charset="utf-8" http://sabredav.org/ns/sync/3145 1 This requests all the changes since sync-token identified by http://sabredav.org/ns/sync/3145, and for the calendar objects that have been added or modified, we're requesting the etag. The response to a query like this is another multistatus xml body. Example: HTTP/1.1 207 Multi-Status Content-Type: application/xml; charset="utf-8" /calendars/johndoe/home/newevent.ics "33441-34321" HTTP/1.1 200 OK /calendars/johndoe/home/updatedevent.ics "33541-34696" HTTP/1.1 200 OK /calendars/johndoe/home/deletedevent.ics HTTP/1.1 404 Not Found http://sabredav.org/ns/sync/5001 The last response reported two changes: newevent.ics and updatedevent.ics. There's no way to tell from the response wether those cards got created or updated, you, as a client can only infer this based on the vcards you are already aware of. The entry with name deletedevent.ics got deleted as indicated by the 404 status. Note that the status element is here a child of d:response when in all previous examples it has been a child of d:propstat. The other difference with the other multi-status examples, is that this one has a sync-token element with the latest sync-token. Caveats Note that a server is free to 'forget' any sync-tokens that have been previously issued. In this case it may be needed to do a full-sync again. In case the supplied sync-token is not recognized by the server, a HTTP error is emitted. SabreDAV emits a 403. Discovery Ideally you will want to make sure that all the calendars in an account are automatically discovered. The best user interface would be to just have to ask for three items: Username Password Server And the server should be as short as possible. This is possible with most servers. If, for example a user specified 'dav.example.org' for the server, the first thing you should do is attempt to send a PROPFIND request to https://dav.example.org/. Note that you SHOULD try the https url before the http url. This PROPFIND request looks as follows: PROPFIND / HTTP/1.1 Depth: 0 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 This will return a response such as the following: HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 / /principals/users/johndoe/ HTTP/1.1 200 OK A 'principal' is a user. The url that's being returned, is a url that refers to the current user. On this url you can request additional information about the user. What we need from this url, is their 'calendar home'. The calendar home is a collection that contains all of the users' calendars. To request that, issue the following request: PROPFIND /principals/users/johndoe/ HTTP/1.1 Depth: 0 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 This will return a response such as the following: HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 /principals/users/johndoe/ /calendars/johndoe/ HTTP/1.1 200 OK Lastly, to list all the calendars for the user, issue a PROPFIND request with Depth: 1. PROPFIND /calendars/johndoe/ HTTP/1.1 Depth: 1 Prefer: return-minimal Content-Type: application/xml; charset=utf-8 In that last request, we asked for 4 properties. The resourcetype tells us what type of object we're getting back. You must read out the resourcetype and ensure that it contains at least a calendar element in the CalDAV namespace. Other items may be returned, including non- calendar, which your application should ignore. The displayname is a human-readable string for the calendarname, the ctag was already covered in an earlier section. Lastly, supported-calendar-component-set. This gives us a list of components that the calendar accepts. This could be just VTODO, VEVENT, VJOURNAL or a combination of these three. If you are just creating a todo-list application, this means you should only list the calendars that support the VTODO component. HTTP/1.1 207 Multi-status Content-Type: application/xml; charset=utf-8 /calendars/johndoe/ HTTP/1.1 200 OK /calendars/johndoe/home/ Home calendar 3145 HTTP/1.1 200 OK /calendars/johndoe/tasks/ My TODO list 3345 HTTP/1.1 200 OK */