26 lines
641 B
TypeScript
26 lines
641 B
TypeScript
import { parseRequest } from '@/lib/request';
|
|
import { json, unauthorized } from '@/lib/response';
|
|
import { canViewWebsite } from '@/permissions';
|
|
import { getWebsiteSession } from '@/queries/sql';
|
|
|
|
export async function GET(
|
|
request: Request,
|
|
{ params }: { params: Promise<{ websiteId: string; sessionId: string }> },
|
|
) {
|
|
const { auth, error } = await parseRequest(request);
|
|
|
|
if (error) {
|
|
return error();
|
|
}
|
|
|
|
const { websiteId, sessionId } = await params;
|
|
|
|
if (!(await canViewWebsite(auth, websiteId))) {
|
|
return unauthorized();
|
|
}
|
|
|
|
const data = await getWebsiteSession(websiteId, sessionId);
|
|
|
|
return json(data);
|
|
}
|