|
import { Input, Modal, message } from 'ant-design-vue' |
|
import axios, { AxiosInstance, isAxiosError } from 'axios' |
|
import type { GlobalSettingPart } from './type' |
|
import { t } from '@/i18n' |
|
import type { ExtraPathModel, Tag } from './db' |
|
import cookie from 'js-cookie' |
|
import { delay } from 'vue3-ts-util' |
|
import { computed, h, ref } from 'vue' |
|
import 'ant-design-vue/es/input/style/index.css' |
|
import sjcl from 'sjcl' |
|
import { tauriConf } from '@/util/tauriAppConf' |
|
import { Dict, isSync } from '@/util' |
|
import { FileNodeInfo } from './files' |
|
|
|
export const apiBase = computed(() => |
|
tauriConf.value |
|
? `http://127.0.0.1:${tauriConf.value.port}/infinite_image_browsing` |
|
: '/infinite_image_browsing' |
|
) |
|
|
|
const sha256 = (data: string) => { |
|
const hash = sjcl.hash.sha256.hash(data) |
|
return sjcl.codec.hex.fromBits(hash) |
|
} |
|
|
|
const addInterceptor = (axiosInst: AxiosInstance) => { |
|
axiosInst.interceptors.response.use( |
|
(resp) => resp, |
|
async (err) => { |
|
if (isAxiosError(err)) { |
|
if (err.response?.status === 401) { |
|
const key = await new Promise<string>((resolve) => { |
|
const key = ref('') |
|
Modal.confirm({ |
|
title: t('serverKeyRequired'), |
|
content: () => { |
|
return h(Input, { |
|
value: key.value, |
|
'onUpdate:value': (v: string) => (key.value = v) |
|
}) |
|
}, |
|
onOk() { |
|
resolve(key.value) |
|
} |
|
}) |
|
}) |
|
if (!key) { |
|
return |
|
} |
|
cookie.set('IIB_S', sha256(key + '_ciallo')) |
|
await delay(100) |
|
location.reload() |
|
} |
|
|
|
switch (err.response?.data?.detail?.type) { |
|
case 'secret_key_required': |
|
Modal.error({ |
|
width: '60vw', |
|
title: t('secretKeyMustBeConfigured'), |
|
content: () => h('p', { style: 'white-space: pre-line;' } , t('secretKeyRequiredWarnMsg')) |
|
}) |
|
throw new Error(t('secretKeyRequiredWarnMsg')) |
|
} |
|
let errmsg = err.response?.data?.detail |
|
try { |
|
if (!errmsg) { |
|
errmsg = JSON.parse(await err.response?.data.text()).detail |
|
} |
|
} catch (e) { |
|
console.error(err.response ,e) |
|
} |
|
errmsg ??= t('errorOccurred') |
|
message.error(errmsg) |
|
throw new Error(errmsg) |
|
} |
|
return err |
|
} |
|
) |
|
} |
|
|
|
export const axiosInst = computed(() => { |
|
const axiosInst = axios.create({ |
|
baseURL: apiBase.value |
|
}) |
|
addInterceptor(axiosInst) |
|
return axiosInst |
|
}) |
|
export const greeting = async () => { |
|
const resp = await axiosInst.value.get('hello') |
|
return resp.data as string |
|
} |
|
|
|
export interface GlobalConf { |
|
all_custom_tags: Tag[] |
|
global_setting: GlobalSettingPart |
|
is_win: boolean |
|
cwd: string |
|
home: string |
|
sd_cwd: string |
|
extra_paths: ExtraPathModel[] |
|
enable_access_control: boolean |
|
launch_mode: 'server' | 'sd' |
|
export_fe_fn: boolean |
|
app_fe_setting: Record<'global'|'fullscreen_layout'| `workspace_snapshot_${string}`, any> |
|
is_readonly: boolean |
|
} |
|
|
|
export const getGlobalSetting = async () => { |
|
const resp = await axiosInst.value.get('/global_setting') |
|
const data = resp.data as GlobalConf |
|
try { |
|
if (!isSync()) { |
|
data.app_fe_setting = {} as any |
|
} |
|
} catch (error) { |
|
console.error(error) |
|
} |
|
return data |
|
} |
|
|
|
export const getVersion = async () => { |
|
const resp = await axiosInst.value.get('/version') |
|
return resp.data as { hash?: string, tag?: string } |
|
} |
|
|
|
export const checkPathExists = async (paths: string[]) => { |
|
const resp = await axiosInst.value.post('/check_path_exists', { paths }) |
|
return resp.data as Record<string, boolean> |
|
} |
|
|
|
export const setImgPath = async (path: string) => { |
|
return axiosInst.value.post(`/send_img_path?path=${encodeURIComponent(path)}`) |
|
} |
|
|
|
export const genInfoCompleted = async () => { |
|
return (await axiosInst.value.get('/gen_info_completed', { timeout: 60_000 })).data as boolean |
|
} |
|
|
|
export const getImageGenerationInfo = async (path: string) => { |
|
return (await axiosInst.value.get(`/image_geninfo?path=${encodeURIComponent(path)}`)) |
|
.data as string |
|
} |
|
|
|
export const getImageGenerationInfoBatch = async (paths: string[]) => { |
|
if (!paths.length) { |
|
return {} |
|
} |
|
const resp = await axiosInst.value.post('/image_geninfo_batch', { paths }) |
|
return resp.data |
|
} |
|
|
|
export const openFolder = async (path: string) => { |
|
await axiosInst.value.post('/open_folder', { path }) |
|
} |
|
|
|
export const openWithDefaultApp = async (path: string) => { |
|
await axiosInst.value.post('/open_with_default_app', { path }) |
|
} |
|
|
|
export interface Top4MediaInfo extends FileNodeInfo { |
|
media_type: 'video' | 'image' |
|
} |
|
|
|
export const batchGetDirTop4MediaInfo = async (paths: string[]) => { |
|
const resp = await axiosInst.value.post('/batch_top_4_media_info', { paths }) |
|
return resp.data as Dict<Top4MediaInfo[]> |
|
} |
|
|
|
export const setAppFeSetting = async (name: keyof GlobalConf['app_fe_setting'], setting: Record<string, any>) => { |
|
if (!isSync()) return |
|
await axiosInst.value.post('/app_fe_setting', { name, value: JSON.stringify(setting) }) |
|
} |
|
|
|
export const removeAppFeSetting = async (name: keyof GlobalConf['app_fe_setting']) => { |
|
if (!isSync()) return |
|
await axiosInst.value.delete('/app_fe_setting', { data: { name } }) |
|
} |
|
|
|
export const setTargetFrameAsCover = async (body: {path: string, base64_img: string, updated_time: string}) => { |
|
await axiosInst.value.post('/set_target_frame_as_video_cover', body) |
|
} |