mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-09-25 09:53:08 +02:00
60 lines
2.5 KiB
PHP
60 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* system-fragment.php — returns only the tab-panel HTML for the admin system page.
|
|
*
|
|
* Called by fetch() from parametres.php JS when switching tabs or changing line count.
|
|
* With JS disabled the user never hits this URL directly; the tab <a> hrefs still
|
|
* point at parametres.php?tab=… so navigation degrades gracefully.
|
|
*
|
|
* Response: text/html fragment (no <html>/<head>/<body> wrapper).
|
|
* On any auth failure or bad request: 403 / 400 with a plain-text body.
|
|
*/
|
|
require_once __DIR__ . "/../../bootstrap.php";
|
|
require_once __DIR__ . '/../../src/AdminAuth.php';
|
|
require_once APP_ROOT . '/src/Database.php';
|
|
require_once APP_ROOT . '/src/SystemCache.php';
|
|
require_once APP_ROOT . '/src/Controllers/SystemController.php';
|
|
|
|
if (!AdminAuth::isAuthenticated()) {
|
|
http_response_code(403);
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
echo 'Non autorisé';
|
|
exit;
|
|
}
|
|
|
|
// ── Validate inputs ────────────────────────────────────────────────────────
|
|
$activeTab = $_GET['tab'] ?? 'app';
|
|
if (!array_key_exists($activeTab, SystemController::LOG_FILES)) {
|
|
$activeTab = 'app';
|
|
}
|
|
|
|
$selectedN = isset($_GET['n']) ? (int) $_GET['n'] : 100;
|
|
if (!in_array($selectedN, SystemController::ALLOWED_LINES, true)) {
|
|
$selectedN = 100;
|
|
}
|
|
|
|
// Optional date selection (YYYY-MM-DD) for daily app logs.
|
|
$selectedDate = $_GET['date'] ?? null;
|
|
if ($selectedDate !== null && !preg_match('/^\d{4}-\d{2}-\d{2}$/', $selectedDate)) {
|
|
$selectedDate = null;
|
|
}
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
header('X-Robots-Tag: noindex');
|
|
|
|
// ── Build data via controller ──────────────────────────────────────────────
|
|
$_db = new Database();
|
|
$_cache = new SystemCache($_db->getPDO());
|
|
$_controller = new SystemController($_db, $_cache);
|
|
|
|
// ── Render ─────────────────────────────────────────────────────────────────
|
|
$logData = $_controller->getLogData($activeTab, $selectedN, $selectedDate);
|
|
$logLines = $logData['lines'];
|
|
$logError = $logData['error'];
|
|
$logFileMeta = $logData['meta'];
|
|
$logIsJson = $logData['isJson'] ?? false;
|
|
$notYet = $logData['notYet'] ?? false;
|
|
$logDates = SystemController::listLogDates($activeTab);
|
|
|
|
include APP_ROOT . '/templates/admin/partials/system-log-panel.php';
|