mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-12 08:30:59 +01:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
|
import { NextApiRequestQueryBody } from 'lib/types';
|
||
|
import { canViewWebsite } from 'lib/auth';
|
||
|
import { useAuth, useCors } from 'lib/middleware';
|
||
|
import { NextApiResponse } from 'next';
|
||
|
import { badRequest, methodNotAllowed, ok, unauthorized } from 'next-basics';
|
||
|
import { EVENT_COLUMNS, SESSION_COLUMNS } from 'lib/constants';
|
||
|
import { getValues } from 'queries';
|
||
|
|
||
|
export interface WebsiteResetRequestQuery {
|
||
|
id: string;
|
||
|
}
|
||
|
|
||
|
export default async (
|
||
|
req: NextApiRequestQueryBody<WebsiteResetRequestQuery>,
|
||
|
res: NextApiResponse,
|
||
|
) => {
|
||
|
await useCors(req, res);
|
||
|
await useAuth(req, res);
|
||
|
|
||
|
const { id: websiteId, type } = req.query;
|
||
|
|
||
|
if (req.method === 'GET') {
|
||
|
if (!SESSION_COLUMNS.includes(type as string) && !EVENT_COLUMNS.includes(type as string)) {
|
||
|
return badRequest(res);
|
||
|
}
|
||
|
|
||
|
if (!(await canViewWebsite(req.auth, websiteId))) {
|
||
|
return unauthorized(res);
|
||
|
}
|
||
|
|
||
|
const values = await getValues(websiteId, type as string);
|
||
|
|
||
|
return ok(
|
||
|
res,
|
||
|
values
|
||
|
.map(({ value }) => value)
|
||
|
.filter(n => n)
|
||
|
.sort(),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return methodNotAllowed(res);
|
||
|
};
|