-
Notifications
You must be signed in to change notification settings - Fork 41
pwa
Stable.
OpenStation ships a web app manifest, a service worker, and a local notifications API so users can install their WordPress site as a real OS app and plugins can surface alerts the same way native apps do.
This page is the architectural ground-truth. For the plugin-author's
copy-paste recipes see
docs/examples/pwa-install.md and
docs/examples/notify.md.
| Surface | Behaviour |
|---|---|
| Web app manifest | Served at /openstation/manifest.webmanifest. Site name + short name, theme color, icons (Site Icon when set, plugin logo otherwise), start_url=/wp-admin/index.php?desktop_mode_portal=1, scope=/wp-admin/ (narrowed from / so front-end links escape the PWA window; the manifest id stays at /openstation/ so existing installs aren't reset). Filterable via openstation_pwa_manifest. |
| Service worker | Served at /openstation/sw.js with Service-Worker-Allowed: /. Registered at root scope with a deliberately narrow fetch handler — it only intercepts paths under /openstation/ and /wp-admin/, plus the plugin's own static assets. wp-admin HTML is always network-first (nonces would otherwise drift). |
| Install hint | A system tile on the dock (id: 'os-pwa-install') registered on shell boot — except when the shell is already running standalone. It is removed live when display-mode flips to standalone or when getInstalledRelatedApps() reports the app installed (Chromium); on Safari / Firefox it persists as a fallback. Clicking it dispatches the browser install prompt when the site is currently installable, otherwise shows a contextual toast ("already installed", "not yet"). |
| Local notifications |
wp.os.notify({ title, body, icon, tag, onClick }) — uses the browser Notification API, falls back to a toast when permission is denied or the browser doesn't support it. |
| Push notifications |
Not in v1. The SW registers a no-op push handler (claimed so future v2 push payloads aren't silently dropped); the notificationclick handler is live — it closes the notification, focuses an existing /openstation/ window client, or opens notification.data.url (default /openstation/) when none exists. The same wp.os.notify shape will route through the SW's showNotification once push is wired. |
A service worker has exactly one scope path. The only common ancestor of
/openstation/ and /wp-admin/ is /. Registering at /openstation/
would cut the SW off from admin-page navigations — defeating the purpose
for the typical install target (a dashboard URL inside wp-admin).
So the SW registers at root scope, but the fetch handler returns early
(no event.respondWith call) for any URL outside /openstation/,
/wp-admin/, or the plugin's own assets directory. Behaviorally this is
"narrow scope" without inheriting the technical limitation.
Some hosts' web servers short-circuit any path with a static-file
extension straight to the filesystem: /openstation/sw.js 404s at
nginx and never reaches WordPress, while the extensionless manifest
route works fine. For those hosts the same SW bytes are also served at
the extensionless fallback /?openstation_sw=1 — registration
tries the pretty URL first and retries once with
PwaConfig.swFallbackUrl on failure. The fallback URL's path is /,
so root scope needs no Service-Worker-Allowed header at all, and a
SW registered through it is still recognized as OpenStation's own by
the foreign-SW guard.
If any other service worker (any scope) is already registered on the
origin, the registration bails with a console warning rather than
usurping it. OpenStation's own registrations are never treated as
foreign — that includes the current pretty URL, the extensionless
fallback, and legacy endpoints from before a portal-path move (e.g.
/desktop-mode/sw.js). A browser stuck on such a stale worker (its
old endpoint no longer serves JavaScript, so it can never self-update)
is recovered automatically: registering the current URL at the same
scope replaces it on the next shell load. The "Install <site> as an app" tile then surfaces a
focused toast pointing at the opt-in filter (rather than the generic
"not available" fallback), so users on affected sites see the
actionable message instead of silently broken behaviour.
To opt this install in, return true from the
openstation_pwa_force_replace_sw filter:
add_filter( 'openstation_pwa_force_replace_sw', '__return_true' );The filter resolves at shell-config build time; effective on the next page load. Use this when another PWA plugin's SW is shadowing OpenStation and you want OpenStation to take over the install path.
| Pattern | Strategy | Why |
|---|---|---|
/wp-content/plugins/desktop-mode/assets/**.{css,png,jpg,svg,…} |
Stale-while-revalidate (runtime cache) | Returning users open the shell instantly; the SW updates the cache in the background. |
/wp-content/plugins/desktop-mode/assets/**.js |
Network-first with cache: 'reload' + cache fallback |
JS bundles change per deploy — a fresh deploy reaches online users on the next load, with no stale-revalidate window where a freshly-pushed fix is invisible. The cache still serves offline users. |
Opt-in — versioned Core statics (/wp-admin/**, /wp-includes/** with ?ver=) and load-scripts.php / load-styles.php
|
Exact-URL cache-first (os-admin bucket) |
The ver query embeds the WordPress version, so bytes behind a URL only change when the URL changes — the same contract Core expresses by serving the loader endpoints with a one-year Cache-Control. A warm window-open costs zero HTTP requests for these. Requires the openstation_pwa_admin_asset_cache filter (default off). |
| Opt-in — versioned plugin/theme statics (`/wp-content/plugins | themes/**with?ver=`) |
Stale-while-revalidate (os-admin bucket) |
| Opt-in — an iframe navigation to a document the shell asked for early | Served from the held response (never re-fetched) | The document is the one thing that can never be cached — admin HTML carries nonces — and it is the majority of a window open. Speculation does not make it cacheable; it moves the wait to before the click. See Speculative documents. |
| Navigation requests under our scope | Network-first with offline fallback | wp-admin HTML carries nonces and per-request screen state; caching it would desynchronise the user. The fallback is a tiny inline placeholder so an offline user sees something coherent. |
| REST / AJAX / non-asset GETs / unversioned asset URLs | Pass-through (no SW handling) | Same reason as navigation — auth-bound dynamic content must hit the network; an asset URL without a ver cache-buster carries no immutability contract. |
install-time precache |
A handful of CSS files, the three critical-path JS bundles (desktop.min.js, window-system.min.js, shell-overlays.min.js), and the plugin logo |
Just enough to render the offline shell skeleton. Anything else is picked up at runtime by the caching paths above. |
The two opt-in rows above are the shared admin-asset cache: because the SW is root-scoped, it sees asset requests from the shell and from every window's chromeless iframe, and Cache Storage is origin-wide — so a stylesheet fetched by one window is served locally to every later window, revalidation round-trips included.
Users enable it per account in OpenStation Preferences → Features →
Beta features → "Shared asset cache (experimental)"
(adminAssetCacheEnabled, default off; applies after the next reload).
That preference is the default of the openstation_pwa_admin_asset_cache
filter, which operators can use to force it site-wide or veto every
per-user opt-in:
add_filter( 'openstation_pwa_admin_asset_cache', '__return_true' ); // force on
add_filter( 'openstation_pwa_admin_asset_cache', '__return_false' ); // kill switchPer-user works because the SW script is fetched with credentials — the served bytes reflect whoever is logged in on that browser profile, which is also who the SW will be serving.
Mechanics and caveats:
- The flag (plus the plugin URL) reaches the SW as a
self.__OS_SW_CONFIG = {…};preamble injected by the PHP endpoint that servessw.js. Flipping the filter changes the served bytes, which is exactly what the browser's SW update check watches — the change takes effect via a normal SW update on the next load, with no re-registration. - Classification logic lives in
src/pwa/sw-policy.ts(pure, unit-tested). Only200, non-redirected, same-origin responses withoutno-store/privateare cached;Rangerequests bypass the cache entirely. - Because
/wp-includes/assets are also referenced by front-end pages, a versioned wp-includes asset requested by the front end is cached and served under the same policy — same URL contract, shared benefit. - The bucket is capped (~500 entries, FIFO pruning) and dropped wholesale on every SW version bump, so it cannot grow without bound.
- Known trade-off: a core-path asset edited in place without a
verchange (rare outside development) stays pinned until the URL or the SW version changes. Development setups should keep the filter off or run withSCRIPT_DEBUG.
The cache is keyed by version (os-static-<v>,
os-runtime-<v>). The activate step deletes any cache whose
key doesn't carry the current version, so a deploy doesn't accumulate
stale buckets.
The shared asset cache removes the network from a window's assets. It can never touch the document: admin HTML carries nonces and per-request screen state, so it is uncacheable by construction — and it is the majority of a window open (measured at ~2.1 s of a ~3.8 s tab click on production hosting).
That wait does not have to happen after the click. The shell knows every URL a window can reach; the worker sees every iframe navigation. Connecting them lets a document be fetched while the user is still deciding, and the navigation that follows is answered from those bytes.
This is not "keep the window alive": nothing rendered is retained. No DOM, no live iframe, no memory beyond a response body dropped after 30 seconds. The page is still built fresh — just early.
Two triggers, one mechanism:
| Trigger | What happens |
|---|---|
| Hovering a submenu tab | The shell posts os-speculate-doc; the worker fetches that screen and holds it. |
| Booting the shell | The worker replays the previous session's restore list the moment the shell's own navigation arrives — before the server has finished building the shell document, so the two renders overlap instead of running back to back. The list is persisted from os-remember-session, which the session saver posts from both of its paths: the debounced save and the pagehide beacon. The unload path matters most — it carries the state at the moment the tab closed, which is exactly the "close it and come straight back" case this is for. |
Measured on production hosting: window-document TTFB 1,353 ms → ~1 ms, whole shell boot 6,492 ms → ~4,700 ms, a hovered tab click ~3,600 ms → ~1,000 ms.
-
Speculation never acts. A URL carrying
action,action2,_wpnonce,nonceordelete_allis refused, so a hover can never activate a plugin or empty a trash. Same-origin,/wp-admin/only, and theopenstation_chromelessflag must be present. - Held documents are single-use and expire after 30 s, capped at 6 with oldest-first eviction. A document is a moment-in-time view carrying nonces; replaying one twice would show a superseded page.
- The store holds the in-flight promise, not the settled response, so a navigation landing mid-fetch joins the request already running instead of starting a second one for the same screen.
-
Answering an iframe navigation is safe only because the response is never re-fetched. The worker otherwise refuses iframe navigations: re-fetching one makes Chrome send
Sec-Fetch-Dest: empty, the server's chromeless detection falls through, and the whole desktop renders inside a window. A speculative document is fetched once, ahead of time, from a URL carrying the chromeless flag — which the server reads before it consults Sec-Fetch. - The speculative fetch is a plain same-origin GET and does not forward
RefererorAccept-Languagefrom the navigation it stands in for. Admin screens do not branch on either (locale comes from the user's profile, server-side). - Gated on the hover-prewarm opt-in (
windowPrewarmEnabled), delivered to the worker aswindowPrewarmin theself.__OS_SW_CONFIGpreamble. Off by default, and checked on both sides: the shell skips thepostMessageentirely, and the worker ignores either message if the flag is off. A user who never touches the setting does not pay so much as a message.
Both messages are posted to navigator.serviceWorker.controller and are ignored unless the opt-in is on.
// Fetch this screen now; hold it for the navigation that follows.
{ type: 'os-speculate-doc', url: '<absolute same-origin chromeless URL>' }
// Remember these screens for the NEXT boot's replay.
{ type: 'os-remember-session', urls: [ '<absolute>', … ] }The shell-side helpers are speculateDocument( url ) and rememberRestoreTargets( urls ) in src/pwa/speculate.ts. Policy lives in src/pwa/sw-policy.ts (isSpeculatableDocument) and the store in src/pwa/speculative-store.ts; both are pure and unit-tested.
| Symbol | Role |
|---|---|
openstation_pwa_manifest_url() |
Absolute URL of the manifest endpoint. |
openstation_pwa_sw_url() |
Absolute URL of the service worker. |
openstation_pwa_sw_fallback_url() |
Extensionless fallback URL for the same SW script (/?openstation_sw=1) — for hosts whose web server 404s virtual .js paths. |
openstation_pwa_get_user_state( $user_id = 0 ) |
Read the per-user PWA UI state. |
openstation_pwa_update_user_state( array $patch, $user_id = 0 ) |
Merge a partial update into the state. |
openstation_pwa_admin_asset_cache_enabled() |
Whether the shared admin-asset cache is on (resolves the filter below). |
openstation_pwa_manifest (filter) |
Mutate manifest fields before encoding. |
openstation_pwa_admin_asset_cache (filter) |
Force or veto the shared admin-asset cache site-wide. Default: the requesting user's adminAssetCacheEnabled preference (off until they opt in). |
REST routes:
-
GET /wp-json/desktop-mode/v1/pwa-state→{ installHintDismissed, notificationsEnabled } -
POST /wp-json/desktop-mode/v1/pwa-state→ merge partial state. Body:{ installHintDismissed?: bool, notificationsEnabled?: bool }.
Both routes require a logged-in user with OpenStation enabled for
their account (openstation_rest_require_enabled() — 401 when logged
out, 403 when OpenStation is off) and a valid X-WP-Nonce.
// All exposed on `window.wp.os`:
wp.os.notify( {
title: 'Build complete',
body: '12 files updated.',
icon: '/favicon.png',
tag: 'my-plugin/build',
onClick: ( n ) => { window.focus(); n.close(); },
} );
const choice = await wp.os.pwa.promptInstall();
// 'accepted' | 'dismissed' | 'unavailable'
await wp.os.pwa.requestNotificationPermission();
// 'granted' | 'denied' | 'default' | 'unsupported'
const state = wp.os.pwa.getState();
// { installHintDismissed: boolean, notificationsEnabled: boolean }
const off = wp.os.pwa.subscribe( ( s ) => {
console.log( 'PWA state changed:', s );
} );
off();Activity-bus channels for plugins that want to mute / amplify / audit:
-
os/notification-requested— filterable; setcancel: trueto suppress the underlying notification. -
os/notification-shown— fire-and-forget; carriesfallback: 'toast' | nullso analytics can distinguish the permission-denied path from the real-notification path.
For Chromium / Edge to fire beforeinstallprompt, the site needs:
- HTTPS (or
localhost). - A valid manifest with a
name(orshort_name), an icon ≥192×192, and astart_url. - A registered service worker that responds to a
fetchforstart_url(we do — the SW's network-first handler covers it). - The user to have engaged with the page for a few seconds (browser heuristic).
Safari (macOS / iOS) doesn't fire beforeinstallprompt. Users add the
app via the "Share → Add to Home Screen" gesture, which picks up our
apple-mobile-web-app-* meta tags emitted from admin_head.
-
Phase 4 — Web Push. VAPID keypair, REST routes for subscribe /
unsubscribe, server-side
openstation_push( $user_id, $payload )PHP helper, SWpushpayload renderer wired to the existingnotify()intent shape. The v1wp.os.notifyAPI is the same call site — only the transport changes. - Per-site icon override hint. A small OpenStation Preferences tab entry that lets administrators upload a custom PWA icon without writing a filter.
This wiki is generated from the docs/ directory — edits made here are overwritten by the next sync.
To change a page, open a pull request against docs/.
Guides
- Development guide
- Releasing openstation
- Agents security model
- API Index
- Architecture
- Bridge protocol — wiring overview
- <os-*> component reference
- Native Desktop Host — Experimental
- Desktop themes
- Dock customization — two registries, one mental model
- The event-driven framework
- Files on the Desktop
- Folder sharing
- Getting Started
- Hooks Reference
- Icons
- JavaScript Reference
- The Living Tree — algorithm definition
- Mio
- Native Windows & Framework Interop
- Plugin compatibility layer
- Progressive Web App (PWA)
- Station Home
- Using openstation from your own plugin
Migration notes
- Migration: built-in activity channels move to the os/ namespace
- Migration: window, wallpaper and widget bundles load on demand
- Migration — the navigation model
- Migration: a native window's tabs move to the window chrome
All examples
- AI Agents — extend and invoke from a plugin
- wp.os.ai.ask() — programmatic AI Copilot
- Tune the AI model config
- Custom arrange-menu action
- Open a child window its owner can't cover
- Style a specific admin page inside the iframe
- Code Blue — register your plugin's log file
- Open a file in the Code editor (deep-link from any window)
- Connect to a window — title-bar button + iframe pub/sub
- Content changes — live-refresh every window listing your type
- Custom window chrome (Experimental)
- Register a custom unfocused-window effect
- Example: render a data table
- Real file storage — react to uploads, gate policy, share from PHP
- React to a window being set free onto the real desktop
- Cross-window devtools — instrumentation primitives
- Add a dock item with a badge
- Decorate the dock without forking the renderer
- Replace the dock rail entirely
- Retune the Drafts widget's AI writing assistant
- Gate OpenStation by role
- Iframe-initiated window opens
- Build a feed reader without the bookkeeping
- Inject data into openStationConfig
- Render a list without losing clicks — renderKeyedList()
- Example: layout primitives (body → panel → row → col)
- Use <os-*> components from a plugin that ships as a zip
- Restyle and drive Mio
- Add an action that works on a whole selection
- WP Explorer — custom post types and their folder
- Add an action button to a WP Explorer preview pane
- Example: native Posts window
- Example: native window with tabs
- Native windows
- Customize note → post conversion
- Send a notification
- OAuth relay — connect to an external service
- OS-file drop
- <os-flyout> — window-scoped sliding card
- Plugins window — extras
- Track who's around — wp.os.presence
- Example: progress bar
- PWA install — surface your own button
- React to window events
- Example: extend the Trash
- Register a slash-command
- Register a desktop theme from a plugin
- Register a game
- Example: register a desktop icon (Jorvy)
- Register a wallpaper
- Register a widget
- Related entities — extend the title bar's "Related" menu
- The native-window render ctx
- Programmatic folder sharing
- Share state across multi-bundle plugins — wp.os.createSharedStore()
- Example: loading spinner
- Add an opt-in card to Station Home
- Accept drops on your desktop icon
- Give a tile two icons, one per state
- Add a row to a window's ⋯ menu
- Example: window activity & the status ring
- Window controls
- Subscribe to window lifecycle events
- Window links — relate windows and restyle the ties (Experimental)
- Window loading state — spinner overlay & ready signal
- Show a banner at the top of a window
- Pulse a window's icon — Window.requestAttention()
- Register a custom window reveal
- Window slots
- Window themes
- Native window with bundle-bound config