refs #1089. Partition assistant. Reboot and power-off ogagent
testing/ogcore-api/pipeline/head This commit looks good
Details
testing/ogcore-api/pipeline/head This commit looks good
Details
parent
dd9cd5e2cf
commit
0f52548284
|
@ -49,6 +49,20 @@ resources:
|
||||||
uriTemplate: /clients/server/{uuid}/get-pxe
|
uriTemplate: /clients/server/{uuid}/get-pxe
|
||||||
controller: App\Controller\OgBoot\PxeBootFile\GetAction
|
controller: App\Controller\OgBoot\PxeBootFile\GetAction
|
||||||
|
|
||||||
|
reboot_client:
|
||||||
|
class: ApiPlatform\Metadata\Post
|
||||||
|
method: POST
|
||||||
|
input: false
|
||||||
|
uriTemplate: /clients/server/{uuid}/reboot
|
||||||
|
controller: App\Controller\OgAgent\RebootAction
|
||||||
|
|
||||||
|
power_off_client:
|
||||||
|
class: ApiPlatform\Metadata\Post
|
||||||
|
method: POST
|
||||||
|
input: false
|
||||||
|
uriTemplate: /clients/server/{uuid}/power-off
|
||||||
|
controller: App\Controller\OgAgent\PowerOffAction
|
||||||
|
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
App\Entity\Client:
|
App\Entity\Client:
|
||||||
|
|
|
@ -30,6 +30,13 @@ resources:
|
||||||
uriTemplate: /image-repositories/server/sync
|
uriTemplate: /image-repositories/server/sync
|
||||||
controller: App\Controller\OgRepository\SyncAction
|
controller: App\Controller\OgRepository\SyncAction
|
||||||
|
|
||||||
|
wol_client:
|
||||||
|
class: ApiPlatform\Metadata\Post
|
||||||
|
method: POST
|
||||||
|
input: App\Dto\Input\WoLInput
|
||||||
|
uriTemplate: /image-repositories/{uuid}/wol
|
||||||
|
controller: App\Controller\OgRepository\WoLAction
|
||||||
|
|
||||||
get_collection_images_ogrepository:
|
get_collection_images_ogrepository:
|
||||||
shortName: OgRepository Server
|
shortName: OgRepository Server
|
||||||
description: Get collection of image in OgRepository
|
description: Get collection of image in OgRepository
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
resources:
|
resources:
|
||||||
App\Entity\Partition:
|
App\Entity\Partition:
|
||||||
processor: App\State\Processor\PartitionProcessor
|
processor: App\State\Processor\PartitionProcessor
|
||||||
input: App\Dto\Input\PartitionInput
|
input: App\Dto\Input\PartitionPostInput
|
||||||
output: App\Dto\Output\PartitionOutput
|
output: App\Dto\Output\PartitionOutput
|
||||||
orderBy:
|
orderBy:
|
||||||
partitionNumber: 'ASC'
|
partitionNumber: 'ASC'
|
||||||
|
|
|
@ -135,7 +135,7 @@ services:
|
||||||
api_platform.filter.partition.order:
|
api_platform.filter.partition.order:
|
||||||
parent: 'api_platform.doctrine.orm.order_filter'
|
parent: 'api_platform.doctrine.orm.order_filter'
|
||||||
arguments:
|
arguments:
|
||||||
$properties: { 'id': ~, 'usage': ~ }
|
$properties: { 'id': ~, 'usage': ~, 'partitionNumber': 'ASC' }
|
||||||
$orderParameterName: 'order'
|
$orderParameterName: 'order'
|
||||||
tags: [ 'api_platform.filter' ]
|
tags: [ 'api_platform.filter' ]
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,120 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Controller\OgAgent;
|
||||||
|
|
||||||
|
use App\Dto\Input\PartitionPostInput;
|
||||||
|
use App\Entity\Client;
|
||||||
|
use App\Entity\Command;
|
||||||
|
use App\Entity\Image;
|
||||||
|
use App\Entity\Trace;
|
||||||
|
use App\Model\ClientStatus;
|
||||||
|
use App\Model\CommandTypes;
|
||||||
|
use App\Model\ImageStatus;
|
||||||
|
use App\Model\TraceStatus;
|
||||||
|
use App\Service\Trace\CreateService;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\Routing\Attribute\Route;
|
||||||
|
use Symfony\Component\Validator\Exception\ValidatorException;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||||||
|
|
||||||
|
class PartitionAssistantAction extends AbstractController
|
||||||
|
{
|
||||||
|
public function __construct(
|
||||||
|
protected readonly EntityManagerInterface $entityManager,
|
||||||
|
protected readonly HttpClientInterface $httpClient,
|
||||||
|
protected readonly CreateService $createService,
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __invoke(PartitionPostInput $input): JsonResponse
|
||||||
|
{
|
||||||
|
$partitions = $input->partitions;
|
||||||
|
|
||||||
|
if (empty($partitions)) {
|
||||||
|
throw new ValidatorException('Partitions is required');
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @var Client $client */
|
||||||
|
$client = $input->partitions[0]->client->getEntity();
|
||||||
|
|
||||||
|
$data = [];
|
||||||
|
$diskNumber = 0;
|
||||||
|
$cacheSize = 0;
|
||||||
|
$disks = [];
|
||||||
|
$cpt = '';
|
||||||
|
|
||||||
|
$data = [];
|
||||||
|
$diskData = [];
|
||||||
|
|
||||||
|
foreach ($partitions as $partition) {
|
||||||
|
if ($partition->filesystem === 'CACHE') {
|
||||||
|
$cacheSize = $partition->size * 1024;
|
||||||
|
$disks[$partition->diskNumber] = $cacheSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
$diskNumber = $partition->diskNumber;
|
||||||
|
|
||||||
|
$data[] = [
|
||||||
|
'par' => (string) $partition->partitionNumber,
|
||||||
|
'cpt' => $partition->partitionCode,
|
||||||
|
'sfi' => $partition->filesystem,
|
||||||
|
'tam' => (string) ($partition->size * 1024),
|
||||||
|
'ope' => $partition->format ? "1" : "0",
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($disks as $diskNumber => $size) {
|
||||||
|
$diskData[] = [
|
||||||
|
'dis' => (string) $diskNumber,
|
||||||
|
'che' => "0",
|
||||||
|
'tch' => (string) $size,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = array_merge($diskData, $data);
|
||||||
|
|
||||||
|
$result = [
|
||||||
|
"nfn" => "Configurar",
|
||||||
|
"dsk" => "1",
|
||||||
|
"cfg" => $data,
|
||||||
|
"ids" => "0"
|
||||||
|
];
|
||||||
|
|
||||||
|
try {
|
||||||
|
$response = $this->httpClient->request('POST', 'https://'.$client->getIp().':8000/CloningEngine/Configurar', [
|
||||||
|
'verify_peer' => false,
|
||||||
|
'verify_host' => false,
|
||||||
|
'headers' => [
|
||||||
|
'Content-Type' => 'application/json',
|
||||||
|
],
|
||||||
|
'json' => $result,
|
||||||
|
]);
|
||||||
|
|
||||||
|
} catch (TransportExceptionInterface $e) {
|
||||||
|
return new JsonResponse(
|
||||||
|
data: ['error' => $e->getMessage()],
|
||||||
|
status: Response::HTTP_INTERNAL_SERVER_ERROR
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$jobId = json_decode($response->getContent(), true)['job_id'];
|
||||||
|
|
||||||
|
$client->setStatus(ClientStatus::BUSY);
|
||||||
|
$this->entityManager->persist($client);
|
||||||
|
$this->entityManager->flush();
|
||||||
|
|
||||||
|
$this->createService->__invoke($client, CommandTypes::PARTITION_AND_FORMAT, TraceStatus::IN_PROGRESS, $jobId, []);
|
||||||
|
|
||||||
|
return new JsonResponse(data: $client, status: Response::HTTP_OK);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Controller\OgAgent;
|
||||||
|
|
||||||
|
use App\Entity\Client;
|
||||||
|
use App\Entity\Command;
|
||||||
|
use App\Entity\Image;
|
||||||
|
use App\Entity\Trace;
|
||||||
|
use App\Model\ClientStatus;
|
||||||
|
use App\Model\CommandTypes;
|
||||||
|
use App\Model\ImageStatus;
|
||||||
|
use App\Model\TraceStatus;
|
||||||
|
use App\Service\Trace\CreateService;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\Routing\Attribute\Route;
|
||||||
|
use Symfony\Component\Validator\Exception\ValidatorException;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||||||
|
|
||||||
|
class PowerOffAction extends AbstractController
|
||||||
|
{
|
||||||
|
public function __construct(
|
||||||
|
protected readonly EntityManagerInterface $entityManager,
|
||||||
|
protected readonly HttpClientInterface $httpClient,
|
||||||
|
protected readonly CreateService $createService,
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __invoke(Client $client): JsonResponse
|
||||||
|
{
|
||||||
|
if (!$client->getIp()) {
|
||||||
|
throw new ValidatorException('IP is required');
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'nfn' => 'Apagar',
|
||||||
|
'ids' => '0'
|
||||||
|
];
|
||||||
|
|
||||||
|
try {
|
||||||
|
$response = $this->httpClient->request('POST', 'https://'.$client->getIp().':8000/ogAdmClient/Apagar', [
|
||||||
|
'verify_peer' => false,
|
||||||
|
'verify_host' => false,
|
||||||
|
'headers' => [
|
||||||
|
'Content-Type' => 'application/json',
|
||||||
|
],
|
||||||
|
'json' => $data,
|
||||||
|
]);
|
||||||
|
|
||||||
|
} catch (TransportExceptionInterface $e) {
|
||||||
|
return new JsonResponse(
|
||||||
|
data: ['error' => $e->getMessage()],
|
||||||
|
status: Response::HTTP_INTERNAL_SERVER_ERROR
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$jobId = json_decode($response->getContent(), true)['job_id'];
|
||||||
|
|
||||||
|
$client->setStatus(ClientStatus::OFF);
|
||||||
|
$this->entityManager->persist($client);
|
||||||
|
$this->entityManager->flush();
|
||||||
|
|
||||||
|
$this->createService->__invoke($client, CommandTypes::SHUTDOWN, TraceStatus::SUCCESS, $jobId, []);
|
||||||
|
|
||||||
|
return new JsonResponse(data: $client, status: Response::HTTP_OK);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Controller\OgAgent;
|
||||||
|
|
||||||
|
use App\Entity\Client;
|
||||||
|
use App\Entity\Command;
|
||||||
|
use App\Entity\Image;
|
||||||
|
use App\Entity\Trace;
|
||||||
|
use App\Model\ClientStatus;
|
||||||
|
use App\Model\CommandTypes;
|
||||||
|
use App\Model\ImageStatus;
|
||||||
|
use App\Model\TraceStatus;
|
||||||
|
use App\Service\Trace\CreateService;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\Routing\Attribute\Route;
|
||||||
|
use Symfony\Component\Validator\Exception\ValidatorException;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||||||
|
|
||||||
|
class RebootAction extends AbstractController
|
||||||
|
{
|
||||||
|
public function __construct(
|
||||||
|
protected readonly EntityManagerInterface $entityManager,
|
||||||
|
protected readonly HttpClientInterface $httpClient,
|
||||||
|
protected readonly CreateService $createService,
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __invoke(Client $client): JsonResponse
|
||||||
|
{
|
||||||
|
if (!$client->getIp()) {
|
||||||
|
throw new ValidatorException('IP is required');
|
||||||
|
}
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'nfn' => 'Reiniciar',
|
||||||
|
'ids' => '0'
|
||||||
|
];
|
||||||
|
|
||||||
|
try {
|
||||||
|
$response = $this->httpClient->request('POST', 'https://'.$client->getIp().':8000/ogAdmClient/Reiniciar', [
|
||||||
|
'verify_peer' => false,
|
||||||
|
'verify_host' => false,
|
||||||
|
'headers' => [
|
||||||
|
'Content-Type' => 'application/json',
|
||||||
|
],
|
||||||
|
'json' => $data,
|
||||||
|
]);
|
||||||
|
|
||||||
|
} catch (TransportExceptionInterface $e) {
|
||||||
|
return new JsonResponse(
|
||||||
|
data: ['error' => $e->getMessage()],
|
||||||
|
status: Response::HTTP_INTERNAL_SERVER_ERROR
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$jobId = json_decode($response->getContent(), true)['job_id'];
|
||||||
|
|
||||||
|
$client->setStatus(ClientStatus::INITIALIZING);
|
||||||
|
$this->entityManager->persist($client);
|
||||||
|
$this->entityManager->flush();
|
||||||
|
|
||||||
|
$this->createService->__invoke($client, CommandTypes::REBOOT, TraceStatus::SUCCESS, $jobId, []);
|
||||||
|
|
||||||
|
return new JsonResponse(data: $client, status: Response::HTTP_OK);
|
||||||
|
}
|
||||||
|
}
|
|
@ -9,6 +9,7 @@ use App\Model\ClientStatus;
|
||||||
use App\Model\OgLiveStatus;
|
use App\Model\OgLiveStatus;
|
||||||
use App\Service\CreatePartitionService;
|
use App\Service\CreatePartitionService;
|
||||||
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\HttpClient\HttpClient;
|
use Symfony\Component\HttpClient\HttpClient;
|
||||||
use Symfony\Component\HttpClient\Internal\ClientState;
|
use Symfony\Component\HttpClient\Internal\ClientState;
|
||||||
|
@ -28,7 +29,8 @@ class StatusAction extends AbstractController
|
||||||
public function __construct(
|
public function __construct(
|
||||||
protected readonly EntityManagerInterface $entityManager,
|
protected readonly EntityManagerInterface $entityManager,
|
||||||
protected readonly HttpClientInterface $httpClient,
|
protected readonly HttpClientInterface $httpClient,
|
||||||
protected readonly CreatePartitionService $createPartitionService
|
protected readonly CreatePartitionService $createPartitionService,
|
||||||
|
protected readonly LoggerInterface $logger,
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -61,6 +63,8 @@ class StatusAction extends AbstractController
|
||||||
|
|
||||||
public function getOgLiveStatus (Client $client): JsonResponse|int|string
|
public function getOgLiveStatus (Client $client): JsonResponse|int|string
|
||||||
{
|
{
|
||||||
|
$this->logger->info('Checking client status', ['client' => $client->getId()]);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$response = $this->httpClient->request('POST', 'https://' . $client->getIp() . ':8000/ogAdmClient/status', [
|
$response = $this->httpClient->request('POST', 'https://' . $client->getIp() . ':8000/ogAdmClient/status', [
|
||||||
'verify_peer' => false,
|
'verify_peer' => false,
|
||||||
|
@ -83,6 +87,7 @@ class StatusAction extends AbstractController
|
||||||
$data = json_decode($response->getContent(), true);
|
$data = json_decode($response->getContent(), true);
|
||||||
|
|
||||||
if (isset($data['cfg'])) {
|
if (isset($data['cfg'])) {
|
||||||
|
$this->logger->info('Creating partitions', ['data' => $data['cfg']]);
|
||||||
$this->createPartitionService->__invoke($data, $client);
|
$this->createPartitionService->__invoke($data, $client);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ class ClientsController extends AbstractController
|
||||||
public function index(Request $request): JsonResponse
|
public function index(Request $request): JsonResponse
|
||||||
{
|
{
|
||||||
$data = $request->toArray();
|
$data = $request->toArray();
|
||||||
$requiredFields = ['nfn', 'idi', 'dsk', 'par', 'ids', 'res', 'der', 'job_id'];
|
$requiredFields = ['nfn', 'ids', 'res', 'der', 'job_id'];
|
||||||
|
|
||||||
foreach ($requiredFields as $field) {
|
foreach ($requiredFields as $field) {
|
||||||
if (!isset($data[$field])) {
|
if (!isset($data[$field])) {
|
||||||
|
@ -123,6 +123,7 @@ class ClientsController extends AbstractController
|
||||||
$trace->setStatus(TraceStatus::SUCCESS);
|
$trace->setStatus(TraceStatus::SUCCESS);
|
||||||
$trace->setFinishedAt(new \DateTime());
|
$trace->setFinishedAt(new \DateTime());
|
||||||
$image->setStatus(ImageStatus::PENDING);
|
$image->setStatus(ImageStatus::PENDING);
|
||||||
|
$client->setStatus(ClientStatus::OG_LIVE);
|
||||||
} else {
|
} else {
|
||||||
$trace->setStatus(TraceStatus::FAILED);
|
$trace->setStatus(TraceStatus::FAILED);
|
||||||
$trace->setFinishedAt(new \DateTime());
|
$trace->setFinishedAt(new \DateTime());
|
||||||
|
@ -136,6 +137,29 @@ class ClientsController extends AbstractController
|
||||||
$this->entityManager->flush();
|
$this->entityManager->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($data['nfn'] === 'RESPUESTA_Configurar') {
|
||||||
|
$trace = $this->entityManager->getRepository(Trace::class)->findOneBy(['jobId' => $data['job_id']]);
|
||||||
|
|
||||||
|
$client = $trace->getClient();
|
||||||
|
|
||||||
|
if ($data['res'] === 1) {
|
||||||
|
$trace->setStatus(TraceStatus::SUCCESS);
|
||||||
|
$trace->setFinishedAt(new \DateTime());
|
||||||
|
$client->setStatus(ClientStatus::OG_LIVE);
|
||||||
|
if (isset($data['cfg'])) {
|
||||||
|
$this->createPartitionService->__invoke($data,$client);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$trace->setStatus(TraceStatus::FAILED);
|
||||||
|
$trace->setFinishedAt(new \DateTime());
|
||||||
|
$trace->setOutput($data['der']);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->entityManager->persist($client);
|
||||||
|
$this->entityManager->persist($trace);
|
||||||
|
$this->entityManager->flush();
|
||||||
|
}
|
||||||
|
|
||||||
return new JsonResponse(data: 'Webhook finished', status: Response::HTTP_OK);
|
return new JsonResponse(data: 'Webhook finished', status: Response::HTTP_OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ class SyncAction extends AbstractOgBootController
|
||||||
}
|
}
|
||||||
|
|
||||||
$templateContent = $this->createRequest('GET', 'http://'.$this->ogBootApiUrl . '/ogboot/v1/pxe-templates/'.$templateEntity->getName());
|
$templateContent = $this->createRequest('GET', 'http://'.$this->ogBootApiUrl . '/ogboot/v1/pxe-templates/'.$templateEntity->getName());
|
||||||
|
|
||||||
$templateEntity->setTemplateContent($templateContent['template_content']);
|
$templateEntity->setTemplateContent($templateContent['template_content']);
|
||||||
$templateEntity->setSynchronized(true);
|
$templateEntity->setSynchronized(true);
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace App\Controller\OgRepository;
|
||||||
|
|
||||||
|
use App\Controller\OgRepository\AbstractOgRepositoryController;
|
||||||
|
use App\Dto\Input\WoLInput;
|
||||||
|
use App\Entity\Client;
|
||||||
|
use App\Entity\Command;
|
||||||
|
use App\Entity\Image;
|
||||||
|
use App\Entity\ImageRepository;
|
||||||
|
use App\Entity\Trace;
|
||||||
|
use App\Model\ClientStatus;
|
||||||
|
use App\Model\CommandTypes;
|
||||||
|
use App\Model\ImageStatus;
|
||||||
|
use App\Model\TraceStatus;
|
||||||
|
use App\Service\Trace\CreateService;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
||||||
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\Routing\Attribute\Route;
|
||||||
|
use Symfony\Component\Validator\Exception\ValidatorException;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
||||||
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
||||||
|
|
||||||
|
class WoLAction extends AbstractOgRepositoryController
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @throws TransportExceptionInterface
|
||||||
|
* @throws ServerExceptionInterface
|
||||||
|
* @throws RedirectionExceptionInterface
|
||||||
|
* @throws ClientExceptionInterface
|
||||||
|
*/
|
||||||
|
public function __invoke(WoLInput $input, ImageRepository $repository): JsonResponse
|
||||||
|
{
|
||||||
|
/** @var Client $client */
|
||||||
|
$client = $input->client->getEntity();
|
||||||
|
|
||||||
|
|
||||||
|
if (!$repository->getIp()) {
|
||||||
|
throw new ValidatorException('IP is required');
|
||||||
|
}
|
||||||
|
|
||||||
|
$params = [
|
||||||
|
'json' => [
|
||||||
|
'broadcast_ip' => '255.255.255.255',
|
||||||
|
'mac' => $client->getMac()
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
|
$content = $this->createRequest('POST', 'http://'.$repository->getIp(). ':8006/ogrepository/v1/wol', $params);
|
||||||
|
|
||||||
|
$client->setStatus(ClientStatus::OFF);
|
||||||
|
$this->entityManager->persist($client);
|
||||||
|
$this->entityManager->flush();
|
||||||
|
|
||||||
|
$this->createService->__invoke($client, CommandTypes::SHUTDOWN, TraceStatus::SUCCESS, '', []);
|
||||||
|
|
||||||
|
return new JsonResponse(data: $client, status: Response::HTTP_OK);
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,11 +10,21 @@ use App\Dto\Output\OrganizationalUnitOutput;
|
||||||
use App\Entity\HardwareProfile;
|
use App\Entity\HardwareProfile;
|
||||||
use App\Entity\Menu;
|
use App\Entity\Menu;
|
||||||
use App\Entity\Partition;
|
use App\Entity\Partition;
|
||||||
|
use Ramsey\Uuid\UuidInterface;
|
||||||
use Symfony\Component\Serializer\Annotation\Groups;
|
use Symfony\Component\Serializer\Annotation\Groups;
|
||||||
use Symfony\Component\Validator\Constraints as Assert;
|
use Symfony\Component\Validator\Constraints as Assert;
|
||||||
|
|
||||||
final class PartitionInput
|
final class PartitionInput
|
||||||
{
|
{
|
||||||
|
#[Groups(['partition:write'])]
|
||||||
|
public ?UuidInterface $uuid = null;
|
||||||
|
|
||||||
|
#[Groups(['partition:write'])]
|
||||||
|
public ?bool $removed = null;
|
||||||
|
|
||||||
|
#[Groups(['partition:write'])]
|
||||||
|
public ?bool $format = null;
|
||||||
|
|
||||||
#[Groups(['partition:write'])]
|
#[Groups(['partition:write'])]
|
||||||
#[ApiProperty(description: 'The disk number of the partition', example: 1)]
|
#[ApiProperty(description: 'The disk number of the partition', example: 1)]
|
||||||
public ?int $diskNumber = null;
|
public ?int $diskNumber = null;
|
||||||
|
@ -37,7 +47,11 @@ final class PartitionInput
|
||||||
public ?string $cacheContent = null;
|
public ?string $cacheContent = null;
|
||||||
|
|
||||||
#[Groups(['partition:write'])]
|
#[Groups(['partition:write'])]
|
||||||
#[ApiProperty(description: 'The filesystem of the partition', example: "filesystem")]
|
#[ApiProperty(description: 'The type of the partition', example: "LINUX")]
|
||||||
|
public ?string $type = null;
|
||||||
|
|
||||||
|
#[Groups(['partition:write'])]
|
||||||
|
#[ApiProperty(description: 'The filesystem of the partition', example: "EXT4")]
|
||||||
public ?string $filesystem = null;
|
public ?string $filesystem = null;
|
||||||
|
|
||||||
#[Groups(['partition:write'])]
|
#[Groups(['partition:write'])]
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Dto\Input;
|
||||||
|
|
||||||
|
use App\Dto\Output\ClientOutput;
|
||||||
|
use Symfony\Component\Serializer\Annotation\Groups;
|
||||||
|
|
||||||
|
final class PartitionPostInput
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var PartitionInput[]
|
||||||
|
*/
|
||||||
|
#[Groups(['partition:write'])]
|
||||||
|
public array $partitions = [];
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Dto\Input;
|
||||||
|
|
||||||
|
use ApiPlatform\Metadata\ApiProperty;
|
||||||
|
use App\Dto\Output\ClientOutput;
|
||||||
|
use Symfony\Component\Serializer\Annotation\Groups;
|
||||||
|
|
||||||
|
class WoLInput
|
||||||
|
{
|
||||||
|
#[Groups(['repository:write'])]
|
||||||
|
#[ApiProperty(description: 'The client to wol')]
|
||||||
|
public ?ClientOutput $client = null;
|
||||||
|
}
|
|
@ -45,6 +45,7 @@ class Client extends AbstractEntity
|
||||||
* @var Collection<int, Partition>
|
* @var Collection<int, Partition>
|
||||||
*/
|
*/
|
||||||
#[ORM\OneToMany(mappedBy: 'client', targetEntity: Partition::class)]
|
#[ORM\OneToMany(mappedBy: 'client', targetEntity: Partition::class)]
|
||||||
|
#[ORM\OrderBy(['partitionNumber' => 'ASC'])]
|
||||||
private Collection $partitions;
|
private Collection $partitions;
|
||||||
|
|
||||||
#[ORM\ManyToOne]
|
#[ORM\ManyToOne]
|
||||||
|
|
|
@ -13,6 +13,7 @@ final class CommandTypes
|
||||||
public const string SHUTDOWN = 'shutdown';
|
public const string SHUTDOWN = 'shutdown';
|
||||||
public const string LOGIN = 'login';
|
public const string LOGIN = 'login';
|
||||||
public const string LOGOUT = 'logout';
|
public const string LOGOUT = 'logout';
|
||||||
|
public const string PARTITION_AND_FORMAT = 'partition-and-format';
|
||||||
|
|
||||||
private const array COMMAND_TYPES = [
|
private const array COMMAND_TYPES = [
|
||||||
self::DEPLOY_IMAGE => 'Deploy Image',
|
self::DEPLOY_IMAGE => 'Deploy Image',
|
||||||
|
@ -24,6 +25,7 @@ final class CommandTypes
|
||||||
self::SHUTDOWN => 'Apagar',
|
self::SHUTDOWN => 'Apagar',
|
||||||
self::LOGIN => 'Login',
|
self::LOGIN => 'Login',
|
||||||
self::LOGOUT => 'Logout',
|
self::LOGOUT => 'Logout',
|
||||||
|
self::PARTITION_AND_FORMAT => 'Partition and Format',
|
||||||
];
|
];
|
||||||
|
|
||||||
public static function getCommandTypes(): array
|
public static function getCommandTypes(): array
|
||||||
|
|
|
@ -0,0 +1,94 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Model;
|
||||||
|
|
||||||
|
final class PartitionTypes
|
||||||
|
{
|
||||||
|
private const array PARTITION_TYPES = [
|
||||||
|
0 => ['name' => 'EMPTY', 'active' => false],
|
||||||
|
1 => ['name' => 'FAT12', 'active' => true],
|
||||||
|
5 => ['name' => 'EXTENDED', 'active' => false],
|
||||||
|
6 => ['name' => 'FAT16', 'active' => true],
|
||||||
|
7 => ['name' => 'NTFS', 'active' => true],
|
||||||
|
11 => ['name' => 'FAT32', 'active' => true],
|
||||||
|
17 => ['name' => 'HFAT12', 'active' => true],
|
||||||
|
22 => ['name' => 'HFAT16', 'active' => true],
|
||||||
|
23 => ['name' => 'HNTFS', 'active' => true],
|
||||||
|
27 => ['name' => 'HFAT32', 'active' => true],
|
||||||
|
130 => ['name' => 'LINUX-SWAP', 'active' => false],
|
||||||
|
131 => ['name' => 'LINUX', 'active' => true],
|
||||||
|
142 => ['name' => 'LINUX-LVM', 'active' => true],
|
||||||
|
165 => ['name' => 'FREEBSD', 'active' => true],
|
||||||
|
166 => ['name' => 'OPENBSD', 'active' => true],
|
||||||
|
169 => ['name' => 'NETBSD', 'active' => true],
|
||||||
|
175 => ['name' => 'HFS', 'active' => true],
|
||||||
|
190 => ['name' => 'SOLARIS-BOOT', 'active' => true],
|
||||||
|
191 => ['name' => 'SOLARIS', 'active' => true],
|
||||||
|
202 => ['name' => 'CACHE', 'active' => false],
|
||||||
|
218 => ['name' => 'DATA', 'active' => true],
|
||||||
|
238 => ['name' => 'GPT', 'active' => false],
|
||||||
|
239 => ['name' => 'EFI', 'active' => true],
|
||||||
|
251 => ['name' => 'VMFS', 'active' => true],
|
||||||
|
253 => ['name' => 'LINUX-RAID', 'active' => true],
|
||||||
|
1792 => ['name' => 'WINDOWS', 'active' => true],
|
||||||
|
3073 => ['name' => 'WIN-RESERV', 'active' => true],
|
||||||
|
9984 => ['name' => 'WIN-RECOV', 'active' => true],
|
||||||
|
32512 => ['name' => 'CHROMEOS-KRN', 'active' => true],
|
||||||
|
32513 => ['name' => 'CHROMEOS', 'active' => true],
|
||||||
|
32514 => ['name' => 'CHROMEOS-RESERV', 'active' => true],
|
||||||
|
33280 => ['name' => 'LINUX-SWAP', 'active' => false],
|
||||||
|
33536 => ['name' => 'LINUX', 'active' => true],
|
||||||
|
33537 => ['name' => 'LINUX-RESERV', 'active' => true],
|
||||||
|
33538 => ['name' => 'LINUX', 'active' => true],
|
||||||
|
36352 => ['name' => 'LINUX-LVM', 'active' => true],
|
||||||
|
42240 => ['name' => 'FREEBSD-DISK', 'active' => false],
|
||||||
|
42241 => ['name' => 'FREEBSD-BOOT', 'active' => true],
|
||||||
|
42242 => ['name' => 'FREEBSD-SWAP', 'active' => false],
|
||||||
|
42243 => ['name' => 'FREEBSD', 'active' => true],
|
||||||
|
42244 => ['name' => 'FREEBSD', 'active' => true],
|
||||||
|
43265 => ['name' => 'NETBSD-SWAP', 'active' => false],
|
||||||
|
43266 => ['name' => 'NETBSD', 'active' => true],
|
||||||
|
43267 => ['name' => 'NETBSD', 'active' => true],
|
||||||
|
43268 => ['name' => 'NETBSD', 'active' => true],
|
||||||
|
43269 => ['name' => 'NETBSD', 'active' => true],
|
||||||
|
43270 => ['name' => 'NETBSD-RAID', 'active' => true],
|
||||||
|
43776 => ['name' => 'HFS-BOOT', 'active' => true],
|
||||||
|
44800 => ['name' => 'HFS', 'active' => true],
|
||||||
|
44801 => ['name' => 'HFS-RAID', 'active' => true],
|
||||||
|
44802 => ['name' => 'HFS-RAID', 'active' => true],
|
||||||
|
48640 => ['name' => 'SOLARIS-BOOT', 'active' => true],
|
||||||
|
48896 => ['name' => 'SOLARIS', 'active' => true],
|
||||||
|
48897 => ['name' => 'SOLARIS', 'active' => true],
|
||||||
|
48898 => ['name' => 'SOLARIS-SWAP', 'active' => false],
|
||||||
|
48899 => ['name' => 'SOLARIS-DISK', 'active' => true],
|
||||||
|
48900 => ['name' => 'SOLARIS', 'active' => true],
|
||||||
|
48901 => ['name' => 'SOLARIS', 'active' => true],
|
||||||
|
51712 => ['name' => 'CACHE', 'active' => false],
|
||||||
|
61184 => ['name' => 'EFI', 'active' => true],
|
||||||
|
61185 => ['name' => 'MBR', 'active' => false],
|
||||||
|
61186 => ['name' => 'BIOS-BOOT', 'active' => false],
|
||||||
|
64256 => ['name' => 'VMFS', 'active' => true],
|
||||||
|
64257 => ['name' => 'VMFS-RESERV', 'active' => true],
|
||||||
|
64258 => ['name' => 'VMFS-KRN', 'active' => true],
|
||||||
|
64768 => ['name' => 'LINUX-RAID', 'active' => true],
|
||||||
|
65535 => ['name' => 'UNKNOWN', 'active' => true],
|
||||||
|
65536 => ['name' => 'LVM-LV', 'active' => true],
|
||||||
|
65552 => ['name' => 'ZFS-VOL', 'active' => true],
|
||||||
|
39 => ['name' => 'HNTFS-WINRE', 'active' => true],
|
||||||
|
];
|
||||||
|
|
||||||
|
public static function getPartitionTypes(): array
|
||||||
|
{
|
||||||
|
return self::PARTITION_TYPES;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPartitionType(int $code): ?array
|
||||||
|
{
|
||||||
|
return self::PARTITION_TYPES[$code] ?? null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function getPartitionKeys(): array
|
||||||
|
{
|
||||||
|
return array_keys(self::PARTITION_TYPES);
|
||||||
|
}
|
||||||
|
}
|
|
@ -3,11 +3,10 @@
|
||||||
namespace App\Repository;
|
namespace App\Repository;
|
||||||
|
|
||||||
use App\Entity\Partition;
|
use App\Entity\Partition;
|
||||||
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
||||||
use Doctrine\Persistence\ManagerRegistry;
|
use Doctrine\Persistence\ManagerRegistry;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @extends ServiceEntityRepository<Partition>
|
* @extends AbstractRepository<Partition>
|
||||||
*/
|
*/
|
||||||
class PartitionRepository extends AbstractRepository
|
class PartitionRepository extends AbstractRepository
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,6 +5,7 @@ namespace App\Service;
|
||||||
use App\Entity\Client;
|
use App\Entity\Client;
|
||||||
use App\Entity\OperativeSystem;
|
use App\Entity\OperativeSystem;
|
||||||
use App\Entity\Partition;
|
use App\Entity\Partition;
|
||||||
|
use App\Model\PartitionTypes;
|
||||||
use Doctrine\ORM\EntityManagerInterface;
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
|
||||||
class CreatePartitionService
|
class CreatePartitionService
|
||||||
|
@ -17,6 +18,11 @@ class CreatePartitionService
|
||||||
|
|
||||||
public function __invoke(array $data, Client $clientEntity): void
|
public function __invoke(array $data, Client $clientEntity): void
|
||||||
{
|
{
|
||||||
|
$currentPartitions = $this->entityManager->getRepository(Partition::class)
|
||||||
|
->findBy(['client' => $clientEntity]);
|
||||||
|
|
||||||
|
$receivedPartitions = [];
|
||||||
|
|
||||||
foreach ($data['cfg'] as $cfg) {
|
foreach ($data['cfg'] as $cfg) {
|
||||||
if (!isset($cfg['disk'], $cfg['par'], $cfg['tam'], $cfg['uso'], $cfg['fsi'])) {
|
if (!isset($cfg['disk'], $cfg['par'], $cfg['tam'], $cfg['uso'], $cfg['fsi'])) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -45,9 +51,34 @@ class CreatePartitionService
|
||||||
$partitionEntity->setDiskNumber($cfg['disk']);
|
$partitionEntity->setDiskNumber($cfg['disk']);
|
||||||
$partitionEntity->setPartitionNumber($cfg['par']);
|
$partitionEntity->setPartitionNumber($cfg['par']);
|
||||||
$partitionEntity->setSize($cfg['tam']);
|
$partitionEntity->setSize($cfg['tam']);
|
||||||
|
|
||||||
|
if (isset($cfg['cpt']) && $cfg['fsi'] !== '') {
|
||||||
|
$partitionEntity->setPartitionCode(PartitionTypes::getPartitionType(hexdec((integer)$cfg['cpt']))['name']);
|
||||||
|
} else {
|
||||||
|
$partitionEntity->setPartitionCode(PartitionTypes::getPartitionType(0)['name']);
|
||||||
|
}
|
||||||
|
|
||||||
$partitionEntity->setFilesystem($cfg['fsi']);
|
$partitionEntity->setFilesystem($cfg['fsi']);
|
||||||
$partitionEntity->setMemoryUsage(((int) $cfg['uso']) * 100);
|
$partitionEntity->setMemoryUsage(((int) $cfg['uso']) * 100);
|
||||||
$this->entityManager->persist($partitionEntity);
|
$this->entityManager->persist($partitionEntity);
|
||||||
|
|
||||||
|
$receivedPartitions[] = ['disk' => $cfg['disk'], 'partition' => $cfg['par']];
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($currentPartitions as $currentPartition) {
|
||||||
|
$exists = false;
|
||||||
|
|
||||||
|
foreach ($receivedPartitions as $receivedPartition) {
|
||||||
|
if ($currentPartition->getDiskNumber() == $receivedPartition['disk'] &&
|
||||||
|
$currentPartition->getPartitionNumber() == $receivedPartition['partition']) {
|
||||||
|
$exists = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$exists) {
|
||||||
|
$this->entityManager->remove($currentPartition);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->entityManager->flush();
|
$this->entityManager->flush();
|
||||||
|
|
|
@ -9,8 +9,10 @@ use ApiPlatform\Metadata\Post;
|
||||||
use ApiPlatform\Metadata\Put;
|
use ApiPlatform\Metadata\Put;
|
||||||
use ApiPlatform\State\ProcessorInterface;
|
use ApiPlatform\State\ProcessorInterface;
|
||||||
use ApiPlatform\Validator\ValidatorInterface;
|
use ApiPlatform\Validator\ValidatorInterface;
|
||||||
|
use App\Controller\OgAgent\PartitionAssistantAction;
|
||||||
use App\Dto\Input\MenuInput;
|
use App\Dto\Input\MenuInput;
|
||||||
use App\Dto\Input\PartitionInput;
|
use App\Dto\Input\PartitionInput;
|
||||||
|
use App\Dto\Input\PartitionPostInput;
|
||||||
use App\Dto\Input\UserGroupInput;
|
use App\Dto\Input\UserGroupInput;
|
||||||
use App\Dto\Output\MenuOutput;
|
use App\Dto\Output\MenuOutput;
|
||||||
use App\Dto\Output\PartitionOutput;
|
use App\Dto\Output\PartitionOutput;
|
||||||
|
@ -18,12 +20,15 @@ use App\Dto\Output\UserGroupOutput;
|
||||||
use App\Repository\MenuRepository;
|
use App\Repository\MenuRepository;
|
||||||
use App\Repository\PartitionRepository;
|
use App\Repository\PartitionRepository;
|
||||||
use App\Repository\UserGroupRepository;
|
use App\Repository\UserGroupRepository;
|
||||||
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
readonly class PartitionProcessor implements ProcessorInterface
|
readonly class PartitionProcessor implements ProcessorInterface
|
||||||
{
|
{
|
||||||
public function __construct(
|
public function __construct(
|
||||||
private PartitionRepository $partitionRepository,
|
private PartitionRepository $partitionRepository,
|
||||||
private ValidatorInterface $validator
|
private ValidatorInterface $validator,
|
||||||
|
private PartitionAssistantAction $partitionAssistantAction
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -31,7 +36,7 @@ readonly class PartitionProcessor implements ProcessorInterface
|
||||||
/**
|
/**
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): PartitionOutput|null
|
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): JsonResponse
|
||||||
{
|
{
|
||||||
switch ($operation){
|
switch ($operation){
|
||||||
case $operation instanceof Post:
|
case $operation instanceof Post:
|
||||||
|
@ -46,22 +51,32 @@ readonly class PartitionProcessor implements ProcessorInterface
|
||||||
/**
|
/**
|
||||||
* @throws \Exception
|
* @throws \Exception
|
||||||
*/
|
*/
|
||||||
private function processCreateOrUpdate($data, Operation $operation, array $uriVariables = [], array $context = []): PartitionOutput
|
private function processCreateOrUpdate($data, Operation $operation, array $uriVariables = [], array $context = []): JsonResponse
|
||||||
{
|
{
|
||||||
if (!($data instanceof PartitionInput)) {
|
if (!($data instanceof PartitionPostInput)) {
|
||||||
throw new \Exception(sprintf('data is not instance of %s', PartitionInput::class));
|
throw new \Exception(sprintf('data is not instance of %s', PartitionPostInput::class));
|
||||||
}
|
}
|
||||||
|
|
||||||
$entity = null;
|
foreach ($data->partitions as $partition) {
|
||||||
if (isset($uriVariables['uuid'])) {
|
$entity = null;
|
||||||
$entity = $this->partitionRepository->findOneByUuid($uriVariables['uuid']);
|
if (isset($partition->uuid)) {
|
||||||
|
$entity = $this->partitionRepository->findOneByUuid($partition->uuid);
|
||||||
|
|
||||||
|
if ($partition->removed && $entity) {
|
||||||
|
$this->partitionRepository->delete($entity);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$entity = $partition->createOrUpdateEntity($entity);
|
||||||
|
$this->validator->validate($entity);
|
||||||
|
|
||||||
|
//$this->partitionRepository->save($entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
$partition = $data->createOrUpdateEntity($entity);
|
$this->partitionAssistantAction->__invoke($data);
|
||||||
$this->validator->validate($partition);
|
|
||||||
$this->partitionRepository->save($partition);
|
|
||||||
|
|
||||||
return new PartitionOutput($partition);
|
return new JsonResponse('OK', Response::HTTP_NO_CONTENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function processDelete($data, Operation $operation, array $uriVariables = [], array $context = []): null
|
private function processDelete($data, Operation $operation, array $uriVariables = [], array $context = []): null
|
||||||
|
|
|
@ -54,72 +54,4 @@ class PartitionTest extends AbstractTest
|
||||||
'hydra:totalItems' => 10,
|
'hydra:totalItems' => 10,
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @throws RedirectionExceptionInterface
|
|
||||||
* @throws DecodingExceptionInterface
|
|
||||||
* @throws ClientExceptionInterface
|
|
||||||
* @throws TransportExceptionInterface
|
|
||||||
* @throws ServerExceptionInterface
|
|
||||||
*/
|
|
||||||
public function testCreatePartition(): void
|
|
||||||
{
|
|
||||||
UserFactory::createOne(['username' => self::USER_ADMIN, 'roles'=> [UserGroupPermissions::ROLE_SUPER_ADMIN]]);
|
|
||||||
|
|
||||||
$ou = OrganizationalUnitFactory::createOne(['type' => OrganizationalUnitTypes::ORGANIZATIONAL_UNIT]);
|
|
||||||
$hp = HardwareProfileFactory::createOne(['description' => self::HW_PROFILE]);
|
|
||||||
|
|
||||||
ClientFactory::createOne(['name' => self::CLIENT_CREATE, 'serialNumber' => '123abc', 'organizationalUnit' => $ou, 'hardwareProfile' => $hp]);
|
|
||||||
$iri = $this->findIriBy(Client::class, ['name' => self::CLIENT_CREATE]);
|
|
||||||
|
|
||||||
OperativeSystemFactory::createOne(['name' => 'Ubuntu']);
|
|
||||||
$osIri = $this->findIriBy(OperativeSystem::class, ['name' => 'Ubuntu']);
|
|
||||||
|
|
||||||
ImageFactory::createOne(['name' => 'Image 1']);
|
|
||||||
$imageIri = $this->findIriBy(Image::class, ['name' => 'Image 1']);
|
|
||||||
|
|
||||||
$this->createClientWithCredentials()->request('POST', '/partitions',['json' => [
|
|
||||||
'size' => 100,
|
|
||||||
'operativeSystem' => $osIri,
|
|
||||||
'image' => $imageIri,
|
|
||||||
'client' => $iri,
|
|
||||||
'memoryUsage' => 100
|
|
||||||
]]);
|
|
||||||
|
|
||||||
$this->assertResponseStatusCodeSame(201);
|
|
||||||
$this->assertResponseHeaderSame('content-type', 'application/ld+json; charset=utf-8');
|
|
||||||
$this->assertJsonContains([
|
|
||||||
'@context' => '/contexts/PartitionOutput',
|
|
||||||
'@type' => 'Partition',
|
|
||||||
'size' => 100,
|
|
||||||
'memoryUsage' => 100
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @throws RedirectionExceptionInterface
|
|
||||||
* @throws DecodingExceptionInterface
|
|
||||||
* @throws ClientExceptionInterface
|
|
||||||
* @throws TransportExceptionInterface
|
|
||||||
* @throws ServerExceptionInterface
|
|
||||||
*/
|
|
||||||
public function testUpdatePartition(): void
|
|
||||||
{
|
|
||||||
UserFactory::createOne(['username' => self::USER_ADMIN, 'roles'=> [UserGroupPermissions::ROLE_SUPER_ADMIN]]);
|
|
||||||
|
|
||||||
PartitionFactory::createOne(['size' => 100, 'memoryUsage' => 100]);
|
|
||||||
$iri = $this->findIriBy(Partition::class, ['size' => 100, 'memoryUsage' => 100]);
|
|
||||||
|
|
||||||
$this->createClientWithCredentials()->request('PUT', $iri, ['json' => [
|
|
||||||
'size' => 200,
|
|
||||||
'memoryUsage' => 300
|
|
||||||
]]);
|
|
||||||
|
|
||||||
$this->assertResponseIsSuccessful();
|
|
||||||
$this->assertJsonContains([
|
|
||||||
'@id' => $iri,
|
|
||||||
'size' => 200,
|
|
||||||
'memoryUsage' => 300
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue