From 457f8e944804ee4c5fcde6d984ae36e370b07aaa Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Tue, 5 Dec 2023 16:07:14 +0100 Subject: [PATCH] some changes in discovery --- .../godmode/wizards/Applications.class.php | 2 +- .../godmode/wizards/Cloud.class.php | 2 +- .../godmode/wizards/Custom.class.php | 2 +- .../wizards/ManageExtensions.class.php | 63 ++++++++++++++ .../class/ExtensionsDiscovery.class.php | 84 ++++++++++++------- pandora_console/include/styles/pandora.css | 6 ++ 6 files changed, 124 insertions(+), 35 deletions(-) diff --git a/pandora_console/godmode/wizards/Applications.class.php b/pandora_console/godmode/wizards/Applications.class.php index f873170101..f92a8cf0d6 100644 --- a/pandora_console/godmode/wizards/Applications.class.php +++ b/pandora_console/godmode/wizards/Applications.class.php @@ -219,7 +219,7 @@ class Applications extends Wizard 'class' => 'agent_details_line', 'content' => ui_toggle( Wizard::printBigButtonsList($not_defined_extensions, true), - ''.__('Not defined applications').'', + ''.__('Not installed').'', 'not_defined_apps', 'not_defined_apps', false, diff --git a/pandora_console/godmode/wizards/Cloud.class.php b/pandora_console/godmode/wizards/Cloud.class.php index 4b2755cd38..c464c49faa 100644 --- a/pandora_console/godmode/wizards/Cloud.class.php +++ b/pandora_console/godmode/wizards/Cloud.class.php @@ -239,7 +239,7 @@ class Cloud extends Wizard 'class' => 'agent_details_line', 'content' => ui_toggle( Wizard::printBigButtonsList($not_defined_extensions, true), - ''.__('Not defined applications').'', + ''.__('Not installed').'', 'not_defined_apps', 'not_defined_apps', false, diff --git a/pandora_console/godmode/wizards/Custom.class.php b/pandora_console/godmode/wizards/Custom.class.php index 69e30dd86c..516b8d1e80 100644 --- a/pandora_console/godmode/wizards/Custom.class.php +++ b/pandora_console/godmode/wizards/Custom.class.php @@ -142,7 +142,7 @@ class Custom extends Wizard 'class' => 'agent_details_line', 'content' => ui_toggle( Wizard::printBigButtonsList($not_defined_extensions, true), - ''.__('Not defined applications').'', + ''.__('Not installed').'', 'not_defined_apps', 'not_defined_apps', false, diff --git a/pandora_console/godmode/wizards/ManageExtensions.class.php b/pandora_console/godmode/wizards/ManageExtensions.class.php index 91ba1926e5..34c9950bc6 100644 --- a/pandora_console/godmode/wizards/ManageExtensions.class.php +++ b/pandora_console/godmode/wizards/ManageExtensions.class.php @@ -697,6 +697,9 @@ class ManageExtensions extends HTML $order, ); + $appsMetadata = self::loadDiscoveryAppsMetadata(); + $flattenMetadata = array_merge(...array_values($appsMetadata)); + $count = db_get_num_rows($sqlCount); foreach ($data as $key => $row) { @@ -705,6 +708,15 @@ class ManageExtensions extends HTML $logo = $this->defaultLogo; } + $metadataImage = $flattenMetadata[$row['short_name']]['image']; + + if (isset($metadataImage) === true + && file_exists($config['homedir'].'/images/discovery/'.$metadataImage) === true + && file_exists($this->path.'/'.$row['short_name'].'/logo.png') === false + ) { + $logo = '/images/discovery/'.$metadataImage; + } + $logo = html_print_image($logo, true, ['style' => 'max-width: 30px; margin-right: 15px;']); $data[$key]['name'] = $logo.io_safe_output($row['name']); $data[$key]['short_name'] = $row['short_name']; @@ -1490,4 +1502,55 @@ class ManageExtensions extends HTML } + /** + * Read metadata CSV from system and store data structure in memory. + * + * @return array Data structure. + */ + private static function loadDiscoveryAppsMetadata() + { + global $config; + + // Open the CSV file for reading. + $fileHandle = fopen($config['homedir'].'/extras/discovery/DiscoveryApps.csv', 'r'); + + // Check if the file was opened successfully. + if ($fileHandle !== false) { + $csvData = []; + + // Loop through each line in the CSV file. + while (($data = fgetcsv($fileHandle)) !== false) { + $csvData[] = explode(';', $data[0]); + } + + // Close the file handle. + fclose($fileHandle); + } + + $groupedArray = []; + + foreach ($csvData as $item) { + $key = $item[2]; + if (isset($groupedArray[$key]) === false) { + $groupedArray[$key] = []; + } + + $itemShortName = $item[0]; + unset($item[0]); + unset($item[2]); + + $itemIns = [ + 'name' => $item[1], + 'enterprise' => $item[3], + 'image' => $item[4], + 'url' => $item[5], + ]; + + $groupedArray[$key][$itemShortName] = $itemIns; + } + + return $groupedArray; + } + + } diff --git a/pandora_console/include/class/ExtensionsDiscovery.class.php b/pandora_console/include/class/ExtensionsDiscovery.class.php index ff5a38a0a8..ee13e9a3a5 100644 --- a/pandora_console/include/class/ExtensionsDiscovery.class.php +++ b/pandora_console/include/class/ExtensionsDiscovery.class.php @@ -224,37 +224,32 @@ class ExtensionsDiscovery extends Wizard // Print JS required for message management. echo '