51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
|
import { getClient, ResponseType } from '@tauri-apps/api/http'
|
||
|
|
||
|
import type { DomainTypes, GameEndPointsTypes } from '../types'
|
||
|
|
||
|
const PROD_VERSION_REGEX = /(production-[^/]+)/im
|
||
|
const STABLE_PROD_VERSION = 'PRODUCTION-202304181630-471782382'
|
||
|
|
||
|
export let PROD_VERSION: string | undefined
|
||
|
|
||
|
const HABBO_URL = (domain: DomainTypes): string => {
|
||
|
return `https://www.habbo.${domain}`
|
||
|
}
|
||
|
|
||
|
export const HABBO_GORDON_URL = `https://images.habbo.com/gordon/${PROD_VERSION ?? STABLE_PROD_VERSION}`
|
||
|
|
||
|
export const client = await getClient()
|
||
|
await client
|
||
|
.get(`${HABBO_URL('com')}/gamedata/external_variables/0`, {
|
||
|
responseType: ResponseType.Text
|
||
|
})
|
||
|
.then(({ data }) => {
|
||
|
return (PROD_VERSION = (data as string).match(PROD_VERSION_REGEX)?.[0])
|
||
|
})
|
||
|
|
||
|
export const GAME_ENDPOINTS = (domain: DomainTypes): GameEndPointsTypes => {
|
||
|
return [
|
||
|
/* {
|
||
|
src: `${HABBO_URL(domain)}/gamedata/figuredata/0`, // check
|
||
|
convert: 'XML',
|
||
|
fileName: 'FigureData'
|
||
|
}, */
|
||
|
/* {
|
||
|
src: `${HABBO_GORDON_URL}/figuremap.xml`,
|
||
|
convert: 'XML',
|
||
|
fileName: 'FigureMap'
|
||
|
}, */
|
||
|
/* {
|
||
|
src: `${HABBO_URL(domain)}/gamedata/furnidata_json/0`, // check
|
||
|
fileName: 'FurniData'
|
||
|
}, */ {
|
||
|
src: `${HABBO_GORDON_URL}/effectmap.xml`,
|
||
|
convert: 'XML',
|
||
|
fileName: 'EffectMap'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|
||
|
export const ASSETS_ENDPOINTS = (domain: DomainTypes): string[] => {
|
||
|
return [`${HABBO_URL(domain)}/`]
|
||
|
}
|