67 lines
2.2 KiB
PHP
67 lines
2.2 KiB
PHP
<?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::INITIALIZING);
|
|
$this->entityManager->persist($client);
|
|
$this->entityManager->flush();
|
|
|
|
$this->createService->__invoke($client, CommandTypes::SHUTDOWN, TraceStatus::SUCCESS, '', []);
|
|
|
|
return new JsonResponse(data: $client, status: Response::HTTP_OK);
|
|
}
|
|
}
|