Backend service and controller for converting piece categories to component categories (and vice-versa). Uses raw SQL in a transaction to preserve IDs and transfer all related data (documents, custom fields, constructeurs). Includes php-cs-fixer formatting pass on existing controllers/entities. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
80 lines
2.5 KiB
PHP
80 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Repository\AuditLogRepository;
|
|
use App\Repository\ProductRepository;
|
|
use App\Repository\ProfileRepository;
|
|
use DateTimeInterface;
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
final class ProductHistoryController
|
|
{
|
|
public function __construct(
|
|
private readonly ProductRepository $products,
|
|
private readonly AuditLogRepository $auditLogs,
|
|
private readonly ProfileRepository $profiles,
|
|
) {}
|
|
|
|
#[Route('/api/products/{id}/history', name: 'api_product_history', methods: ['GET'])]
|
|
public function __invoke(string $id): JsonResponse
|
|
{
|
|
$product = $this->products->find($id);
|
|
if (!$product) {
|
|
return new JsonResponse(
|
|
['message' => 'Produit introuvable.'],
|
|
Response::HTTP_NOT_FOUND,
|
|
);
|
|
}
|
|
|
|
$logs = $this->auditLogs->findEntityHistory('product', $id, 200);
|
|
|
|
$actorIds = array_values(array_unique(array_filter(array_map(
|
|
static fn ($log) => $log->getActorProfileId(),
|
|
$logs,
|
|
))));
|
|
|
|
$actorMap = [];
|
|
if ([] !== $actorIds) {
|
|
$profiles = $this->profiles->findBy(['id' => $actorIds]);
|
|
foreach ($profiles as $profile) {
|
|
$label = trim(sprintf('%s %s', $profile->getFirstName(), $profile->getLastName()));
|
|
if ('' === $label) {
|
|
$label = $profile->getEmail() ?? $profile->getId();
|
|
}
|
|
$actorMap[$profile->getId()] = $label;
|
|
}
|
|
}
|
|
|
|
$items = array_map(
|
|
static function ($log) use ($actorMap) {
|
|
$actorId = $log->getActorProfileId();
|
|
|
|
return [
|
|
'id' => $log->getId(),
|
|
'action' => $log->getAction(),
|
|
'createdAt' => $log->getCreatedAt()->format(DateTimeInterface::ATOM),
|
|
'actor' => $actorId
|
|
? [
|
|
'id' => $actorId,
|
|
'label' => $actorMap[$actorId] ?? $actorId,
|
|
]
|
|
: null,
|
|
'diff' => $log->getDiff(),
|
|
'snapshot' => $log->getSnapshot(),
|
|
];
|
|
},
|
|
$logs,
|
|
);
|
|
|
|
return new JsonResponse([
|
|
'items' => array_values($items),
|
|
'total' => count($items),
|
|
]);
|
|
}
|
|
}
|