mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-12 07:42:40 +10:00
27 lines
732 B
TypeScript
27 lines
732 B
TypeScript
// get a specific screenshot
|
|
import aclManager from "~/server/internal/acls";
|
|
import screenshotManager from "~/server/internal/screenshots";
|
|
|
|
export default defineEventHandler(async (h3) => {
|
|
const userId = await aclManager.getUserIdACL(h3, ["screenshots:read"]);
|
|
if (!userId) throw createError({ statusCode: 403 });
|
|
|
|
const screenshotId = getRouterParam(h3, "id");
|
|
if (!screenshotId)
|
|
throw createError({
|
|
statusCode: 400,
|
|
statusMessage: "Missing screenshot ID",
|
|
});
|
|
|
|
const result = await screenshotManager.get(screenshotId);
|
|
if (!result)
|
|
throw createError({
|
|
statusCode: 404,
|
|
});
|
|
if (result.userId !== userId)
|
|
throw createError({
|
|
statusCode: 404,
|
|
});
|
|
return result;
|
|
});
|