Skip to main content

User model and schema library for authentication services

Project description

keylin

Python Versions License: MIT Tests Coverage Code Quality PyPI version

Features

  • User model and schema library for authentication services
  • Designed for integration with FastAPI and fastapi-users
  • Reusable across multiple services
  • Internal async API key management (CRUD) module

Table of Contents

Installation

pip install keylin

Usage

from keylin.models import User
from fastapi import FastAPI, Depends
from sqlalchemy.ext.asyncio import AsyncSession
from keylin.db import get_async_session

app = FastAPI()

@app.get("/users/{user_id}")
async def get_user(user_id: str, session: AsyncSession = Depends(get_async_session)):
    result = await session.execute(
        User.__table__.select().where(User.id == user_id)
    )
    user = result.fetchone()
    if user:
        return user
    return {"error": "User not found"}

API Key Management

Keylin includes an internal API key management module (keylin.apikey_manager) that provides async functions for creating, listing, and deleting API keys. These functions encapsulate all business logic and database operations for API key management and are intended for use within the keylin codebase.

  • create_api_key(user_id, service_id, session, name=None, expires_at=None)
  • list_api_keys(user_id, session)
  • delete_api_key(key_id, user_id, session)

All functions are async and require an AsyncSession for database access.

Architecture & Integration Guide

Typical Architecture

A recommended architecture for a login/authentication service using keylin:

graph TD
    A[Client App / Frontend]
    B[API Gateway / HTTPS Proxy]
    C[FastAPI Login Service - uses keylin]
    D[Database - PostgreSQL, etc.]
    A --> B
    B --> C
    C --> D
  • keylin provides the user model, schemas, and authentication logic.
  • The login service is a FastAPI app that imports keylin and wires up routers.
  • Other services can import keylin to share the user model and schemas for consistent user data handling.

Example FastAPI Login Service

from fastapi import FastAPI
from keylin.auth import auth_backend, fastapi_users, get_user_manager
from keylin.schemas import UserRead, UserCreate

app = FastAPI()

# Auth routes
app.include_router(fastapi_users.get_auth_router(auth_backend), prefix="/auth/jwt", tags=["auth"])
app.include_router(fastapi_users.get_register_router(UserRead, UserCreate), prefix="/auth", tags=["auth"])
app.include_router(fastapi_users.get_users_router(UserRead, UserRead), prefix="/users", tags=["users"])

Configuring Email Sending (for Password Reset & Verification)

The keylin library's UserManager supports sending emails for password resets and email verifications. This feature is optional and depends on you providing an email sending implementation.

1. Email Sender Interface:

keylin defines a protocol for the email sender:

# keylin.auth.EmailSenderCallable
class EmailSenderCallable(Protocol):
    async def __call__(self, *, to_email: str, token: str) -> None:
        ...

Your custom email sender function must match this signature. It will receive the recipient's email and the generated token (for password reset or email verification). Your implementation is responsible for:

  • Constructing the full email content (subject and body).
  • Using the provided token and your application's frontend_url (from your own settings) to create the clickable link within the email body.
  • Actually sending the email using your preferred email service (e.g., SendGrid, SES, SMTP).

2. Default Placeholder:

By default, keylin uses a placeholder email sender that logs a warning and does not send any emails. This is located at keylin.keylin_utils.default_keylin_email_sender.

3. Enabling Email Features:

For password reset and email verification features to be enabled in keylin (and for fastapi-users to expose the related routes):

  • You must provide a working email sender implementation.
  • Your keylin.config.Settings object (or a subclass used by your application) must have the RESET_PASSWORD_SECRET and VERIFICATION_SECRET attributes set (they default to JWT_SECRET if not explicitly provided).

4. Injecting Your Custom Email Sender:

To use your own email sending logic, you'll override the default dependency in your FastAPI application setup:

# In your main FastAPI application file (e.g., app/main.py or src/your_project/main.py)
from fastapi import FastAPI
from keylin.auth import fastapi_users, auth_backend # From keylin library
from keylin.schemas import UserRead, UserCreate    # From keylin library
from keylin import keylin_utils                    # To access the default sender for overriding

# 1. Define your custom email sender function
# (This could be in a separate services/email.py module in your project)
async def my_custom_email_sender(*, to_email: str, token: str) -> None:
    # Example: (Replace with your actual email sending logic)
    # from your_project.config import my_app_settings # Your app's specific settings
    # frontend_url = my_app_settings.FRONTEND_APP_URL
    # For password reset, the link might be:
    # reset_link = f"{frontend_url}/auth/reset-password?token={token}"
    # For email verification, the link might be:
    # verify_link = f"{frontend_url}/auth/verify-email?token={token}"

    # You'll need to determine if it's a password reset or verification email.
    # One way is to have separate override functions or add a context/type to EmailSenderCallable.
    # For simplicity here, we'll just log.
    print(f"Simulating email to {to_email} with token {token}. Link would use your frontend_url.")
    #
    # IMPORTANT: This example is simplified. Your actual sender will need to know
    # whether to send a password reset or an email verification email.
    # You might need to adjust the EmailSenderCallable protocol in keylin or
    # use two different dependency overrides if your email content differs significantly.
    # Alternatively, the token itself could be inspected or you might use different
    # endpoint handlers in your app that call different UserManager methods.

app = FastAPI()

# 2. Override the default email sender dependency
app.dependency_overrides[keylin_utils.default_keylin_email_sender] = my_custom_email_sender

# 3. Include fastapi-users routers (these will now use your_custom_email_sender)
app.include_router(fastapi_users.get_auth_router(auth_backend), prefix="/auth/jwt", tags=["auth"])
app.include_router(fastapi_users.get_register_router(UserRead, UserCreate), prefix="/auth", tags=["auth"])
app.include_router(fastapi_users.get_users_router(UserRead, UserRead), prefix="/users", tags=["users"])

# Add password reset and verification routers from fastapi-users
# These will only be active if the corresponding secrets are set in UserManager
# (which depends on an email_sender being configured)
app.include_router(fastapi_users.get_reset_password_router(), prefix="/auth", tags=["auth"])
app.include_router(fastapi_users.get_verify_router(UserRead), prefix="/auth", tags=["auth"])

# Your application's settings (e.g., from keylin.config.Settings or a subclass)
# should define FRONTEND_APP_URL if your custom email sender needs it.
# Keylin's UserManager enables password/verification features if an email_sender
# is provided and the necessary token secrets are available.

Important Note on Email Content: The EmailSenderCallable interface in keylin currently passes only to_email and token. Your custom sender implementation will need to:

  • Determine if the token is for password reset or email verification to customize the subject and body. This might involve:
    • Having separate sender functions and overriding them for fastapi_users.get_reset_password_router() and fastapi_users.get_verify_router() if fastapi-users allows such granular overrides for its internal UserManager calls (this is advanced).
    • A simpler approach for the library user: your application might need to store some context when the token is generated, or the token itself could be structured to indicate its purpose (though this is less common for fastapi-users tokens).
    • Alternatively, the keylin.auth.EmailSenderCallable protocol could be extended in future versions of keylin to include an email_type (e.g., "password_reset", "email_verification") if more direct support from the library is desired. For now, the injected sender takes on this responsibility.

This setup ensures that keylin remains decoupled from specific email sending implementations and URL structures, while providing the necessary hooks for downstream applications to integrate their own email services.

Environment Variables (Required for Production)

  • JWT_SECRET: Secret key for JWT signing (required; application will raise an error if not set)
  • RESET_PASSWORD_SECRET: Secret for password reset tokens (optional, defaults to JWT secret)
  • VERIFICATION_SECRET: Secret for verification tokens (optional, defaults to JWT secret)
  • DATABASE_URL: SQLAlchemy DB URL (e.g., postgresql+asyncpg://user:pass@host/dbname)

Note: If JWT_SECRET is not set, the application will raise a RuntimeError at startup.

Security & Deployment Best Practices

  • CORS: Configure CORS in your FastAPI app using CORSMiddleware to restrict allowed origins.
  • HTTPS: Always deploy behind a TLS-terminating proxy (e.g., NGINX, Caddy, cloud load balancer).
  • Secret Management: Never hardcode secrets. Use environment variables or a secrets manager.
  • Rate Limiting: Add rate limiting at the API gateway or with middleware to prevent brute-force attacks.
  • Email Verification: Enable and configure email verification in your login service for new users.
  • Audit Logging: Log authentication events for security monitoring.

Extending the User Model

  • You can add fields to the User model and corresponding Pydantic schemas in your own code or by forking/extending keylin.
  • All models and schemas use type annotations and are compatible with FastAPI and Pydantic.

User Model & Database Schema

Default User Model Fields

Field Type Description Required Notes
id UUID Unique user identifier Yes Primary key
email str User email (unique) Yes Unique, indexed
hashed_password str Hashed password Yes Not exposed in API responses
full_name str/None User's full name No Optional
is_active bool Is the user active? Yes
is_superuser bool Is the user an admin? Yes
is_verified bool Has the user verified email Yes

Note: The table is named "user", which is a reserved word in some databases (e.g., PostgreSQL). Consider renaming to "users" if you encounter issues.

Example User Schema

{
  "id": "uuid",
  "email": "user@example.com",
  "full_name": "User Name",
  "is_active": true,
  "is_superuser": false,
  "is_verified": true
}

Extending the User Model

  • To add fields, update the User SQLAlchemy model and the corresponding Pydantic schemas.
  • Run a new Alembic migration to update the database schema.
  • Update the UI to handle new fields as needed.
  • Keep the UI and backend in sync regarding user data shape.
  • Tip: If you need roles or permissions, add fields (e.g., role, permissions) to the model and schemas, and update your business logic accordingly.

Configuration Usage

The keylin.config.Settings class provides all configuration via environment variables or a .env file. There is no longer a global settings singleton.

  • To use configuration, import and instantiate Settings directly:
from keylin.config import Settings
settings = Settings()
  • If you are building a service that needs additional configuration, subclass Settings:
from keylin.config import Settings as KeylinSettings

class MyServiceSettings(KeylinSettings):
    MY_SERVICE_API_KEY: str

settings = MyServiceSettings()
  • All environment variables must be set before instantiating Settings.
  • JWT_SECRET must be set, or a RuntimeError will be raised at startup.

Testing

  • The test suite sets JWT_SECRET automatically for all tests (see tests/conftest.py).
  • All code and tests should instantiate Settings directly as needed.
  • There is no global singleton; each test or module should create its own Settings instance if configuration is needed.
  • See tests/unit/test_keylin.py and tests/unit/test_apikey_manager.py for example tests and mocking patterns.

Setting Up the User Database

Before running your login service, you need to ensure the user table exists in your database.

Recommended: Use Alembic for Migrations

For production and team environments, use Alembic to manage database migrations:

alembic revision --autogenerate -m "create user table"
alembic upgrade head

Make sure your Alembic env.py includes the keylin model's metadata:

from keylin.models import Base

target_metadata = Base.metadata

Quick Local Setup: Create Tables Programmatically

For local development or quick tests, you can create the tables directly using SQLAlchemy:

from keylin.models import Base
from sqlalchemy import create_engine

engine = create_engine("sqlite:///./test.db")  # Or your DB URL
Base.metadata.create_all(engine)

Note: For production, always use migrations to avoid data loss and ensure schema consistency.

Admin User Account Setup

After the user tables are created (either via Alembic or programmatically), keylin will automatically create an admin (superuser) account if one does not already exist. This ensures you always have an initial admin user for your application.

Default admin credentials:

  • Email: admin@example.com
  • Password: changeme
  • Full name: Admin

Override defaults in production: Set the following environment variables before starting your app to change the admin account credentials:

  • ADMIN_EMAIL (default: admin@example.com)
  • ADMIN_PASSWORD (default: changeme)
  • ADMIN_FULL_NAME (default: Admin)

Security Note: Always override the default admin password and email in production environments!

The admin user is created only if no superuser exists in the database. If you delete the admin user, it will be recreated on the next app startup unless another superuser exists.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

keylin-0.7.5.tar.gz (28.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

keylin-0.7.5-py3-none-any.whl (16.5 kB view details)

Uploaded Python 3

File details

Details for the file keylin-0.7.5.tar.gz.

File metadata

  • Download URL: keylin-0.7.5.tar.gz
  • Upload date:
  • Size: 28.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for keylin-0.7.5.tar.gz
Algorithm Hash digest
SHA256 611fa1cbbb9754310b0e05f8a3a07f8b8e87db5165dd7bf12bcbad2aa6719ea1
MD5 b221f2701cdf7f251fa5d83b06a20329
BLAKE2b-256 a3c83c01ecb61c0c9d559492918fb86e8ba8dc6459daa528fb49781c505e4e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for keylin-0.7.5.tar.gz:

Publisher: publish.yml on beanone/keylin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file keylin-0.7.5-py3-none-any.whl.

File metadata

  • Download URL: keylin-0.7.5-py3-none-any.whl
  • Upload date:
  • Size: 16.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for keylin-0.7.5-py3-none-any.whl
Algorithm Hash digest
SHA256 663c0f30660f82ca99a27c0fe292405f6cd3e18294a8be8b5abf151b98782313
MD5 577216262982b59e83534370e0678eb8
BLAKE2b-256 f98ccd1b724290a7bc4c6134b0678e222399490d61c6903023abccc414cfd6ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for keylin-0.7.5-py3-none-any.whl:

Publisher: publish.yml on beanone/keylin

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page