47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Monitor\Framework\Controller;
|
|
|
|
use App\Monitor\Action\Handler\AddMonitorHandler;
|
|
use App\Monitor\Action\Input\AddMonitorInput;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
|
use Symfony\Component\DependencyInjection\Attribute\Autowire;
|
|
use Symfony\Component\Mercure\HubInterface;
|
|
use Symfony\Component\Mercure\Update;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
use Twig\Environment;
|
|
|
|
class ApiController extends AbstractController
|
|
{
|
|
public function __construct(
|
|
#[Autowire(service: 'twig')]
|
|
private readonly Environment $renderer,
|
|
) {}
|
|
|
|
#[Route('/api/monitor', name: 'api_monitor', methods: ['POST'])]
|
|
public function addMonitor(
|
|
AddMonitorInput $input,
|
|
AddMonitorHandler $handler,
|
|
HubInterface $hub,
|
|
) {
|
|
$command = $input->toCommand();
|
|
$command->userId = $this->getUser()->getId();
|
|
$response = $handler->handle($command);
|
|
|
|
$hub->publish(new Update(
|
|
'alerts',
|
|
$this->renderer->render('broadcast/Alert.stream.html.twig', [
|
|
'alert_id' => uniqid(),
|
|
'title' => 'Success',
|
|
'message' => "New monitor added for {$input->title}",
|
|
])
|
|
));
|
|
|
|
return $this->json([
|
|
'status' => 200,
|
|
'message' => $response
|
|
]);
|
|
}
|
|
}
|