File size: 5,549 Bytes
0070fce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
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)
} |