Skip to main content

shinyhub-identity

Read the signed identity ShinyHub forwards to your app, in one call. No per-app JWT plumbing.

ShinyHub injects a short-lived, per-app HS256 JWT (X-Shinyhub-Identity-Token) into every request it proxies, and hands your app its verification key via SHINYHUB_IDENTITY_KEY and SHINYHUB_APP_SLUG. This package verifies that token and returns the identity.

pip install shinyhub-identity
# or: uv add shinyhub-identity

Use it

from shinyhub_identity.shiny import session_identity

def server(input, output, session):
    user = session_identity(session)   # None when anonymous
    if user is None:
        ...  # logged-out visitor
    elif "platform-admins" in user.groups:
        ...  # gate admin features on the VERIFIED groups

session_identity(session) verifies the session's handshake token once and returns that answer for the session's life. That is a correctness property, not a cache: ShinyHub binds identity at the WebSocket handshake, and the token it forwarded there expires five minutes later, so re-verifying those headers from a reactive starts failing part-way through a long session even though nothing about the user changed.

Outside Shiny (Streamlit, Dash, FastAPI, ...) use the framework-free primitive, which takes any header mapping - a Starlette/Flask request's headers, or a plain dict - and verifies per request:

from shinyhub_identity import current_user

user = current_user(request.headers)   # None when anonymous

Both return an Identity or None. Identity fields:

Field Type Value
user_id str Decimal user ID
username str Username
role str Platform role: viewer, developer, operator, or admin
groups tuple[str, ...] Verified group names
groups_truncated bool True when the group list was capped at 100
email str "" unless the deployment's IdP asserts one
name str Display name; "" unless the IdP asserts one
claims Mapping The raw verified JWT claims

Key and slug default to the SHINYHUB_IDENTITY_KEY/SHINYHUB_APP_SLUG environment variables ShinyHub injects; pass key=/slug= explicitly for tests.

None means anonymous, and nothing else

A genuine anonymous visitor sends no token at all, so that is the only case that returns None. A token that is present but fails verification is a broken deployment - missing or wrong SHINYHUB_IDENTITY_KEY, audience or issuer mismatch, an expired token, clock skew - and raises IdentityError instead. An app that renders that as "logged out" hides the outage behind an empty dashboard, which is exactly what this contract prevents.

from shinyhub_identity import IdentityError

try:
    user = session_identity(session)
except IdentityError as e:
    log.error("identity broken: %s", e)     # e.reason, e.detail
    raise

IdentityError.reason is a stable classification (the R helper uses the same vocabulary, and a cross-language conformance test pins them together):

reason Meaning
no_token nothing to verify (verify_token only; current_user returns None)
no_key SHINYHUB_IDENTITY_KEY unset or empty
bad_key SHINYHUB_IDENTITY_KEY is not valid hex
no_slug SHINYHUB_APP_SLUG unset or empty
bad_signature signed with a different key
expired past its exp (tokens live 5 minutes)
wrong_audience minted for a different app slug
wrong_issuer iss is not shinyhub
malformed unparseable, or missing the required exp claim

IdentityError.detail carries the human-readable specifics for a log line. Letting the error propagate is a reasonable default: the app is not going to render anything trustworthy anyway.

Local development

With no ShinyHub proxy in front there is no token, so the identity is always None. Instead of writing a per-app mock, set:

export SHINYHUB_IDENTITY_DEV_USER=devlin
export SHINYHUB_IDENTITY_DEV_GROUPS="team-a, team-b"   # optional
export SHINYHUB_IDENTITY_DEV_EMAIL=devlin@example.com  # optional
export SHINYHUB_IDENTITY_DEV_NAME="Devlin Example"     # optional
export SHINYHUB_IDENTITY_DEV_ROLE=admin                # optional, default viewer

Both helpers then return a synthetic Identity marked with claims == {"dev": True, ...}. This can never activate under a real deployment: it only applies when no token arrived and SHINYHUB_IDENTITY_KEY is absent, and ShinyHub always injects that key into app processes.

Compatibility

Requires Python 3.10+.

This helper is versioned independently of the ShinyHub server: its version tracks changes to this package's API, not the server's release train. Any release verifies tokens from any ShinyHub v0.8.6 or later (the release that introduced identity forwarding); the token contract is stable across server releases. Claims a later server added (email, name) are simply "" when an older server minted the token.

Upgrading from 0.2: a rejected token now raises IdentityError instead of returning None with a warning, so code that treated None as "not logged in" should either let the error propagate or catch it explicitly. Identity is keyword-only now, and Shiny apps should call session_identity(session) rather than current_user(session.http_conn.headers).

Why verify, not just read the plain headers?

ShinyHub also forwards convenience plain headers (X-Shinyhub-User, -Role, -Groups, ...) and strips any client-supplied ones. But app processes listen on host-local ports, so a co-located process can bypass the proxy and forge plain headers. Anything that gates access must verify the token - which is exactly what this package does. See ShinyHub's docs/identity.md for the full trust model.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shinyhub_identity-0.3.0.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

shinyhub_identity-0.3.0-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file shinyhub_identity-0.3.0.tar.gz.

File metadata

  • Download URL: shinyhub_identity-0.3.0.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for shinyhub_identity-0.3.0.tar.gz
Algorithm Hash digest
SHA256 056059901d412073a7e82e5a1c4d26a345e6ea912bc5110422673808a0e3ccd2
MD5 e2de34e7b49e64edff5d31c2e5555b09
BLAKE2b-256 f9ab92575a8cc3be62ea0873b5652f05c8602263e78a24b546320f65c035fa69

See more details on using hashes here.

Provenance

The following attestation bundles were made for shinyhub_identity-0.3.0.tar.gz:

Publisher: release.yml on rvben/shinyhub

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file shinyhub_identity-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for shinyhub_identity-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 87f19080ed3734dcbf31c16e4f3ec145e25842031625027f99e761a3f847581f
MD5 e5775205412bf10f11b73199a636abde
BLAKE2b-256 c972776b8e0016d36d467617a114f7cc6e951993f9c4b37f54df544ea7628203

See more details on using hashes here.

Provenance

The following attestation bundles were made for shinyhub_identity-0.3.0-py3-none-any.whl:

Publisher: release.yml on rvben/shinyhub

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.4.0

2 files

This release

0.3.0 This release

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page