pandorafms/pandora_console/operation/snmpconsole/snmp_mib_uploader.php

118 lines
3.3 KiB
PHP
Raw Normal View History

<?php
2021-04-29 13:28:03 +02:00
/**
* MIB Uploader view
*
* @category Monitoring
* @package Pandora FMS
* @subpackage Community
* @version 1.0.0
* @license See below
*
* ______ ___ _______ _______ ________
2023-06-08 12:42:10 +02:00
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
2021-04-29 13:28:03 +02:00
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
*
* ============================================================================
2023-06-08 11:53:13 +02:00
* Copyright (c) 2005-2023 Pandora FMS
2023-06-08 13:19:01 +02:00
* Please see https://pandorafms.com/community/ for full contribution list
2021-04-29 13:28:03 +02:00
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation for version 2.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* ============================================================================
*/
2021-04-29 13:28:03 +02:00
// Begin.
global $config;
check_login();
if (! check_acl($config['id_user'], 0, 'PM')) {
2022-02-01 13:39:18 +01:00
db_pandora_audit(
AUDIT_LOG_ACL_VIOLATION,
'Trying to access MIB uploader'
);
include 'general/noaccess.php';
return;
}
require_once 'include/functions_filemanager.php';
2021-04-29 13:28:03 +02:00
// Header.
ui_print_standard_header(
__('MIB uploader'),
'images/op_snmp.png',
false,
'',
false,
[],
[
[
'link' => '',
'label' => __('Monitoring'),
],
[
'link' => '',
2023-03-29 17:45:37 +02:00
'label' => __('SNMP'),
2021-04-29 13:28:03 +02:00
],
]
);
if (isset($config['filemanager']['message'])) {
echo $config['filemanager']['message'];
$config['filemanager']['message'] = null;
}
2021-08-26 11:15:02 +02:00
$directory = (string) get_parameter('directory');
$directory = str_replace('\\', '/', $directory);
2021-08-26 11:15:02 +02:00
// Add custom directories here.
$fallback_directory = SNMP_DIR_MIBS;
2021-08-26 11:15:02 +02:00
if (empty($directory) === true) {
$directory = $fallback_directory;
2021-08-26 11:15:02 +02:00
} else {
$directory = str_replace('\\', '/', $directory);
$directory = filemanager_safe_directory($directory, $fallback_directory);
}
$real_directory = realpath($config['homedir'].'/'.$directory);
ui_print_info_message(__('MIB files will be installed on the system. Please note that a MIB may depend on other MIB. To customize trap definitions use the SNMP trap editor.'));
2020-11-03 15:58:53 +01:00
$upload_file_or_zip = (bool) get_parameter('upload_file_or_zip');
$create_text_file = (bool) get_parameter('create_text_file');
$default_real_directory = realpath($config['homedir'].'/'.$fallback_directory);
2021-08-26 11:15:02 +02:00
if ($upload_file_or_zip === true) {
2021-09-03 13:30:15 +02:00
upload_file($upload_file_or_zip, $default_real_directory, $real_directory);
2020-11-03 15:58:53 +01:00
}
2021-08-26 11:15:02 +02:00
if ($create_text_file === true) {
2021-09-03 13:30:15 +02:00
create_text_file($default_real_directory, $real_directory);
2020-11-03 15:58:53 +01:00
}
filemanager_file_explorer(
$real_directory,
$directory,
'index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_mib_uploader',
SNMP_DIR_MIBS,
false,
false,
'',
false,
'',
false,
[
'all' => true,
'denyCreateText' => true,
'allowCreateFolder' => true,
]
);