53 lines
1.9 KiB
PHP
53 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Controller\OgDhcp\Subnet;
|
|
|
|
use App\Controller\OgDhcp\AbstractOgDhcpController;
|
|
use App\Entity\Subnet;
|
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\HttpKernel\Attribute\AsController;
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
|
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;
|
|
|
|
#[AsController]
|
|
class DeleteAction extends AbstractOgDhcpController
|
|
{
|
|
/**
|
|
* @throws TransportExceptionInterface
|
|
* @throws ServerExceptionInterface
|
|
* @throws RedirectionExceptionInterface
|
|
* @throws ClientExceptionInterface
|
|
*/
|
|
public function __invoke(Subnet $data, HttpClientInterface $httpClient): JsonResponse
|
|
{
|
|
if (!$data->getId()) {
|
|
throw new BadRequestHttpException('Data Id is required');
|
|
}
|
|
|
|
try {
|
|
$content = $this->createRequest(
|
|
'DELETE',
|
|
'http://' . $this->ogDhcpApiUrl . '/ogdhcp/v1/subnets/' . $data->getServerId()
|
|
);
|
|
} catch (HttpException $e) {
|
|
if ($e->getStatusCode() === 404) {
|
|
$content = ['message' => 'Subnet not found on external API, proceeding with local deletion'];
|
|
} else {
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
$this->entityManager->remove($data);
|
|
$this->entityManager->flush();
|
|
|
|
return new JsonResponse(data: $content, status: Response::HTTP_OK);
|
|
}
|
|
|
|
} |