- FallBack tab: per-node tier inventory + active fallback card with duration, tier, handback strikes, running container status - Watchdog tab: live system health (RAM bar + thresholds, load, uptime, daemon), docker watchdog strikes + skip list + restart history, stability strikes + reboot log, resource pressure alert card, config inventory (mem limits, required, pause/stop lists) - Swapped partnership/arrs tab order; FallBack between partnership and watchdog - Plugin source tree moved from Plugin/usr/local/emhttp/plugins/varaverk/ to Plugin/unraid/ - Deployment/ conf templates added
63 lines
2.0 KiB
PHP
63 lines
2.0 KiB
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
require_once dirname(__DIR__) . '/include/scheduler.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
|
|
$id = trim($_GET['id'] ?? '');
|
|
if (!$id || !preg_match('/^Custom\/[a-zA-Z0-9_\-]+\.sh$/', $id) || str_contains($id, '..')) {
|
|
echo json_encode(['ok' => false, 'error' => 'Invalid id']);
|
|
exit;
|
|
}
|
|
$path = SCRIPTS_DIR . '/' . $id;
|
|
echo json_encode(['ok' => true, 'content' => file_exists($path) ? file_get_contents($path) : '']);
|
|
exit;
|
|
}
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$action = trim($_POST['action'] ?? 'save');
|
|
$name = trim($_POST['name'] ?? '');
|
|
$content = $_POST['content'] ?? '';
|
|
|
|
if (!$name || !preg_match('/^[a-zA-Z0-9_\-]+$/', $name)) {
|
|
echo json_encode(['ok' => false, 'error' => 'Name must be letters, numbers, _ or - only']);
|
|
exit;
|
|
}
|
|
|
|
$id = 'Custom/' . $name . '.sh';
|
|
$path = SCRIPTS_DIR . '/Custom/' . $name . '.sh';
|
|
|
|
if ($action === 'delete') {
|
|
if (!file_exists($path)) {
|
|
echo json_encode(['ok' => false, 'error' => 'Script not found']);
|
|
exit;
|
|
}
|
|
unlink($path);
|
|
$schedule = vv_schedule_load();
|
|
unset($schedule[$id]);
|
|
vv_schedule_save($schedule);
|
|
vv_cron_rebuild($schedule);
|
|
echo json_encode(['ok' => true]);
|
|
exit;
|
|
}
|
|
|
|
$dir = SCRIPTS_DIR . '/Custom';
|
|
if (!is_dir($dir)) mkdir($dir, 0755, true);
|
|
if (file_put_contents($path, $content) === false) {
|
|
echo json_encode(['ok' => false, 'error' => 'Failed to write script']);
|
|
exit;
|
|
}
|
|
chmod($path, 0755);
|
|
|
|
// Ensure schedule.json has an entry so the script appears in the job list
|
|
$schedule = vv_schedule_load();
|
|
if (!isset($schedule[$id])) {
|
|
$schedule[$id] = ['id' => $id, 'enabled' => false, 'cron' => '', 'log_enabled' => false, 'updated' => date('c')];
|
|
vv_schedule_save($schedule);
|
|
}
|
|
|
|
echo json_encode(['ok' => true, 'id' => $id]);
|
|
exit;
|
|
}
|
|
|
|
echo json_encode(['ok' => false, 'error' => 'Method not allowed']);
|