Initial commit - SaveTheMoment Atlas Basis-Setup

This commit is contained in:
Dennis Forte
2025-11-12 20:21:32 +01:00
commit 0b6e429329
167 changed files with 30843 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
import { NextResponse } from 'next/server';
import { getServerSession } from 'next-auth';
import { authOptions } from '@/lib/auth';
import { prisma } from '@/lib/prisma';
export async function GET() {
try {
const session = await getServerSession(authOptions);
if (!session) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const equipment = await prisma.equipment.findMany({
include: {
location: true,
project: true,
},
orderBy: {
createdAt: 'desc',
},
});
return NextResponse.json({ equipment });
} catch (error) {
console.error('Error fetching equipment:', error);
return NextResponse.json({ error: 'Internal server error' }, { status: 500 });
}
}
export async function POST(request: Request) {
try {
const session = await getServerSession(authOptions);
if (!session) {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
}
const data = await request.json();
const equipment = await prisma.equipment.create({
data: {
name: data.name,
type: data.type,
brand: data.brand,
model: data.model,
serialNumber: data.serialNumber,
quantity: data.quantity || 1,
status: data.status || 'AVAILABLE',
locationId: data.locationId,
projectId: data.projectId,
notes: data.notes,
purchaseDate: data.purchaseDate ? new Date(data.purchaseDate) : null,
purchasePrice: data.purchasePrice,
minStockLevel: data.minStockLevel,
currentStock: data.currentStock,
},
include: {
location: true,
project: true,
},
});
return NextResponse.json({ equipment });
} catch (error) {
console.error('Error creating equipment:', error);
return NextResponse.json({ error: 'Internal server error' }, { status: 500 });
}
}