xyyd-fatfox/src/utils/upload.ts

48 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-09-13 10:15:43 +08:00
import { ossBase } from './../config'
2024-09-09 17:53:07 +08:00
import OSS from 'ali-oss'
import { v4 as uuid } from 'uuid'
2024-09-13 10:15:43 +08:00
import request from './request'
2024-10-10 16:03:17 +08:00
import db from '@/db'
export const localPrefix = '__local_resource_'
2024-09-09 17:53:07 +08:00
export default async function upload(file: File, root: string) {
2024-09-13 10:15:43 +08:00
const token = localStorage.getItem('token')
if (!token) {
throw new Error('尚未登录,无法上传')
}
const config = await request<{
region: string
accessKeyId: string
accessKeySecret: string
securityToken: string
bucket: string
path: string
}>('POST', '/api/ossKey')
2024-09-09 17:53:07 +08:00
const ext = file.name.split('.').pop()
const path = `${config.path}/${root}/${uuid()}.${ext}`
const client = new OSS({
region: config.region,
accessKeyId: config.accessKeyId,
accessKeySecret: config.accessKeySecret,
stsToken: config.securityToken,
bucket: config.bucket
})
const { name } = await client.put(path, file, {
mime: file.type,
headers: {
'Content-Type': file.type
}
})
return ossBase + '/' + name
}
2024-10-10 16:03:17 +08:00
export async function uploadLocal(file: File) {
const id = uuid()
const list = await db.getItem<{ tag: string; file: Blob; type: 'image' | 'video' }[]>('localList') || []
list.push({
tag: id,
file: file,
type: 'image'
})
await db.setItem('localList', list)
return id
}