mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-28 05:30:29 +08:00
18 lines
860 B
TypeScript
18 lines
860 B
TypeScript
import axios from 'axios'
|
|
import { subStorePort } from '../resolve/server'
|
|
import { getAppConfig } from '../config'
|
|
|
|
export async function subStoreSubs(): Promise<ISubStoreSub[]> {
|
|
const { useCustomSubStore = false, customSubStoreUrl = '' } = await getAppConfig()
|
|
const baseUrl = useCustomSubStore ? customSubStoreUrl : `http://127.0.0.1:${subStorePort}`
|
|
const res = await axios.get(`${baseUrl}/api/subs`, { responseType: 'json' })
|
|
return res.data.data as ISubStoreSub[]
|
|
}
|
|
|
|
export async function subStoreCollections(): Promise<ISubStoreSub[]> {
|
|
const { useCustomSubStore = false, customSubStoreUrl = '' } = await getAppConfig()
|
|
const baseUrl = useCustomSubStore ? customSubStoreUrl : `http://127.0.0.1:${subStorePort}`
|
|
const res = await axios.get(`${baseUrl}/api/collections`, { responseType: 'json' })
|
|
return res.data.data as ISubStoreSub[]
|
|
}
|