Skip to main content

SAPL Policy Enforcement Point (PEP) integration for Django

Project description

sapl-django

Policy-based authorization for Django. 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 views 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.

@pre_enforce(action="read", resource="patient")
async def get_patient(request, patient_id):
    return JsonResponse({"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 view runs. If not, PermissionDenied is raised. 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 streaming views, 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 via Django app configuration.

Getting Started

pip install sapl-django
INSTALLED_APPS = [
    "sapl_django",
    ...
]

MIDDLEWARE = [
    "sapl_django.middleware.SaplRequestMiddleware",
    ...
]

SAPL_CONFIG = {
    "base_url": "https://localhost:8443",
}

For setup instructions, configuration options, the constraint handler reference, and the full API, see the Django 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_django-4.0.1.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

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

sapl_django-4.0.1-py3-none-any.whl (13.4 kB view details)

Uploaded Python 3

File details

Details for the file sapl_django-4.0.1.tar.gz.

File metadata

  • Download URL: sapl_django-4.0.1.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sapl_django-4.0.1.tar.gz
Algorithm Hash digest
SHA256 cd989181b451376231642990b43fc0cce7e8c2631658522eaca4bcd0613450ea
MD5 a7a8f9d68aa0f70d9bd00916719a3355
BLAKE2b-256 be518ff7b5a16569870f1873980d18813622af163c3b08be10e07c8701b3c04a

See more details on using hashes here.

File details

Details for the file sapl_django-4.0.1-py3-none-any.whl.

File metadata

  • Download URL: sapl_django-4.0.1-py3-none-any.whl
  • Upload date:
  • Size: 13.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for sapl_django-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 49fdc398b1acd40a0a9f92fc4f46cab506bec191b8be3ac3d3ca8f46051597aa
MD5 41e2f0a0e643f2f4b778caeae5bc50ad
BLAKE2b-256 0723b223ab55fae225e68f522e346d3a9f65db928dbe540e6d98de3b8d640868

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