- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- Location:
- src/app/api
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/api/customers/[id]/route.ts
r057453c r299af01 6 6 export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) { 7 7 try { 8 const userId= await authenticateRequest(request);9 if (! userId) {8 const auth = await authenticateRequest(request); 9 if (!auth || auth instanceof NextResponse) { 10 10 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 11 11 } 12 12 13 const { userId, tenantId } = auth; 14 13 15 const body = await request.json(); 14 16 const validatedData = customerSchema.partial().parse(body); 17 18 console.log('validatedData', validatedData); 15 19 16 20 const customer = await prisma.client.update({ … … 18 22 data: { 19 23 ...validatedData, 20 bankAccounts: undefined,24 tenantId, 21 25 }, 22 26 }); -
src/app/api/customers/route.ts
r057453c r299af01 4 4 import { authenticateRequest } from 'src/lib/auth-middleware'; 5 5 import { CustomerStatus } from '@prisma/client'; 6 import { Prisma } from '@prisma/client'; 6 7 7 8 export async function GET(request: NextRequest) { … … 12 13 return authResult; 13 14 } 14 const { userId } = authResult;15 const { userId, tenantId } = authResult; 15 16 16 17 const searchParams = request.nextUrl.searchParams; … … 24 25 const validatedFilters = customerTableFiltersSchema.parse(filters); 25 26 26 const customers = await prisma.client.findMany({ 27 where: { 28 name: { contains: validatedFilters.name, mode: 'insensitive' }, 29 status: validatedFilters.status 30 ? { equals: validatedFilters.status as CustomerStatus } 31 : undefined, 32 }, 33 }); 34 console.log('customers', customers); 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 `; 35 38 36 39 return NextResponse.json(customers); 37 40 } catch (error) { 41 console.error('Error fetching customers:', error); 38 42 return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 }); 39 43 } … … 47 51 return authResult; 48 52 } 49 const { userId } = authResult;53 const { userId, tenantId } = authResult; 50 54 51 55 const body = await request.json(); … … 57 61 ...validatedData, 58 62 // userId, 63 tenantId, 59 64 }, 60 65 }); -
src/app/api/employees/route.ts
r057453c r299af01 3 3 import prisma from 'src/lib/prisma'; 4 4 import { authenticateRequest } from 'src/lib/auth-middleware'; 5 import { EmployeeStatus} from '@prisma/client';5 import { Prisma } from '@prisma/client'; 6 6 7 7 export async function GET(request: NextRequest) { … … 23 23 const validatedFilters = employeeTableFiltersSchema.parse(filters); 24 24 25 const employees = await prisma.employee.findMany({ 26 where: { 27 tenantId, 28 name: { contains: validatedFilters.name, mode: 'insensitive' }, 29 status: validatedFilters.status 30 ? { equals: validatedFilters.status as EmployeeStatus } 31 : undefined, 32 }, 33 }); 25 // Replace Prisma query with raw SQL 26 const employees = await prisma.$queryRaw` 27 SELECT * FROM "Employee" 28 WHERE "tenantId" = ${tenantId} 29 AND LOWER(name) LIKE LOWER(${`%${validatedFilters.name}%`}) 30 ${ 31 validatedFilters.status 32 ? Prisma.sql`AND status = ${validatedFilters.status}:::"EmployeeStatus"` 33 : Prisma.sql`AND TRUE` 34 } 35 `; 34 36 35 37 return NextResponse.json(employees); -
src/app/api/invoices/[id]/route.ts
r057453c r299af01 90 90 // Conditionally delete and recreate items only if they are provided 91 91 if (validation.data.items) { 92 await tx. invoiceItem.deleteMany({92 await tx.lineItem.deleteMany({ 93 93 where: { invoiceId: params.id }, 94 94 }); … … 174 174 await prisma.$transaction(async (tx) => { 175 175 // Delete related items first 176 await tx. invoiceItem.deleteMany({176 await tx.lineItem.deleteMany({ 177 177 where: { invoiceId: params.id }, 178 178 }); -
src/app/api/invoices/route.ts
r057453c r299af01 24 24 try { 25 25 const userId = await getUserId(request); 26 if (!userId) {27 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });28 }26 // if (!userId) { 27 // return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 28 // } 29 29 30 30 const searchParams = request.nextUrl.searchParams; … … 74 74 try { 75 75 const userId = await getUserId(request); 76 if (!userId) {77 return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });78 }76 // if (!userId) { 77 // return NextResponse.json({ error: 'Unauthorized' }, { status: 401 }); 78 // } 79 79 80 80 const body = await request.json(); -
src/app/api/tenant/route.ts
r057453c r299af01 1 import { NextRe sponse } from 'next/server';1 import { NextRequest, NextResponse } from 'next/server'; 2 2 import prisma from 'src/lib/prisma'; 3 3 import { tenantSchema } from 'src/schemas'; 4 4 import { z } from 'zod'; 5 import { authenticateRequest } from 'src/lib/auth-middleware'; 5 6 6 export async function GET( ) {7 export async function GET(request: NextRequest) { 7 8 try { 8 const tenants = await prisma.tenant.findMany(); 9 const tenant = tenants[0]; // Get first tenant since we're dealing with single tenant 10 console.log('tenant', tenant); 9 const auth = await authenticateRequest(request); 10 if (auth instanceof NextResponse) { 11 return auth; // Return error response if authentication failed 12 } 13 const { tenantId } = auth; 14 15 const tenant = await prisma.tenant.findUnique({ 16 where: { id: tenantId }, 17 }); 18 11 19 if (!tenant) { 12 20 return NextResponse.json({ error: 'No tenant found' }, { status: 404 }); … … 20 28 } 21 29 22 export async function POST(request: Request) {30 export async function POST(request: NextRequest) { 23 31 try { 32 const auth = await authenticateRequest(request); 33 if (auth instanceof NextResponse) { 34 return auth; 35 } 36 const { tenantId } = auth; 37 24 38 const body = await request.json(); 25 39 … … 28 42 29 43 // Check if tenant already exists 30 const existingTenants = await prisma.tenant.findMany(); 31 if (existingTenants.length > 0) { 44 const existingTenant = await prisma.tenant.findUnique({ 45 where: { 46 id: tenantId, 47 }, 48 }); 49 50 if (existingTenant) { 32 51 return NextResponse.json({ error: 'Tenant already exists' }, { status: 400 }); 33 52 } 34 53 35 // Create new tenant 54 // Create new tenant with the authenticated tenantId 36 55 const tenant = await prisma.tenant.create({ 37 data: validatedData, 56 data: { 57 ...validatedData, 58 id: tenantId, // Ensure the tenant is created with the authenticated tenantId 59 }, 38 60 }); 39 61
Note:
See TracChangeset
for help on using the changeset viewer.