forked from SubConv/SubConv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.py
229 lines (199 loc) · 8.63 KB
/
api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#!/usr/bin/env python3
# coding=utf-8
from fastapi import FastAPI, HTTPException
from fastapi.requests import Request
from fastapi.responses import FileResponse, Response, StreamingResponse
from fastapi.staticfiles import StaticFiles
import uvicorn
import httpx
import yaml
from urllib.parse import urlencode, unquote
import argparse
from pathlib import Path
import re
import os
DISALLOW_ROBOTS = bool(eval(os.environ.get("DISALLOW_ROBOTS", "False")))
"""
main routine
"""
if __name__ == "__main__":
from modules import config_template
# generate config file
class GenerateConfigAction(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
yaml.SafeDumper.ignore_aliases = lambda *args : True
if values == "default":
with open("config.yaml", "w", encoding="utf-8") as f:
f.write(yaml.safe_dump(config_template.template_default, allow_unicode=True, sort_keys=False))
elif values == "zju":
with open("config.yaml", "w", encoding="utf-8") as f:
f.write(yaml.safe_dump(config_template.template_zju, allow_unicode=True, sort_keys=False))
parser.exit()
# parse arguments
parser = argparse.ArgumentParser()
parser.add_argument("--port", "-P", type=int, default=8080, help="port of the api, default: 8080")
parser.add_argument("--host", "-H", type=str, default="0.0.0.0", help="host of the api, default: 0.0.0.0")
parser.add_argument("--version", "-V", action="version", version="version: v2.0.0")
parser.add_argument("--generate-config", "-G", type=str, choices=("default", "zju"), action=GenerateConfigAction, help="generate a default config file")
args = parser.parse_args()
# init config
from modules import config
# Debug
# uvicorn.run("api:app", host=args.host, port=args.port, reload=True)
# Production
print("host:", args.host)
print("port:", args.port)
if DISALLOW_ROBOTS:
print("robots: Disallow")
else:
print("robots: Allow")
module_name = __name__.split(".")[0]
uvicorn.run(module_name+":app", host=args.host, port=args.port, workers=4)
"""
FastAPI App
"""
from modules import pack
from modules import parse
from modules.convert import converter
def length(sth):
if sth is None:
return 0
else:
return len(sth)
app = FastAPI()
# mainpage
app.mount("/static", StaticFiles(directory="static"), name="static")
@app.get("/")
async def mainpage():
return FileResponse("static/index.html")
# /robots.txt
@app.get("/robots.txt")
async def robots():
if DISALLOW_ROBOTS:
return Response(content="User-agent: *\nDisallow: /", media_type="text/plain")
else:
return Response(status_code=404)
# subscription to proxy-provider
@app.get("/provider")
async def provider(request: Request):
headers = {'Content-Type': 'text/yaml;charset=utf-8'}
url = request.query_params.get("url")
async with httpx.AsyncClient() as client:
resp = await client.get(url, headers={'User-Agent':request.headers['User-Agent']})
if resp.status_code < 200 or resp.status_code >= 400:
raise HTTPException(status_code=resp.status_code, detail=resp.text)
result = await parse.parseSubs(resp.text)
return Response(content=result, headers=headers)
# subscription converter api
@app.get("/sub")
async def sub(request: Request):
args = request.query_params
# get interval
if "interval" in args:
interval = args["interval"]
else:
interval = "1800"
short = args.get("short")
# get proxyrule
notproxyrule = args.get("npr")
# get the url of original subscription
url = args.get("url")
url = re.split(r"[|\n]", url)
# remove empty lines
tmp = list(filter(lambda x: x!="", url))
url = []
urlstandalone = []
for i in tmp:
if (i.startswith("http://") or i.startswith("https://")) and not i.startswith("https://t.me/"):
url.append(i)
else:
urlstandalone.append(i)
urlstandalone = "\n".join(urlstandalone)
if len(url) == 0:
url = None
if len(urlstandalone) == 0:
urlstandalone = None
urlstandby = args.get("urlstandby")
urlstandbystandalone = None
if urlstandby:
urlstandby = re.split(r"[|\n]", urlstandby)
tmp = list(filter(lambda x: x!="", urlstandby))
urlstandby = []
urlstandbystandalone = []
for i in tmp:
if (i.startswith("http://") or i.startswith("https://")) and not i.startswith("https://t.me/"):
urlstandby.append(i)
else:
urlstandbystandalone.append(i)
urlstandbystandalone = "\n".join(urlstandbystandalone)
if len(urlstandby) == 0:
urlstandby = None
if len(urlstandbystandalone) == 0:
urlstandbystandalone = None
if urlstandalone:
urlstandalone = await converter.ConvertsV2Ray(urlstandalone)
if urlstandbystandalone:
urlstandbystandalone = await converter.ConvertsV2Ray(urlstandbystandalone)
async with httpx.AsyncClient() as client:
# get original headers
headers = {'Content-Type': 'text/yaml;charset=utf-8'}
# if there's only one subscription, return userinfo
if length(url) == 1:
resp = await client.head(url[0], headers={'User-Agent':request.headers['User-Agent']})
if resp.status_code < 200 or resp.status_code >= 400:
raise HTTPException(status_code=resp.status_code, detail=resp.text)
elif resp.status_code >= 300 and resp.status_code < 400:
while resp.status_code >= 300 and resp.status_code < 400:
url[0] = resp.headers['Location']
resp = await client.head(url[0], headers={'User-Agent':request.headers['User-Agent']})
if resp.status_code < 200 or resp.status_code >= 400:
raise HTTPException(status_code=resp.status_code, detail=resp.text)
originalHeaders = resp.headers
if 'subscription-userinfo' in originalHeaders: # containing info about ramaining flow
headers['subscription-userinfo'] = originalHeaders['subscription-userinfo']
if 'Content-Disposition' in originalHeaders: # containing filename
headers['Content-Disposition'] = originalHeaders['Content-Disposition'].replace("attachment", "inline")
content = [] # the proxies of original subscriptions
if url is not None:
for i in range(len(url)):
# the test of response
respText = (await client.get(url[i], headers={'User-Agent':request.headers['User-Agent']})).text
content.append(await parse.parseSubs(respText))
url[i] = "{}provider?{}".format(request.base_url, urlencode({"url": url[i]}))
if len(content) == 0:
content = None
if urlstandby:
for i in range(len(urlstandby)):
urlstandby[i] = "{}provider?{}".format(request.base_url, urlencode({"url": urlstandby[i]}))
# get the domain or ip of this api to add rule for this
domain = re.search(r"([^:]+)(:\d{1,5})?", request.url.hostname).group(1)
# generate the subscription
result = await pack.pack(url=url, urlstandalone=urlstandalone, urlstandby=urlstandby,urlstandbystandalone=urlstandbystandalone, content=content, interval=interval, domain=domain, short=short, notproxyrule=notproxyrule, base_url=request.base_url)
return Response(content=result, headers=headers)
# proxy
@app.get("/proxy")
async def proxy(request: Request, url: str):
# file was big so use stream
async def stream():
async with httpx.AsyncClient() as client:
async with client.stream("GET", url, headers={'User-Agent':request.headers['User-Agent']}) as resp:
yield resp.status_code
yield resp.headers
if resp.status_code < 200 or resp.status_code >= 400:
yield await resp.aread()
return
async for chunk in resp.aiter_bytes():
yield chunk
streamResp = stream()
status_code = await streamResp.__anext__()
headers = await streamResp.__anext__()
if status_code < 200 or status_code >= 400:
raise HTTPException(status_code=status_code, detail=await streamResp.__anext__())
return StreamingResponse(streamResp, media_type=headers['Content-Type'])
# static files
@app.get("/{path:path}")
async def index(path):
if Path("static/"+path).exists():
return FileResponse("static/"+path)
else:
raise HTTPException(status_code=404, detail="Not Found")