2022-10-17 06:27:37 +00:00
|
|
|
import typing
|
|
|
|
|
2022-11-14 06:06:07 +00:00
|
|
|
import aiohttp.typedefs
|
2022-10-17 06:27:37 +00:00
|
|
|
import genshin # pylint: disable=W0406
|
2022-11-14 06:06:07 +00:00
|
|
|
import yarl
|
2022-12-10 12:37:43 +00:00
|
|
|
from genshin import constants, types, utility
|
2022-11-14 06:06:07 +00:00
|
|
|
from genshin.client import routes
|
2022-12-10 12:37:43 +00:00
|
|
|
from genshin.utility import generate_dynamic_secret, ds
|
2022-10-17 06:27:37 +00:00
|
|
|
|
2022-12-10 12:37:43 +00:00
|
|
|
from modules.apihelper.utility.helpers import get_ds, get_ua, get_device_id, hex_digest
|
2022-10-17 06:27:37 +00:00
|
|
|
from utils.patch.methods import patch, patchable
|
|
|
|
|
2022-11-14 07:35:09 +00:00
|
|
|
DEVICE_ID = get_device_id()
|
2022-10-17 06:27:37 +00:00
|
|
|
|
2022-11-17 08:07:18 +00:00
|
|
|
|
2022-11-26 07:58:13 +00:00
|
|
|
def get_account_mid_v2(cookies: typing.Dict[str, str]) -> typing.Optional[str]:
|
|
|
|
for name, value in cookies.items():
|
|
|
|
if name == "account_mid_v2":
|
|
|
|
return value
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2022-10-17 06:27:37 +00:00
|
|
|
@patch(genshin.client.components.calculator.CalculatorClient) # noqa
|
|
|
|
class CalculatorClient:
|
|
|
|
@patchable
|
|
|
|
async def get_character_details(
|
|
|
|
self,
|
|
|
|
character: genshin.types.IDOr[genshin.models.genshin.Character],
|
|
|
|
*,
|
|
|
|
uid: typing.Optional[int] = None,
|
|
|
|
lang: typing.Optional[str] = None,
|
|
|
|
):
|
|
|
|
uid = uid or await self._get_uid(genshin.types.Game.GENSHIN)
|
|
|
|
|
|
|
|
data = await self.request_calculator(
|
|
|
|
"sync/avatar/detail",
|
|
|
|
method="GET",
|
|
|
|
lang=lang,
|
|
|
|
params=dict(
|
|
|
|
avatar_id=int(character),
|
|
|
|
uid=uid,
|
|
|
|
region=genshin.utility.recognize_genshin_server(uid),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
if data.get("weapon") is None:
|
|
|
|
weapon = {
|
|
|
|
"id": character.weapon.id,
|
|
|
|
"name": character.weapon.name,
|
|
|
|
"icon": character.weapon.icon,
|
|
|
|
"weapon_cat_id": character.weapon.type,
|
|
|
|
"weapon_level": character.weapon.rarity,
|
|
|
|
"max_level": 90,
|
|
|
|
"level_current": character.weapon.level,
|
|
|
|
}
|
|
|
|
data["weapon"] = weapon
|
|
|
|
return genshin.models.genshin.CalculatorCharacterDetails(**data)
|
2022-11-14 06:06:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
@patch(genshin.client.components.base.BaseClient) # noqa
|
|
|
|
class BaseClient:
|
|
|
|
@patchable
|
|
|
|
async def request_hoyolab(
|
|
|
|
self,
|
|
|
|
url: aiohttp.typedefs.StrOrURL,
|
|
|
|
*,
|
|
|
|
lang: typing.Optional[str] = None,
|
|
|
|
region: typing.Optional[types.Region] = None,
|
|
|
|
method: typing.Optional[str] = None,
|
|
|
|
params: typing.Optional[typing.Mapping[str, typing.Any]] = None,
|
|
|
|
data: typing.Any = None,
|
|
|
|
headers: typing.Optional[aiohttp.typedefs.LooseHeaders] = None,
|
|
|
|
**kwargs: typing.Any,
|
|
|
|
) -> typing.Mapping[str, typing.Any]:
|
|
|
|
"""Make a request any hoyolab endpoint."""
|
|
|
|
if lang is not None and lang not in constants.LANGS:
|
|
|
|
raise ValueError(f"{lang} is not a valid language, must be one of: " + ", ".join(constants.LANGS))
|
|
|
|
|
|
|
|
lang = lang or self.lang
|
|
|
|
region = region or self.region
|
|
|
|
|
|
|
|
url = routes.TAKUMI_URL.get_url(region).join(yarl.URL(url))
|
|
|
|
|
|
|
|
if region == types.Region.OVERSEAS:
|
|
|
|
headers = {
|
|
|
|
"x-rpc-app_version": "1.5.0",
|
2022-12-23 15:01:31 +00:00
|
|
|
"x-rpc-client_type": "5",
|
2022-11-14 06:06:07 +00:00
|
|
|
"x-rpc-language": lang,
|
2022-12-01 01:29:15 +00:00
|
|
|
"ds": generate_dynamic_secret(),
|
2022-11-14 06:06:07 +00:00
|
|
|
}
|
|
|
|
elif region == types.Region.CHINESE:
|
2022-11-26 07:58:13 +00:00
|
|
|
account_id = self.cookie_manager.user_id
|
|
|
|
if account_id:
|
|
|
|
device_id = hex_digest(str(account_id))
|
2022-11-14 07:35:09 +00:00
|
|
|
else:
|
2022-11-26 07:58:13 +00:00
|
|
|
account_mid_v2 = get_account_mid_v2(self.cookie_manager.cookies)
|
|
|
|
if account_mid_v2:
|
|
|
|
device_id = hex_digest(account_mid_v2)
|
|
|
|
else:
|
|
|
|
device_id = DEVICE_ID
|
2022-12-01 01:29:15 +00:00
|
|
|
app_version, client_type, ds_sign = get_ds(new_ds=True, data=data, params=params)
|
|
|
|
ua = get_ua(device="Paimon Build " + device_id[0:5], version=app_version)
|
2022-11-14 06:06:07 +00:00
|
|
|
headers = {
|
|
|
|
"User-Agent": ua,
|
|
|
|
"X_Requested_With": "com.mihoyo.hoyolab",
|
2022-12-01 12:02:09 +00:00
|
|
|
"Referer": "https://webstatic.mihoyo.com",
|
2022-12-01 01:29:15 +00:00
|
|
|
"x-rpc-device_id": get_device_id(device_id),
|
|
|
|
"x-rpc-app_version": app_version,
|
|
|
|
"x-rpc-client_type": client_type,
|
|
|
|
"ds": ds_sign,
|
2022-11-14 06:06:07 +00:00
|
|
|
}
|
|
|
|
else:
|
|
|
|
raise TypeError(f"{region!r} is not a valid region.")
|
|
|
|
|
|
|
|
data = await self.request(url, method=method, params=params, data=data, headers=headers, **kwargs)
|
|
|
|
return data
|
|
|
|
|
|
|
|
@patchable
|
|
|
|
async def request(
|
|
|
|
self,
|
|
|
|
url: aiohttp.typedefs.StrOrURL,
|
|
|
|
*,
|
|
|
|
method: typing.Optional[str] = None,
|
|
|
|
params: typing.Optional[typing.Mapping[str, typing.Any]] = None,
|
|
|
|
data: typing.Any = None,
|
|
|
|
headers: typing.Optional[aiohttp.typedefs.LooseHeaders] = None,
|
|
|
|
cache: typing.Any = None,
|
|
|
|
static_cache: typing.Any = None,
|
|
|
|
**kwargs: typing.Any,
|
|
|
|
) -> typing.Mapping[str, typing.Any]:
|
|
|
|
"""Make a request and return a parsed json response."""
|
|
|
|
if cache is not None:
|
|
|
|
value = await self.cache.get(cache)
|
|
|
|
if value is not None:
|
|
|
|
return value
|
|
|
|
elif static_cache is not None:
|
|
|
|
value = await self.cache.get_static(static_cache)
|
|
|
|
if value is not None:
|
|
|
|
return value
|
|
|
|
|
|
|
|
# actual request
|
|
|
|
|
|
|
|
headers = dict(headers or {})
|
|
|
|
headers.setdefault("User-Agent", self.USER_AGENT)
|
|
|
|
|
|
|
|
if method is None:
|
|
|
|
method = "POST" if data else "GET"
|
|
|
|
|
|
|
|
if "json" in kwargs:
|
|
|
|
raise TypeError("Use data instead of json in request.")
|
|
|
|
|
|
|
|
await self._request_hook(method, url, params=params, data=data, headers=headers, **kwargs)
|
|
|
|
|
|
|
|
response = await self.cookie_manager.request(
|
|
|
|
url,
|
|
|
|
method=method,
|
|
|
|
params=params,
|
|
|
|
json=data,
|
|
|
|
headers=headers,
|
|
|
|
**kwargs,
|
|
|
|
)
|
|
|
|
|
|
|
|
# cache
|
|
|
|
|
|
|
|
if cache is not None:
|
|
|
|
await self.cache.set(cache, response)
|
|
|
|
elif static_cache is not None:
|
|
|
|
await self.cache.set_static(static_cache, response)
|
|
|
|
|
|
|
|
return response
|
2022-11-17 08:07:18 +00:00
|
|
|
|
2022-12-10 12:37:43 +00:00
|
|
|
@patchable
|
|
|
|
async def request_bbs(
|
|
|
|
self,
|
|
|
|
url: aiohttp.typedefs.StrOrURL,
|
|
|
|
*,
|
|
|
|
lang: typing.Optional[str] = None,
|
|
|
|
region: typing.Optional[types.Region] = None,
|
|
|
|
method: typing.Optional[str] = None,
|
|
|
|
params: typing.Optional[typing.Mapping[str, typing.Any]] = None,
|
|
|
|
data: typing.Any = None,
|
|
|
|
headers: typing.Optional[aiohttp.typedefs.LooseHeaders] = None,
|
|
|
|
**kwargs: typing.Any,
|
|
|
|
) -> typing.Mapping[str, typing.Any]:
|
|
|
|
"""Make a request any bbs endpoint."""
|
|
|
|
if lang is not None and lang not in constants.LANGS:
|
|
|
|
raise ValueError(f"{lang} is not a valid language, must be one of: " + ", ".join(constants.LANGS))
|
|
|
|
|
|
|
|
lang = lang or self.lang
|
|
|
|
region = region or self.region
|
|
|
|
|
|
|
|
url = routes.BBS_URL.get_url(region).join(yarl.URL(url))
|
|
|
|
headers = dict(headers or {})
|
|
|
|
|
|
|
|
if self.region == types.Region.CHINESE:
|
|
|
|
if self.region == types.Region.CHINESE:
|
|
|
|
account_id = self.cookie_manager.user_id
|
|
|
|
if account_id:
|
|
|
|
device_id = hex_digest(str(account_id))
|
|
|
|
else:
|
|
|
|
account_mid_v2 = get_account_mid_v2(self.cookie_manager.cookies)
|
|
|
|
if account_mid_v2:
|
|
|
|
device_id = hex_digest(account_mid_v2)
|
|
|
|
else:
|
|
|
|
device_id = DEVICE_ID
|
|
|
|
|
2022-12-23 15:44:40 +00:00
|
|
|
app_version, _, ds_sign = get_ds()
|
|
|
|
ua = get_ua(device="Paimon Build " + device_id[0:5], version=app_version)
|
2022-12-10 12:37:43 +00:00
|
|
|
add_headers = {
|
|
|
|
"User-Agent": ua,
|
|
|
|
"Referer": "https://www.miyoushe.com/ys/",
|
|
|
|
"x-rpc-device_id": get_device_id(device_id),
|
2022-12-23 15:44:40 +00:00
|
|
|
"x-rpc-app_version": app_version,
|
2022-12-10 12:37:43 +00:00
|
|
|
"x-rpc-client_type": "4",
|
|
|
|
"ds": ds_sign,
|
|
|
|
}
|
|
|
|
headers.update(add_headers)
|
|
|
|
elif self.region == types.Region.OVERSEAS:
|
|
|
|
headers.update(ds.get_ds_headers(data=data, params=params, region=region, lang=lang or self.lang))
|
|
|
|
headers["Referer"] = str(routes.BBS_REFERER_URL.get_url(self.region))
|
|
|
|
else:
|
|
|
|
raise TypeError(f"{region!r} is not a valid region.")
|
|
|
|
|
|
|
|
data = await self.request(url, method=method, params=params, data=data, headers=headers, **kwargs)
|
|
|
|
return data
|
|
|
|
|
2022-11-17 08:07:18 +00:00
|
|
|
|
|
|
|
@patch(genshin.client.components.daily.DailyRewardClient) # noqa
|
|
|
|
class DailyRewardClient:
|
|
|
|
@patchable
|
|
|
|
async def request_daily_reward(
|
|
|
|
self,
|
|
|
|
endpoint: str,
|
|
|
|
*,
|
|
|
|
game: typing.Optional[types.Game] = None,
|
|
|
|
method: str = "GET",
|
|
|
|
lang: typing.Optional[str] = None,
|
|
|
|
params: typing.Optional[typing.Mapping[str, typing.Any]] = None,
|
|
|
|
headers: typing.Optional[aiohttp.typedefs.LooseHeaders] = None,
|
|
|
|
**kwargs: typing.Any,
|
|
|
|
) -> typing.Mapping[str, typing.Any]:
|
|
|
|
"""Make a request towards the daily reward endpoint."""
|
|
|
|
params = dict(params or {})
|
|
|
|
headers = dict(headers or {})
|
|
|
|
|
|
|
|
if game is None:
|
|
|
|
if self.default_game is None:
|
|
|
|
raise RuntimeError("No default game set.")
|
|
|
|
|
|
|
|
game = self.default_game
|
|
|
|
|
|
|
|
base_url = routes.REWARD_URL.get_url(self.region, game)
|
|
|
|
url = (base_url / endpoint).update_query(**base_url.query)
|
|
|
|
|
|
|
|
if self.region == types.Region.OVERSEAS:
|
|
|
|
params["lang"] = lang or self.lang
|
|
|
|
|
|
|
|
elif self.region == types.Region.CHINESE:
|
|
|
|
# TODO: Support cn honkai
|
|
|
|
player_id = await self._get_uid(types.Game.GENSHIN)
|
|
|
|
|
|
|
|
params["uid"] = player_id
|
|
|
|
params["region"] = utility.recognize_genshin_server(player_id)
|
|
|
|
|
2022-11-26 07:58:13 +00:00
|
|
|
account_id = self.cookie_manager.user_id
|
2022-11-17 08:07:18 +00:00
|
|
|
if account_id:
|
|
|
|
device_id = hex_digest(str(account_id))
|
|
|
|
else:
|
2022-11-26 07:58:13 +00:00
|
|
|
account_mid_v2 = get_account_mid_v2(self.cookie_manager.cookies)
|
|
|
|
if account_mid_v2:
|
|
|
|
device_id = hex_digest(account_mid_v2)
|
|
|
|
else:
|
|
|
|
device_id = DEVICE_ID
|
2022-11-17 08:07:18 +00:00
|
|
|
if endpoint == "sign":
|
2022-12-01 01:29:15 +00:00
|
|
|
app_version, client_type, ds_sign = get_ds()
|
2022-11-17 08:07:18 +00:00
|
|
|
else:
|
2022-12-01 01:29:15 +00:00
|
|
|
app_version, client_type, ds_sign = get_ds(new_ds=True, params=params)
|
|
|
|
device = "Paimon Build " + device_id[0:5]
|
|
|
|
ua = get_ua(device=device)
|
2022-11-17 08:07:18 +00:00
|
|
|
headers["User-Agent"] = ua
|
|
|
|
headers["X_Requested_With"] = "com.mihoyo.hoyolab"
|
|
|
|
headers["Referer"] = (
|
|
|
|
"https://webstatic.mihoyo.com/bbs/event/signin-ys/index.html?"
|
|
|
|
"bbs_auth_required=true&act_id=e202009291139501&utm_source=bbs&utm_medium=mys&utm_campaign=icon"
|
|
|
|
)
|
2022-12-01 01:29:15 +00:00
|
|
|
headers["x-rpc-device_name"] = device
|
|
|
|
headers["x-rpc-device_id"] = get_device_id(device_id)
|
|
|
|
headers["x-rpc-app_version"] = app_version
|
|
|
|
headers["x-rpc-client_type"] = client_type
|
|
|
|
headers["x-rpc-sys_version"] = "12"
|
|
|
|
headers["x-rpc-platform"] = "android"
|
|
|
|
headers["x-rpc-channel"] = "miyousheluodi"
|
|
|
|
headers["x-rpc-device_model"] = device
|
|
|
|
headers["ds"] = ds_sign
|
2022-11-17 08:07:18 +00:00
|
|
|
|
|
|
|
validate = kwargs.get("validate")
|
|
|
|
challenge = kwargs.get("challenge")
|
|
|
|
|
|
|
|
if validate and challenge:
|
|
|
|
headers["x-rpc-challenge"] = challenge
|
|
|
|
headers["x-rpc-validate"] = validate
|
|
|
|
headers["x-rpc-seccode"] = f"{validate}|jordan"
|
|
|
|
|
|
|
|
else:
|
|
|
|
raise TypeError(f"{self.region!r} is not a valid region.")
|
|
|
|
|
2022-11-17 11:13:12 +00:00
|
|
|
kwargs.pop("challenge", None)
|
|
|
|
kwargs.pop("validate", None)
|
|
|
|
|
2022-11-17 08:07:18 +00:00
|
|
|
return await self.request(url, method=method, params=params, headers=headers, **kwargs)
|