2021-09-19 12:42:23 +02:00
|
|
|
# EGroupware CalDAV/CardDAV server and REST API
|
|
|
|
|
|
|
|
CalDAV/CardDAV is build on HTTP and WebDAV, implementing the following additional RFCs containing documentation of the protocol:
|
|
|
|
* [rfc4791: CalDAV: Calendaring Extensions to WebDAV](https://datatracker.ietf.org/doc/html/rfc4791)
|
|
|
|
* [rfc6638: Scheduling Extensions to CalDAV](https://datatracker.ietf.org/doc/html/rfc6638)
|
|
|
|
* [rfc6352: CardDAV: vCard Extensions to WebDAV](https://datatracker.ietf.org/doc/html/rfc6352)
|
|
|
|
* [rfc6578: Collection Synchronization for WebDAV](https://datatracker.ietf.org/doc/html/rfc6578)
|
|
|
|
* many additional extensions from former Apple Calendaring Server used by Apple clients and others
|
|
|
|
|
|
|
|
## Path / URL layout for CalDAV/CardDAV and REST is identical
|
|
|
|
|
|
|
|
One can use the following URLs relative (!) to https://example.org/egroupware/groupdav.php
|
|
|
|
|
2024-05-15 08:35:25 +02:00
|
|
|
- `/` base of Cal|Card|GroupDAV tree, only certain clients (KDE, Apple) can autodetect folders from here
|
|
|
|
- `/principals/` principal-collection-set for WebDAV ACL
|
|
|
|
- `/principals/users/<username>/`
|
|
|
|
- `/principals/groups/<groupname>/`
|
|
|
|
- `/<username>/` users home-set with
|
|
|
|
- `/<username>/addressbook/` addressbook of user or group <username> given the user has rights to view it
|
|
|
|
- `/<current-username>/addressbook-<other-username>/` shared addressbooks from other user or group
|
|
|
|
- `/<current-username>/addressbook-accounts/` all accounts current user has rights to see
|
|
|
|
- `/<username>/calendar/` calendar of user <username> given the user has rights to view it
|
|
|
|
- `/<username>/calendar/?download` download whole calendar as .ics file (GET request!)
|
|
|
|
- `/<current-username>/calendar-<other-username>/` shared calendar from other user or group (only current <username>!)
|
|
|
|
- `/<username>/inbox/` scheduling inbox of user <username>
|
|
|
|
- `/<username>/outbox/` scheduling outbox of user <username>
|
|
|
|
- `/<username>/infolog/` InfoLog's of user <username> given the user has rights to view it
|
|
|
|
- `/addressbook/` all addressbooks current user has rights to, announced as directory-gateway now
|
|
|
|
- `/addressbook-accounts/` all accounts current user has rights to see
|
|
|
|
- `/calendar/` calendar of current user
|
|
|
|
- `/infolog/` infologs of current user
|
|
|
|
- `/(resources|locations)/<resource-name>/calendar` calendar of a resource/location, if user has rights to view
|
|
|
|
- `/<current-username>/(resource|location)-<resource-name>` shared calendar from a resource/location
|
|
|
|
- `/mail/` REST API only
|
|
|
|
- `/timesheet/` REST API only
|
|
|
|
- `/smallpart/` REST API only
|
2021-09-19 12:42:23 +02:00
|
|
|
|
|
|
|
Shared addressbooks or calendars are only shown in the users home-set, if he subscribed to it via his CalDAV preferences!
|
|
|
|
|
|
|
|
Calling one of the above collections with a GET request / regular browser generates an automatic index
|
2024-05-15 08:35:25 +02:00
|
|
|
from the data of an `allprop` PROPFIND, allow browsing CalDAV/CardDAV tree with a regular browser.
|
2021-09-19 12:42:23 +02:00
|
|
|
|
|
|
|
## REST API: using EGroupware CalDAV/CardDAV server with JSON
|
2023-07-24 17:08:05 +02:00
|
|
|
- [Addressbook](Addressbook.md)
|
2024-02-01 21:16:36 +01:00
|
|
|
- [Calendar](Calendar.md)
|
|
|
|
* currently recurring events are readonly, they are returned but can not be created or modified
|
2024-05-06 17:32:47 +02:00
|
|
|
- [InfoLog](Infolog.md)
|
2024-02-01 21:16:36 +01:00
|
|
|
- [Mail](Mail.md)
|
|
|
|
* currently only sending mails,
|
|
|
|
* opening interactive compose windows,
|
|
|
|
* view and reply to eml files and
|
|
|
|
* vacation handling
|
|
|
|
- [Timesheet](Timesheet.md)
|
2024-05-14 18:39:56 +02:00
|
|
|
- [ViDoTeach](https://github.com/EGroupware/smallpart/blob/master/doc/RESP-API.md)
|
2024-02-05 20:06:18 +01:00
|
|
|
- [Links and attachments](Links-and-attachments.md)
|
|
|
|
* linking application entries to other application entries
|
|
|
|
* attaching files to application entries
|
|
|
|
* listing, creating and deleting links and attachments
|
2023-08-02 11:01:58 +02:00
|
|
|
|
|
|
|
> For the REST API you always have to send an "Accept: application/json" header and for POST & PUT requests additionally
|
|
|
|
> a "Content-Type: application/json" header, otherwise you talk to the CalDAV/CardDAV server and don't get the response you expect!
|
2021-09-19 12:42:23 +02:00
|
|
|
|
2023-07-24 17:08:05 +02:00
|
|
|
Following RFCs / drafts used/planned for JSON encoding of resources
|
2024-05-15 08:35:25 +02:00
|
|
|
* [rfc9553: JSContact: A JSON Representation of Contact Data](https://datatracker.ietf.org/doc/html/rfc9553)
|
|
|
|
* [rfc9555: JSContact: Converting from and to vCard](https://datatracker.ietf.org/doc/html/rfc9555)
|
2021-09-19 12:42:23 +02:00
|
|
|
* [rfc8984: JSCalendar: A JSON Representation of Calendar Data](https://datatracker.ietf.org/doc/html/rfc8984)
|
|
|
|
|
2021-09-25 12:20:31 +02:00
|
|
|
### ToDos
|
|
|
|
- [x] Addressbook
|
|
|
|
- [ ] update of photos, keys, attachments
|
2024-05-06 17:32:47 +02:00
|
|
|
- [X] InfoLog
|
2023-07-24 17:08:05 +02:00
|
|
|
- [X] Calendar (recurring events and alarms are readonly)
|
|
|
|
- [ ] support creating and modifying recurring events and alarms
|
|
|
|
- [X] Mail
|
|
|
|
- [ ] querying received mails
|
2024-05-06 17:32:47 +02:00
|
|
|
- [X] relatedTo, links and attachments, see [links sub-collection to add attachments and links to other application-entries](Links-and-attachments.md)
|
2023-06-29 12:49:50 +02:00
|
|
|
- [ ] storing not native supported attributes eg. localization
|