2010-09-03 09:20:39 +02:00
|
|
|
<?php
|
2021-02-12 11:28:13 +01:00
|
|
|
/**
|
|
|
|
* View for delete profiles in Massive Operations
|
|
|
|
*
|
|
|
|
* @category Configuration
|
|
|
|
* @package Pandora FMS
|
|
|
|
* @subpackage Massive Operations
|
|
|
|
* @version 1.0.0
|
|
|
|
* @license See below
|
|
|
|
*
|
|
|
|
* ______ ___ _______ _______ ________
|
|
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
|
|
*
|
|
|
|
* ============================================================================
|
|
|
|
* Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
|
|
|
|
* Please see http://pandorafms.org for full contribution list
|
|
|
|
* 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.
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Begin.
|
2019-01-30 16:18:44 +01:00
|
|
|
check_login();
|
|
|
|
|
2020-09-23 11:36:15 +02:00
|
|
|
if (! check_acl($config['id_user'], 0, 'UM')) {
|
2019-01-30 16:18:44 +01:00
|
|
|
db_pandora_audit(
|
|
|
|
'ACL Violation',
|
|
|
|
'Trying to access massive profile deletion'
|
|
|
|
);
|
|
|
|
include 'general/noaccess.php';
|
|
|
|
return;
|
|
|
|
}
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2021-05-31 17:32:53 +02:00
|
|
|
if (is_management_allowed() === false) {
|
2021-09-23 11:16:48 +02:00
|
|
|
if (is_metaconsole() === false) {
|
|
|
|
$url = '<a target="_blank" href="'.ui_get_meta_url(
|
|
|
|
'index.php?sec=advanced&sec2=advanced/users_setup&tab=profile&pure='.(int) $config['pure']
|
|
|
|
).'">'.__('metaconsole').'</a>';
|
|
|
|
} else {
|
|
|
|
$url = __('any node');
|
|
|
|
}
|
|
|
|
|
2021-05-31 17:32:53 +02:00
|
|
|
ui_print_warning_message(
|
2021-06-24 19:48:07 +02:00
|
|
|
__(
|
|
|
|
'This node is configured with centralized mode. All profiles user information is read only. Go to %s to manage it.',
|
2021-09-23 11:16:48 +02:00
|
|
|
$url
|
2021-06-24 19:48:07 +02:00
|
|
|
)
|
2021-05-31 17:32:53 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
require_once 'include/functions_agents.php';
|
|
|
|
require_once 'include/functions_alerts.php';
|
|
|
|
require_once $config['homedir'].'/include/functions_profile.php';
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
if (is_ajax()) {
|
|
|
|
$get_users = (bool) get_parameter('get_users');
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
if ($get_users) {
|
|
|
|
$id_group = get_parameter('id_group');
|
|
|
|
$id_profile = get_parameter('id_profile');
|
|
|
|
|
|
|
|
$profile_data = db_get_all_rows_filter('tusuario_perfil', ['id_perfil' => $id_profile[0], 'id_grupo' => $id_group[0]]);
|
2020-12-25 09:38:03 +01:00
|
|
|
if (!users_is_admin()) {
|
|
|
|
foreach ($profile_data as $user => $values) {
|
|
|
|
if (users_is_admin($values['id_usuario'])) {
|
|
|
|
unset($profile_data[$user]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
echo json_encode(index_array($profile_data, 'id_up', 'id_usuario'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
2010-09-03 09:20:39 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$delete_profiles = (int) get_parameter('delete_profiles');
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2010-10-29 13:55:17 +02:00
|
|
|
if ($delete_profiles) {
|
2019-01-30 16:18:44 +01:00
|
|
|
$profiles_id = get_parameter('profiles_id', -1);
|
|
|
|
$groups_id = get_parameter('groups_id', -1);
|
2020-09-23 11:36:15 +02:00
|
|
|
$users = get_parameter('users_id', -1);
|
2019-01-30 16:18:44 +01:00
|
|
|
|
2020-09-23 11:36:15 +02:00
|
|
|
if ($profiles_id == -1 || $groups_id == -1 || $users == -1) {
|
2019-01-30 16:18:44 +01:00
|
|
|
$result = false;
|
|
|
|
} else {
|
2020-09-23 11:36:15 +02:00
|
|
|
foreach ($users as $user) {
|
|
|
|
db_pandora_audit(
|
|
|
|
'User management',
|
|
|
|
'Deleted profile for user '.io_safe_input($user)
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = profile_delete_user_profile_group($user, $profiles_id[0], $groups_id[0]);
|
2019-01-30 16:18:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$info = [
|
|
|
|
'Profiles' => implode(',', $profiles_id),
|
|
|
|
'Groups' => implode(',', $groups_id),
|
2020-09-23 11:36:15 +02:00
|
|
|
'Users' => implode(',', $users),
|
2019-01-30 16:18:44 +01:00
|
|
|
];
|
2020-09-23 11:36:15 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
if ($result) {
|
|
|
|
db_pandora_audit('Massive management', 'Delete profile ', false, false, json_encode($info));
|
|
|
|
} else {
|
|
|
|
db_pandora_audit('Massive management', 'Fail try to delete profile', false, false, json_encode($info));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui_print_result_message(
|
|
|
|
$result,
|
|
|
|
__('Profiles deleted successfully'),
|
|
|
|
__('Profiles cannot be deleted')
|
|
|
|
);
|
2010-09-03 09:20:39 +02:00
|
|
|
}
|
|
|
|
|
2019-07-11 14:46:41 +02:00
|
|
|
if ($table !== null) {
|
|
|
|
html_print_table($table);
|
|
|
|
}
|
2010-09-03 09:20:39 +02:00
|
|
|
|
|
|
|
unset($table);
|
|
|
|
|
2015-06-15 15:50:28 +02:00
|
|
|
$table->width = '100%';
|
|
|
|
$table->class = 'databox filters';
|
2019-01-30 16:18:44 +01:00
|
|
|
$table->data = [];
|
|
|
|
$table->head = [];
|
|
|
|
$table->align = [];
|
|
|
|
$table->style = [];
|
2015-06-15 15:50:28 +02:00
|
|
|
|
2010-09-03 09:20:39 +02:00
|
|
|
$table->head[0] = __('Profile name');
|
|
|
|
$table->head[1] = __('Group');
|
|
|
|
$table->head[2] = __('Users');
|
|
|
|
$table->align[2] = 'center';
|
|
|
|
$table->size[0] = '34%';
|
|
|
|
$table->size[1] = '33%';
|
|
|
|
$table->size[2] = '33%';
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$data = [];
|
2011-11-10 20:19:38 +01:00
|
|
|
$data[0] = '<form method="post" id="form_profiles" action="index.php?sec=gmassive&sec2=godmode/massive/massive_operations&tab=massive_users&option=delete_profiles">';
|
2020-09-23 11:36:15 +02:00
|
|
|
$display_all_group = true;
|
|
|
|
if (check_acl($config['id_user'], 0, 'PM')) {
|
|
|
|
$data[0] .= html_print_select(
|
|
|
|
profile_get_profiles(),
|
|
|
|
'profiles_id[]',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
'',
|
|
|
|
false,
|
|
|
|
'width: 100%'
|
|
|
|
);
|
|
|
|
} else {
|
2020-12-25 09:38:03 +01:00
|
|
|
$group_um = users_get_groups_UM($config['id_user']);
|
|
|
|
if (!isset($group_um[0])) {
|
|
|
|
$display_all_group = false;
|
|
|
|
}
|
2021-01-07 10:42:29 +01:00
|
|
|
|
2020-09-23 11:36:15 +02:00
|
|
|
$data[0] .= html_print_select(
|
|
|
|
profile_get_profiles(
|
|
|
|
[
|
|
|
|
'pandora_management' => '<> 1',
|
|
|
|
'db_management' => '<> 1',
|
|
|
|
]
|
|
|
|
),
|
|
|
|
'profiles_id[]',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
'',
|
|
|
|
false,
|
|
|
|
'width: 100%'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$data[1] = html_print_select_groups(
|
|
|
|
$config['id_user'],
|
|
|
|
'UM',
|
2020-09-23 11:36:15 +02:00
|
|
|
$display_all_group,
|
2019-01-30 16:18:44 +01:00
|
|
|
'groups_id[]',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
'',
|
|
|
|
false,
|
|
|
|
'width: 100%'
|
|
|
|
);
|
2010-09-03 09:20:39 +02:00
|
|
|
$data[2] = '<span id="users_loading" class="invisible">';
|
2011-04-27 15:43:31 +02:00
|
|
|
$data[2] .= html_print_image('images/spinner.png', true);
|
2010-09-03 09:20:39 +02:00
|
|
|
$data[2] .= '</span>';
|
2019-01-30 16:18:44 +01:00
|
|
|
$users_profiles = '';
|
|
|
|
$users_order = [
|
|
|
|
'field' => 'id_user',
|
|
|
|
'order' => 'ASC',
|
|
|
|
];
|
2020-09-23 11:36:15 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$data[2] .= html_print_select(
|
2020-09-23 11:36:15 +02:00
|
|
|
[],
|
2019-01-30 16:18:44 +01:00
|
|
|
'users_id[]',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
'',
|
|
|
|
false,
|
|
|
|
'width: 100%'
|
|
|
|
);
|
|
|
|
|
|
|
|
array_push($table->data, $data);
|
|
|
|
|
|
|
|
html_print_table($table);
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2021-02-12 11:28:13 +01:00
|
|
|
attachActionButton('delete_profiles', 'delete', $table->width);
|
2010-09-03 09:20:39 +02:00
|
|
|
|
|
|
|
echo '</form>';
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
unset($table);
|
2010-09-03 09:20:39 +02:00
|
|
|
|
2021-02-12 11:28:13 +01:00
|
|
|
// TODO: Change to iu_print_error system.
|
2010-09-03 09:20:39 +02:00
|
|
|
echo '<h3 class="error invisible" id="message"> </h3>';
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
ui_require_jquery_file('form');
|
|
|
|
ui_require_jquery_file('pandora.controls');
|
2010-09-03 09:20:39 +02:00
|
|
|
?>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
/* <![CDATA[ */
|
|
|
|
$(document).ready (function () {
|
2020-09-23 11:36:15 +02:00
|
|
|
update_users();
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
function update_users() {
|
|
|
|
var $select = $("#users_id").disable ();
|
|
|
|
$("#users_loading").show ();
|
|
|
|
$("option", $select).remove ();
|
2021-02-12 11:28:13 +01:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
jQuery.post ("ajax.php",
|
|
|
|
{"page" : "godmode/massive/massive_delete_profiles",
|
|
|
|
"get_users" : 1,
|
|
|
|
"id_group[]" : $("#groups_id").val(),
|
|
|
|
"id_profile[]" : $("#profiles_id").val()
|
|
|
|
},
|
|
|
|
function (data, status) {
|
|
|
|
options = "";
|
|
|
|
jQuery.each (data, function (id, value) {
|
2020-09-23 11:36:15 +02:00
|
|
|
options += "<option value=\""+value+"\">"+value+"</option>";
|
2019-01-30 16:18:44 +01:00
|
|
|
});
|
|
|
|
$("#users_id").append (options);
|
|
|
|
$("#users_loading").hide ();
|
|
|
|
$select.enable ();
|
|
|
|
},
|
|
|
|
"json"
|
|
|
|
);
|
|
|
|
}
|
2020-09-23 11:36:15 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$("#groups_id").change (function () {
|
|
|
|
update_users();
|
|
|
|
});
|
2020-09-23 11:36:15 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
$("#profiles_id").change (function () {
|
|
|
|
update_users();
|
|
|
|
});
|
2010-09-03 09:20:39 +02:00
|
|
|
});
|
|
|
|
/* ]]> */
|
2013-02-28 12:43:10 +01:00
|
|
|
</script>
|