Bitcoin Cash OAuth authentication for FastAPI with database persistence
Project description
Bitcoin Cash OAuth - FastAPI
Bitcoin Cash OAuth authentication integration for FastAPI applications.
Installation
pip install bitcoincash-oauth-fastapi
Quick Start
from fastapi import FastAPI
from bitcoincash_oauth_fastapi import BitcoinCashOAuth
app = FastAPI()
# Initialize OAuth
oauth = BitcoinCashOAuth(
router_prefix="/auth",
token_ttl=3600, # 1 hour
refresh_token_ttl=2592000, # 30 days
max_tokens_per_user=5
)
# Include the OAuth router
app.include_router(oauth.router)
# Protect your routes
@app.get("/api/protected")
async def protected_endpoint(token_data=oauth.get_user_dependency()):
return {
"message": "This is protected",
"user_id": token_data.user_id,
"scopes": token_data.scopes
}
API Endpoints
The following endpoints are automatically added:
POST /auth/register
Register a new user with a Bitcoin Cash address. When REQUIRE_SIGNATURE_FOR_REGISTRATION is enabled, proof of wallet ownership is required.
Request (without signature verification):
{
"address": "bitcoincash:qqrxvhnn88gmpczyxry254vcsnl6canmkqgt98lpn5",
"user_id": "optional_custom_id"
}
Request (with signature verification):
{
"address": "bitcoincash:qqrxvhnn88gmpczyxry254vcsnl6canmkqgt98lpn5",
"user_id": "optional_custom_id",
"timestamp": 1234567890,
"domain": "app.example.com",
"public_key": "0279BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798",
"signature": "3045022100..."
}
Message Format: bitcoincash-oauth|domain|userId|timestamp|register
bitcoincash-oauth: Protocol identifier (prevents cross-protocol replay)domain: Domain/host of the application (prevents phishing)userId: User's unique identifiertimestamp: Unix timestamp for replay protectionregister: Action identifier
Response:
{
"user_id": "user_abc123",
"address": "bitcoincash:qqrxvhnn88gmpczyxry254vcsnl6canmkqgt98lpn5",
"message": "User registered successfully",
"signature_required": false
}
POST /auth/token
Obtain an OAuth token using Bitcoin Cash signature. The client must sign the message in the format bitcoincash-oauth|domain|userId|timestamp.
Request:
{
"user_id": "user_abc123",
"timestamp": 1234567890,
"domain": "app.example.com",
"public_key": "0279BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798",
"signature": "3045022100...",
"scopes": ["read", "write"]
}
Message Format: bitcoincash-oauth|domain|userId|timestamp
bitcoincash-oauth: Protocol identifier (prevents cross-protocol replay)domain: Domain/host of the application (prevents phishing)userId: User's unique identifiertimestamp: Unix timestamp for replay protection
Response:
{
"access_token": "eyJhbGciOiJIUzI1NiIs...",
"token_type": "bearer",
"expires_in": 3600,
"refresh_token": "dGhpcyBpcyBhIHJlZnJlc2g...",
"scopes": ["read", "write"]
}
POST /auth/refresh
Refresh an access token.
Request:
{
"refresh_token": "dGhpcyBpcyBhIHJlZnJlc2g..."
}
POST /auth/revoke
Revoke an access token.
Request:
{
"token": "eyJhbGciOiJIUzI1NiIs..."
}
GET /auth/me
Get current user information (requires Bearer token).
Headers:
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
Advanced Usage
Custom Token Manager
from bitcoincash_oauth_fastapi import TokenManager, token_manager
# Configure the singleton token manager
token_manager.access_token_ttl = 7200 # 2 hours
token_manager.max_tokens_per_user = 10
# Or create your own instance
custom_manager = TokenManager(
access_token_ttl=7200,
refresh_token_ttl=604800, # 7 days
max_tokens_per_user=10
)
Using the Validator Directly
from bitcoincash_oauth_fastapi import BitcoinCashValidator, verify_bitcoin_cash_auth
# Validate a CashAddr
is_valid, network = BitcoinCashValidator.validate_cash_address(
"bitcoincash:qqrxvhnn88gmpczyxry254vcsnl6canmkqgt98lpn5"
)
# Verify authentication with domain binding
is_valid, reason = verify_bitcoin_cash_auth(
user_id="user_123",
timestamp=1234567890,
public_key="0279BE...",
signature="3045...",
expected_address="bitcoincash:qz7f...",
domain="app.example.com" # Optional: prevents phishing across domains
)
Alternative: Simple Router Function
from fastapi import FastAPI
from bitcoincash_oauth_fastapi import create_oauth_router
app = FastAPI()
# Just add the router with default settings
app.include_router(create_oauth_router(), prefix="/auth")
Configuration
All settings can be configured via environment variables with the prefix BITCOINCASH_OAUTH_:
| Parameter | Default | Description |
|---|---|---|
USER_MODEL |
None |
Custom user model path (e.g., myapp.models.MyBitcoinCashUser) |
TOKEN_MODEL |
None |
Custom token model path (e.g., myapp.models.MyOAuthToken) |
Custom Models (Avoiding Conflicts)
If your project already has models named BitcoinCashUser or OAuthToken, you can use custom models:
# main.py
from bitcoincash_oauth_fastapi import create_oauth_router, init_oauth, register_model
from myapp.models import MyBitcoinCashUser, MyOAuthToken
# Register custom models
register_model('user', MyBitcoinCashUser)
register_model('token', MyOAuthToken)
app = FastAPI()
@app.on_event("startup")
async def startup():
await init_oauth()
app.include_router(create_oauth_router())
Or use environment variables:
export BITCOINCASH_OAUTH_USER_MODEL="myapp.models.MyBitcoinCashUser"
export BITCOINCASH_OAUTH_TOKEN_MODEL="myapp.models.MyOAuthToken"
Your custom models should inherit from the base models:
# myapp/models.py
from bitcoincash_oauth_fastapi.models import BitcoinCashUser, OAuthToken
class MyBitcoinCashUser(BitcoinCashUser):
__tablename__ = "my_custom_users"
# Add your custom fields
class MyOAuthToken(OAuthToken):
__tablename__ = "my_custom_tokens"
# Add your custom fields
Configuration Reference
| Parameter | Default | Description |
|---|---|---|
router_prefix |
"/auth" |
URL prefix for OAuth endpoints |
token_ttl |
3600 |
Access token lifetime (seconds) |
refresh_token_ttl |
2592000 |
Refresh token lifetime (seconds) |
max_tokens_per_user |
5 |
Maximum active tokens per user |
max_timestamp_diff |
300 |
Max timestamp age for replay protection |
require_signature_for_registration |
false |
Require signature verification for registration |
Environment Variables
# Database
DATABASE_URL=postgresql+asyncpg://user:pass@localhost/db
# Security
SECRET_KEY=your-secret-key-here
REQUIRE_SIGNATURE_FOR_REGISTRATION=true
# Token settings
ACCESS_TOKEN_LIFETIME=3600
REFRESH_TOKEN_LIFETIME=2592000
MAX_TOKENS_PER_USER=5
MAX_TIMESTAMP_DIFF=300
Dependencies
fastapi>=0.100.0coincurve>=18.0.0cashaddress>=1.0.6python-jose>=3.3.0pydantic>=2.0.0
License
MIT
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 bitcoincash_oauth_fastapi-0.2.1.tar.gz.
File metadata
- Download URL: bitcoincash_oauth_fastapi-0.2.1.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cf7f2ba2c51376fe5766d0d6e3da3bb4272d77beee66f1b74fc29c85bab84a0
|
|
| MD5 |
6d0a93ee006e2891dfd402961072d04a
|
|
| BLAKE2b-256 |
b8ab58f1e9ea2d2c32c2c615995d548877ac7ad9bae00ec8a26f776068fc462d
|
File details
Details for the file bitcoincash_oauth_fastapi-0.2.1-py3-none-any.whl.
File metadata
- Download URL: bitcoincash_oauth_fastapi-0.2.1-py3-none-any.whl
- Upload date:
- Size: 31.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4697eff4ef18dfa22f399e270c7c1366e4c9853af34b506ab0fa8ed3d41be154
|
|
| MD5 |
f4ae7d911b80cbebff4047f3ef3032a3
|
|
| BLAKE2b-256 |
9c4065e1d0a555961d5c87caf5cdca250b8e010be18a00f4db6491477db9d3ef
|