2022-04-30 14:13:39 +08:00
|
|
|
|
from urllib import parse
|
2022-05-20 18:44:18 +08:00
|
|
|
|
|
2022-07-03 21:26:33 +08:00
|
|
|
|
from littlepaimon_utils import aiorequests
|
2022-04-30 14:13:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def toApi(url):
|
2022-06-28 19:44:18 +08:00
|
|
|
|
spliturl = str(url).replace('amp;', '').split("?")
|
2022-04-30 14:13:39 +08:00
|
|
|
|
if "webstatic-sea" in spliturl[0] or "hk4e-api-os" in spliturl[0]:
|
|
|
|
|
spliturl[0] = "https://hk4e-api-os.mihoyo.com/event/gacha_info/api/getGachaLog"
|
|
|
|
|
else:
|
|
|
|
|
spliturl[0] = "https://hk4e-api.mihoyo.com/event/gacha_info/api/getGachaLog"
|
|
|
|
|
url = "?".join(spliturl)
|
|
|
|
|
return url
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def getApi(url, gachaType, size, page, end_id=""):
|
|
|
|
|
parsed = parse.urlparse(url)
|
|
|
|
|
querys = parse.parse_qsl(str(parsed.query))
|
|
|
|
|
param_dict = dict(querys)
|
|
|
|
|
param_dict["size"] = size
|
|
|
|
|
param_dict["gacha_type"] = gachaType
|
|
|
|
|
param_dict["page"] = page
|
|
|
|
|
param_dict["lang"] = "zh-cn"
|
|
|
|
|
param_dict["end_id"] = end_id
|
|
|
|
|
param = parse.urlencode(param_dict)
|
|
|
|
|
path = str(url).split("?")[0]
|
|
|
|
|
api = path + "?" + param
|
|
|
|
|
return api
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def checkApi(url):
|
|
|
|
|
try:
|
2022-05-19 18:15:56 +08:00
|
|
|
|
j = await aiorequests.get(url=url)
|
|
|
|
|
j = j.json()
|
2022-04-30 14:13:39 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
return f'API请求解析出错:{e}'
|
|
|
|
|
|
|
|
|
|
if not j["data"]:
|
2022-05-04 20:39:12 +08:00
|
|
|
|
if j["message"] == "authkey error":
|
2022-04-30 14:13:39 +08:00
|
|
|
|
return "authkey错误,请重新获取链接给派蒙!"
|
|
|
|
|
elif j["message"] == "authkey timeout":
|
|
|
|
|
return "authkey已过期,请重新获取链接给派蒙!"
|
|
|
|
|
else:
|
|
|
|
|
return f'数据为空,错误代码:{j["message"]}'
|
|
|
|
|
return 'OK'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def getQueryVariable(url, variable):
|
|
|
|
|
query = str(url).split("?")[1]
|
|
|
|
|
vars = query.split("&")
|
|
|
|
|
for v in vars:
|
|
|
|
|
if v.split("=")[0] == variable:
|
|
|
|
|
return v.split("=")[1]
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def getGachaInfo(url):
|
|
|
|
|
region = getQueryVariable(url, "region")
|
|
|
|
|
lang = getQueryVariable(url, "lang")
|
|
|
|
|
gachaInfoUrl = "https://webstatic.mihoyo.com/hk4e/gacha_info/{}/items/{}.json".format(region, lang)
|
2022-05-19 18:15:56 +08:00
|
|
|
|
resp = await aiorequests.get(url=gachaInfoUrl)
|
|
|
|
|
gachaInfo = resp.json()
|
|
|
|
|
return gachaInfo
|