Skip to content

Banners

Banners

This is the publisher reference for backend banner commands. The stack stores one io.cozy.banners document per category and instance. See ADR 054 for the platform design.

Configuration

Enable banners and allow the publisher’s categories in each recipient context:

contexts:
  b2b_twake_default:
    banner:
      enabled: true
      command_categories:
        - billing
        - trial

Set command_categories to ["*"] to allow every category except quota.

Broker credentials, permissions and bindings control who can publish. Each category must have one owner and one addressing mode: the stack keeps one revision per instance and category, shared by orgId and workplaceFqdn commands, so never address a category both ways. quota is reserved for the stack’s rules.

Instances that disable banners are skipped. Instances whose context does not list the category are skipped with a warning log. Other eligible recipients still receive the command. Skipping an instance leaves its existing documents and recorded revision unchanged. An error on one instance does not stop processing the others. The stack returns all failures after attempting every recipient, so delivery can be retried.

Commands

Publish JSON on the platform exchange, consumed by stack.banner.commands. The routing key selects the operation:

  • banner.materialize: create or replace the banner in a category.
  • banner.clear: expire the banner in a category while retaining its revision; nonempty presentation fields are rejected.

See RabbitMQ configuration for queue declarations and shared fixtures for complete examples.

banner.materialize:

{
  "workplaceFqdn": "alice.twake.app",
  "eventId": "banner-command-42",
  "revision": 42,
  "timestamp": 1788944400,
  "category": "billing",
  "bannerId": "billing.grace.cycle-a.attempt-2",
  "severity": "warning",
  "surface": "banner",
  "dismissible": true,
  "text": { "en": "We could not charge your card.", "fr": "Nous n'avons pas pu débiter votre carte." },
  "cta": {
    "label": { "en": "Update payment method", "fr": "Mettre à jour le moyen de paiement" },
    "url": "https://manager.example.org/linagora/twake_prod/premium"
  }
}

banner.clear:

{
  "workplaceFqdn": "alice.twake.app",
  "eventId": "banner-command-43",
  "revision": 43,
  "timestamp": 1788944400,
  "category": "billing"
}
Field Required Contract
category always Matches ^[a-z][a-z0-9-]{0,31}$; quota is rejected.
workplaceFqdn / orgId exactly one A single instance host name / a B2B organization ID matching instance org_id, whose members receive the command; orgId is at most 256 bytes with no surrounding whitespace.
revision always Positive counter, increasing per category.
timestamp always Decision time in positive epoch seconds, within the RFC3339 range. Does not order commands.
eventId no Correlation ID, at most 256 bytes.
bannerId materialize Matches ^[a-z0-9.-]{1,64}$. Keep it for the same occurrence to preserve dismissal; change it for a new occurrence.
severity materialize info, warning or error.
surface materialize banner or modal.
text materialize Locale map with nonempty en; at most 1024 bytes per locale.
title no Locale map with nonempty en when supplied; at most 256 bytes per locale.
cta, secondaryCta no Each has a locale-map label (nonempty en, at most 128 bytes per locale) and an absolute https url (at most 2048 bytes). A secondary CTA requires a primary one.
dismissible no Defaults to false. A modal without a CTA is made dismissible.
priority no 0–1000; defaults to 0. Quota banners use 50 and 100.
startsAt, endsAt no RFC3339. If both are supplied, startsAt must precede endsAt. An explicit start replaces the stored start; omission preserves it for the same occurrence when compatible with the end, otherwise defaults to the command’s decision time.

Each locale map accepts at most 32 locales with keys of 1–35 bytes. The JSON body is limited to 256 KiB, including whitespace and unknown fields. _id, _rev, dismissedAt and cozyMetadata are not command fields and are ignored if supplied.

Localization

The publisher supplies all wording. The stack selects the instance’s locale only if it is complete for every supplied text and label; otherwise the whole banner falls back to en. The stored lang identifies the selected language. Any complete publisher-supplied locale is supported, independently of the stack’s translation catalogs.

On an instance language change, existing banners are re-localized from retained commands in the banner documents without republishing. Cleared or deleted banners and older records without retained wording are left unchanged.

Revisions and recovery

Commanded banners store revision, eventId, and the full localized command in accepted alongside their presentation. A clear retains the category’s document with cleared: true, an expired endsAt, and no retained wording; clients must filter out banners whose validity window has ended. A newer materialize replaces it normally. Updating the command revision also updates the document revision, even when its visible wording is unchanged.

Apps cannot create, edit or delete io.cozy.banners documents. An app with PUT permission on the doctype can only record a dismissal: PUT /data/io.cozy.banners/:id with the current _rev and a non-null dismissedAt. The stack ignores every other field and stores its own timestamp. Dismissing a banner that is not dismissible returns 403, and a null dismissedAt clears the dismissal. If a later command makes the same occurrence non-dismissible, the dismissal is dropped.

  • Revisions at or below the last accepted revision for an instance and category are ignored, even after a clear. Only a changed decision needs a new revision; the publisher must ensure newer revisions carry newer state.
  • Retry with the original revision, event ID and payload. Replays complete partial organization deliveries and reach newly provisioned members while leaving recipients that already accepted the revision unchanged.
  • Enabling banners does not bootstrap them: the publisher must republish.
  • Invalid commands and missing workplaces fail delivery. The broker requeues failures without a delay until its configured delivery limit is exhausted; configure dead lettering as described in RabbitMQ. Fix the cause and explicitly replay dead-lettered commands with their original operation routing key (banner.materialize or banner.clear).
  • The stack sends no application acknowledgement. A broker confirm means the broker accepted the message, not that a banner was stored or displayed.