mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-14 02:25:12 +08:00
33 lines
963 B
Python
33 lines
963 B
Python
|
# 此库用于实现 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)
|