Skip to main content

SAPL Policy Enforcement Point (PEP) integration for FastAPI

Project description

sapl-fastapi

Policy-based authorization for FastAPI. Write access control rules as external SAPL policy files and enforce them at runtime through decorators like @pre_enforce and @post_enforce. Policies can be updated without code changes or redeployment.

How It Works

Your application decorates endpoints with enforcement decorators. SAPL intercepts the call, sends an authorization subscription to the Policy Decision Point (PDP), and enforces the decision, including any obligations or advice the policy attaches.

@app.get("/patient/{patient_id}")
@pre_enforce(action="read", resource="patient")
async def get_patient(request: Request, patient_id: str):
    return {"id": patient_id, "name": "Jane Doe", "ssn": "123-45-6789"}
policy "permit doctors to read patient data"
permit
  action == "read"
where
  "DOCTOR" in subject.roles;

If the PDP permits, the endpoint runs. If not, HTTP 403 is returned. If the decision carries obligations (like access logging or field redaction), they are enforced automatically through registered constraint handlers.

What You Get

SAPL goes beyond simple permit/deny. Decisions can carry obligations that must be fulfilled, advice that should be attempted, and resource transformations that modify return values before they reach the caller. The library handles all of this transparently.

For SSE endpoints, streaming decorators (@enforce_till_denied, @enforce_drop_while_denied, @enforce_recoverable_if_denied) maintain a live connection to the PDP, so access rights update in real time as policies, attributes, or the environment change. Built-in constraint handlers cover JSON field redaction and collection filtering. Writing custom handlers follows a simple registration pattern with register_constraint_handler.

Getting Started

pip install sapl-fastapi
from contextlib import asynccontextmanager
from fastapi import FastAPI
from sapl_fastapi.config import SaplConfig
from sapl_fastapi.dependencies import configure_sapl, cleanup_sapl

@asynccontextmanager
async def lifespan(app: FastAPI):
    configure_sapl(SaplConfig(base_url="https://localhost:8443"))
    yield
    await cleanup_sapl()

app = FastAPI(lifespan=lifespan)

For setup instructions, configuration options, the constraint handler reference, and the full API, see the FastAPI documentation.

Links

License

Apache-2.0

Project details


Download files

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

Source Distribution

sapl_fastapi-4.0.0rc1.tar.gz (13.4 kB view details)

Uploaded Source

Built Distribution

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

sapl_fastapi-4.0.0rc1-py3-none-any.whl (8.6 kB view details)

Uploaded Python 3

File details

Details for the file sapl_fastapi-4.0.0rc1.tar.gz.

File metadata

  • Download URL: sapl_fastapi-4.0.0rc1.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sapl_fastapi-4.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 a4eea09468ac1d72b253b9c36386c9292f57683d4d365c5e21aeaad7defaab21
MD5 279ab705933de000ebb09fea3ee32e27
BLAKE2b-256 4a84a8558bb07230f04ba7363f727cb58b33d2a0ffddfdd13a93b572b800c70a

See more details on using hashes here.

File details

Details for the file sapl_fastapi-4.0.0rc1-py3-none-any.whl.

File metadata

File hashes

Hashes for sapl_fastapi-4.0.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 388443448dc97d84188558a60e7205e6dc6c8b0f6b1bb29a9583057507136751
MD5 5199988415f0ac474611ac96b853f590
BLAKE2b-256 c400aba1db78454ca5faa95c7391a6b386bb7af00105ee1afb7c7853a1bc2ff6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page