Changeset 299af01 for src/app/api


Ignore:
Timestamp:
02/26/25 14:27:26 (6 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
3c5302a
Parents:
057453c
Message:

chore

Location:
src/app/api
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • src/app/api/customers/[id]/route.ts

    r057453c r299af01  
    66export async function PATCH(request: NextRequest, { params }: { params: { id: string } }) {
    77  try {
    8     const userId = await authenticateRequest(request);
    9     if (!userId) {
     8    const auth = await authenticateRequest(request);
     9    if (!auth || auth instanceof NextResponse) {
    1010      return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
    1111    }
    1212
     13    const { userId, tenantId } = auth;
     14
    1315    const body = await request.json();
    1416    const validatedData = customerSchema.partial().parse(body);
     17
     18    console.log('validatedData', validatedData);
    1519
    1620    const customer = await prisma.client.update({
     
    1822      data: {
    1923        ...validatedData,
    20         bankAccounts: undefined,
     24        tenantId,
    2125      },
    2226    });
  • src/app/api/customers/route.ts

    r057453c r299af01  
    44import { authenticateRequest } from 'src/lib/auth-middleware';
    55import { CustomerStatus } from '@prisma/client';
     6import { Prisma } from '@prisma/client';
    67
    78export async function GET(request: NextRequest) {
     
    1213      return authResult;
    1314    }
    14     const { userId } = authResult;
     15    const { userId, tenantId } = authResult;
    1516
    1617    const searchParams = request.nextUrl.searchParams;
     
    2425    const validatedFilters = customerTableFiltersSchema.parse(filters);
    2526
    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    `;
    3538
    3639    return NextResponse.json(customers);
    3740  } catch (error) {
     41    console.error('Error fetching customers:', error);
    3842    return NextResponse.json({ error: 'Internal Server Error' }, { status: 500 });
    3943  }
     
    4751      return authResult;
    4852    }
    49     const { userId } = authResult;
     53    const { userId, tenantId } = authResult;
    5054
    5155    const body = await request.json();
     
    5761        ...validatedData,
    5862        // userId,
     63        tenantId,
    5964      },
    6065    });
  • src/app/api/employees/route.ts

    r057453c r299af01  
    33import prisma from 'src/lib/prisma';
    44import { authenticateRequest } from 'src/lib/auth-middleware';
    5 import { EmployeeStatus } from '@prisma/client';
     5import { Prisma } from '@prisma/client';
    66
    77export async function GET(request: NextRequest) {
     
    2323    const validatedFilters = employeeTableFiltersSchema.parse(filters);
    2424
    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    `;
    3436
    3537    return NextResponse.json(employees);
  • src/app/api/invoices/[id]/route.ts

    r057453c r299af01  
    9090      // Conditionally delete and recreate items only if they are provided
    9191      if (validation.data.items) {
    92         await tx.invoiceItem.deleteMany({
     92        await tx.lineItem.deleteMany({
    9393          where: { invoiceId: params.id },
    9494        });
     
    174174    await prisma.$transaction(async (tx) => {
    175175      // Delete related items first
    176       await tx.invoiceItem.deleteMany({
     176      await tx.lineItem.deleteMany({
    177177        where: { invoiceId: params.id },
    178178      });
  • src/app/api/invoices/route.ts

    r057453c r299af01  
    2424  try {
    2525    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    // }
    2929
    3030    const searchParams = request.nextUrl.searchParams;
     
    7474  try {
    7575    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    // }
    7979
    8080    const body = await request.json();
  • src/app/api/tenant/route.ts

    r057453c r299af01  
    1 import { NextResponse } from 'next/server';
     1import { NextRequest, NextResponse } from 'next/server';
    22import prisma from 'src/lib/prisma';
    33import { tenantSchema } from 'src/schemas';
    44import { z } from 'zod';
     5import { authenticateRequest } from 'src/lib/auth-middleware';
    56
    6 export async function GET() {
     7export async function GET(request: NextRequest) {
    78  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
    1119    if (!tenant) {
    1220      return NextResponse.json({ error: 'No tenant found' }, { status: 404 });
     
    2028}
    2129
    22 export async function POST(request: Request) {
     30export async function POST(request: NextRequest) {
    2331  try {
     32    const auth = await authenticateRequest(request);
     33    if (auth instanceof NextResponse) {
     34      return auth;
     35    }
     36    const { tenantId } = auth;
     37
    2438    const body = await request.json();
    2539
     
    2842
    2943    // 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) {
    3251      return NextResponse.json({ error: 'Tenant already exists' }, { status: 400 });
    3352    }
    3453
    35     // Create new tenant
     54    // Create new tenant with the authenticated tenantId
    3655    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      },
    3860    });
    3961
Note: See TracChangeset for help on using the changeset viewer.