- Cron and Advanced button vertically aligned in their respective rows - Verbose checkbox next to Log button — saves immediately, persists to schedule.json - --log flag injected into cron lines, manual Run, and Dry Run when verbose enabled - Coffee report rewritten as lean orchestrator over COFFEE_REPORT_SCRIPTS array - COFFEE_REPORT_SCRIPTS added to master.conf (7 Sunday monitor scripts) - Scheduler Advanced tab auto-discovers children via existing array detection
23 lines
736 B
PHP
23 lines
736 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
require_once dirname(__DIR__) . '/include/scheduler.php';
|
|
|
|
$id = trim($_POST['id'] ?? '');
|
|
$enabled = (bool)($_POST['enabled'] ?? false);
|
|
$cron = trim($_POST['cron'] ?? '');
|
|
$log_enabled = ($_POST['log_enabled'] ?? '0') === '1';
|
|
|
|
if (!$id) {
|
|
echo json_encode(['ok' => false, 'error' => 'Missing id']);
|
|
exit;
|
|
}
|
|
|
|
// Basic cron validation — 5 fields or empty
|
|
if ($cron && !preg_match('/^(\S+\s+){4}\S+$/', $cron)) {
|
|
echo json_encode(['ok' => false, 'error' => 'Invalid cron expression']);
|
|
exit;
|
|
}
|
|
|
|
$ok = vv_schedule_update($id, $enabled, $cron, $log_enabled);
|
|
echo json_encode(['ok' => $ok, 'error' => $ok ? null : 'Failed to write schedule']);
|