Shared JWT + Google OAuth auth middleware for pal-e platform services
Project description
pal-e-auth
Shared JWT + Google OAuth auth middleware for pal-e platform services.
Install
pip install pal-e-auth-ldraney
Quick Start
from fastapi import FastAPI, Depends
from pal_e_auth import AuthConfig, auth_router, get_current_user, require_role, User
app = FastAPI()
config = AuthConfig(
secret_key="your-jwt-secret",
google_client_id="your-google-client-id",
google_client_secret="your-google-client-secret",
)
app.state.auth_config = config
app.include_router(auth_router(config))
@app.get("/protected")
async def protected(user: User = Depends(get_current_user)):
return {"email": user.email}
@app.get("/admin-only")
async def admin_only(user: User = Depends(require_role("admin"))):
return {"email": user.email}
Auth Flow
- User visits
/auth/google→ redirected to Google consent screen - Google redirects back to
/auth/callbackwith auth code - Server exchanges code for ID token, extracts user info
- JWT created and set as
access_tokencookie - Subsequent requests authenticated via cookie or
Authorization: Bearerheader
Dependencies
FastAPI apps provide auth by reading app.state.auth_config:
get_current_user— requires valid JWT, returnsUseroptional_user— returnsUser | Nonerequire_role("admin", "coach")— requires valid JWT + matching role
Roles
admin, coach, parent, viewer (default)
Development
poetry install
poetry run pytest
poetry run ruff check .
poetry run ruff format --check .
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 pal_e_auth_ldraney-0.1.0.tar.gz.
File metadata
- Download URL: pal_e_auth_ldraney-0.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0014365418b0db7010d89dbfc658e3ed2a9369bace04eff4e718992b4e0d1aa
|
|
| MD5 |
33c940e9f7cd1212c86c7a9e27a4c313
|
|
| BLAKE2b-256 |
d27b18419d9bd69aff587a352e9e21e0fa92ff913346f17b8573a80f44435d71
|
File details
Details for the file pal_e_auth_ldraney-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pal_e_auth_ldraney-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d07afe731aa8703edd839ccd4e1247c8f6d631ac650b2883266592f15767276a
|
|
| MD5 |
6a8ae5832b204d9dcae12d9a229373f3
|
|
| BLAKE2b-256 |
8154c63eb58ae5e33de274c89ecf56b2c7756bc58a3d9831699097dd6639154b
|