不重复生成fp

This commit is contained in:
bbaban 2023-10-10 12:53:42 +08:00
parent 72fc40ea49
commit af19c2959c
2 changed files with 27 additions and 19 deletions

View File

@ -68,24 +68,8 @@ export default class MysApi {
return this.isSr ? 'prod_gf_cn' : 'cn_gf01' return this.isSr ? 'prod_gf_cn' : 'cn_gf01'
} }
async getData(type, data = {}, cached = false, isGetFP = false) { async getData(type, data = {}, cached = false) {
if (!isGetFP && !this.device_fp && !data?.headers?.['x-rpc-device_fp']) { if (type == 'getFp') data = { seed_id: this.generateSeed(16) }
let seed_id = this.generateSeed(16)
let device_fp = await this.getData('getFp', {
seed_id
}, false, true)
this.device_fp = device_fp?.data?.device_fp
}
if (!isGetFP && this.device_fp && !data?.headers?.['x-rpc-device_fp']) {
if (data?.headers) {
data.headers['x-rpc-device_fp'] = this.device_fp
} else {
if (!data) data = {}
data.headers = {
'x-rpc-device_fp': this.device_fp
}
}
}
let { url, headers, body } = this.getUrl(type, data) let { url, headers, body } = this.getUrl(type, data)
if (!url) return false if (!url) return false

View File

@ -161,10 +161,34 @@ export default class MysInfo {
let user = e.user?.getMysUser() let user = e.user?.getMysUser()
let mysApi = new MysApi(mysInfo.uid, mysInfo.ckInfo.ck, option, e.isSr, user.device) let mysApi = new MysApi(mysInfo.uid, mysInfo.ckInfo.ck, option, e.isSr, user.device)
if (!data?.headers?.['x-rpc-device_fp']){
let device_fp = (await mysApi.getData('getFp')).data?.device_fp
if (data?.headers) {
data.headers['x-rpc-device_fp'] = device_fp
} else {
if (!data) data = {}
data.headers = {
'x-rpc-device_fp': device_fp
}
}
}
let res let res
if (lodash.isObject(api)) { if (lodash.isObject(api)) {
let all = [] let all = []
/** 同步请求 */ /** 同步请求 */
for (let i in api) {
if (!api[i]?.headers?.['x-rpc-device_fp']){
if (api[i]?.headers) {
api[i].headers['x-rpc-device_fp'] = device_fp
} else {
if (!api[i]) api[i] = {}
api[i].headers = {
'x-rpc-device_fp': device_fp
}
}
}
}
if (e.apiSync) { if (e.apiSync) {
res = [] res = []
for (let i in api) { for (let i in api) {