2022-07-26 10:07:31 +00:00
|
|
|
import hashlib
|
2022-11-12 12:59:42 +00:00
|
|
|
import json
|
2022-07-26 10:07:31 +00:00
|
|
|
import random
|
|
|
|
import string
|
|
|
|
import time
|
|
|
|
import uuid
|
2022-11-12 12:59:42 +00:00
|
|
|
from typing import Mapping
|
|
|
|
from urllib.parse import urlencode
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
RECOGNIZE_SERVER = {
|
|
|
|
"1": "cn_gf01",
|
|
|
|
"2": "cn_gf01",
|
|
|
|
"5": "cn_qd01",
|
|
|
|
"6": "os_usa",
|
|
|
|
"7": "os_euro",
|
|
|
|
"8": "os_asia",
|
|
|
|
"9": "os_cht",
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-12 12:59:42 +00:00
|
|
|
def get_device_id(name: str = None):
|
|
|
|
return str(uuid.uuid3(uuid.NAMESPACE_URL, name))
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
2022-11-12 12:59:42 +00:00
|
|
|
def _hexdigest(text):
|
|
|
|
_md5 = hashlib.md5() # nosec B303
|
|
|
|
_md5.update(text.encode())
|
|
|
|
return _md5.hexdigest()
|
|
|
|
|
|
|
|
|
|
|
|
def get_ds(ds_type: str = None, new_ds: bool = False, data: Mapping[str, str] = None, params: Mapping[str, str] = None):
|
2022-11-14 06:06:07 +00:00
|
|
|
"""DS 算法
|
|
|
|
代码来自 https://github.com/y1ndan/genshinhelper
|
|
|
|
:param ds_type: 1:ios 2:android 4:pc web 5:mobile web
|
|
|
|
:param new_ds: 是否为DS2算法
|
|
|
|
:param data: 需要签名的Data
|
|
|
|
:param params: 需要签名的Params
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
|
2022-11-12 12:59:42 +00:00
|
|
|
def new():
|
|
|
|
t = str(int(time.time()))
|
|
|
|
r = str(random.randint(100001, 200000)) # nosec
|
|
|
|
b = json.dumps(data) if data else ''
|
|
|
|
q = urlencode(params) if params else ''
|
|
|
|
c = _hexdigest(f'salt={salt}&t={t}&r={r}&b={b}&q={q}')
|
|
|
|
return f'{t},{r},{c}'
|
|
|
|
|
|
|
|
def old():
|
|
|
|
t = str(int(time.time()))
|
|
|
|
r = ''.join(random.sample(string.ascii_lowercase + string.digits, 6))
|
|
|
|
c = _hexdigest(f'salt={salt}&t={t}&r={r}')
|
|
|
|
return f'{t},{r},{c}'
|
|
|
|
|
|
|
|
app_version = '2.36.1'
|
|
|
|
client_type = '5'
|
|
|
|
salt = 'YVEIkzDFNHLeKXLxzqCA9TzxCpWwbIbk'
|
|
|
|
ds = old()
|
|
|
|
if ds_type in ('android', '2'):
|
|
|
|
app_version = '2.36.1'
|
|
|
|
client_type = '2'
|
|
|
|
salt = 'n0KjuIrKgLHh08LWSCYP0WXlVXaYvV64'
|
|
|
|
ds = old()
|
|
|
|
if ds_type == 'android_new':
|
|
|
|
app_version = '2.36.1'
|
|
|
|
client_type = '2'
|
|
|
|
salt = 't0qEgfub6cvueAPgR5m9aQWWVciEer7v'
|
|
|
|
ds = new()
|
|
|
|
if new_ds:
|
|
|
|
app_version = '2.36.1'
|
|
|
|
client_type = '5'
|
|
|
|
salt = 'xV8v4Qu54lUKrEYFZkJhB8cuOh9Asafs'
|
|
|
|
ds = new()
|
|
|
|
|
|
|
|
return app_version, client_type, ds
|
2022-07-26 10:07:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_recognize_server(uid: int) -> str:
|
|
|
|
server = RECOGNIZE_SERVER.get(str(uid)[0])
|
|
|
|
if server:
|
|
|
|
return server
|
|
|
|
else:
|
|
|
|
raise TypeError(f"UID {uid} isn't associated with any recognize server")
|
|
|
|
|
|
|
|
|
2022-11-14 06:13:22 +00:00
|
|
|
def get_ua(device: str = "Paimon Build", version: str = "2.36.1"):
|
2022-11-14 06:06:07 +00:00
|
|
|
return (
|
|
|
|
f"Mozilla/5.0 (Linux; Android 12; {device}; wv) "
|
|
|
|
"AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/103.0.5060.129 Mobile Safari/537.36 "
|
|
|
|
f"miHoYoBBS/{version}"
|
2022-11-14 06:13:22 +00:00
|
|
|
)
|