Skip to main content

PyPI Python License

evoid-auth

Bring-your-own-provider authentication — Intent Handler system

Quick StartIntent HandlerConfigAPI


Quick Start

uv add evoid-auth

Method 1: Intent Handler (Recommended)

from evoid_auth import register_provider, register_handlers
from evoid.core.extend import before

# Register your auth logic
async def my_auth(token: str) -> dict:
    user = await db.find_by_token(token)
    if not user:
        raise ValueError("Invalid token")
    return {"user": user.name, "role": user.role}

register_provider("my_auth", my_auth)

# Register auth as Intent handlers
register_handlers()

# Wire to pipeline
before("GET:/users", "authenticate")
before("POST:/admin", "authenticate")

Method 2: Direct API

from evoid_auth import authenticate, authorize, register_provider

register_provider("jwt", jwt_auth_fn)
# authenticate and authorize are pipeline processors

Intent Handler

evoid-auth registers these Intent handlers:

Intent Handler Description
auth.authenticate authenticate Extract token, call provider, set user in ctx
auth.authorize authorize Check role against requirement

How it works

  1. register_handlers() registers auth Intents as pipeline processors
  2. authenticate extracts token from request headers/metadata
  3. Calls your registered provider function
  4. Writes user, role, auth_method to ctx.state
  5. authorize checks ctx.state["role"] against required roles

Token Sources

The authenticate processor checks these in order:

  1. metadata["token"] — direct field
  2. Authorization: Bearer <token> header
  3. Authorization: Token <token> header
  4. X-API-Key header
  5. Query parameter fallback

Role Hierarchy

admin (4) > editor (3) > viewer (2) > guest (1)

A higher role satisfies any lower requirement.

from evoid.core.extend import before

# Requires admin role
before("DELETE:/users", "authenticate", required_role="admin")

# Requires viewer or higher
before("GET:/reports", "authenticate", required_roles=["viewer", "editor", "admin"])

Configuration

TOML

[engines]
auth = "auth"

Python

from evoid_auth import register_provider

# Register multiple providers
register_provider("jwt", jwt_auth_fn)
register_provider("api_key", api_key_auth_fn)

# Use specific provider in pipeline
before("GET:/users", "authenticate", provider="jwt")

API

register_handlers()

Register auth as Intent handlers. No parameters needed.

Provider Registration

Function Signature Description
register_provider register_provider(name, fn) Register an auth provider
resolve_provider resolve_provider(name) Get provider by name
list_providers list_providers() List all registered names

Processors

Processor Description
authenticate Extracts token, calls provider, sets ctx.state
authorize Checks role against requirement

Provider Signature

async def my_provider(token: str) -> dict:
    """Must return dict with at least 'role' key."""
    return {"user": "alice", "role": "admin"}

DI Integration

All plugins register with evoid-di for automatic service discovery and fault tolerance.

from evoid_di import di

# Resolve with fallback
storage = di.resolve_with_fallback("storage.postgresql")
# Tries: postgresql → sqlite → redis → cluster peers → None

Dependencies

  • evoid>=0.4.0

Optional Dependencies

  • pyjwt>=2.8.0 — for JWT decoding in your provider

Links

License

MIT

Release files for evoid-auth 0.1.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for evoid-auth 0.1.2
File Interpreter ABI Platform
evoid_auth-0.1.2-py3-none-any.whl Python 3 none any Details

Release files / evoid_auth-0.1.2-py3-none-any.whl

Download URL evoid_auth-0.1.2-py3-none-any.whl
Size 8.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
00aaa9d88024906c8e4a1b0b2dc33bed43da44a16e868dd8a3734b8539399867
BLAKE2b-256 checksum
How to use checksums
a159d346ccd774df97e3b10cf5be2cde3677cdca94251020aebb3272d5741225
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

0.2.0

1 release file

This release

0.1.2 This release

1 release file

0.1.1

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page