- Rearranged imports in multiple files for consistency and clarity. - Updated logging middleware to exclude specific paths from logging. - Enhanced security module by cleaning up token handling and improving tenant validation. - Added tenant and company scoped mixins for better database model management. - Implemented generic CRUD routes for tenant-scoped resources. - Improved error handling and response management in API routes. - Cleaned up login and logout processes to ensure proper session management. - Introduced mechanisms to clear local storage and cookies on tenant change. - Enhanced company store to detect tenant changes and clear data accordingly. - Added new DTO mixins for currency and value affect flags.
132 lines
3.5 KiB
Python
132 lines
3.5 KiB
Python
"""
|
|
Endpoints API para gestión de tenants
|
|
"""
|
|
|
|
from core.database import get_core_db
|
|
from core.security import get_current_user, has_role
|
|
from fastapi import APIRouter, Depends, HTTPException, Query
|
|
from sqlalchemy.orm import Session
|
|
|
|
from .dto import (
|
|
TenantCreateDTO,
|
|
TenantListResponseDTO,
|
|
TenantResponseDTO,
|
|
TenantUpdateDTO,
|
|
)
|
|
from .service import TenantService
|
|
|
|
router = APIRouter(prefix="/tenants")
|
|
|
|
|
|
@router.post("/", response_model=TenantResponseDTO, status_code=201)
|
|
async def create_tenant(
|
|
tenant_data: TenantCreateDTO,
|
|
db: Session = Depends(get_core_db),
|
|
current_user: dict = Depends(has_role("admin")),
|
|
):
|
|
"""
|
|
Crea un nuevo tenant en el sistema
|
|
|
|
Requiere rol: admin
|
|
"""
|
|
service = TenantService(db)
|
|
return service.create_tenant(tenant_data)
|
|
|
|
|
|
@router.get("/", response_model=TenantListResponseDTO)
|
|
async def list_tenants(
|
|
page: int = Query(1, ge=1, description="Número de página"),
|
|
page_size: int = Query(50, ge=1, le=100, description="Tamaño de página"),
|
|
active_only: bool = Query(False, description="Solo tenants activos"),
|
|
db: Session = Depends(get_core_db),
|
|
current_user: dict = Depends(has_role("admin")),
|
|
):
|
|
"""
|
|
Lista todos los tenants
|
|
|
|
Requiere rol: admin
|
|
"""
|
|
service = TenantService(db)
|
|
skip = (page - 1) * page_size
|
|
tenants = service.list_tenants(skip=skip, limit=page_size, active_only=active_only)
|
|
|
|
# Contar total
|
|
from .models import Tenant
|
|
|
|
query = db.query(Tenant)
|
|
if active_only:
|
|
query = query.filter(Tenant.is_active)
|
|
total = query.count()
|
|
|
|
return TenantListResponseDTO(
|
|
tenants=tenants, total=total, page=page, page_size=page_size
|
|
)
|
|
|
|
|
|
@router.get("/{tenant_id}", response_model=TenantResponseDTO)
|
|
async def get_tenant(
|
|
tenant_id: int,
|
|
db: Session = Depends(get_core_db),
|
|
current_user: dict = Depends(get_current_user),
|
|
):
|
|
"""
|
|
Obtiene información de un tenant por ID
|
|
"""
|
|
service = TenantService(db)
|
|
tenant = service.get_tenant(tenant_id)
|
|
if not tenant:
|
|
raise HTTPException(status_code=404, detail="Tenant not found")
|
|
return tenant
|
|
|
|
|
|
@router.put("/{tenant_id}", response_model=TenantResponseDTO)
|
|
async def update_tenant(
|
|
tenant_id: int,
|
|
tenant_data: TenantUpdateDTO,
|
|
db: Session = Depends(get_core_db),
|
|
current_user: dict = Depends(has_role("admin")),
|
|
):
|
|
"""
|
|
Actualiza un tenant
|
|
|
|
Requiere rol: admin
|
|
"""
|
|
service = TenantService(db)
|
|
tenant = service.update_tenant(tenant_id, tenant_data)
|
|
if not tenant:
|
|
raise HTTPException(status_code=404, detail="Tenant not found")
|
|
return tenant
|
|
|
|
|
|
@router.delete("/{tenant_id}", status_code=204)
|
|
async def delete_tenant(
|
|
tenant_id: int,
|
|
db: Session = Depends(get_core_db),
|
|
current_user: dict = Depends(has_role("admin")),
|
|
):
|
|
"""
|
|
Elimina (desactiva) un tenant
|
|
|
|
Requiere rol: admin
|
|
"""
|
|
service = TenantService(db)
|
|
if not service.delete_tenant(tenant_id):
|
|
raise HTTPException(status_code=404, detail="Tenant not found")
|
|
return None
|
|
|
|
|
|
@router.get("/slug/{slug}", response_model=TenantResponseDTO)
|
|
async def get_tenant_by_slug(
|
|
slug: str,
|
|
db: Session = Depends(get_core_db),
|
|
current_user: dict = Depends(get_current_user),
|
|
):
|
|
"""
|
|
Obtiene un tenant por su slug
|
|
"""
|
|
service = TenantService(db)
|
|
tenant = service.get_tenant_by_slug(slug)
|
|
if not tenant:
|
|
raise HTTPException(status_code=404, detail="Tenant not found")
|
|
return tenant
|