28 lines
822 B
PHP
28 lines
822 B
PHP
<?php
|
|
require_once __DIR__ . '/../lib/PveApi.php';
|
|
$cfg = require __DIR__ . '/../config/pve.php';
|
|
$pve = new PveApi($cfg);
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
|
|
try {
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
http_response_code(405);
|
|
echo json_encode(['ok' => false, 'error' => 'Method not allowed']);
|
|
exit;
|
|
}
|
|
|
|
$vmid = (int)($_POST['vmid'] ?? 0);
|
|
$action = (string)($_POST['action'] ?? '');
|
|
|
|
// optional: hier deine Dashboard-Auth checken!
|
|
if ($vmid <= 0) throw new InvalidArgumentException("vmid fehlt/ungültig");
|
|
|
|
$upid = $pve->powerAction($vmid, $action);
|
|
echo json_encode(['ok' => true, 'vmid' => $vmid, 'action' => $action, 'upid' => $upid]);
|
|
|
|
} catch (Throwable $e) {
|
|
http_response_code(400);
|
|
echo json_encode(['ok' => false, 'error' => $e->getMessage()]);
|
|
}
|