mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
24 lines
657 B
Python
24 lines
657 B
Python
import royalnet.constellation.api as rca
|
|
import royalnet.utils as ru
|
|
from ..tables import *
|
|
|
|
|
|
class ApiDiarioGetStar(rca.ApiStar):
|
|
path = "/api/diario/v2"
|
|
|
|
parameters = {
|
|
"get": {
|
|
"id": "The id of the diario entry to get."
|
|
}
|
|
}
|
|
|
|
tags = ["diario"]
|
|
|
|
@rca.magic
|
|
async def get(self, data: rca.ApiData) -> ru.JSON:
|
|
"""Get a specific diario entry."""
|
|
diario_id = data.int("id")
|
|
entry: Diario = await ru.asyncify(data.session.query(self.alchemy.get(Diario)).get, diario_id)
|
|
if entry is None:
|
|
raise rca.NotFoundError("No such diario entry.")
|
|
return entry.json()
|