Add the Sales CRM service through collaboration, sync architecture/registry docs, expose crm.torbatyar.ir, and include a production deploy script. Co-authored-by: Cursor <cursoragent@cursor.com>
70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
"""Contact CRM APIs — Phase 6.1."""
|
|
from __future__ import annotations
|
|
|
|
from uuid import UUID
|
|
|
|
from fastapi import APIRouter, Depends, status
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from app.api.deps import get_db, get_pagination, require_tenant
|
|
from app.core.security import get_current_user
|
|
from app.schemas.foundation import ContactCreate, ContactRead, ContactUpdate
|
|
from app.services.contact_service import ContactService
|
|
from shared.pagination import PaginationParams
|
|
from shared.security import CurrentUser
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.post("", response_model=ContactRead, status_code=status.HTTP_201_CREATED)
|
|
async def create_contact(
|
|
body: ContactCreate,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await ContactService(db).create(tenant_id, body, actor=user)
|
|
|
|
|
|
@router.get("", response_model=list[ContactRead])
|
|
async def list_contacts(
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
pagination: PaginationParams = Depends(get_pagination),
|
|
db: AsyncSession = Depends(get_db),
|
|
_user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await ContactService(db).list(
|
|
tenant_id, offset=pagination.offset, limit=pagination.page_size
|
|
)
|
|
|
|
|
|
@router.get("/{contact_id}", response_model=ContactRead)
|
|
async def get_contact(
|
|
contact_id: UUID,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
_user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await ContactService(db).get(tenant_id, contact_id)
|
|
|
|
|
|
@router.patch("/{contact_id}", response_model=ContactRead)
|
|
async def update_contact(
|
|
contact_id: UUID,
|
|
body: ContactUpdate,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await ContactService(db).update(tenant_id, contact_id, body, actor=user)
|
|
|
|
|
|
@router.post("/{contact_id}/delete", response_model=ContactRead)
|
|
async def soft_delete_contact(
|
|
contact_id: UUID,
|
|
tenant_id: UUID = Depends(require_tenant),
|
|
db: AsyncSession = Depends(get_db),
|
|
user: CurrentUser = Depends(get_current_user),
|
|
):
|
|
return await ContactService(db).soft_delete(tenant_id, contact_id, actor=user)
|