mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
from typing import Annotated
|
|
|
|
import requests
|
|
from fastapi import APIRouter
|
|
from fastapi import Form
|
|
from fastapi import Request
|
|
from modules.proxy import ENDPOINTS
|
|
from modules.proxy import USER_AGENT
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.post("", summary="logging in")
|
|
async def userSignIn(
|
|
request: Request,
|
|
email: Annotated[str, Form()],
|
|
password: Annotated[str, Form()],
|
|
short: bool = False,
|
|
):
|
|
headers = {
|
|
"User-Agent": USER_AGENT,
|
|
"Sign": "9aa5c7af74e8cd70c86f7f9587bde23d",
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
}
|
|
r = requests.post(
|
|
# noqa: E501
|
|
f"{ENDPOINTS['auth']}",
|
|
headers=headers,
|
|
data={"login": email, "password": password},
|
|
)
|
|
if r.status_code != 200:
|
|
return {"error": r.text}
|
|
res = r.json()
|
|
if short is True:
|
|
return {
|
|
"code": res["code"],
|
|
"profile": {
|
|
"id": res["profile"]["id"],
|
|
"login": res["profile"]["login"],
|
|
"avatar": res["profile"]["avatar"],
|
|
},
|
|
"profileToken": {
|
|
"id": res["profileToken"]["id"],
|
|
"token": res["profileToken"]["token"],
|
|
},
|
|
}
|
|
return res
|