Files
remnawave-bedolaga-telegram…/app/webapi/schemas/welcome_texts.py
c0mrade 9a2aea038a chore: add uv package manager and ruff linter configuration
- Add pyproject.toml with uv and ruff configuration
- Pin Python version to 3.13 via .python-version
- Add Makefile commands: lint, format, fix
- Apply ruff formatting to entire codebase
- Remove unused imports (base64 in yookassa/simple_subscription)
- Update .gitignore for new config files
2026-01-24 17:45:27 +03:00

50 lines
1.1 KiB
Python

from __future__ import annotations
from datetime import datetime
from pydantic import BaseModel, Field, validator
def _normalize_text(value: str) -> str:
cleaned = (value or '').strip()
if not cleaned:
raise ValueError('Text cannot be empty')
return cleaned
class WelcomeTextResponse(BaseModel):
id: int
text: str
is_active: bool
is_enabled: bool
created_by: int | None
created_at: datetime
updated_at: datetime
class WelcomeTextCreateRequest(BaseModel):
text: str = Field(..., min_length=1, max_length=4000)
is_enabled: bool = True
is_active: bool = True
_normalize_text = validator('text', allow_reuse=True)(_normalize_text)
class WelcomeTextUpdateRequest(BaseModel):
text: str | None = Field(None, min_length=1, max_length=4000)
is_enabled: bool | None = None
is_active: bool | None = None
@validator('text')
def validate_text(cls, value):
if value is None:
return value
return _normalize_text(value)
class WelcomeTextListResponse(BaseModel):
items: list[WelcomeTextResponse]
total: int
limit: int
offset: int