initial commit

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-03-23 08:46:51 +01:00
commit 4608494a3f
130 changed files with 40361 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
import { FastifyInstance } from 'fastify';
import prisma from '../../config/database';
import { requirePermission } from '../../middleware/auth';
import { logAudit } from '../../services/audit';
import { success, error, parseId } from '../../utils/response';
export default async function vehiclesRoutes(fastify: FastifyInstance): Promise<void> {
fastify.get('/', { preHandler: requirePermission('trips.vehicles') }, async (_request, reply) => {
const vehicles = await prisma.vehicles.findMany({ orderBy: { name: 'asc' } });
// Compute current_km and trip_count from trips table
const tripStats = await prisma.trips.groupBy({
by: ['vehicle_id'],
_max: { end_km: true },
_count: { id: true },
});
const statsMap = new Map(tripStats.map(s => [s.vehicle_id, { maxKm: s._max.end_km ?? 0, count: s._count.id }]));
const enriched = vehicles.map(v => {
const stats = statsMap.get(v.id);
return {
...v,
current_km: stats ? Math.max(v.initial_km, stats.maxKm) : v.initial_km,
trip_count: stats?.count ?? 0,
};
});
return success(reply, enriched);
});
fastify.post('/', { preHandler: requirePermission('trips.vehicles') }, async (request, reply) => {
const body = request.body as Record<string, unknown>;
if (!body.spz || !body.name) return error(reply, 'SPZ a název jsou povinné', 400);
const vehicle = await prisma.vehicles.create({
data: {
spz: String(body.spz),
name: String(body.name),
brand: body.brand ? String(body.brand) : null,
model: body.model ? String(body.model) : null,
initial_km: body.initial_km ? Number(body.initial_km) : 0,
actual_km: body.actual_km ? Number(body.actual_km) : 0,
is_active: body.is_active !== false,
},
});
await logAudit({ request, authData: request.authData, action: 'create', entityType: 'vehicle', entityId: vehicle.id, description: `Vytvořeno vozidlo ${vehicle.name}` });
return success(reply, { id: vehicle.id }, 201, 'Vozidlo bylo vytvořeno');
});
fastify.put<{ Params: { id: string } }>('/:id', { preHandler: requirePermission('trips.vehicles') }, async (request, reply) => {
const id = parseId(request.params.id, reply);
if (id === null) return;
const body = request.body as Record<string, unknown>;
const existing = await prisma.vehicles.findUnique({ where: { id } });
if (!existing) return error(reply, 'Vozidlo nenalezeno', 404);
await prisma.vehicles.update({
where: { id },
data: {
spz: body.spz !== undefined ? String(body.spz) : undefined,
name: body.name !== undefined ? String(body.name) : undefined,
brand: body.brand !== undefined ? (body.brand ? String(body.brand) : null) : undefined,
model: body.model !== undefined ? (body.model ? String(body.model) : null) : undefined,
initial_km: body.initial_km !== undefined ? Number(body.initial_km) : undefined,
actual_km: body.actual_km !== undefined ? Number(body.actual_km) : undefined,
is_active: body.is_active !== undefined ? (body.is_active === true || body.is_active === 1 || body.is_active === '1') : undefined,
},
});
await logAudit({ request, authData: request.authData, action: 'update', entityType: 'vehicle', entityId: id, description: `Upraveno vozidlo ${existing.name}` });
return success(reply, { id }, 200, 'Vozidlo bylo uloženo');
});
fastify.delete<{ Params: { id: string } }>('/:id', { preHandler: requirePermission('trips.vehicles') }, async (request, reply) => {
const id = parseId(request.params.id, reply);
if (id === null) return;
const existing = await prisma.vehicles.findUnique({ where: { id } });
if (!existing) return error(reply, 'Vozidlo nenalezeno', 404);
await prisma.vehicles.delete({ where: { id } });
await logAudit({ request, authData: request.authData, action: 'delete', entityType: 'vehicle', entityId: id, description: `Smazáno vozidlo ${existing.name}` });
return success(reply, null, 200, 'Vozidlo smazáno');
});
}