mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-02-13 15:15:45 +01:00
- Update tsconfig to ES2024 target and bundler moduleResolution - Add dynamic imports for chart.js and recharts (bundle optimization) - Consolidate 17 useState into useReducer in sessions page - Fix 18 .js extension imports across lib files - Add type declarations for @rapideditor/country-coder - Fix platform user types (PlatformUserRole enum) - Fix Calendar component prop types - Centralize next-auth type augmentation - Add force-dynamic to all API routes (prevent build-time prerender) - Fix Prisma JSON null handling with Prisma.DbNull - Fix various type mismatches (SessionMessage, ImportRecord, etc.) - Export ButtonProps from button component - Update next-themes import path - Replace JSX.Element with React.ReactElement - Remove obsolete debug scripts and pnpm lockfile - Downgrade eslint to v8 for next compatibility
154 lines
4.0 KiB
TypeScript
154 lines
4.0 KiB
TypeScript
import { CompanyStatus } from "@prisma/client";
|
|
import { type NextRequest, NextResponse } from "next/server";
|
|
import { getServerSession } from "next-auth";
|
|
import { platformAuthOptions } from "../../../../../lib/platform-auth";
|
|
import { prisma } from "../../../../../lib/prisma";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
// GET /api/platform/companies/[id] - Get company details
|
|
export async function GET(
|
|
_request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
try {
|
|
const session = await getServerSession(platformAuthOptions);
|
|
|
|
if (!session?.user?.isPlatformUser) {
|
|
return NextResponse.json(
|
|
{ error: "Platform access required" },
|
|
{ status: 401 }
|
|
);
|
|
}
|
|
|
|
const { id } = await params;
|
|
|
|
const company = await prisma.company.findUnique({
|
|
where: { id },
|
|
include: {
|
|
users: {
|
|
select: {
|
|
id: true,
|
|
name: true,
|
|
email: true,
|
|
role: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
invitedBy: true,
|
|
invitedAt: true,
|
|
},
|
|
},
|
|
_count: {
|
|
select: {
|
|
sessions: true,
|
|
imports: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!company) {
|
|
return NextResponse.json({ error: "Company not found" }, { status: 404 });
|
|
}
|
|
|
|
return NextResponse.json(company);
|
|
} catch (error) {
|
|
console.error("Platform company details error:", error);
|
|
return NextResponse.json(
|
|
{ error: "Internal server error" },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|
|
|
|
// PATCH /api/platform/companies/[id] - Update company
|
|
export async function PATCH(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
try {
|
|
const session = await getServerSession(platformAuthOptions);
|
|
|
|
if (
|
|
!session?.user?.isPlatformUser ||
|
|
session.user.platformRole === "SUPPORT"
|
|
) {
|
|
return NextResponse.json(
|
|
{ error: "Admin access required" },
|
|
{ status: 403 }
|
|
);
|
|
}
|
|
|
|
const { id } = await params;
|
|
const body = await request.json();
|
|
const { name, email, maxUsers, csvUrl, csvUsername, csvPassword, status } =
|
|
body;
|
|
|
|
const updateData: {
|
|
name?: string;
|
|
email?: string;
|
|
maxUsers?: number;
|
|
csvUrl?: string;
|
|
csvUsername?: string;
|
|
csvPassword?: string;
|
|
status?: CompanyStatus;
|
|
} = {};
|
|
if (name !== undefined) updateData.name = name;
|
|
if (email !== undefined) updateData.email = email;
|
|
if (maxUsers !== undefined) updateData.maxUsers = maxUsers;
|
|
if (csvUrl !== undefined) updateData.csvUrl = csvUrl;
|
|
if (csvUsername !== undefined) updateData.csvUsername = csvUsername;
|
|
if (csvPassword !== undefined) updateData.csvPassword = csvPassword;
|
|
if (status !== undefined) updateData.status = status;
|
|
|
|
const company = await prisma.company.update({
|
|
where: { id },
|
|
data: updateData,
|
|
});
|
|
|
|
return NextResponse.json({ company });
|
|
} catch (error) {
|
|
console.error("Platform company update error:", error);
|
|
return NextResponse.json(
|
|
{ error: "Internal server error" },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|
|
|
|
// DELETE /api/platform/companies/[id] - Delete company (archives instead)
|
|
export async function DELETE(
|
|
_request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
try {
|
|
const session = await getServerSession(platformAuthOptions);
|
|
|
|
if (
|
|
!session?.user?.isPlatformUser ||
|
|
session.user.platformRole !== "SUPER_ADMIN"
|
|
) {
|
|
return NextResponse.json(
|
|
{ error: "Super admin access required" },
|
|
{ status: 403 }
|
|
);
|
|
}
|
|
|
|
const { id } = await params;
|
|
|
|
// Archive instead of delete to preserve data integrity
|
|
const company = await prisma.company.update({
|
|
where: { id },
|
|
data: { status: CompanyStatus.ARCHIVED },
|
|
});
|
|
|
|
return NextResponse.json({ company });
|
|
} catch (error) {
|
|
console.error("Platform company archive error:", error);
|
|
return NextResponse.json(
|
|
{ error: "Internal server error" },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|