mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
34 lines
968 B
Python
34 lines
968 B
Python
from typing import *
|
|
from royalnet.constellation.api import *
|
|
from royalnet.utils import *
|
|
from ..tables import *
|
|
from sqlalchemy import func
|
|
|
|
|
|
class ApiDiarioRandomStar(ApiStar):
|
|
path = "/api/diario/random/v1"
|
|
|
|
summary = "Get random diario entries."
|
|
|
|
parameters = {
|
|
"amount": "The number of diario entries to get."
|
|
}
|
|
|
|
tags = ["diario"]
|
|
|
|
async def api(self, data: ApiData) -> JSON:
|
|
DiarioT = self.alchemy.get(Diario)
|
|
try:
|
|
amount = int(data["amount"])
|
|
except ValueError:
|
|
raise InvalidParameterError("'amount' is not a valid int.")
|
|
entries: List[Diario] = await asyncify(
|
|
data.session
|
|
.query(DiarioT)
|
|
.order_by(func.random())
|
|
.limit(amount)
|
|
.all
|
|
)
|
|
if len(entries) < amount:
|
|
raise NotFoundError("Not enough diario entries.")
|
|
return list(map(lambda e: e.json(), entries))
|