mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 13:01:33 +00:00
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Services\SiteStatusService;
|
|
use Illuminate\View\View;
|
|
|
|
class StatusPageController extends BasePageController
|
|
{
|
|
public function __construct(
|
|
protected SiteStatusService $siteStatusService
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Public site status page (no auth required; method name is in BasePageController auth except list).
|
|
*/
|
|
public function showStatusPage(): View
|
|
{
|
|
$services = $this->siteStatusService->getPublicEnabledServices();
|
|
$overall = $this->siteStatusService->getOverallPublicStatus();
|
|
$activeIncidents = $this->siteStatusService->getActiveIncidentsForPublic();
|
|
$recentResolved = $this->siteStatusService->getRecentResolvedIncidentsForPublic(30);
|
|
|
|
$groupedResolved = $recentResolved->groupBy(function ($incident) {
|
|
return $incident->resolved_at?->format('Y-m-d') ?? 'unknown';
|
|
});
|
|
|
|
$this->viewData = array_merge($this->viewData, [
|
|
'meta_title' => 'Service status',
|
|
'meta_description' => 'Current status of site services, incidents, and uptime.',
|
|
'title' => 'Service status',
|
|
'services' => $services,
|
|
'overallStatus' => $overall,
|
|
'activeIncidents' => $activeIncidents,
|
|
'recentResolvedGrouped' => $groupedResolved,
|
|
]);
|
|
|
|
return view('status.index', $this->viewData);
|
|
}
|
|
}
|