Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM, PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source files covering clients, berths, interests/pipeline, documents/EOI, expenses/invoices, email, notifications, dashboard, admin, and client portal. CI/CD via Gitea Actions with Docker builds. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { NextResponse } from 'next/server';
|
|
import { z } from 'zod';
|
|
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
|
import { parseBody } from '@/lib/api/route-helpers';
|
|
import { errorResponse } from '@/lib/errors';
|
|
import { listContacts, addContact } from '@/lib/services/clients.service';
|
|
|
|
const addContactSchema = z.object({
|
|
channel: z.enum(['email', 'phone', 'whatsapp', 'other']),
|
|
value: z.string().min(1),
|
|
label: z.string().optional(),
|
|
isPrimary: z.boolean().optional().default(false),
|
|
notes: z.string().optional(),
|
|
});
|
|
|
|
export const GET = withAuth(
|
|
withPermission('clients', 'view', async (req, ctx, params) => {
|
|
try {
|
|
const contacts = await listContacts(params.id!, ctx.portId);
|
|
return NextResponse.json({ data: contacts });
|
|
} catch (error) {
|
|
return errorResponse(error);
|
|
}
|
|
}),
|
|
);
|
|
|
|
export const POST = withAuth(
|
|
withPermission('clients', 'edit', async (req, ctx, params) => {
|
|
try {
|
|
const body = await parseBody(req, addContactSchema);
|
|
const contact = await addContact(params.id!, ctx.portId, body, {
|
|
userId: ctx.userId,
|
|
portId: ctx.portId,
|
|
ipAddress: ctx.ipAddress,
|
|
userAgent: ctx.userAgent,
|
|
});
|
|
return NextResponse.json({ data: contact }, { status: 201 });
|
|
} catch (error) {
|
|
return errorResponse(error);
|
|
}
|
|
}),
|
|
);
|