A robust bearer token authentication and authorization middleware for FastAPI applications.
Project description
FastAPI Bearer Authorization
A robust bearer token authentication and authorization middleware for FastAPI applications.
[!WARNING]
This project is in early development and may not be suitable for production use.
Features
- Easy-to-use bearer token authentication
- Fine-grained permission-based authorization using unique operation IDs
- HTTP Verb based authorization, using the
HTTP_VERB:<VERB_NAME>
format - Configurable via environment variables or direct configuration
- Secure token generation and validation
Installation
uv add fastapi-bearer-authzn
Quick Start
from fastapi import FastAPI, Depends
from fastapi_bearer_authzn import BearerAuthDependency
# Initialize the auth dependency, with the config coming from an environment variable
auth = BearerAuthDependency(from_env=True)
app = FastAPI()
@app.get("/protected")
def protected_route(user_id: str = Depends(auth)):
return {"message": "Access granted", "user_id": user_id}
Configuration
Generate a configuration file using the included CLI:
uvx fastapi-bearer-authzn bootstrap_config -o env -n 1 # for easy environment variable usage
FASTAPI_BEARER_AUTHZN_CONFIG='{"224848fe-45df-4173-bc8c-535442611311":{"hashed_token":"ec274bd79a868d17884897455fbbb29c65f3ca076a58c3de8b2121f407a5184518013c7b38cebbffe00c4aabfa03d3dbbbc5df1ddbd206aa94936930c14e3706","user_identifier":"user_a3e7a662-764d-4afe-b84d-98bc10efccbe@example.com","permissions":["*"]}}'
Generated tokens:
224848fe-45df-4173-bc8c-535442611311: fastapi_bearer_authzn_224848fe-45df-4173-bc8c-535442611311_JZy73nSZdvtLYIO1C0o1Rv3dyemqpEeG0eGE_AIqwxs
Usage
- Initialize the
BearerAuthDependency
with your configuration. - Use the dependency in your FastAPI route decorators.
- The middleware will handle authentication and authorization based on the operation IDs and HTTP verbs.
Operation ID-based and HTTP Verb-based Authorization
This module uses FastAPI's operation IDs and HTTP verbs for fine-grained authorization. By default, FastAPI generates an operation ID for each route, which can be inspected in the OpenAPI JSON schema. You can also override these with custom operation IDs.
Given this FastAPI app:
@app.get("/resource1")
def get_resource_1(user_id: str = Depends(auth)):
# Uses FastAPI's default operation ID, obtain it from the OpenAPI JSON schema, and use it in the config
return {"message": "Access to resource 1 granted"}
@app.post("/resource2", operation_id="create_resource_2")
def create_resource_2(user_id: str = Depends(auth)):
# Even better: Use a custom operation ID, then simply reference "create_resource_2" in the config to grant access to this route
return {"message": "Resource 2 created"}
An exemplary config may look as follows:
{
"e2403b7b-822b-4a0c-8586-85adb672169c": {
"hashed_token": "e725c175f719caae1dcc0f0421663402c90f551790f869fcef786fb217a8084e20dfbef7ac47309926919a659da9db4f0cb1062dec578bc907bc18991bbb390f",
"user_identifier": "Used by microservice X", # arbitrary string, for you to identify the user/service
"permissions": [
"HTTP_VERB:GET",
"create_resource_2"
]
}
}
This config grants access to all paths via GET
and only to the create_resource_2
path via POST
.
Testing
Run the tests using pytest
:
uv run pytest tests -vv
License
This project is licensed under the MIT License.
Publish to PyPI
For the time being, you can publish the package to pypi manually.
uv build
uvx twine upload dist/* # or `uvx twine upload --repository testpypi dist/*` for testpypi
You will be prompted for a PyPI API token.
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
Built Distribution
File details
Details for the file fastapi_bearer_authzn-0.3.0.tar.gz
.
File metadata
- Download URL: fastapi_bearer_authzn-0.3.0.tar.gz
- Upload date:
- Size: 24.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 617f5b198d52fab0beba320e07fab176fd1f81b3d1de581cd4242d5e9032164b |
|
MD5 | 4dba087b17785e0f281ea0d59e3ce368 |
|
BLAKE2b-256 | 4f7f7daa68f3b147c6f226877449a3527ecc10d5c91133879741890eb015e901 |
File details
Details for the file fastapi_bearer_authzn-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: fastapi_bearer_authzn-0.3.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3227af0588a98d23b440fdfaf5636b18a54f26fe76cb6095e8833b2a7ade026b |
|
MD5 | b6d2cf4d12ee6cf06027181668036316 |
|
BLAKE2b-256 | 964b5aa192a58e42575eefba96213b2571faa6e332580602bbf7b032fb53ddc0 |