Spaces:
Sleeping
Sleeping
File size: 1,096 Bytes
2909918 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | """
Pydantic models for authentication and user management
"""
from datetime import datetime
from typing import Optional, List
from pydantic import BaseModel, EmailStr, Field
class TokenData(BaseModel):
"""Token data extracted from JWT"""
username: Optional[str] = None
user_id: Optional[str] = None
scopes: List[str] = []
class UserBase(BaseModel):
"""Base user model"""
username: str
email: EmailStr
is_active: bool = True
is_superuser: bool = False
class UserCreate(UserBase):
"""User creation model"""
password: str = Field(..., min_length=6, max_length=100)
class UserLogin(BaseModel):
"""User login model"""
username: str
password: str
class User(UserBase):
"""User model for responses"""
id: str
created_at: Optional[datetime] = None
class Config:
from_attributes = True
class UserInDB(User):
"""User model with database fields"""
hashed_password: str
class Token(BaseModel):
"""Token response model"""
access_token: str
token_type: str = "bearer"
expires_in: int
|