authorization SDK used to build protected Web APIs
Project description
web-auth-sdk
The web-auth-sdk is an authorization SDK used to build protected Web APIs. It provides the ability to intercept incoming requests and inject custom logic for authentication and authorization before the request reaches the view function.
Clients should authenticate by passing credentials or authorizations. For example, a JWT key can be used as follows:
curl 'http://api.example.com/resources' -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9'
curl 'http://api.example.com/resources?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9'
curl 'http://api.example.com/resources' --cookie 'access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9'
Requirements
- Python 3.8+
- FastAPI 0.80+ (recommended)
- Flask 2.0+ (optional)
Installation
make build
pip install dist/web_auth_sdk-0.1.0.tar.gz
Permission Representation
-
Permission list, located at
usr/etc/permissions.json
file:[ {'bitmask_idx': 0, 'codename': 'add_order', 'name': 'Can add order', 'service': 'order'}, {'bitmask_idx': 1, 'codename': 'change_order', 'name': 'Can change order', 'service': 'order'}, {'bitmask_idx': 2, 'codename': 'delete_order', 'name': 'Can delete order', 'service': 'order'}, {'bitmask_idx': 3, 'codename': 'view_order', 'name': 'Can view order', 'service': 'order'}, {'bitmask_idx': 4, 'codename': 'add_tickettype', 'name': 'Can add ticket type', 'service': 'order'}, {'bitmask_idx': 5, 'codename': 'change_tickettype', 'name': 'Can change ticket type', 'service': 'order'}, {'bitmask_idx': 6, 'codename': 'view_tickettype', 'name': 'Can view ticket type', 'service': 'order'}, {'bitmask_idx': 7, 'codename': 'delete_tickettype', 'name': 'Can delete ticket type', 'service': 'order'}, ]
-
How to encode permissions?
Permissions are encoded using a bitmask of length n that is a multiple of 24. Each permission is represented by a 1 on the corresponding
bitmask_idx
-th position in the bitmask, indicating that the permission is granted. -
Base64-encoded the bitmask
-
Encoded/Decoded JWT
Development
-
FastAPI
import web_auth web_auth.configure() @fastapi.get('/tickets') @web_auth.permissions('view_ticket') # Iterable[str] are acceptable async def list_tickets() -> list[object]: pass
-
Flask
import web_auth from web_auth.bridges.flask import FlaskBridge web_auth.configure( bridge_class=FlaskBridge, ) @blueprint.route('/tickets', methods=['GET']) @web_auth.permissions('view_ticket') def list_tickets() -> list[object]: pass
-
Use instanced context
import web_auth from web_auth.bridges.fastapi import FastapiBridge context = web_auth.build_context( bridge_class=FastapiBridge, storage_class=web_auth.Config.DEFAULT_STORAGE_CLASS, storage_params=web_auth.Config.DEFAULT_STORAGE_PARAMS, ) @fastapi.get('/tickets') @context('view_ticket') async def list_tickets() -> list[object]: pass
-
Implement access control & retrieve the consumer info
import fastapi import web_auth from web_auth.bridges.fastapi import FastapiBridge context = web_auth.build_context( bridge_class=FastapiBridge, storage_class=web_auth.JsonFileStorage, storage_params=web_auth.Config.DEFAULT_STORAGE_PARAMS, ) @fastapi.get('/profile') def get_profile(request: fastapi.Request, consumer: web_auth.Consumer) -> web_auth.Consumer: # raise `web_auth.AuthException` if the consumer does not have permission context.bridge.access_control( request=request, permissions={'view_ticket'}, aggregation_type=web_auth.PermissionAggregationTypeEnum.ALL, ) return consumer
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
File details
Details for the file web_auth_sdk-0.1.0.tar.gz
.
File metadata
- Download URL: web_auth_sdk-0.1.0.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b246f727a3381692875db47e26927eb2fb81f0d453411a9de4fdec8876da416 |
|
MD5 | d852142e6cb6b73c5c87db3cc116c117 |
|
BLAKE2b-256 | e526de2e470fa29131d3b1440b5e3c9a48666f6d2fe4244795f9edf630509a4f |
File details
Details for the file web_auth_sdk-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: web_auth_sdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4df19bb45ef647ed800b96081bd4aa4a5cf70323416d72a73f2c145e705c7e4 |
|
MD5 | 94011042fe6ddd2224c34e32cc819a6b |
|
BLAKE2b-256 | aedc4416894d2c470493bd9b91082f2252eabe3c7b6463208313e247efcc7ca9 |