Fixes config pages

main
Yasen Pramatarov 2024-09-20 12:13:18 +03:00
parent 847dc280d3
commit 88e77f71ef
5 changed files with 59 additions and 24 deletions

View File

@ -10,27 +10,27 @@ $agentObject = new Agent($dbWeb);
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// new agent adding
if (isset($_POST['new']) && $_POST['new'] === 'true') {
$newAgent = [
'type_id' => 1,
'url' => $_POST['url'],
'secret_key' => $_POST['secret_key'],
];
$result = $agentObject->addAgent($platform_id, $newAgent);
if ($result === true) {
$_SESSION['notice'] = "New Jilo Agent added.";
} else {
$_SESSION['error'] = "Adding the agent failed. Error: $result";
}
// if (isset($_POST['new']) && $_POST['new'] === 'true') {
// $newAgent = [
// 'type_id' => 1,
// 'url' => $_POST['url'],
// 'secret_key' => $_POST['secret_key'],
// ];
// $result = $agentObject->addAgent($platform_id, $newAgent);
// if ($result === true) {
// $_SESSION['notice'] = "New Jilo Agent added.";
// } else {
// $_SESSION['error'] = "Adding the agent failed. Error: $result";
// }
// deleting an agent
} elseif (isset($_POST['delete']) && $_POST['delete'] === 'true') {
$result = $agentObject->deleteAgent($agent);
if ($result === true) {
$_SESSION['notice'] = "Agent id \"{$_REQUEST['agent']}\" deleted.";
} else {
$_SESSION['error'] = "Deleting the agent failed. Error: $result";
}
// } elseif (isset($_POST['delete']) && $_POST['delete'] === 'true') {
// $result = $agentObject->deleteAgent($agent);
// if ($result === true) {
// $_SESSION['notice'] = "Agent id \"{$_REQUEST['agent']}\" deleted.";
// } else {
// $_SESSION['error'] = "Deleting the agent failed. Error: $result";
// }
// an update to an existing agent
} else {

View File

@ -1,9 +1,13 @@
<?php
$action = $_REQUEST['action'] ?? '';
$agent = $_REQUEST['agent'] ?? '';
require '../app/classes/config.php';
require '../app/classes/agent.php';
$configObject = new Config();
$agentObject = new Agent($dbWeb);
// if a form is submitted, it's from the edit page
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
@ -13,8 +17,22 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// $content = file_get_contents($config_file);
// $updatedContent = $content;
// new agent adding
if (isset($_POST['new']) && isset($_POST['item']) && $_POST['new'] === 'true' && $_POST['item'] === 'agent') {
$newAgent = [
'type_id' => 1,
'url' => $_POST['url'],
'secret_key' => $_POST['secret_key'],
];
$result = $agentObject->addAgent($platform_id, $newAgent);
if ($result === true) {
$_SESSION['notice'] = "New Jilo Agent added.";
} else {
$_SESSION['error'] = "Adding the agent failed. Error: $result";
}
// new platform adding
if (isset($_POST['new']) && $_POST['new'] === 'true') {
} elseif (isset($_POST['new']) && $_POST['new'] === 'true') {
$newPlatform = [
'name' => $_POST['name'],
'jitsi_url' => $_POST['jitsi_url'],
@ -22,6 +40,15 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
];
$platformObject->addPlatform($newPlatform);
// deleting an agent
} elseif (isset($_POST['delete']) && isset($_POST['item']) && $_POST['delete'] === 'true' && $_POST['item'] === 'agent') {
$result = $agentObject->deleteAgent($agent);
if ($result === true) {
$_SESSION['notice'] = "Agent id \"{$_REQUEST['agent']}\" deleted.";
} else {
$_SESSION['error'] = "Deleting the agent failed. Error: $result";
}
// deleting a platform
} elseif (isset($_POST['delete']) && $_POST['delete'] === 'true') {
$platform = $_POST['platform'];
@ -83,19 +110,27 @@ if ($_SERVER['REQUEST_METHOD'] == 'POST') {
// if there is no $item, we work on the local config file
default:
switch ($action) {
case 'add-agent':
include '../app/templates/config-add-agent.php';
break;
case 'add':
include '../app/templates/config-add-platform.php';
break;
case 'edit':
include '../app/templates/config-edit-platform.php';
if (isset($_GET['agent'])) {
$agentDetails = $agentObject->getAgentDetails($platform_id, $agent);
include '../app/templates/config-edit-agent.php';
} else {
include '../app/templates/config-edit-platform.php';
}
break;
case 'delete':
include '../app/templates/config-delete-platform.php';
break;
default:
if ($userObject->hasRight($user_id, 'view config file')) {
require '../app/classes/agent.php';
$agentObject = new Agent($dbWeb);
// require '../app/classes/agent.php';
// $agentObject = new Agent($dbWeb);
include '../app/templates/config-list.php';
} else {
include '../app/templates/unauthorized.php';

View File

@ -61,7 +61,7 @@ echo "\n";
<p class="card-text">jilo agents on platform <?= $platform_array['id'] ?> (<?= $platform_array['name'] ?>)
<br />
total <?= count($agents) ?> <?= count($agents) === 1 ? 'jilo agent' : 'jilo agents' ?>&nbsp;
<a class="btn btn-secondary" style="padding: 0px;" href="<?= $app_root ?>?page=config&platform=<?= $platform_array['id'] ?>&item=agent&action=add">
<a class="btn btn-secondary" style="padding: 0px;" href="<?= $app_root ?>?page=config&platform=<?= $platform_array['id'] ?>&action=add-agent">
add new
</a>
</p>