From 025ef2be935e018a5bf834043146106ff5f532a1 Mon Sep 17 00:00:00 2001 From: Kentai Radiquum Date: Tue, 16 Apr 2024 23:41:52 +0500 Subject: [PATCH] Initial Commit. ADD: Get User By Id ADD: Get Release By Id --- .gitignore | 9 +++++ backend/.pre-commit-config.yaml | 36 ++++++++++++++++++++ backend/.python-version | 1 + backend/main.py | 60 +++++++++++++++++++++++++++++++++ backend/requirements.txt | 4 +++ 5 files changed, 110 insertions(+) create mode 100644 .gitignore create mode 100644 backend/.pre-commit-config.yaml create mode 100644 backend/.python-version create mode 100644 backend/main.py create mode 100644 backend/requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..10f0a09 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Python +__pycache__ +venv + +# VSCode +.VSCode + +# NextJS +node_modules diff --git a/backend/.pre-commit-config.yaml b/backend/.pre-commit-config.yaml new file mode 100644 index 0000000..02a5858 --- /dev/null +++ b/backend/.pre-commit-config.yaml @@ -0,0 +1,36 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +repos: + - repo: https://github.com/psf/black + rev: 24.4.0 + hooks: + - id: black + args: [--safe] + + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.5.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-added-large-files + - id: debug-statements + language_version: python3 + + - repo: https://github.com/PyCQA/flake8 + rev: 7.0.0 + hooks: + - id: flake8 + language_version: python3 + + - repo: https://github.com/asottile/reorder_python_imports + rev: v3.12.0 + hooks: + - id: reorder-python-imports + args: [--py39-plus] + + - repo: https://github.com/asottile/pyupgrade + rev: v3.15.2 + hooks: + - id: pyupgrade + args: [--py39-plus] diff --git a/backend/.python-version b/backend/.python-version new file mode 100644 index 0000000..21af950 --- /dev/null +++ b/backend/.python-version @@ -0,0 +1 @@ +3.9.13 diff --git a/backend/main.py b/backend/main.py new file mode 100644 index 0000000..5da3e37 --- /dev/null +++ b/backend/main.py @@ -0,0 +1,60 @@ +import requests +from fastapi import FastAPI +from fastapi import Request + +app = FastAPI() + +API_URL = "https://api.anixart.tv" +ENDPOINTS = { + "release": f"{API_URL}/release", + "profile": f"{API_URL}/profile", +} +USER_AGENT = "AnixartApp/8.2.1-23121216 (Android 11; SDK 30; arm64-v8a;)" + + +async def apiRequest( + # noqa: E501 + request: Request = None, + endpoint: str = "", + path: str = "", + query: str = "", +): + + headers = { + "User-Agent": USER_AGENT, + "Content-Type": "application/json; charset=UTF-8", + } + + if request.method == "POST": + r = requests.post( + # noqa: E501 + f"{endpoint}/{path}{query}", + headers=headers, + data=await request.body(), + ) + else: + r = requests.get(f"{endpoint}/{path}{query}", headers=headers) + + if r.status_code != 200: + return {"error": r.text} + return r.json() + + +@app.get("/profile/{user_id}") +async def getUserById(request: Request, user_id: str, short: bool = False): + res = await apiRequest(request, ENDPOINTS["profile"], user_id) + if short is False: + return res + return { + "code": res["code"], + "profile": { + "id": res["profile"]["id"], + "login": res["profile"]["login"], + "avatar": res["profile"]["avatar"], + }, + } + + +@app.get("/release/{release_id}") +async def GetReleaseById(request: Request, release_id: str): + return await apiRequest(request, ENDPOINTS["release"], release_id) diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..17faec4 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,4 @@ +requests == 2.31.0 +fastAPI == 0.110.1 +uvicorn[standard] +pre-commit