SAPL Policy Enforcement Point (PEP) integration for Tornado
Project description
sapl-tornado
Policy-based authorization for Tornado. 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 handler methods 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.
class PatientHandler(tornado.web.RequestHandler):
@pre_enforce(action="read", resource="patient")
async def get(self, patient_id):
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 handler 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-tornado
import tornado.ioloop
import tornado.web
from sapl_tornado.config import SaplConfig
from sapl_tornado.dependencies import configure_sapl, cleanup_sapl
configure_sapl(SaplConfig(base_url="https://localhost:8443"))
app = tornado.web.Application([...])
app.listen(8888)
tornado.ioloop.IOLoop.current().start()
For setup instructions, configuration options, the constraint handler reference, and the full API, see the Tornado documentation.
Links
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
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 sapl_tornado-4.0.1.tar.gz.
File metadata
- Download URL: sapl_tornado-4.0.1.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2089d071320d86dbfa81fc50515f0dc8b2dfc5899991ff2caf22d4bd1b3c28f4
|
|
| MD5 |
b73640807b3cff248cb5f2fcf326ed18
|
|
| BLAKE2b-256 |
9bcc7c85a840796039017510035cdc0a88417896349ea051ce085a78c9810509
|
File details
Details for the file sapl_tornado-4.0.1-py3-none-any.whl.
File metadata
- Download URL: sapl_tornado-4.0.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
001d85deeb5437e9b666249a1b88fafb4f0f372bcf6c0d4912f399f0845e93b1
|
|
| MD5 |
9f55768aef2d3498b496832bc49fb631
|
|
| BLAKE2b-256 |
2dd7fc009baa4e25d8a4b0791f3c6b7370ea2bd1f702884a3d8e6f832eec157a
|