Phase 1 - Security & Bug Fixes: - Add requireApiAuth helper and protect all 25 unprotected API routes - Add org-tenant scoping to all card, job, stats, and notification queries - Fix SSRF in ai-test, mask secrets in settings API, fix middleware bypass - Fix cards pagination routing, stat filter sync, drag-drop file passing - Add PUT /api/auth/me for profile persistence, stuck job recovery - Fix email watcher MIME type detection Phase 2 - Dynamic Fields & Digital Survey: - Add FormTemplate, FormField, Person, PasswordResetToken models to schema - Add fieldData, formTemplateId, firstName, lastName, personId to ResponseCard - Build FormTemplate CRUD API with field management and org scoping - Build Form Builder UI with field ordering, type config, and section management - Refactor card detail page to render fields dynamically from templates - Add dynamic OCR prompt/schema generation from template fields - Build public survey page at /s/[orgSlug]/[formSlug] with branding - Add QR code generation API and share section component Phase 3 - People & Analytics: - Build People CRUD API with merge and batch auto-link endpoints - Build People list and detail pages with search, merge dialog - Add auto-link logic in OCR completion to match/create Person records - Add /api/stats/trends endpoint with time series and team activity - Build Reports page with Recharts (area charts, bar charts, pipeline) - Upgrade dashboard with sparklines and People stat card Phase 4 - UX Polish: - Replace silent error handling with toast notifications across all pages - Add loading skeletons, differentiated empty states - Add ARIA labels, skip-to-content link, accessible column toggle - Add forgot password flow, Cmd+K command palette, Collection Days pages - Unify Echo branding and theme toggle consistency Made-with: Cursor
102 lines
3.2 KiB
TypeScript
102 lines
3.2 KiB
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { prisma } from "@/lib/db";
|
|
import { requireApiAuthWithOrg, handleApiError } from "@/lib/api-auth";
|
|
|
|
type RouteContext = { params: Promise<{ id: string; fieldId: string }> };
|
|
|
|
async function getOwnedField(templateId: string, fieldId: string, orgId: string) {
|
|
const template = await prisma.formTemplate.findUnique({
|
|
where: { id: templateId },
|
|
select: { organizationId: true },
|
|
});
|
|
if (!template || template.organizationId !== orgId) return null;
|
|
|
|
const field = await prisma.formField.findUnique({
|
|
where: { id: fieldId },
|
|
});
|
|
if (!field || field.formTemplateId !== templateId) return null;
|
|
|
|
return field;
|
|
}
|
|
|
|
export async function PUT(request: NextRequest, ctx: RouteContext) {
|
|
try {
|
|
const session = await requireApiAuthWithOrg();
|
|
const { id, fieldId } = await ctx.params;
|
|
|
|
const field = await getOwnedField(id, fieldId, session.user.orgId!);
|
|
if (!field) {
|
|
return NextResponse.json(
|
|
{ error: "Field not found" },
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
const body = await request.json();
|
|
const {
|
|
label, type, section, required, removable, options,
|
|
placeholder, helpText, validation, visibleOnCard, visibleOnSurvey,
|
|
} = body as {
|
|
label?: string;
|
|
type?: string;
|
|
section?: string;
|
|
required?: boolean;
|
|
removable?: boolean;
|
|
options?: unknown;
|
|
placeholder?: string;
|
|
helpText?: string;
|
|
validation?: unknown;
|
|
visibleOnCard?: boolean;
|
|
visibleOnSurvey?: boolean;
|
|
};
|
|
|
|
const data: Record<string, unknown> = {};
|
|
if (label !== undefined) data.label = label.trim();
|
|
if (type !== undefined) data.type = type.trim();
|
|
if (section !== undefined) data.section = section.trim();
|
|
if (required !== undefined) data.required = Boolean(required);
|
|
if (removable !== undefined) data.removable = Boolean(removable);
|
|
if (options !== undefined) data.options = options;
|
|
if (placeholder !== undefined) data.placeholder = placeholder?.trim() || null;
|
|
if (helpText !== undefined) data.helpText = helpText?.trim() || null;
|
|
if (validation !== undefined) data.validation = validation;
|
|
if (visibleOnCard !== undefined) data.visibleOnCard = Boolean(visibleOnCard);
|
|
if (visibleOnSurvey !== undefined) data.visibleOnSurvey = Boolean(visibleOnSurvey);
|
|
|
|
const updated = await prisma.formField.update({
|
|
where: { id: fieldId },
|
|
data,
|
|
});
|
|
|
|
return NextResponse.json(updated);
|
|
} catch (error) {
|
|
return handleApiError(error);
|
|
}
|
|
}
|
|
|
|
export async function DELETE(_request: NextRequest, ctx: RouteContext) {
|
|
try {
|
|
const session = await requireApiAuthWithOrg();
|
|
const { id, fieldId } = await ctx.params;
|
|
|
|
const field = await getOwnedField(id, fieldId, session.user.orgId!);
|
|
if (!field) {
|
|
return NextResponse.json(
|
|
{ error: "Field not found" },
|
|
{ status: 404 }
|
|
);
|
|
}
|
|
|
|
if (field.isCore) {
|
|
return NextResponse.json(
|
|
{ error: "Core fields cannot be deleted" },
|
|
{ status: 403 }
|
|
);
|
|
}
|
|
|
|
await prisma.formField.delete({ where: { id: fieldId } });
|
|
return NextResponse.json({ deleted: true });
|
|
} catch (error) {
|
|
return handleApiError(error);
|
|
}
|
|
}
|