mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
74 lines
1.8 KiB
JavaScript
74 lines
1.8 KiB
JavaScript
/*
|
|
* 胡桃API Miao-Plugin 封装
|
|
* https://github.com/DGP-Studio/DGP.Genshin.HutaoAPI
|
|
*
|
|
* */
|
|
|
|
import fetch from 'node-fetch'
|
|
import { Data } from '#miao'
|
|
|
|
const host = 'http://miao.games/api/hutao'
|
|
|
|
function getApi (api) {
|
|
return `${host}?api=${api}`
|
|
}
|
|
|
|
let HutaoApi = {
|
|
async req (url, param = {}, EX = 3600) {
|
|
let cacheData = await Data.getCacheJSON(`miao:hutao:${url}`)
|
|
if (cacheData && cacheData.data && param.method !== 'POST') {
|
|
return cacheData
|
|
}
|
|
let response = await fetch(getApi(`${url}`), {
|
|
...param,
|
|
method: param.method || 'GET'
|
|
})
|
|
let retData = await response.json()
|
|
if (retData && retData.data && param.method !== 'POST') {
|
|
let d = new Date()
|
|
retData.lastUpdate = `${d.toLocaleDateString()} ${d.toTimeString().substr(0, 5)}`
|
|
await Data.setCacheJSON(`miao:hutao:${url}`, retData, EX)
|
|
}
|
|
return retData
|
|
},
|
|
|
|
// 角色持有及命座分布
|
|
async getCons () {
|
|
return await HutaoApi.req('/Statistics/Constellation')
|
|
},
|
|
|
|
async getAbyssPct () {
|
|
return await HutaoApi.req('/Statistics/AvatarParticipation')
|
|
},
|
|
|
|
async getAbyssUse () {
|
|
return await HutaoApi.req('/Statistics2/AvatarParticipation')
|
|
},
|
|
|
|
async getAbyssTeam () {
|
|
return await HutaoApi.req('/Statistics/Team/Combination')
|
|
},
|
|
|
|
async getOverview () {
|
|
return await HutaoApi.req('/Statistics/Overview')
|
|
},
|
|
|
|
async getUsage () {
|
|
return await HutaoApi.req('/Statistics/Avatar/AvatarCollocation')
|
|
},
|
|
|
|
async uploadData (data = {}) {
|
|
let body = JSON.stringify(data)
|
|
return await HutaoApi.req('/Record/UploadData', {
|
|
method: 'POST',
|
|
headers: {
|
|
'User-Agent': 'Yunzai-Bot/Miao-Plugin',
|
|
'Content-Type': 'text/json; charset=utf-8'
|
|
},
|
|
body
|
|
})
|
|
}
|
|
}
|
|
|
|
export default HutaoApi
|