4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00
AzuraCast/src/Controller/Stations/Reports/SoundExchangeAction.php

39 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Controller\Stations\Reports;
use App\Http\Response;
use App\Http\ServerRequest;
use Carbon\CarbonImmutable;
use Psr\Http\Message\ResponseInterface;
final class SoundExchangeAction
{
public function __invoke(
ServerRequest $request,
Response $response,
string $station_id
): ResponseInterface {
$tzObject = $request->getStation()->getTimezoneObject();
$defaultStartDate = CarbonImmutable::parse('first day of last month', $tzObject)->format('Y-m-d');
$defaultEndDate = CarbonImmutable::parse('last day of last month', $tzObject)->format('Y-m-d');
$router = $request->getRouter();
return $request->getView()->renderVuePage(
response: $response,
component: 'Vue_StationsReportsSoundExchange',
id: 'station-report-soundexchange',
title: __('SoundExchange Report'),
props: [
'apiUrl' => $router->fromHere('api:stations:reports:soundexchange'),
'startDate' => $defaultStartDate,
'endDate' => $defaultEndDate,
]
);
}
}