2010-11-23 12:40:24 +01:00
|
|
|
<?php
|
2011-03-22 23:11:57 +01:00
|
|
|
|
2010-11-23 12:40:24 +01:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
|
|
// ==================================================
|
2011-03-22 23:11:57 +01:00
|
|
|
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
|
2010-11-23 12:40:24 +01:00
|
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
2011-03-23 Raul Mateos <raulofpandora@gmail.com>
* extensions/ssh_console.php, extensions/vnc_view.php,
extensions/update_manager.php, extensions/users_connected.php,
extensions/extension_uploader.php, extensions/insert_data.php,
extensions/module_groups.php, extensions/plugin_registration.php,
extensions/agent_modules.php, extensions/resource_registration.php,
extensions/resource_exportation.php, extensions/dbmanager.php,
extensions/pandora_logs.php, general/*.php, ajax.php,
operation/search_*.php, operation/menu.php, operation/extensions.php,
godmode/menu.php, godmode/extensions.php, godmode/admin_access_logs.php:
CReverted unwanted license changes.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4126 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-03-23 17:13:28 +01:00
|
|
|
// modify it under the terms of the GNU General Public License
|
2011-03-22 23:11:57 +01:00
|
|
|
// as published by the Free Software Foundation; version 2
|
2010-11-23 12:40:24 +01:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-03-22 23:11:57 +01:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2010-11-23 12:40:24 +01:00
|
|
|
// GNU General Public License for more details.
|
2019-01-30 16:18:44 +01:00
|
|
|
function extension_uploader_extensions()
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
if (!check_acl($config['id_user'], 0, 'PM')) {
|
|
|
|
db_pandora_audit(
|
|
|
|
'ACL Violation',
|
|
|
|
'Trying to access Group Management'
|
|
|
|
);
|
|
|
|
include 'general/noaccess.php';
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui_print_page_header(
|
|
|
|
__('Uploader extension'),
|
|
|
|
'images/extensions.png',
|
|
|
|
false,
|
|
|
|
'',
|
|
|
|
true,
|
|
|
|
''
|
|
|
|
);
|
|
|
|
|
|
|
|
$upload = (bool) get_parameter('upload', 0);
|
|
|
|
$upload_enteprise = (bool) get_parameter('upload_enterprise', 0);
|
|
|
|
|
|
|
|
if ($upload) {
|
|
|
|
$error = $_FILES['extension']['error'];
|
|
|
|
|
|
|
|
if ($error == 0) {
|
|
|
|
$zip = new ZipArchive;
|
2010-11-23 12:40:24 +01:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$tmpName = $_FILES['extension']['tmp_name'];
|
|
|
|
|
|
|
|
if ($upload_enteprise) {
|
|
|
|
$pathname = $config['homedir'].'/'.ENTERPRISE_DIR.'/'.EXTENSIONS_DIR.'/';
|
|
|
|
} else {
|
|
|
|
$pathname = $config['homedir'].'/'.EXTENSIONS_DIR.'/';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($zip->open($tmpName) === true) {
|
|
|
|
$result = $zip->extractTo($pathname);
|
|
|
|
} else {
|
|
|
|
$result = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$result = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
db_pandora_audit('Extension manager', 'Upload extension '.$_FILES['extension']['name']);
|
|
|
|
}
|
|
|
|
|
|
|
|
ui_print_result_message(
|
|
|
|
$result,
|
|
|
|
__('Success to upload extension'),
|
|
|
|
__('Fail to upload extension')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = null;
|
|
|
|
|
|
|
|
$table->width = '100%';
|
|
|
|
$table->class = 'databox filters';
|
|
|
|
$table->data = [];
|
|
|
|
$table->data[0][0] = __('Upload extension');
|
|
|
|
$table->data[0][1] = html_print_input_file('extension', true).ui_print_help_tip(__('Upload the extension as a zip file.'), true);
|
|
|
|
if (enterprise_installed()) {
|
|
|
|
$table->data[0][2] = __('Upload enterprise extension').' '.html_print_checkbox('upload_enterprise', 1, false, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "<form method='post' enctype='multipart/form-data'>";
|
|
|
|
html_print_table($table);
|
|
|
|
echo "<div style='text-align: right; width: ".$table->width."'>";
|
|
|
|
html_print_input_hidden('upload', 1);
|
|
|
|
html_print_submit_button(__('Upload'), 'submit', false, 'class="sub add"');
|
|
|
|
echo '</div>';
|
|
|
|
echo '</form>';
|
2010-11-23 12:40:24 +01:00
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
|
|
|
|
extensions_add_godmode_menu_option(__('Extension uploader'), 'PM', null, null, 'v1r1');
|
2011-05-11 14:15:14 +02:00
|
|
|
extensions_add_godmode_function('extension_uploader_extensions');
|