Internet-Draft | The Mercure Protocol | October 2020 |
Dunglas | Expires 4 April 2021 | [Page] |
Mercure is a protocol allowing to push data updates to web browsers and other HTTP clients in a fast, reliable and battery-efficient way. It is especially useful to publish real-time updates of resources served through web APIs, to reactive web and mobile apps.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 4 April 2021.¶
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
The keywords MUST, MUST NOT, REQUIRED, SHALL, SHALL NOT, SHOULD, SHOULD NOT, RECOMMENDED, MAY, and OPTIONAL, when they appear in this document, are to be interpreted as described in [RFC2119].¶
Topic: An HTTP [RFC7230] or HTTPS [RFC2818] topic URL. The unit to which one can subscribe to changes.¶
Publisher: An owner of a topic. Notifies the hub when the topic feed has been updated. As in almost all pubsub systems, the publisher is unaware of the subscribers, if any. Other pubsub systems might call the publisher the "source". Typically a website or a web API.¶
Subscriber: A client application that subscribes to real-time updates of topics (typically a Progressive Web App or a Mobile App).¶
Hub: A server that handles subscription requests and distributes the content to subscribers when the corresponding topics have been updated (a Hub implementation is provided in this repository). Any hub MAY implement its own policies on who can use it.¶
The publisher SHOULD advertises the URL of one or more hubs to the subscriber, allowing it to receive live updates when topics are updated. If more than one hub URL is specified, it is expected that the publisher notifies each hub, so the subscriber MAY subscribe to one or more of them.¶
The publisher SHOULD include at least one Link Header [RFC5988] with rel=mercure
(a hub link header).
The target URL of these links MUST be a hub implementing the Mercure protocol.¶
Note: this relation type has not been registered yet [RFC5988].
During the meantime, the relation type https://git.io/mercure
can be used instead.¶
The publisher MAY provide the following target attributes in the Link headers:¶
last-event-id
: the globally unique identifier of the last event dispatched by the publisher at the time of the generation of this resource. If provided, it MUST be passed to the hub through a query parameter called Last-Event-ID
and will be used to ensure that possible updates having been made during between the resource generation time and the connection to the hub are not lost. See section #Re-Connection-and-State-Reconciliation). If this attribute is provided, the publisher MUST always set the id
parameter when sending updates to the hub.¶
content-type
: the content type of the updates that will pushed by the hub. If omited, the subscriber MUST assume that the content type will be the same than the one of the original resource. Setting the content-type
attribute is especially useful to hint that partial updates will be pushed, using formats such as JSON Patch [RFC6902] or JSON Merge Patch [RFC7386].¶
key-set=<JWKS>
: the key(s) to decrypt updates encoded in the JWKS (JSON Web Key Set) format (see the Encryption section).¶
All these attributes are optional.¶
The publisher MAY also include one Link Header [RFC5988] with rel=self
(the self link header). It SHOULD contain the canonical URL for the topic to which subscribers are expected to use for subscriptions. If the Link with rel=self
is ommitted, the current URL of the resource MUST be used as fallback.¶
Minimal example:¶
GET /books/foo.jsonld HTTP/1.1 Host: example.com HTTP/1.1 200 Ok Content-type: application/ld+json Link: <https://hub.example.com/subscribe>; rel="mercure" {"@id": "/books/foo.jsonld", "foo": "bar"}¶
Links embedded in HTML or XML documents (as defined in the WebSub recommendation) MAY also be supported by subscribers.¶
Note: the discovery mechanism described in this section is strongly inspired from the one specified in the WebSub recommendation.¶
The subscriber subscribes to an URL exposed by a hub to receive updates of one or many topics. To subscribe to updates, the client opens an HTTPS connection following the Server-Sent Events specification to the hub's subscription URL advertised by the Publisher. The connection SHOULD use HTTP/2 to leverage mutliplexing and other advanced features of this protocol.¶
The subscriber specifies the list of topics to get updates for by using one or several query parameters named topic
.
The value of these query parameters MUST be URI templates [RFC6570].¶
Note: an URL is also a valid URI template.¶
The protocol doesn't specify the maximum number of topic
parameters that can be sent, but the hub MAY apply an arbitrary limit.¶
The EventSource JavaScript interface MAY be used to establish the connection. Any other appropriate mechanism including but not limited to readable streams and XMLHttpRequest (used by popular polyfills) MAY also be used.¶
The hub sends updates concerning all subscribed resources matching the provided URI templates. The hub MUST send these updates as text/event-stream compliant events.¶
The data
property MUST contain the new version of the topic. It can be the full resource, or a partial update by using formats such as JSON Patch @RFC6902
or JSON Merge Patch @RFC7386
.¶
All other properties defined in the Server-Sent Events specification MAY be used and SHOULD be supported by hubs.¶
The resource SHOULD be represented in a format with hypermedia capabilities such as JSON-LD [W3C.REC-json-ld-20140116], Atom [RFC4287], XML [W3C.REC-xml-20081126] or HTML [W3C.REC-html52-20171214].¶
Web Linking [RFC5988] SHOULD be used to indicate the IRI of the resource sent in the event.
When using Atom, XML or HTML as serialization format for the resource, the document SHOULD contain a link
element with a self
relation containing the IRI of the resource.
When using JSON-LD, the document SHOULD contain an @id
property containing the IRI of the resource.¶
Example:¶
// The subscriber subscribes to updates for the https://example.com/foo topic // and to any topic matching https://example.com/books/{name} const url = new URL('https://hub.example.com/subscribe'); url.searchParams.append('topic', 'https://example.com/foo'); url.searchParams.append('topic', 'https://example.com/bar/{id}'); const eventSource = new EventSource(url); // The callback will be called every time an update is published eventSource.onmessage = function ({data}) { console.log(data); };¶
The hub receives updates from the publisher on a dedicated HTTPS endpoint. The connection MUST use an encryption layer, such as TLS. HTTPS certificate can be obtained for free using Let's Encrypt.¶
When it receives an update, the hub dispatches it to subsribers using the established server-sent events connections.¶
An application CAN send events directly to the subscribers, without using an external hub server, if it is able to do so. In this case, it MAY NOT implement the endpoint to publish updates.¶
The endpoint to publish updates is an HTTPS URL accessed using the POST
method.
The request MUST be encoded using the application/x-www-form-urlencoded
format and contains the following data:¶
topic
: IRIs of the updated topic. If this key is present several times, the first occurence is considered to be the canonical URL of the topic, and other ones are considered to be alternate URLs. The hub MUST dispatch this update to subscribers subscribed to both canonical or alternate URLs.¶
data
: the content of the new version of this topic¶
target
(optional): target audience of this event, see the Authorization section for further information.¶
id
(optional): the topic's revision identifier, it will be used as the SSE's id
property, if omited the hub MUST generate a valid UUID.¶
type
(optional): the SSE's event
property (a specific event type)¶
retry
(optional): the SSE's retry
property (the reconnection time)¶
The request MUST also contain an Authorization
HTTP header containing the string Bearer
followed by a valid JWS [RFC7515] in compact serialization that the hub will check to ensure that the publisher is authorized to publish the update.¶
To allow re-establisment in case of connection lost, events dispatched by the hub SHOULD include an id
property.
The value contained in this id
property SHOULD be a globally unique identifier.
To do so, UUID [RFC4122] MAY be used.¶
According to the server-sent events specification, in case of connection lost the subscriber will try to automatically reconnect. During the reconnection the subscriber MUST send the last received event id in a Last-Event-ID HTTP header.¶
The server-sent events specification doesn't allow to set this HTTP header during the first connection (before a re-connection occurs).
In order to fetch any update dispatched between the initial resource generation by the publisher and the connection to he hub, the subscriber MUST send the event id provided during the discovery in the last-event-id
link's attribute in a query parameter named Last-Event-ID
when connecting to the hub.¶
If both the Last-Event-ID
HTTP header and the query parameter are present, the HTTP header MUST take precedence.¶
If the Last-Event-ID
header or query parameter exists, the hub SHOULD send to the subscriber all events published since the one having this identifier.¶
The hub MAY discard some messages for operational reasons. The subscriber MUST NOT assume that no update will be lost, and MUST re-fetch the original topic to ensure this (for instance, after a long deconnection time).¶
The hub MAY also specify the reconnection time using the retry
key, as specified in the server-sent events format.¶
Using HTTPS doesn't prevent the hub to access to the update's content. Depending of the intended privacy of informations contained in the updates, it MAY be necessary to prevent eavesdropping by the hub.¶
To make sure that the message content can not be read by the hub, the publisher MAY encode the message before sending it to the hub.
The publisher SHOULD use JSON Web Encryption [RFC7516] to encrypt the update content.
The publisher MAY provide the relevant encryption key(s) in the key-set
attribute of the Link HTTP header during the discovery.
The key-set
attribute SHOULD contain a key encoded using the JSON Web Key Set [RFC7517] format.
Any other out-of-band mechanism MAY be used instead to share the key between the publisher and the subscriber.¶
Updates encyption is considered a best practice to prevent mass surveillance. This is especially relevant if the hub is managed by an external provider.¶