1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00
royalnet/royalpack/stars/api_diario_list.py

35 lines
1.3 KiB
Python
Raw Normal View History

2019-11-11 08:56:08 +00:00
from starlette.requests import Request
from starlette.responses import *
from royalnet.constellation import *
2019-11-11 08:56:08 +00:00
from royalnet.utils import *
from ..tables import *
2019-11-11 08:56:08 +00:00
class ApiDiarioListStar(PageStar):
path = "/api/diario/list"
async def page(self, request: Request) -> JSONResponse:
page_str = request.query_params.get("page", "0")
try:
page = int(page_str)
except (ValueError, TypeError):
return shoot(400, "Invalid offset")
2019-11-11 08:56:08 +00:00
async with self.alchemy.session_acm() as session:
if page < 0:
page = -page-1
entries: typing.List[Diario] = await asyncify(
session.query(self.alchemy.get(Diario))
.order_by(self.alchemy.get(Diario).diario_id.desc()).limit(500)
.offset(page * 500)
.all
)
2019-11-11 08:56:08 +00:00
else:
entries: typing.List[Diario] = await asyncify(
session.query(self.alchemy.get(Diario))
.order_by(self.alchemy.get(Diario).diario_id)
.limit(500)
.offset(page * 500)
.all)
2019-11-11 08:56:08 +00:00
response = [entry.json() for entry in entries]
return JSONResponse(response)