xyyd-fatfox/src/utils/upload.ts

35 lines
968 B
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-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
}