
Features: - User registration and authentication with JWT tokens - Multi-level admin access (Admin and Super Admin) - Gym management with membership plans - Subscription management with payment integration - Stripe and Paystack payment gateway support - Role-based access control - SQLite database with Alembic migrations - Comprehensive API endpoints with FastAPI - Database models for users, gyms, memberships, subscriptions, and transactions - Admin endpoints for user management and financial reporting - Health check and documentation endpoints Core Components: - FastAPI application with CORS support - SQLAlchemy ORM with relationship mapping - JWT-based authentication with bcrypt password hashing - Payment service abstraction for multiple gateways - Pydantic schemas for request/response validation - Alembic database migration system - Admin dashboard functionality - Environment variable configuration
42 lines
785 B
Python
42 lines
785 B
Python
from pydantic import BaseModel, EmailStr
|
|
from typing import Optional
|
|
from datetime import datetime
|
|
|
|
|
|
class GymBase(BaseModel):
|
|
name: str
|
|
description: Optional[str] = None
|
|
address: str
|
|
city: str
|
|
state: str
|
|
phone: Optional[str] = None
|
|
email: Optional[EmailStr] = None
|
|
|
|
|
|
class GymCreate(GymBase):
|
|
pass
|
|
|
|
|
|
class GymUpdate(BaseModel):
|
|
name: Optional[str] = None
|
|
description: Optional[str] = None
|
|
address: Optional[str] = None
|
|
city: Optional[str] = None
|
|
state: Optional[str] = None
|
|
phone: Optional[str] = None
|
|
email: Optional[EmailStr] = None
|
|
|
|
|
|
class GymInDB(GymBase):
|
|
id: int
|
|
is_active: bool
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
|
|
class Config:
|
|
from_attributes = True
|
|
|
|
|
|
class Gym(GymInDB):
|
|
pass
|