Added passenger support. Partialy 1
This commit is contained in:
37
web/edit/extmodules/index.php
Normal file
37
web/edit/extmodules/index.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
use function Hestiacp\quoteshellarg\quoteshellarg;
|
||||
|
||||
ob_start();
|
||||
|
||||
session_start();
|
||||
include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
|
||||
|
||||
// Check token
|
||||
verify_csrf($_GET);
|
||||
|
||||
// Check user
|
||||
if ($_SESSION["userContext"] != "admin") {
|
||||
header("Location: /list/user");
|
||||
exit();
|
||||
}
|
||||
|
||||
if (!empty($_GET["id"])) {
|
||||
$v_name = urldecode($_GET["id"]);
|
||||
$v_action = urldecode($_GET["state"]);
|
||||
if ($v_action == "enable") {
|
||||
exec(HESTIA_CMD . "v-ext-modules enable " . quoteshellarg($v_name), $output, $return_var);
|
||||
} else {
|
||||
exec(HESTIA_CMD . "v-ext-modules disable " . quoteshellarg($v_name), $output, $return_var);
|
||||
}
|
||||
}
|
||||
check_return_code($return_var, $output);
|
||||
unset($output);
|
||||
|
||||
$back = getenv("HTTP_REFERER");
|
||||
if (!empty($back)) {
|
||||
header("Location: " . $back);
|
||||
exit();
|
||||
}
|
||||
|
||||
header("Location: /list/extmodules/");
|
||||
exit();
|
||||
@@ -183,6 +183,14 @@ exec(HESTIA_CMD . "v-list-web-stats json", $output, $return_var);
|
||||
$stats = json_decode(implode("", $output), true);
|
||||
unset($output);
|
||||
|
||||
//Check if passenger enabled
|
||||
exec(HESTIA_CMD . "v-ext-modules state passenger_manager json", $output, $return_var);
|
||||
$check_passenger_enabled = json_decode(implode("", $output), true);
|
||||
if (($return_var == 0) && (!empty($check_passenger_enabled)) && ($check_passenger_enabled[0]["STATE"] == "enabled")){
|
||||
//TODO
|
||||
}
|
||||
unset($output);
|
||||
|
||||
// Check POST request
|
||||
if (!empty($_POST["save"])) {
|
||||
$v_domain = $_POST["v_domain"];
|
||||
|
||||
Reference in New Issue
Block a user