"""Hospitality branches APIs — Phase 12.0.""" 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 ( BranchCreate, BranchRead, BranchUpdate, ) from app.services.foundation import BranchService from shared.pagination import PaginationParams from shared.security import CurrentUser router = APIRouter() @router.post("", response_model=BranchRead, status_code=status.HTTP_201_CREATED) async def create_item( body: BranchCreate, tenant_id: UUID = Depends(require_tenant), db: AsyncSession = Depends(get_db), user: CurrentUser = Depends(get_current_user), ): return await BranchService(db).create(tenant_id, body, actor=user) @router.get("", response_model=list[BranchRead]) async def list_items( tenant_id: UUID = Depends(require_tenant), pagination: PaginationParams = Depends(get_pagination), db: AsyncSession = Depends(get_db), _user: CurrentUser = Depends(get_current_user), ): return await BranchService(db).list(tenant_id, offset=pagination.offset, limit=pagination.page_size) @router.get("/{branch_id}", response_model=BranchRead) async def get_item( branch_id: UUID, tenant_id: UUID = Depends(require_tenant), db: AsyncSession = Depends(get_db), _user: CurrentUser = Depends(get_current_user), ): return await BranchService(db).get(tenant_id, branch_id) @router.patch("/{branch_id}", response_model=BranchRead) async def update_item( branch_id: UUID, body: BranchUpdate, tenant_id: UUID = Depends(require_tenant), db: AsyncSession = Depends(get_db), user: CurrentUser = Depends(get_current_user), ): return await BranchService(db).update(tenant_id, branch_id, body, actor=user) @router.post("/{branch_id}/delete", response_model=BranchRead) async def soft_delete_item( branch_id: UUID, tenant_id: UUID = Depends(require_tenant), db: AsyncSession = Depends(get_db), user: CurrentUser = Depends(get_current_user), ): return await BranchService(db).soft_delete(tenant_id, branch_id, actor=user)