deep-wine-runner/deb/opt/apps/deepin-wine-runner/req/__init__.py

33 lines
963 B
Python
Raw Normal View History

2022-09-24 21:22:29 +08:00
# 此库用于实现 52 版不连接程序服务器
import requests
unConnect = False
with open("/var/lib/dpkg/status", "r") as i:
unConnect = "Package: spark-deepin-wine-runner-52" in open("/var/lib/dpkg/status", "r").read()
if unConnect:
print("52专版将会无法连接服务器")
badUrl = [
"http://120.25.153.144",
"https://304626p927.goho.co",
"https://30x46269h2.goho.co"
]
class Respon:
text = ""
def get(url): # -> requests.Response:
if unConnect:
# 筛选 Url只有特定的 url 才会被拦截
for i in badUrl:
if i in url:
raise Exception("52专版不支持连接作者服务器")
return requests.get(url)
def post(url, data):
if unConnect:
# 筛选 Url只有特定的 url 才会被拦截
for i in badUrl:
if i in url:
raise Exception("52专版不支持连接作者服务器")
return requests.post(url, data)