Gitea OAuth 2.0 / OAuth 2.1 / OIDC 1.0 identity provider implementations for Swarmauri
Project description
Swarmauri Auth IDP Gitea
Gitea OAuth 2.0, OAuth 2.1, and OIDC 1.0 login and app-client flows packaged for the Swarmauri ecosystem.
Features
- PKCE-enabled authorization code flows with signed state payloads and resilient retries.
- Automatic profile enrichment using the Gitea REST API with email fallbacks.
- Optional private-key JWT client authentication for high-assurance machine-to-machine use.
- OIDC support that validates ID tokens and gracefully falls back to UserInfo claims.
- ComponentBase-registered classes for discovery through Swarmauri plugin entry points.
Installation
pip
pip install swarmauri_auth_idp_gitea
uv (project)
uv add swarmauri_auth_idp_gitea
uv (environment)
uv pip install swarmauri_auth_idp_gitea
Usage
Instantiate the login classes with your Gitea base URL, client credentials, and redirect URI.
Persist the signed state returned by auth_url and supply it to the exchange step.
from pydantic import SecretBytes, SecretStr
from swarmauri_auth_idp_gitea import GiteaOAuth21Login
login = GiteaOAuth21Login(
base_url="https://gitea.example.com",
client_id="example-client-id",
client_secret=SecretStr("example-secret"),
redirect_uri="https://example.com/callback",
state_secret=SecretBytes(b"super-secret-state-key"),
)
# Within an async context:
# auth_payload = await login.auth_url()
# identity = await login.exchange_and_identity(code, auth_payload["state"])
print(login.client_id)
Expected Workflow
- Call
auth_url()and redirect the user agent to Gitea's authorization endpoint. - Persist the returned state and verify it during the callback to prevent tampering.
- Call
exchange_and_identity()(orexchange()for the OIDC login) to normalize user claims. - Use the normalized payload to create sessions, audit events, or downstream tokens.
App client classes expose access_token() for service-to-service integrations using either
client secrets or private-key JWT assertions.
Entry Points
The distribution registers the following entry points:
swarmauri.auth_idp:GiteaOAuth20Loginswarmauri.auth_idp:GiteaOAuth21Loginswarmauri.auth_idp:GiteaOIDC10Loginswarmauri.auth_idp:GiteaOAuth20AppClientswarmauri.auth_idp:GiteaOAuth21AppClientswarmauri.auth_idp:GiteaOIDC10AppClient
Contributing
To contribute to swarmauri-sdk, review the guidelines for contributing covering development workflow, testing, and coding standards.
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 swarmauri_auth_idp_gitea-0.11.0.dev2.tar.gz.
File metadata
- Download URL: swarmauri_auth_idp_gitea-0.11.0.dev2.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94df604e763bd0829e83ed57175d5666581170433da0a952017256b61dce0644
|
|
| MD5 |
0c7d1433e29370b0f0ec180cb173734a
|
|
| BLAKE2b-256 |
35b457b964c470a21f08ec25b2891573776ffe422c20e03c30a46857eceb30b0
|
File details
Details for the file swarmauri_auth_idp_gitea-0.11.0.dev2-py3-none-any.whl.
File metadata
- Download URL: swarmauri_auth_idp_gitea-0.11.0.dev2-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","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}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6fa10774d8055ffec47dd3c133db40b97da5924d8865cacff156f307f116aec
|
|
| MD5 |
3df3cde3c4db76bd4883f6e86cf0f716
|
|
| BLAKE2b-256 |
a3e7385c170689299210e63629b103cb1c92d738c007eb8cd822b75a0ca735ad
|