New delete api function

This commit is contained in:
Patrick Alvin Alcala 2026-02-26 19:02:19 +08:00
parent 45b551511a
commit f51edc0506

View file

@ -0,0 +1,31 @@
import { ofetch } from 'ofetch'
import dayjs from 'dayjs'
import encryptRsa from './encryptRsa'
const API = import.meta.env.VITE_BACKEND
export default async (api: string, body: Object) => {
const today = new Date()
const todayUnix = dayjs(today).unix()
const expiration = todayUnix + 9
const aes = await encryptRsa(`${api.toString()}-${todayUnix.toString()}-${expiration.toString()}`)
const hash = `ocbo=${aes}token`
try {
await ofetch(API + api, {
headers: {
Accept: 'application/json',
'Cache-Control': 'no-cache',
'OCBO-Token': hash,
},
retry: 3,
retryDelay: 500,
retryStatusCodes: [400, 404, 405, 500, 502],
method: 'DELETE',
body: body,
})
return true
} catch {
return false
}
}