mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-16 13:17:32 +00:00
172 lines
8.5 KiB
JavaScript
172 lines
8.5 KiB
JavaScript
import { generateSeed } from '../../utils/data.js';
|
|
import settings from '../settings.js';
|
|
import crypto from 'crypto';
|
|
import _ from 'lodash';
|
|
/**
|
|
* derived from miao-yunzai
|
|
*/
|
|
export default class ZZZApiTool {
|
|
/**
|
|
*
|
|
* @param {uid} uid
|
|
* @param {server} server
|
|
*/
|
|
constructor(uid, server) {
|
|
this.uid = uid;
|
|
this.isZZZ = true;
|
|
this.server = server;
|
|
this.game = 'zzz';
|
|
this.uuid = crypto.randomUUID();
|
|
if (['prod_gf_cn'].includes(this.server)) {
|
|
this.gameBiz = 'nap_cn';
|
|
this.host = 'https://api-takumi.mihoyo.com/';
|
|
this.hostRecord = 'https://api-takumi-record.mihoyo.com/';
|
|
this.hostPublicData = 'https://public-data-api.mihoyo.com/';
|
|
this.hostBbs = 'https://bbs-api.miyoushe.com/';
|
|
} else {
|
|
this.gameBiz = 'nap_global';
|
|
this.host = 'https://sg-public-api.hoyolab.com/';
|
|
this.hostRecord = 'https://sg-act-nap-api.hoyolab.com/';
|
|
this.hostPublicData = 'https://sg-public-data-api.hoyoverse.com/';
|
|
}
|
|
this.zzzUrlMap = {
|
|
zzzUser: {
|
|
url: `${this.host}binding/api/getUserGameRolesByCookie`,
|
|
query: `game_biz=${this.gameBiz}®ion=${this.server}&game_uid=${this.uid}`,
|
|
},
|
|
zzzNote: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/note`,
|
|
query: `role_id=${this.uid}&server=${this.server}`,
|
|
},
|
|
zzzIndex: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/index`,
|
|
query: `lang=zh-cn&role_id=${this.uid}&server=${this.server}`,
|
|
},
|
|
zzzAvatarList: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/avatar/basic`,
|
|
query: `lang=zh-cn&role_id=${this.uid}&server=${this.server}`,
|
|
},
|
|
zzzAvatarInfo: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/avatar/info`,
|
|
query: `lang=zh-cn&role_id=${this.uid}&server=${this.server}&need_wiki=false`,
|
|
},
|
|
zzzBuddyList: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/buddy/info`,
|
|
query: `lang=zh-cn&role_id=${this.uid}&server=${this.server}`,
|
|
},
|
|
zzzChallenge: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/challenge`,
|
|
query: `lang=zh-cn&role_id=${this.uid}&server=${this.server}&schedule_type=1`,
|
|
},
|
|
zzzChallengePeriod: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/challenge`,
|
|
query: `lang=zh-cn&role_id=${this.uid}&server=${this.server}&schedule_type=2`,
|
|
},
|
|
zzzDeadly: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/mem_detail`,
|
|
query: `lang=zh-cn&uid=${this.uid}®ion=${this.server}&schedule_type=1`,
|
|
},
|
|
zzzDeadlyPeriod: {
|
|
url: `${this.hostRecord}event/game_record_zzz/api/zzz/mem_detail`,
|
|
query: `lang=zh-cn&uid=${this.uid}®ion=${this.server}&schedule_type=2`,
|
|
},
|
|
zzzMonthly: {
|
|
url: `${this.host}event/nap_ledger/month_info`,
|
|
query: `uid=${this.uid}®ion=${this.server}`,
|
|
},
|
|
zzzAuthKey: {
|
|
url: `${this.host}binding/api/genAuthKey`,
|
|
body: {
|
|
auth_appid: 'webview_gacha',
|
|
game_biz: this.gameBiz,
|
|
game_uid: this.uid * 1,
|
|
region: this.server,
|
|
},
|
|
dsSalt: 'web',
|
|
},
|
|
};
|
|
}
|
|
|
|
getUrlMap = (data = {}) => {
|
|
const deviceCfg = settings.getConfig('device');
|
|
const defDeviceCfg = settings.getdefSet('device');
|
|
const {
|
|
productName = _.get(deviceCfg, 'productName') ||
|
|
_.get(defDeviceCfg, 'productName'),
|
|
deviceType = _.get(deviceCfg, 'productType') ||
|
|
_.get(defDeviceCfg, 'productType'),
|
|
modelName = _.get(deviceCfg, 'modelName') ||
|
|
_.get(defDeviceCfg, 'modelName'),
|
|
oaid = this.uuid,
|
|
osVersion = _.get(deviceCfg, 'osVersion') ||
|
|
_.get(defDeviceCfg, 'osVersion'),
|
|
deviceInfo = _.get(deviceCfg, 'deviceInfo') ||
|
|
_.get(defDeviceCfg, 'deviceInfo'),
|
|
board = _.get(deviceCfg, 'board') ||
|
|
_.get(defDeviceCfg, 'board'),
|
|
} = data;
|
|
const deviceBrand = deviceInfo.split('/')[0];
|
|
const deviceDisplay = deviceInfo.split('/')[3];
|
|
let urlMap = {
|
|
zzz: {
|
|
...(['prod_gf_cn'].includes(this.server)
|
|
? {
|
|
getFp: {
|
|
url: `${this.hostPublicData}device-fp/api/getFp`,
|
|
body: {
|
|
app_name: 'bbs_cn',
|
|
bbs_device_id: `${this.uuid}`,
|
|
device_fp: '38d805c20d53d',
|
|
device_id: 'cc57c40f763ae4cc',
|
|
ext_fields: `{"proxyStatus":1,"isRoot":0,"romCapacity":"768","deviceName":"${modelName}","productName":"${productName}","romRemain":"727","hostname":"BuildHost","screenSize":"1096x2434","isTablet":0,"aaid":"${this.uuid}","model":"${modelName}","brand":"${deviceBrand}","hardware":"qcom","deviceType":"${deviceType}","devId":"REL","serialNumber":"unknown","sdCapacity":224845,"buildTime":"1692775759000","buildUser":"BuildUser","simState":1,"ramRemain":"218344","appUpdateTimeDiff":1740498108042,"deviceInfo":"${deviceInfo}","vaid":"${this.uuid}","buildType":"user","sdkVersion":"33","ui_mode":"UI_MODE_TYPE_NORMAL","isMockLocation":0,"cpuType":"arm64-v8a","isAirMode":0,"ringMode":2,"chargeStatus":1,"manufacturer":"${deviceBrand}","emulatorStatus":0,"appMemory":"768","osVersion":"${osVersion}","vendor":"unknown","accelerometer":"-1.588236x6.8404818x6.999604","sdRemain":218214,"buildTags":"release-keys","packageName":"com.mihoyo.hyperion","networkType":"WiFi","oaid":"${oaid}","debugStatus":1,"ramCapacity":"224845","magnetometer":"-47.04375x51.3375x137.96251","display":"${deviceDisplay}","appInstallTimeDiff":1740498108042,"packageVersion":"2.35.0","gyroscope":"-0.22601996x-0.09453133x0.09040799","batteryStatus":88,"hasKeyboard":0,"board":"${board}"}`,
|
|
platform: '2',
|
|
seed_id: `${this.uuid}`,
|
|
seed_time: new Date().getTime() + '',
|
|
},
|
|
noDs: true,
|
|
},
|
|
deviceLogin: {
|
|
url: `${this.hostBbs}apihub/api/deviceLogin`,
|
|
body: {
|
|
app_version: '2.73.1',
|
|
device_id: data.deviceId,
|
|
device_name: `${deviceBrand}${modelName}`,
|
|
os_version: '33',
|
|
platform: 'Android',
|
|
registration_id: generateSeed(19),
|
|
},
|
|
},
|
|
saveDevice: {
|
|
url: `${this.hostBbs}apihub/api/saveDevice`,
|
|
body: {
|
|
app_version: '2.73.1',
|
|
device_id: data.deviceId,
|
|
device_name: `${deviceBrand}${modelName}`,
|
|
os_version: '33',
|
|
platform: 'Android',
|
|
registration_id: generateSeed(19),
|
|
},
|
|
},
|
|
}
|
|
: {
|
|
getFp: {
|
|
url: `${this.hostPublicData}device-fp/api/getFp`,
|
|
body: {
|
|
app_name: 'bbs_oversea',
|
|
device_fp: '38d7f4c72b736',
|
|
device_id: 'cc57c40f763ae4cc',
|
|
ext_fields: `{"proxyStatus":1,"isRoot":0,"romCapacity":"768","deviceName":"${modelName}","productName":"${productName}","romRemain":"737","hostname":"BuildHost","screenSize":"1096x2434","isTablet":0,"model":"${modelName}","brand":"${deviceBrand}","hardware":"qcom","deviceType":"${deviceType}","devId":"REL","serialNumber":"unknown","sdCapacity":224845,"buildTime":"1692775759000","buildUser":"BuildUser","simState":1,"ramRemain":"218355","appUpdateTimeDiff":1740498134990,"deviceInfo":"${deviceInfo}","buildType":"user","sdkVersion":"33","ui_mode":"UI_MODE_TYPE_NORMAL","isMockLocation":0,"cpuType":"arm64-v8a","isAirMode":0,"ringMode":2,"app_set_id":"${this.uuid}","chargeStatus":1,"manufacturer":"${deviceBrand}","emulatorStatus":0,"appMemory":"768","adid":"${this.uuid}","osVersion":"${osVersion}","vendor":"unknown","accelerometer":"-0.6436693x5.510072x8.106883","sdRemain":218227,"buildTags":"release-keys","packageName":"com.mihoyo.hoyolab","networkType":"WiFi","debugStatus":1,"ramCapacity":"224845","magnetometer":"-46.143753x52.350002x141.54376","display":"${deviceDisplay}","appInstallTimeDiff":1740498134990,"packageVersion":"2.35.0","gyroscope":"0.21242823x0.11484258x-0.09850194","batteryStatus":88,"hasKeyboard":0,"board":"${board}"}`,
|
|
hoyolab_device_id: `${this.uuid}`,
|
|
platform: '2',
|
|
seed_id: `${this.uuid}`,
|
|
seed_time: new Date().getTime() + '',
|
|
},
|
|
noDs: true,
|
|
},
|
|
}),
|
|
...this.zzzUrlMap,
|
|
},
|
|
};
|
|
return urlMap[this.game];
|
|
};
|
|
}
|