mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-04-05 00:05:09 +03:00
Implemented #61
This commit is contained in:
parent
2b90b4e5db
commit
bb67f1f34b
2 changed files with 17 additions and 11 deletions
|
@ -68,23 +68,28 @@ export default class Game {
|
||||||
*
|
*
|
||||||
* @returns JSON from API else throws Error if company's servers are unreachable or if they responded with an error
|
* @returns JSON from API else throws Error if company's servers are unreachable or if they responded with an error
|
||||||
*/
|
*/
|
||||||
public static async getLatestData(): Promise<Data> {
|
public static async getLatestData(): Promise<Data>
|
||||||
|
{
|
||||||
const cache = await Cache.get(`Game.getLatestData.ServerResponse.${await this.server}`);
|
const cache = await Cache.get(`Game.getLatestData.ServerResponse.${await this.server}`);
|
||||||
if (cache && !cache.expired) {
|
|
||||||
|
if (cache && !cache.expired)
|
||||||
return cache.value as Data;
|
return cache.value as Data;
|
||||||
}
|
|
||||||
const response = await fetch(constants.versionsUri(await this.server));
|
const response = await fetch(constants.versionsUri(await this.server));
|
||||||
if (response.ok) {
|
|
||||||
|
if (response.ok)
|
||||||
|
{
|
||||||
const json: ServerResponse = JSON.parse(await response.body());
|
const json: ServerResponse = JSON.parse(await response.body());
|
||||||
if (json.message == 'OK') {
|
|
||||||
Cache.set(`Game.getLatestData.ServerResponse.${await this.server}`, json.data, 6 * 3600);
|
if (json.message != 'OK')
|
||||||
return json.data;
|
|
||||||
} else {
|
|
||||||
throw new Error(`${constants.placeholders.uppercase.company}'s versions server responds with an error: [${json.retcode}] ${json.message}`);
|
throw new Error(`${constants.placeholders.uppercase.company}'s versions server responds with an error: [${json.retcode}] ${json.message}`);
|
||||||
}
|
|
||||||
} else {
|
Cache.set(`Game.getLatestData.ServerResponse.${await this.server}`, json.data, 6 * 3600);
|
||||||
throw new Error(`${constants.placeholders.uppercase.company}'s versions server is unreachable`);
|
|
||||||
|
return json.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else throw new Error(`${constants.placeholders.uppercase.company}'s versions server is unreachable`);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -278,6 +278,7 @@ export default class Patch
|
||||||
{
|
{
|
||||||
return new Promise(async (resolve, reject) => {
|
return new Promise(async (resolve, reject) => {
|
||||||
const patchCacheKey = `Patch.getPatchInfo.${version}.${source}.${await Game.server}`;
|
const patchCacheKey = `Patch.getPatchInfo.${version}.${source}.${await Game.server}`;
|
||||||
|
|
||||||
const resolveOutput = async (output: PatchInfo|null, unityPlayerHash: string|null = null) => {
|
const resolveOutput = async (output: PatchInfo|null, unityPlayerHash: string|null = null) => {
|
||||||
await Cache.set(patchCacheKey, {
|
await Cache.set(patchCacheKey, {
|
||||||
available: true,
|
available: true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue