mirror of
https://github.com/PaiGramTeam/EASY_PROXY.git
synced 2024-11-23 07:50:54 +00:00
feat: support hoyolab
This commit is contained in:
parent
520cc7ae3e
commit
83638b0323
1
.gitignore
vendored
1
.gitignore
vendored
@ -158,3 +158,4 @@ cython_debug/
|
||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||
.idea/
|
||||
env.py
|
||||
|
1
env.py.example
Normal file
1
env.py.example
Normal file
@ -0,0 +1 @@
|
||||
proxy = "socks5://127.0.0.1:7676"
|
33
main.py
33
main.py
@ -1,4 +1,4 @@
|
||||
from typing import Dict
|
||||
from typing import Dict, Optional
|
||||
|
||||
from fastapi import FastAPI
|
||||
from httpx import (
|
||||
@ -10,9 +10,26 @@ from httpx import (
|
||||
)
|
||||
from starlette.requests import Request
|
||||
from starlette.responses import Response
|
||||
from env import proxy
|
||||
|
||||
app = FastAPI()
|
||||
WHITE_LIST = ["mihoyo.com", "miyoushe.com"]
|
||||
WHITE_LIST = ["mihoyo.com", "miyoushe.com", "hoyolab.com", "hoyoverse.com"]
|
||||
|
||||
|
||||
async def req_client(method: str, target_url: str, headers, body, _proxy: Optional[str]) -> Response:
|
||||
async with AsyncClient(timeout=120, follow_redirects=True, proxy=proxy) as client:
|
||||
try:
|
||||
async with client.stream(
|
||||
method, target_url, headers=headers, data=body
|
||||
) as r:
|
||||
headers = dict(r.headers)
|
||||
r: HttpxResponse
|
||||
_content = b"".join([part async for part in r.aiter_raw(1024 * 10)])
|
||||
return Response(_content, headers=headers, status_code=r.status_code)
|
||||
except (RemoteProtocolError, UnsupportedProtocol, ConnectError):
|
||||
if _proxy is not None:
|
||||
return await req_client(method, target_url, headers, body, None)
|
||||
return Response(content="UnsupportedProtocol", status_code=400)
|
||||
|
||||
|
||||
def rewrite_headers(old_headers: Dict[str, str]) -> Dict[str, str]:
|
||||
@ -42,17 +59,7 @@ async def get_proxy(req: Request) -> Response:
|
||||
return Response(status_code=400, content=f"get request body info error: {e}")
|
||||
q = "?" + query if query else ""
|
||||
target_url = path + q
|
||||
async with AsyncClient(timeout=120, follow_redirects=True) as client:
|
||||
try:
|
||||
async with client.stream(
|
||||
method, target_url, headers=headers, data=body
|
||||
) as r:
|
||||
headers = dict(r.headers)
|
||||
r: HttpxResponse
|
||||
_content = b"".join([part async for part in r.aiter_raw(1024 * 10)])
|
||||
return Response(_content, headers=headers, status_code=r.status_code)
|
||||
except (RemoteProtocolError, UnsupportedProtocol, ConnectError):
|
||||
return Response(content="UnsupportedProtocol", status_code=400)
|
||||
return await req_client(method, target_url, headers, body, proxy)
|
||||
|
||||
|
||||
app.add_route(
|
||||
|
@ -1,4 +1,4 @@
|
||||
httpx==0.25.1
|
||||
fastapi~=0.104.1
|
||||
starlette~=0.32.0.post1
|
||||
uvicorn~=0.24.0.post1
|
||||
httpx
|
||||
fastapi
|
||||
starlette
|
||||
uvicorn
|
||||
|
Loading…
Reference in New Issue
Block a user