jupyterlab-rtclauncher
A small JupyterLab 4 extension for the NASA Research Platform. It adds Launcher tiles — under a Collaboration section — that start, join, and stop the project's shared real-time-collaboration (RTC) server.
Without it, members reach the shared server through JupyterHub's admin UI
(/hub/admin), which is why they were granted the broad-looking admin-ui
scope. This extension replaces that route so the scope can be dropped.
How it works
The tiles are state-driven: the Launcher shows only the actions that are valid right now, and repaints itself as the shared server's state changes.
server down │ [Start abtesting Collaboration] ──▶ new tab: /hub/spawn/abtesting-collab
─────────────┼──────────────────────────────────────────────────────────────────────────────
spawning │ [Starting abtesting Collaboration…] ──▶ new tab: hub progress page
─────────────┼──────────────────────────────────────────────────────────────────────────────
server up │ [Join abtesting Collaboration] ──▶ new tab: /user/abtesting-collab/lab
│ [Stop abtesting Collaboration] ──▶ confirm ──▶ DELETE server
─────────────┼──────────────────────────────────────────────────────────────────────────────
stopping │ [Stopping abtesting Collaboration…] ──▶ (re-checks status)
- On activation the frontend calls
GET /jupyterlab-rtclauncher/config, which reads the spawn-time environment and answers with the project and shared account name. - It then polls
GET /jupyterlab-rtclauncher/statusto track whether the shared server is running — every 15s when settled, every 3s while a spawn or stop is in flight, and immediately whenever the tab regains focus. - Start opens
<hubPrefix>/spawn/<project>-collab, Join opens/user/<project>-collab/lab, both in a new browser tab. Stop posts to/jupyterlab-rtclauncher/stopafter a confirmation dialog, which proxiesDELETE /hub/api/users/<project>-collab/server.
All three commands also live permanently in the command palette, where they dim
via isEnabled instead of appearing and disappearing.
Why separate tiles, and why they are swapped rather than relabelled
A single toggling tile hid Join entirely — a second member had no way in except to stop the session — and it put a destructive action on the same pixel as a benign one.
Three permanently-visible tiles were the alternative, but a Launcher tile has no
disabled state to fall back on: Card in @jupyterlab/launcher never consults
commands.isEnabled, so a "greyed out" tile is still fully clickable. Showing
only the valid subset is the only honest option there.
That subset is applied by adding and disposing launcher items, not by
changing a command's label. app.commands.notifyCommandChanged() does nothing
for the Launcher: it is a VDomRenderer bound to LauncherModel.stateChanged
and ignores the command registry's commandChanged signal, so a state-dependent
label renders once and then goes stale until a browser reload. launcher.add()
and disposing its return value are what emit stateChanged.
Why a new browser tab
The shared server is a different JupyterHub user server on its own URL prefix, so
entering it is a full-page navigation. Done in the current tab it evicts the
user's own running notebook from their only window. window.open must be called
synchronously from the click handler or pop-up blockers kill it; a blocked
pop-up is reported with the address so the user can open it manually.
Why stopping matters
The shared server bills the project pool for as long as it runs. JupyterHub's
idle culler reaps it after 1h idle, but an open browser tab keeps refreshing
last_activity and can defeat that — and since the admin-ui scope was dropped,
members have no other way to shut it down. The Stop action closes that gap.
Note the server's 10Gi EBS home persists whether it runs or not; stopping releases the compute, which is the expensive part.
Why the stop goes through the server extension
The hub's _xsrf cookie is scoped to Path=/hub/, so JavaScript served from
/user/<name>/lab cannot read it — and JupyterHub 5 requires that XSRF token for
cookie-authenticated, non-GET API calls. The stop therefore proxies through this
extension's server handler, which authenticates with the notebook server's own
JUPYTERHUB_API_TOKEN.
That token only carries admin:servers!user=<project>-collab when the user
genuinely holds it: JupyterHub resolves Spawner.server_token_scopes against the
user's own scopes and drops the rest. A user outside the project's Keycloak group
gets a token without it and the hub answers 403. The extension grants nothing.
Requires rp-deployment to request that scope via Spawner.server_token_scopes
(terraform/config/20-nojovyan.py). Without it, can_control is false and the
tile degrades to start-only.
Which projects get a tile
Any project with collaboration enabled — there is no hardcoded project list and no allowlist to configure here.
The enablement signal is the RP_COLLAB_ACCOUNT environment variable:
- A platform admin flips Real-Time Collaboration → Enable collaboration for a
project in the RPAdmin console, which provisions its login-less
<key>-collabprincipal. - RPAdmin's
GET /api/me/spawn-identity— already called on every spawn — now returnscollab_account: "<key>-collab"for that project, ornull. - rp-deployment
terraform/config/20-nojovyan.pyforwards a non-null value to the notebook asRP_COLLAB_ACCOUNT. - This extension shows the tile only when that variable is present.
So enabling a new project is a toggle in RPAdmin — no change to this extension,
the spawner, or the image. OSSProject supplies the project key for the tile's
label; the account name comes from RP_COLLAB_ACCOUNT so the naming convention
lives only in RPAdmin.
Operational note. JupyterHub access is granted separately, by the
RP_COLLAB_PROJECT_KEYSallowlist in rp-deployment (the ISSO widening gate, feature 083). A project enabled in RPAdmin but missing from that allowlist will show a tile whose spawn the hub refuses — enabling collaboration is a two-step operation by design, and the two must be kept in sync.
The tile grants nothing
It is a link. Starting the shared server requires admin:servers!user=<acct>
and entering it requires access:servers!user=<acct>; both are granted to the
project's Keycloak /smdc-oss/<project> group by rp-deployment
terraform/config/41-collab-accounts.py, and auto-revoke when Keycloak drops
the membership. A user without them who follows the link is refused by the hub.
The tile hides itself when RP_COLLAB_ACCOUNT is unset (collaboration is off for
the project), or when the current server is the collaboration server
(JUPYTERHUB_USER ends in -collab).
Install
pip install jupyterlab-rtclauncher
Both the frontend and the server extension are enabled automatically. To verify:
jupyter labextension list # jupyterlab-rtclauncher ... enabled OK
jupyter server extension list
Development
pip install -e ".[test]"
jupyter labextension develop . --overwrite
jlpm build
Run the tests:
python -m pytest tests/ # server extension
jlpm test # frontend
Rebuild after a source change with jlpm build, or run jlpm watch in one
terminal and jupyter lab in another.
Uninstall
pip uninstall jupyterlab-rtclauncher
Related
- Feature 083 — RTC collaboration accounts (
rpadmin/specs/083-rtc-collab-accounts/) jupyterlab-resource-tracker— the usage & cost extension shipped in the same image
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupyterlab_rtclauncher-0.3.0.tar.gz.
File metadata
- Download URL: jupyterlab_rtclauncher-0.3.0.tar.gz
- Upload date:
- Size: 157.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d17dd3a8b576f0834968468bd3f976190b65eccab270de61e6b86e0156fdb452
|
|
| MD5 |
12984bca94f4c8d3d2572b3bbea0a741
|
|
| BLAKE2b-256 |
b862fb7d42e79c4481673b48feabe44ba034dd56fac3f2c5feb6f5954e5f0b1f
|
File details
Details for the file jupyterlab_rtclauncher-0.3.0-py3-none-any.whl.
File metadata
- Download URL: jupyterlab_rtclauncher-0.3.0-py3-none-any.whl
- Upload date:
- Size: 42.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a2ac0dd6b294818e03969f4673c941eab9b1de3e0e0463ed726a69c248f0a60
|
|
| MD5 |
98314fb8eda389cdcedca89339c3dfff
|
|
| BLAKE2b-256 |
134d5c4afe8b949b75a1c4d319f1333089361ffb43a40f4da3b6311ed6023732
|