mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
21 lines
718 B
Python
21 lines
718 B
Python
from starlette.requests import Request
|
|
from starlette.responses import *
|
|
from royalnet.constellation import *
|
|
from royalnet.utils import *
|
|
from royalnet.backpack.tables import *
|
|
from royalnet.constellation.api import *
|
|
|
|
|
|
class ApiUserGetStar(ApiStar):
|
|
path = "/api/user/get/v1"
|
|
|
|
async def api(self, data: ApiData) -> dict:
|
|
user_id_str = data["id"]
|
|
try:
|
|
user_id = int(user_id_str)
|
|
except (ValueError, TypeError):
|
|
raise InvalidParameterError("'id' is not a valid int.")
|
|
user: User = await asyncify(data.session.query(self.alchemy.get(User)).get, user_id)
|
|
if user is None:
|
|
raise NotFoundError("No such user.")
|
|
return user.json()
|