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

chore

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.