Skip to content

bitfireAT/webdav-push

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Specification: HTML Specification: TXT Matrix GitHub Discussions

The WebDAV Push project

View the current specification draft (in work):

These documents are automatically compiled from the source (kramdown-rfc):


Motivation

WebDAV is an open HTTP- and XML- based protocol that is widely adopted and can be used for remote file access (read/write). It has a wide range of usages from browsing folders and uploading files over the Internet with a desktop or mobile file manager (like FTP, but better) to specific protocols that define their own properties and use (virtual) files for data exchange.

Two of these specific WebDAV-based protocols are CalDAV and CardDAV. They allow to access calendars (events, tasks, journal entries, free/busy information, …) and contacts in a standardized way. Because they're open standards, a lot of different servers and clients can be used to work together (no vendor lock-in).

However, these protocols don't come with support for "Push", so there's no way for servers to notify clients about new/updated data. So,

  • a file manager won't update its view of a folder automatically when a file in this folder is added/changed/removed, and
  • a CalDAV/CardDAV client has to ask the server for changes in regular intervals (polling), which causes unnecessary server load, bad user experience and useless energy usage (especially bad for mobile devices).

WebDAV is however extensible and it's possible to add new properties and mechanisms to it. So we want to create WebDAV-Push, so that users can receive updated data whenever they're available.

This is especially important for CalDAV/CardDAV, where we want to bring (near-)real-time synchronization (which is nowadays industry standard for proprietary protocols) also to CalDAV/CardDAV clients.

How

Our goal is to draft a document defining WebDAV Push.

It will be mainly based on Web Push (RFC 8030), but open for other push transports.

Currently, the main organizations / people behind WebDAV Push are:

  • @bitfireAT (developers of DAVx⁵) – very interested in developing Push for WebDAV, especially CalDAV/CardDAV
  • @verdigado – interested in using CalDAV/CardDAV push

The plan is to

  • draft a specification,
  • make a first server-side implementation for @Nextcloud (who are interested in supporting that) – it's in development and can already be used for demonstration purposes,
  • make a first client-side implementation for DAVx⁵ – basic support for demonstration purposes is also already available in the lastest releases,
  • ensure that it's usable with @UnifiedPush (because there's already much awesome open technology available).

A lot of people have shown their interest in WebDAV-Push. Thank you for all ideas and encouragement!

Contact

If you're interested:

  • have a look at the specification draft and tell us your ideas
  • send PRs for content of this repository, especially the specification content (content.md)
  • take part in our Discussions – feel free to create new topics with your ideas, questions, what you would love to see, …
  • join our Matrix channel: #webdav-push:matrix.org – not always very active, but well observed
  • watch @[email protected], where we sometimes post Push-related news too

We would love to see some activity!

Repo organization

The repository contains:

  • a specification draft describing our current idea of WebDAV-Push (see above)
  • discussion and exchange about the WebDAV Push topic (in Discussions)
  • specific tasks (in Issues) and related patches (in Pull requests)

Additional content / FAQ

There are some additional explanations that are non-normative and thus not found in the specification draft.

"Big" architecture diagram:

Big architecture diagram

UnifiedPush (UP) is a specification which is intentionally designed as a 100% compatible subset of Web Push, together with a software that can be used to implement these documents. From a WebDAV-Push server perspective, UP endpoints can be seen as Web Push resources.