From b39b994d8e49a34a1e3f9191879657d03edeb824 Mon Sep 17 00:00:00 2001 From: jakani24 Date: Sun, 11 Feb 2024 20:27:01 +0100 Subject: [PATCH] Update get_settings.php --- .../api/php/settings/get_settings.php | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/server/cyberhex-code/api/php/settings/get_settings.php b/src/server/cyberhex-code/api/php/settings/get_settings.php index 65d8498..e3a6e45 100644 --- a/src/server/cyberhex-code/api/php/settings/get_settings.php +++ b/src/server/cyberhex-code/api/php/settings/get_settings.php @@ -5,6 +5,12 @@ $setting_virus_ctrl_virus_found_action = "not configured yet"; $setting_server_server_url="not configured yet"; $setting_rtp_folder_scan_status=0; $setting_rtp_process_scan_status=0; +include "../../../config.php"; +$conn = new mysqli($DB_SERVERNAME, $DB_USERNAME, $DB_PASSWORD,$DB_DATABASE); + if ($conn->connect_error) { + $success=0; + die("Connection failed: " . $conn->connect_error); + } if(isset($_GET["settings"])){ /* example settings: @@ -18,6 +24,34 @@ if(isset($_GET["settings"])){ echo("rtp_folder_scan:status ".$setting_rtp_folder_scan_status."\n"); echo("rtp_process_scan:status ".$setting_rtp_process_scan_status."\n"); } +if(isset($_GET["rtp_included"])){ + //load all the entrys from a db table + $sql = "SELECT path,id FROM rtp_included ORDER BY id"; + $stmt = $conn->prepare($sql); + // Execute the statement + $stmt->execute(); + // Get the result + $result = $stmt->get_result(); + while ($row = $result->fetch_assoc()){ + echo("\"".$row["path"]."\"\n"); + } + $stmt -> close(); + +} +if(isset($_GET["rtp_excluded"])){ + //load all the entrys from a db table + $sql = "SELECT path,id FROM rtp_excluded ORDER BY id"; + $stmt = $conn->prepare($sql); + // Execute the statement + $stmt->execute(); + // Get the result + $result = $stmt->get_result(); + while ($row = $result->fetch_assoc()){ + echo("\"".$row["path"]."\"\n"); + } + $stmt -> close(); + +} function load_settings(){ global $setting_virus_ctrl_virus_found_action ;