Added x-total-count response header
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
import logging
|
||||
from typing import Optional
|
||||
|
||||
from sqlalchemy import select
|
||||
from sqlalchemy import func, select
|
||||
from sqlalchemy.exc import IntegrityError
|
||||
from sqlalchemy.ext.asyncio import AsyncSession
|
||||
from sqlalchemy.orm import contains_eager, joinedload
|
||||
@@ -78,11 +78,13 @@ async def find( # noqa: C901
|
||||
sort_by: Optional[dict[str, SortOrder]] = None,
|
||||
limit: Optional[int] = None,
|
||||
offset: int = 0,
|
||||
) -> list[models.Filament]:
|
||||
) -> tuple[list[models.Filament], int]:
|
||||
"""Find a list of filament objects by search criteria.
|
||||
|
||||
Sort by a field by passing a dict with the field name as key and the sort order as value.
|
||||
The field name can contain nested fields, e.g. vendor.name.
|
||||
|
||||
Returns a tuple containing the list of items and the total count of matching items.
|
||||
"""
|
||||
stmt = (
|
||||
select(models.Filament)
|
||||
@@ -100,6 +102,14 @@ async def find( # noqa: C901
|
||||
if article_number is not None:
|
||||
stmt = stmt.where(models.Filament.article_number.ilike(f"%{article_number}%"))
|
||||
|
||||
total_count = None
|
||||
|
||||
if limit is not None:
|
||||
total_count_stmt = stmt.with_only_columns(func.count())
|
||||
total_count = (await db.execute(total_count_stmt)).scalar()
|
||||
|
||||
stmt = stmt.offset(offset).limit(limit)
|
||||
|
||||
if sort_by is not None:
|
||||
for fieldstr, order in sort_by.items():
|
||||
field = parse_nested_field(models.Filament, fieldstr)
|
||||
@@ -108,11 +118,12 @@ async def find( # noqa: C901
|
||||
elif order == SortOrder.DESC:
|
||||
stmt = stmt.order_by(field.desc())
|
||||
|
||||
if limit is not None:
|
||||
stmt = stmt.offset(offset).limit(limit)
|
||||
|
||||
rows = await db.execute(stmt)
|
||||
return list(rows.scalars().all())
|
||||
result = list(rows.scalars().all())
|
||||
if total_count is None:
|
||||
total_count = len(result)
|
||||
|
||||
return result, total_count
|
||||
|
||||
|
||||
async def update(
|
||||
|
||||
@@ -4,7 +4,7 @@ from datetime import datetime, timezone
|
||||
from typing import Optional
|
||||
|
||||
import sqlalchemy
|
||||
from sqlalchemy import case
|
||||
from sqlalchemy import case, func
|
||||
from sqlalchemy.exc import NoResultFound
|
||||
from sqlalchemy.ext.asyncio import AsyncSession
|
||||
from sqlalchemy.orm import contains_eager, joinedload
|
||||
@@ -90,11 +90,13 @@ async def find( # noqa: C901, PLR0912
|
||||
sort_by: Optional[dict[str, SortOrder]] = None,
|
||||
limit: Optional[int] = None,
|
||||
offset: int = 0,
|
||||
) -> list[models.Spool]:
|
||||
) -> tuple[list[models.Spool], int]:
|
||||
"""Find a list of spool objects by search criteria.
|
||||
|
||||
Sort by a field by passing a dict with the field name as key and the sort order as value.
|
||||
The field name can contain nested fields, e.g. filament.name.
|
||||
|
||||
Returns a tuple containing the list of items and the total count of matching items.
|
||||
"""
|
||||
stmt = (
|
||||
sqlalchemy.select(models.Spool)
|
||||
@@ -125,6 +127,14 @@ async def find( # noqa: C901, PLR0912
|
||||
),
|
||||
)
|
||||
|
||||
total_count = None
|
||||
|
||||
if limit is not None:
|
||||
total_count_stmt = stmt.with_only_columns(func.count())
|
||||
total_count = (await db.execute(total_count_stmt)).scalar()
|
||||
|
||||
stmt = stmt.offset(offset).limit(limit)
|
||||
|
||||
if sort_by is not None:
|
||||
for fieldstr, order in sort_by.items():
|
||||
field = parse_nested_field(models.Spool, fieldstr)
|
||||
@@ -133,11 +143,12 @@ async def find( # noqa: C901, PLR0912
|
||||
elif order == SortOrder.DESC:
|
||||
stmt = stmt.order_by(field.desc())
|
||||
|
||||
if limit is not None:
|
||||
stmt = stmt.offset(offset).limit(limit)
|
||||
|
||||
rows = await db.execute(stmt)
|
||||
return list(rows.scalars().all())
|
||||
result = list(rows.scalars().all())
|
||||
if total_count is None:
|
||||
total_count = len(result)
|
||||
|
||||
return result, total_count
|
||||
|
||||
|
||||
async def update(
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
"""Utility functions for the database module."""
|
||||
|
||||
from enum import Enum
|
||||
from typing import Any
|
||||
|
||||
import sqlalchemy
|
||||
|
||||
@@ -12,7 +13,7 @@ class SortOrder(Enum):
|
||||
DESC = 2
|
||||
|
||||
|
||||
def parse_nested_field(base_obj: type[models.Base], field: str) -> sqlalchemy.Column:
|
||||
def parse_nested_field(base_obj: type[models.Base], field: str) -> sqlalchemy.Column[Any]:
|
||||
"""Parse a nested field string into a sqlalchemy field object."""
|
||||
fields = field.split(".")
|
||||
if not hasattr(base_obj, fields[0]):
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
from typing import Optional
|
||||
|
||||
from sqlalchemy import select
|
||||
from sqlalchemy import func, select
|
||||
from sqlalchemy.ext.asyncio import AsyncSession
|
||||
|
||||
from spoolman.database import models
|
||||
@@ -41,12 +41,23 @@ async def find(
|
||||
sort_by: Optional[dict[str, SortOrder]] = None,
|
||||
limit: Optional[int] = None,
|
||||
offset: int = 0,
|
||||
) -> list[models.Vendor]:
|
||||
"""Find a list of vendor objects by search criteria."""
|
||||
) -> tuple[list[models.Vendor], int]:
|
||||
"""Find a list of vendor objects by search criteria.
|
||||
|
||||
Returns a tuple containing the list of items and the total count of matching items.
|
||||
"""
|
||||
stmt = select(models.Vendor)
|
||||
if name is not None:
|
||||
stmt = stmt.where(models.Vendor.name.ilike(f"%{name}%"))
|
||||
|
||||
total_count = None
|
||||
|
||||
if limit is not None:
|
||||
total_count_stmt = stmt.with_only_columns(func.count())
|
||||
total_count = (await db.execute(total_count_stmt)).scalar()
|
||||
|
||||
stmt = stmt.offset(offset).limit(limit)
|
||||
|
||||
if sort_by is not None:
|
||||
for fieldstr, order in sort_by.items():
|
||||
field = getattr(models.Vendor, fieldstr)
|
||||
@@ -55,11 +66,12 @@ async def find(
|
||||
elif order == SortOrder.DESC:
|
||||
stmt = stmt.order_by(field.desc())
|
||||
|
||||
if limit is not None:
|
||||
stmt = stmt.offset(offset).limit(limit)
|
||||
|
||||
rows = await db.execute(stmt)
|
||||
return list(rows.scalars().all())
|
||||
result = list(rows.scalars().all())
|
||||
if total_count is None:
|
||||
total_count = len(result)
|
||||
|
||||
return result, total_count
|
||||
|
||||
|
||||
async def update(
|
||||
|
||||
Reference in New Issue
Block a user