2019-11-11 08:56:08 +00:00
|
|
|
from starlette.requests import Request
|
|
|
|
from starlette.responses import *
|
2019-11-28 01:30:40 +00:00
|
|
|
from royalnet.constellation import *
|
2019-11-11 08:56:08 +00:00
|
|
|
from royalnet.utils import *
|
2019-11-28 01:30:40 +00:00
|
|
|
from royalnet.backpack.tables import *
|
|
|
|
from ..tables import *
|
2019-11-11 08:56:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ApiUserGetStar(PageStar):
|
|
|
|
path = "/api/user/get/{uid_str}"
|
|
|
|
|
|
|
|
async def page(self, request: Request) -> JSONResponse:
|
|
|
|
uid_str = request.path_params.get("uid_str", "")
|
|
|
|
try:
|
|
|
|
uid = int(uid_str)
|
|
|
|
except (ValueError, TypeError):
|
2019-11-28 01:30:40 +00:00
|
|
|
return shoot(400, "Invalid uid")
|
2019-11-11 08:56:08 +00:00
|
|
|
async with self.alchemy.session_acm() as session:
|
2019-11-28 01:30:40 +00:00
|
|
|
user: User = await asyncify(session.query(self.alchemy.get(User)).get, uid)
|
2019-11-11 08:56:08 +00:00
|
|
|
if user is None:
|
2019-11-28 01:30:40 +00:00
|
|
|
return shoot(404, "No such user")
|
2019-11-11 08:56:08 +00:00
|
|
|
return JSONResponse(user.json())
|