36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
|
||
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
||
|
|
import { parseBody } from '@/lib/api/route-helpers';
|
||
|
|
import { errorResponse } from '@/lib/errors';
|
||
|
|
import { createFormTemplate, listFormTemplates } from '@/lib/services/form-templates.service';
|
||
|
|
import { createFormTemplateSchema } from '@/lib/validators/form-templates';
|
||
|
|
|
||
|
|
export const GET = withAuth(
|
||
|
|
withPermission('admin', 'manage_forms', async (_req, ctx) => {
|
||
|
|
try {
|
||
|
|
const data = await listFormTemplates(ctx.portId);
|
||
|
|
return NextResponse.json({ data });
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
|
||
|
|
export const POST = withAuth(
|
||
|
|
withPermission('admin', 'manage_forms', async (req, ctx) => {
|
||
|
|
try {
|
||
|
|
const body = await parseBody(req, createFormTemplateSchema);
|
||
|
|
const tpl = await createFormTemplate(ctx.portId, body, {
|
||
|
|
userId: ctx.userId,
|
||
|
|
portId: ctx.portId,
|
||
|
|
ipAddress: ctx.ipAddress,
|
||
|
|
userAgent: ctx.userAgent,
|
||
|
|
});
|
||
|
|
return NextResponse.json({ data: tpl }, { status: 201 });
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|