mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
import { parseRequest } from '@/lib/request';
|
|
import { deleteReport, getReport, updateReport } from '@/queries';
|
|
import { canDeleteReport, canUpdateReport, canViewReport } from '@/permissions';
|
|
import { unauthorized, json, notFound, ok } from '@/lib/response';
|
|
import { reportSchema } from '@/lib/schema';
|
|
|
|
export async function GET(request: Request, { params }: { params: Promise<{ reportId: string }> }) {
|
|
const { auth, error } = await parseRequest(request);
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
const { reportId } = await params;
|
|
|
|
const report = await getReport(reportId);
|
|
|
|
if (!(await canViewReport(auth, report))) {
|
|
return unauthorized();
|
|
}
|
|
|
|
return json(report);
|
|
}
|
|
|
|
export async function POST(
|
|
request: Request,
|
|
{ params }: { params: Promise<{ reportId: string }> },
|
|
) {
|
|
const { auth, body, error } = await parseRequest(request, reportSchema);
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
const { reportId } = await params;
|
|
const { websiteId, type, name, description, parameters } = body;
|
|
|
|
const report = await getReport(reportId);
|
|
|
|
if (!report) {
|
|
return notFound();
|
|
}
|
|
|
|
if (!(await canUpdateReport(auth, report))) {
|
|
return unauthorized();
|
|
}
|
|
|
|
const result = await updateReport(reportId, {
|
|
websiteId,
|
|
userId: auth.user.id,
|
|
type,
|
|
name,
|
|
description,
|
|
parameters,
|
|
} as any);
|
|
|
|
return json(result);
|
|
}
|
|
|
|
export async function DELETE(
|
|
request: Request,
|
|
{ params }: { params: Promise<{ reportId: string }> },
|
|
) {
|
|
const { auth, error } = await parseRequest(request);
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
const { reportId } = await params;
|
|
const report = await getReport(reportId);
|
|
|
|
if (!(await canDeleteReport(auth, report))) {
|
|
return unauthorized();
|
|
}
|
|
|
|
await deleteReport(reportId);
|
|
|
|
return ok();
|
|
}
|