2023-07-12 11:35:43 +02:00
|
|
|
import path from 'path'
|
|
|
|
import type { RequestHandler } from '@sveltejs/kit';
|
|
|
|
import { BEARER_TOKEN } from '$env/static/private'
|
|
|
|
import { IMAGE_DIR } from '$env/static/private'
|
|
|
|
import { unlink } from 'node:fs';
|
|
|
|
import { error } from '@sveltejs/kit';
|
|
|
|
|
|
|
|
export const POST = (async ({ request }) => {
|
|
|
|
const data = await request.json();
|
|
|
|
if(data.bearer === BEARER_TOKEN){
|
|
|
|
[ "full", "thumb", "placeholder"].forEach((folder) => {
|
2023-07-12 12:23:35 +02:00
|
|
|
unlink(path.join(IMAGE_DIR, "rezepte", folder, data.name + ".webp"), (e) => {
|
2023-07-13 18:18:01 +02:00
|
|
|
if(e) error(404, "could not delete: " + folder + "/" + data.name + ".webp" + e)
|
2023-07-12 11:35:43 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
return new Response(JSON.stringify({msg: "Deleted image successfully"}),{
|
|
|
|
status: 200,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
throw error(403, "Password incorrect")
|
|
|
|
}
|
|
|
|
|
|
|
|
}) satisfies RequestHandler;
|