source: src/app/api/customers/route.ts@ 299af01

main
Last change on this file since 299af01 was 299af01, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

chore

  • Property mode set to 100644
File size: 2.3 KB
Line 
1import { NextRequest, NextResponse } from 'next/server';
2import { customerTableFiltersSchema, newCustomerSchema } from 'src/schemas';
3import prisma from 'src/lib/prisma';
4import { authenticateRequest } from 'src/lib/auth-middleware';
5import { CustomerStatus } from '@prisma/client';
6import { Prisma } from '@prisma/client';
7
8export async function GET(request: NextRequest) {
9 try {
10 // Authenticate the request
11 const authResult = await authenticateRequest(request);
12 if (authResult instanceof NextResponse) {
13 return authResult;
14 }
15 const { userId, tenantId } = authResult;
16
17 const searchParams = request.nextUrl.searchParams;
18 const filters = {
19 name: searchParams.get('name') || '',
20 role: searchParams.getAll('role'),
21 status: searchParams.get('status') || '',
22 };
23
24 // Validate filters
25 const validatedFilters = customerTableFiltersSchema.parse(filters);
26
27 // Replace Prisma query with raw SQL
28 const customers = await prisma.$queryRaw`
29 SELECT * FROM "Client"
30 WHERE "tenantId" = ${tenantId}
31 AND LOWER(name) LIKE LOWER(${`%${validatedFilters.name}%`})
32 ${
33 validatedFilters.status
34 ? Prisma.sql`AND status = ${validatedFilters.status}::"CustomerStatus"`
35 : Prisma.sql`AND TRUE`
36 }
37 `;
38
39 return NextResponse.json(customers);
40 } catch (error) {
41 console.error('Error fetching customers:', error);
42 return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
43 }
44}
45
46export async function POST(request: NextRequest) {
47 try {
48 // Authenticate the request
49 const authResult = await authenticateRequest(request);
50 if (authResult instanceof NextResponse) {
51 return authResult;
52 }
53 const { userId, tenantId } = authResult;
54
55 const body = await request.json();
56 const validatedData = newCustomerSchema.parse(body);
57 console.log('validatedData', validatedData);
58
59 const customer = await prisma.client.create({
60 data: {
61 ...validatedData,
62 // userId,
63 tenantId,
64 },
65 });
66
67 return NextResponse.json(customer, { status: 201 });
68 } catch (error) {
69 console.error('Error creating customer:', error);
70 return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
71 }
72}
Note: See TracBrowser for help on using the repository browser.