198 lines
5.6 KiB
Python
198 lines
5.6 KiB
Python
"""Vendor related endpoints."""
|
|
|
|
import asyncio
|
|
from typing import Annotated, Optional
|
|
|
|
from fastapi import APIRouter, Depends, Query, WebSocket, WebSocketDisconnect
|
|
from fastapi.encoders import jsonable_encoder
|
|
from fastapi.exceptions import RequestValidationError
|
|
from fastapi.responses import JSONResponse
|
|
from pydantic import BaseModel, Field
|
|
from pydantic.error_wrappers import ErrorWrapper
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
from spoolman.api.v1.models import Message, Vendor, VendorEvent
|
|
from spoolman.database import vendor
|
|
from spoolman.database.database import get_db_session
|
|
from spoolman.database.utils import SortOrder
|
|
from spoolman.ws import websocket_manager
|
|
|
|
router = APIRouter(
|
|
prefix="/vendor",
|
|
tags=["vendor"],
|
|
)
|
|
|
|
# ruff: noqa: D103,B008
|
|
|
|
|
|
class VendorParameters(BaseModel):
|
|
name: str = Field(max_length=64, description="Vendor name.", example="Polymaker")
|
|
comment: Optional[str] = Field(
|
|
max_length=1024,
|
|
description="Free text comment about this vendor.",
|
|
example="",
|
|
)
|
|
|
|
|
|
class VendorUpdateParameters(VendorParameters):
|
|
name: Optional[str] = Field(max_length=64, description="Vendor name.", example="Polymaker")
|
|
comment: Optional[str] = Field(
|
|
max_length=1024,
|
|
description="Free text comment about this vendor.",
|
|
example="",
|
|
)
|
|
|
|
|
|
@router.get(
|
|
"",
|
|
name="Find vendor",
|
|
description="Get a list of vendors that matches the search query.",
|
|
response_model_exclude_none=True,
|
|
response_model=list[Vendor],
|
|
)
|
|
async def find(
|
|
db: Annotated[AsyncSession, Depends(get_db_session)],
|
|
name: Optional[str] = Query(
|
|
default=None,
|
|
title="Vendor Name",
|
|
description="Partial case-insensitive search term for the vendor name. Separate multiple terms with a comma.",
|
|
),
|
|
sort: Optional[str] = Query(
|
|
default=None,
|
|
title="Sort",
|
|
description=(
|
|
'Sort the results by the given field. Should be a comma-separate string with "field:direction" items.'
|
|
),
|
|
example="name:asc,id:desc",
|
|
),
|
|
limit: Optional[int] = Query(
|
|
default=None,
|
|
title="Limit",
|
|
description="Maximum number of items in the response.",
|
|
),
|
|
offset: int = Query(
|
|
default=0,
|
|
title="Offset",
|
|
description="Offset in the full result set if a limit is set.",
|
|
),
|
|
) -> JSONResponse:
|
|
sort_by: dict[str, SortOrder] = {}
|
|
if sort is not None:
|
|
for sort_item in sort.split(","):
|
|
field, direction = sort_item.split(":")
|
|
sort_by[field] = SortOrder[direction.upper()]
|
|
|
|
db_items, total_count = await vendor.find(
|
|
db=db,
|
|
name=name,
|
|
sort_by=sort_by,
|
|
limit=limit,
|
|
offset=offset,
|
|
)
|
|
# Set x-total-count header for pagination
|
|
return JSONResponse(
|
|
content=jsonable_encoder(
|
|
(Vendor.from_db(db_item) for db_item in db_items),
|
|
exclude_none=True,
|
|
),
|
|
headers={"x-total-count": str(total_count)},
|
|
)
|
|
|
|
|
|
@router.get(
|
|
"/{vendor_id}",
|
|
name="Get vendor",
|
|
description=(
|
|
"Get a specific vendor. A websocket is served on the same path to listen for changes to the vendor. "
|
|
"See the HTTP Response code 299 for the content of the websocket messages."
|
|
),
|
|
response_model_exclude_none=True,
|
|
responses={404: {"model": Message}, 299: {"model": VendorEvent, "description": "Websocket message"}},
|
|
)
|
|
async def get(
|
|
db: Annotated[AsyncSession, Depends(get_db_session)],
|
|
vendor_id: int,
|
|
) -> Vendor:
|
|
db_item = await vendor.get_by_id(db, vendor_id)
|
|
return Vendor.from_db(db_item)
|
|
|
|
|
|
@router.websocket(
|
|
"/{vendor_id}",
|
|
name="Listen to vendor changes",
|
|
)
|
|
async def notify(
|
|
websocket: WebSocket,
|
|
vendor_id: int,
|
|
) -> None:
|
|
await websocket.accept()
|
|
websocket_manager.connect(("vendor", str(vendor_id)), websocket)
|
|
try:
|
|
while True:
|
|
await asyncio.sleep(0.5)
|
|
if await websocket.receive_text():
|
|
await websocket.send_json({"status": "healthy"})
|
|
except WebSocketDisconnect:
|
|
websocket_manager.disconnect(("vendor", str(vendor_id)), websocket)
|
|
|
|
|
|
@router.post(
|
|
"",
|
|
name="Add vendor",
|
|
description="Add a new vendor to the database.",
|
|
response_model_exclude_none=True,
|
|
)
|
|
async def create(
|
|
db: Annotated[AsyncSession, Depends(get_db_session)],
|
|
body: VendorParameters,
|
|
) -> Vendor:
|
|
db_item = await vendor.create(
|
|
db=db,
|
|
name=body.name,
|
|
comment=body.comment,
|
|
)
|
|
|
|
return Vendor.from_db(db_item)
|
|
|
|
|
|
@router.patch(
|
|
"/{vendor_id}",
|
|
name="Update vendor",
|
|
description="Update any attribute of a vendor. Only fields specified in the request will be affected.",
|
|
response_model_exclude_none=True,
|
|
responses={404: {"model": Message}},
|
|
)
|
|
async def update(
|
|
db: Annotated[AsyncSession, Depends(get_db_session)],
|
|
vendor_id: int,
|
|
body: VendorUpdateParameters,
|
|
) -> Vendor:
|
|
patch_data = body.dict(exclude_unset=True)
|
|
|
|
if "name" in patch_data and body.name is None:
|
|
raise RequestValidationError([ErrorWrapper(ValueError("name cannot be unset"), ("query", "name"))])
|
|
|
|
db_item = await vendor.update(
|
|
db=db,
|
|
vendor_id=vendor_id,
|
|
data=patch_data,
|
|
)
|
|
|
|
return Vendor.from_db(db_item)
|
|
|
|
|
|
@router.delete(
|
|
"/{vendor_id}",
|
|
name="Delete vendor",
|
|
description=(
|
|
"Delete a vendor. The vendor attribute of any filaments who refer to the deleted vendor will be cleared."
|
|
),
|
|
responses={404: {"model": Message}},
|
|
)
|
|
async def delete(
|
|
db: Annotated[AsyncSession, Depends(get_db_session)],
|
|
vendor_id: int,
|
|
) -> Message:
|
|
await vendor.delete(db, vendor_id)
|
|
return Message(message="Success!")
|