From 23ac963dee8e62c47ccd1eee0d508ab0d8930bbd Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Wed, 17 Apr 2024 17:13:40 +0500 Subject: [PATCH] Backend: ADD User Auth --- backend/main.py | 2 ++ backend/modules/proxy.py | 1 + backend/modules/user/auth.py | 47 ++++++++++++++++++++++++++++++++++++ backend/requirements.txt | 1 + 4 files changed, 51 insertions(+) create mode 100644 backend/modules/user/auth.py diff --git a/backend/main.py b/backend/main.py index 4767212..135addd 100644 --- a/backend/main.py +++ b/backend/main.py @@ -2,11 +2,13 @@ import uvicorn from fastapi import FastAPI from modules.pages import index from modules.release import release +from modules.user import auth from modules.user import profile app = FastAPI() app.include_router(profile.router, prefix="/profile") +app.include_router(auth.router, prefix="/auth") app.include_router(release.router, prefix="/release") diff --git a/backend/modules/proxy.py b/backend/modules/proxy.py index 14746b3..507fab9 100644 --- a/backend/modules/proxy.py +++ b/backend/modules/proxy.py @@ -8,6 +8,7 @@ ENDPOINTS = { "release": f"{API_URL}/release", "profile": f"{API_URL}/profile", "filter": f"{API_URL}/filter", + "auth": f"{API_URL}/auth/signIn", } USER_AGENT = "AnixartApp/8.2.1-23121216 (Android 11; SDK 30; arm64-v8a;)" diff --git a/backend/modules/user/auth.py b/backend/modules/user/auth.py new file mode 100644 index 0000000..85cce2c --- /dev/null +++ b/backend/modules/user/auth.py @@ -0,0 +1,47 @@ +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 diff --git a/backend/requirements.txt b/backend/requirements.txt index 17faec4..f31cecc 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -2,3 +2,4 @@ requests == 2.31.0 fastAPI == 0.110.1 uvicorn[standard] pre-commit +python-multipart