Compare commits

..

2 Commits

Author SHA1 Message Date
Manuel Aranda Rosales c12e521af4 refs #2820. Fixed bug in assistants
testing/ogcore-api/pipeline/head There was a failure building this commit Details
2025-09-22 15:32:16 +02:00
Manuel Aranda Rosales 1e3240e6c1 refs #2820. Fixed bug in assistants 2025-09-22 15:31:14 +02:00
4 changed files with 99 additions and 36 deletions

View File

@ -1,4 +1,9 @@
# Changelog # Changelog
## [0.24.4] - 2025-09-21
### Fixed
- Se ha arreglado un error en el servicio de clonado de imagen cuando los equipos no estan conectados.
---
## [0.24.3] - 2025-09-16 ## [0.24.3] - 2025-09-16
### Fixed ### Fixed
- Se ha corregido un error a la hora de borrar un repositorio el cual tuviera imagenes. - Se ha corregido un error a la hora de borrar un repositorio el cual tuviera imagenes.

View File

@ -50,10 +50,4 @@ when@prod:
level: info level: info
formatter: App\Formatter\CustomLineFormatter formatter: App\Formatter\CustomLineFormatter
channels: ["!event"] channels: ["!event"]
deprecation:
type: stream
channels: [deprecation]
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: error
formatter: monolog.formatter.json

View File

@ -6,6 +6,7 @@ namespace App\Controller;
use ApiPlatform\Validator\ValidatorInterface; use ApiPlatform\Validator\ValidatorInterface;
use App\Dto\Input\DeployImageInput; use App\Dto\Input\DeployImageInput;
use App\Dto\Output\ClientOutput;
use App\Entity\Trace; use App\Entity\Trace;
use App\Model\ImageStatus; use App\Model\ImageStatus;
use App\Entity\ImageImageRepository; use App\Entity\ImageImageRepository;
@ -13,7 +14,9 @@ use App\Model\CommandTypes;
use App\Model\DeployMethodTypes; use App\Model\DeployMethodTypes;
use App\Model\TraceStatus; use App\Model\TraceStatus;
use App\Service\Trace\CreateService; use App\Service\Trace\CreateService;
use App\Repository\ClientRepository;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
@ -30,6 +33,8 @@ class DeployImageAction extends AbstractController
protected readonly HttpClientInterface $httpClient, protected readonly HttpClientInterface $httpClient,
protected readonly CreateService $createService, protected readonly CreateService $createService,
protected readonly ValidatorInterface $validator, protected readonly ValidatorInterface $validator,
protected readonly ClientRepository $clientRepository,
protected readonly LoggerInterface $logger,
public readonly \App\Controller\OgAgent\DeployImageAction $deployImageOgAgentAction, public readonly \App\Controller\OgAgent\DeployImageAction $deployImageOgAgentAction,
public readonly \App\Controller\OgRepository\Image\DeployImageAction $deployImageOgRepositoryAction, public readonly \App\Controller\OgRepository\Image\DeployImageAction $deployImageOgRepositoryAction,
) { ) {
@ -47,7 +52,6 @@ class DeployImageAction extends AbstractController
} }
$this->validator->validate($input); $this->validator->validate($input);
$clientJobs = []; $clientJobs = [];
if ($input->type === 'monolithic') { if ($input->type === 'monolithic') {
@ -57,6 +61,7 @@ class DeployImageAction extends AbstractController
return new JsonResponse(data: $clientJobs, status: Response::HTTP_OK); return new JsonResponse(data: $clientJobs, status: Response::HTTP_OK);
} }
private function handleMonolithicDeployment(DeployImageInput $input, ImageImageRepository $image, ?Trace $trace = null): array private function handleMonolithicDeployment(DeployImageInput $input, ImageImageRepository $image, ?Trace $trace = null): array
{ {
$clientJobs = []; $clientJobs = [];
@ -85,12 +90,26 @@ class DeployImageAction extends AbstractController
$clientJobs = []; $clientJobs = [];
foreach ($input->clients as $client) { foreach ($input->clients as $client) {
try {
$inputData = $this->createInputData($input, $image, $client->getEntity()); $inputData = $this->createInputData($input, $image, $client->getEntity());
$jobId = $this->processDeployment($client->getEntity(), $input, $image, $inputData, DeployMethodTypes::UNICAST, $trace); $jobId = $this->processDeployment($client->getEntity(), $input, $image, $inputData, DeployMethodTypes::UNICAST, $trace);
if ($jobId) { if ($jobId) {
$clientJobs[(string) '/clients/' . $client->getEntity()->getUuid()] = $jobId; $clientJobs[(string) '/clients/' . $client->getEntity()->getUuid()] = $jobId;
} }
} catch (\Exception $e) {
$this->logger->warning('Error deploying to client (unicast)', [
'client_uuid' => $client->getEntity()->getUuid(),
'error' => $e->getMessage()
]);
if ($input->queue) {
$inputData = $this->createInputData($input, $image, $client->getEntity());
$this->createService->__invoke($client->getEntity(), CommandTypes::DEPLOY_IMAGE, TraceStatus::PENDING, null, $inputData);
}
continue;
}
} }
return $clientJobs; return $clientJobs;
@ -101,11 +120,21 @@ class DeployImageAction extends AbstractController
$clientJobs = []; $clientJobs = [];
foreach ($input->clients as $client) { foreach ($input->clients as $client) {
try {
$inputData = $this->createMulticastInputData($input, $image, $client->getEntity()); $inputData = $this->createMulticastInputData($input, $image, $client->getEntity());
try { try {
$this->deployImageOgRepositoryAction->__invoke($input, $image, $client->getEntity()); $this->deployImageOgRepositoryAction->__invoke($input, $image, $client->getEntity());
} catch (\Exception $e) { } catch (\Exception $e) {
$this->logger->warning('Error with OgRepository for client (multicast)', [
'client_uuid' => $client->getEntity()->getUuid(),
'error' => $e->getMessage()
]);
if ($input->queue) {
$this->createService->__invoke($client->getEntity(), CommandTypes::DEPLOY_IMAGE, TraceStatus::PENDING, null, $inputData);
}
continue; continue;
} }
@ -114,6 +143,19 @@ class DeployImageAction extends AbstractController
if ($jobId) { if ($jobId) {
$clientJobs[(string) '/clients/' . $client->getEntity()->getUuid()] = $jobId; $clientJobs[(string) '/clients/' . $client->getEntity()->getUuid()] = $jobId;
} }
} catch (\Exception $e) {
$this->logger->warning('Error deploying to client (multicast)', [
'client_uuid' => $client->getEntity()->getUuid(),
'error' => $e->getMessage()
]);
if ($input->queue) {
$inputData = $this->createMulticastInputData($input, $image, $client->getEntity());
$this->createService->__invoke($client->getEntity(), CommandTypes::DEPLOY_IMAGE, TraceStatus::PENDING, null, $inputData);
}
continue;
}
} }
return $clientJobs; return $clientJobs;
@ -124,6 +166,7 @@ class DeployImageAction extends AbstractController
$clientJobs = []; $clientJobs = [];
foreach ($input->clients as $client) { foreach ($input->clients as $client) {
try {
$inputData = $this->createTorrentInputData($input, $image, $client->getEntity()); $inputData = $this->createTorrentInputData($input, $image, $client->getEntity());
try { try {
@ -132,9 +175,17 @@ class DeployImageAction extends AbstractController
if (is_array($response) && isset($response['code']) && $response['code'] === 500) { if (is_array($response) && isset($response['code']) && $response['code'] === 500) {
throw new \Exception('Error del servidor OgRepository: ' . ($response['error'] ?? 'Error desconocido') . ' - ' . ($response['details'] ?? '')); throw new \Exception('Error del servidor OgRepository: ' . ($response['error'] ?? 'Error desconocido') . ' - ' . ($response['details'] ?? ''));
} }
} catch (\Exception $e) { } catch (\Exception $e) {
throw $e; $this->logger->warning('Error with OgRepository for client (torrent)', [
'client_uuid' => $client->getEntity()->getUuid(),
'error' => $e->getMessage()
]);
if ($input->queue) {
$this->createService->__invoke($client->getEntity(), CommandTypes::DEPLOY_IMAGE, TraceStatus::PENDING, null, $inputData);
}
continue;
} }
$jobId = $this->processDeployment($client->getEntity(), $input, $image, $inputData, DeployMethodTypes::TORRENT, $trace); $jobId = $this->processDeployment($client->getEntity(), $input, $image, $inputData, DeployMethodTypes::TORRENT, $trace);
@ -142,6 +193,19 @@ class DeployImageAction extends AbstractController
if ($jobId) { if ($jobId) {
$clientJobs[(string) '/clients/' . $client->getEntity()->getUuid()] = $jobId; $clientJobs[(string) '/clients/' . $client->getEntity()->getUuid()] = $jobId;
} }
} catch (\Exception $e) {
$this->logger->warning('Error deploying to client (torrent)', [
'client_uuid' => $client->getEntity()->getUuid(),
'error' => $e->getMessage()
]);
if ($input->queue) {
$inputData = $this->createTorrentInputData($input, $image, $client->getEntity());
$this->createService->__invoke($client->getEntity(), CommandTypes::DEPLOY_IMAGE, TraceStatus::PENDING, null, $inputData);
}
continue;
}
} }
return $clientJobs; return $clientJobs;

View File

@ -22,6 +22,6 @@ class CustomLineFormatter extends LineFormatter
'datetime' => $record['datetime']->format('Y-m-d H:i:s'), 'datetime' => $record['datetime']->format('Y-m-d H:i:s'),
]; ];
return json_encode($output, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) . PHP_EOL; return json_encode($output, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
} }
} }