4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00
AzuraCast/src/Controller/Api/Stations/GetRestartStatusAction.php
2022-05-24 00:50:43 -05:00

25 lines
562 B
PHP

<?php
declare(strict_types=1);
namespace App\Controller\Api\Stations;
use App\Http\Response;
use App\Http\ServerRequest;
use Psr\Http\Message\ResponseInterface;
final class GetRestartStatusAction
{
public function __invoke(
ServerRequest $request,
Response $response,
string $station_id
): ResponseInterface {
$station = $request->getStation();
return $response->withJson([
'has_started' => $station->getHasStarted(),
'needs_restart' => $station->getNeedsRestart(),
]);
}
}