mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 08:45:12 +02:00
remove acl check in integria ticket dashboard
This commit is contained in:
parent
ca184faaa0
commit
93b176269c
@ -96,41 +96,40 @@ $priority_text = integriaims_get_details('priority', $priority);
|
||||
$resolution_text = integriaims_get_details('resolution', $resolution);
|
||||
$type_text = integriaims_get_details('type', $type);
|
||||
|
||||
if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
// Incident file management.
|
||||
$upload_file = get_parameter('upload_file');
|
||||
$delete_file_id = get_parameter('delete_file');
|
||||
$download_file_id = get_parameter('download_file');
|
||||
$download_file_name = get_parameter('download_file_name');
|
||||
// Incident file management.
|
||||
$upload_file = get_parameter('upload_file');
|
||||
$delete_file_id = get_parameter('delete_file');
|
||||
$download_file_id = get_parameter('download_file');
|
||||
$download_file_name = get_parameter('download_file_name');
|
||||
|
||||
// Files section table.
|
||||
$table_files_section = new stdClass();
|
||||
$table_files_section->width = '100%';
|
||||
$table_files_section->id = 'files_section_table';
|
||||
$table_files_section->class = 'databox filters';
|
||||
$table_files_section->head = [];
|
||||
// Files section table.
|
||||
$table_files_section = new stdClass();
|
||||
$table_files_section->width = '100%';
|
||||
$table_files_section->id = 'files_section_table';
|
||||
$table_files_section->class = 'databox filters';
|
||||
$table_files_section->head = [];
|
||||
|
||||
$table_files_section->data = [];
|
||||
$table_files_section->size = [];
|
||||
$table_files_section->colspan[2][0] = 3;
|
||||
$table_files_section->data = [];
|
||||
$table_files_section->size = [];
|
||||
$table_files_section->colspan[2][0] = 3;
|
||||
|
||||
// Files list table.
|
||||
$table_files = new stdClass();
|
||||
$table_files->width = '100%';
|
||||
$table_files->class = 'info_table';
|
||||
$table_files->head = [];
|
||||
// Files list table.
|
||||
$table_files = new stdClass();
|
||||
$table_files->width = '100%';
|
||||
$table_files->class = 'info_table';
|
||||
$table_files->head = [];
|
||||
|
||||
$table_files->head[0] = __('Filename');
|
||||
$table_files->head[1] = __('Timestamp');
|
||||
$table_files->head[2] = __('Description');
|
||||
$table_files->head[3] = __('User');
|
||||
$table_files->head[4] = __('Size');
|
||||
$table_files->head[5] = __('Delete');
|
||||
$table_files->head[0] = __('Filename');
|
||||
$table_files->head[1] = __('Timestamp');
|
||||
$table_files->head[2] = __('Description');
|
||||
$table_files->head[3] = __('User');
|
||||
$table_files->head[4] = __('Size');
|
||||
$table_files->head[5] = __('Delete');
|
||||
|
||||
$table_files->data = [];
|
||||
$table_files->data = [];
|
||||
|
||||
// Upload file.
|
||||
if ($upload_file && ($_FILES['userfile']['name'] != '')) {
|
||||
// Upload file.
|
||||
if ($upload_file && ($_FILES['userfile']['name'] != '')) {
|
||||
$filedescription = get_parameter('file_description', __('No description available'));
|
||||
|
||||
$filename = io_safe_input($_FILES['userfile']['name']);
|
||||
@ -170,10 +169,10 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
} else {
|
||||
ui_print_error_message(__('File has an invalid extension'));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Delete file.
|
||||
if (isset($_GET['delete_file'])) {
|
||||
// Delete file.
|
||||
if (isset($_GET['delete_file'])) {
|
||||
$result_api_call = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'delete_file', [$delete_file_id]);
|
||||
|
||||
$file_deleted = false;
|
||||
@ -187,10 +186,10 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
__('File successfully deleted'),
|
||||
__('File could not be deleted')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Download file.
|
||||
if (isset($_GET['download_file'])) {
|
||||
// Download file.
|
||||
if (isset($_GET['download_file'])) {
|
||||
$file_base64 = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'download_file', [$download_file_id]);
|
||||
ob_end_clean();
|
||||
|
||||
@ -214,12 +213,12 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
}
|
||||
|
||||
header('Location: index.php?sec=incident&sec2=operation/incidents/dashboard_detail_integriaims_incident&incident_id='.$incident_id);
|
||||
}
|
||||
}
|
||||
|
||||
// Retrieve files belonging to incident and create list table.
|
||||
$result_api_call = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'get_incident_files', [$incident_id]);
|
||||
// Retrieve files belonging to incident and create list table.
|
||||
$result_api_call = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'get_incident_files', [$incident_id]);
|
||||
|
||||
if ($result_api_call != false && strlen($result_api_call) > 0) {
|
||||
if ($result_api_call != false && strlen($result_api_call) > 0) {
|
||||
$files = [];
|
||||
$csv_array = explode("\n", $result_api_call);
|
||||
|
||||
@ -228,11 +227,11 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
$files[] = explode(',', $csv_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$i = 0;
|
||||
$i = 0;
|
||||
|
||||
foreach ($files as $key => $value) {
|
||||
foreach ($files as $key => $value) {
|
||||
$table_files->data[$i][0] = '<a id="link_delete_file" href="'.ui_get_full_url('index.php?sec=incident&sec2=operation/incidents/dashboard_detail_integriaims_incident&incident_id='.$incident_id.'&download_file='.$value[0]).'&download_file_name='.$value[11].'">'.$value[11].'</a>';
|
||||
$table_files->data[$i][1] = $value[14];
|
||||
$table_files->data[$i][2] = $value[12];
|
||||
@ -244,79 +243,79 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
$table_files->data[$i][5] .= '</a>';
|
||||
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
||||
$table_files_section->data[0][0] = '<div class="label_select"><p class="input_label">'.__('File name').':</p>';
|
||||
$table_files_section->data[0][0] .= html_print_input_file('userfile', true);
|
||||
$table_files_section->data[1][0] = '<div class="label_select"><p class="input_label">'.__('Description').':</p>';
|
||||
$table_files_section->data[1][0] .= html_print_textarea(
|
||||
$table_files_section->data[0][0] = '<div class="label_select"><p class="input_label">'.__('File name').':</p>';
|
||||
$table_files_section->data[0][0] .= html_print_input_file('userfile', true);
|
||||
$table_files_section->data[1][0] = '<div class="label_select"><p class="input_label">'.__('Description').':</p>';
|
||||
$table_files_section->data[1][0] .= html_print_textarea(
|
||||
'file_description',
|
||||
3,
|
||||
20,
|
||||
'',
|
||||
'',
|
||||
true
|
||||
);
|
||||
);
|
||||
|
||||
$table_files_section->data[2][0] .= '<div style="width: 100%; text-align:right;">'.html_print_submit_button(__('Upload'), 'accion', false, 'class="sub wand"', true).'</div>';
|
||||
$table_files_section->data[2][0] .= '<div style="width: 100%; text-align:right;">'.html_print_submit_button(__('Upload'), 'accion', false, 'class="sub wand"', true).'</div>';
|
||||
|
||||
$upload_file_form = '<div>';
|
||||
$upload_file_form = '<div>';
|
||||
|
||||
if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
$upload_file_form .= '<form method="post" id="file_control" enctype="multipart/form-data">'.'<h4>'.__('Add attachment').'</h4>'.html_print_table($table_files_section, true).html_print_input_hidden('upload_file', 1, true);
|
||||
}
|
||||
}
|
||||
|
||||
$upload_file_form .= '<h4>'.__('Attached files').'</h4>'.html_print_table($table_files, true).'</form></div>';
|
||||
$upload_file_form .= '<h4>'.__('Attached files').'</h4>'.html_print_table($table_files, true).'</form></div>';
|
||||
|
||||
// Incident comments management.
|
||||
$upload_comment = get_parameter('upload_comment');
|
||||
$comment_description = get_parameter('comment_description');
|
||||
// Incident comments management.
|
||||
$upload_comment = get_parameter('upload_comment');
|
||||
$comment_description = get_parameter('comment_description');
|
||||
|
||||
// Comments section table.
|
||||
$table_comments_section = new stdClass();
|
||||
$table_comments_section->width = '100%';
|
||||
$table_comments_section->id = 'files_section_table';
|
||||
$table_comments_section->class = 'databox filters';
|
||||
$table_comments_section->head = [];
|
||||
// Comments section table.
|
||||
$table_comments_section = new stdClass();
|
||||
$table_comments_section->width = '100%';
|
||||
$table_comments_section->id = 'files_section_table';
|
||||
$table_comments_section->class = 'databox filters';
|
||||
$table_comments_section->head = [];
|
||||
|
||||
$table_comments_section->data = [];
|
||||
$table_comments_section->size = [];
|
||||
$table_comments_section->data = [];
|
||||
$table_comments_section->size = [];
|
||||
|
||||
// Comments list table.
|
||||
$table_comments = new stdClass();
|
||||
$table_comments->width = '100%';
|
||||
$table_comments->class = 'info_table';
|
||||
$table_comments->head = [];
|
||||
// Comments list table.
|
||||
$table_comments = new stdClass();
|
||||
$table_comments->width = '100%';
|
||||
$table_comments->class = 'info_table';
|
||||
$table_comments->head = [];
|
||||
|
||||
$table_comments->head[0] = __('Filename');
|
||||
$table_comments->head[1] = __('Timestamp');
|
||||
$table_comments->head[2] = __('Description');
|
||||
$table_comments->head[3] = __('User');
|
||||
$table_comments->head[4] = __('Size');
|
||||
$table_comments->head[5] = __('Delete');
|
||||
$table_comments->head[0] = __('Filename');
|
||||
$table_comments->head[1] = __('Timestamp');
|
||||
$table_comments->head[2] = __('Description');
|
||||
$table_comments->head[3] = __('User');
|
||||
$table_comments->head[4] = __('Size');
|
||||
$table_comments->head[5] = __('Delete');
|
||||
|
||||
$table_comments->data = [];
|
||||
$table_comments->data = [];
|
||||
|
||||
$comment_disabled = ($array_get_incidents[6] == 7);
|
||||
$comment_disabled = ($array_get_incidents[6] == 7);
|
||||
|
||||
if ($comment_disabled === true) {
|
||||
if ($comment_disabled === true) {
|
||||
$attribute = 'disabled=disabled';
|
||||
}
|
||||
}
|
||||
|
||||
$table_comments_section->data[0][0] = '<div class="label_select"><p class="input_label">'.__('Description').':</p>';
|
||||
$table_comments_section->data[0][0] .= html_print_textarea(
|
||||
$table_comments_section->data[0][0] = '<div class="label_select"><p class="input_label">'.__('Description').':</p>';
|
||||
$table_comments_section->data[0][0] .= html_print_textarea(
|
||||
'comment_description',
|
||||
3,
|
||||
20,
|
||||
'',
|
||||
$attribute,
|
||||
true
|
||||
);
|
||||
);
|
||||
|
||||
$table_comments_section->data[1][1] .= '<div style="width: 100%; text-align:right;">'.html_print_submit_button(__('Add'), 'accion', $comment_disabled, 'class="sub wand"', true).'</div>';
|
||||
$table_comments_section->data[1][1] .= '<div style="width: 100%; text-align:right;">'.html_print_submit_button(__('Add'), 'accion', $comment_disabled, 'class="sub wand"', true).'</div>';
|
||||
|
||||
// Upload comment. If ticket is closed, this action cannot be performed.
|
||||
if ($upload_comment && $array_get_incidents[6] != 7) {
|
||||
// Upload comment. If ticket is closed, this action cannot be performed.
|
||||
if ($upload_comment && $array_get_incidents[6] != 7) {
|
||||
$result_api_call = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'create_workunit', [$incident_id, $comment_description, '0.00', 0, 1, '0']);
|
||||
|
||||
// API method returns id of new comment if success.
|
||||
@ -327,12 +326,12 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
__('Comment successfully added'),
|
||||
__('Comment could not be added')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Retrieve comments belonging to incident and create comments table.
|
||||
$result_api_call = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'get_incident_workunits', [$incident_id]);
|
||||
// Retrieve comments belonging to incident and create comments table.
|
||||
$result_api_call = integria_api_call($config['integria_hostname'], $config['integria_user'], $config['integria_pass'], $config['integria_api_pass'], 'get_incident_workunits', [$incident_id]);
|
||||
|
||||
if ($result_api_call != false && strlen($result_api_call) > 0) {
|
||||
if ($result_api_call != false && strlen($result_api_call) > 0) {
|
||||
$comments = [];
|
||||
$csv_array = explode("\n", $result_api_call);
|
||||
|
||||
@ -341,28 +340,26 @@ if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
$comments[] = explode(',', $csv_line);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$comment_table = '';
|
||||
$comment_table = '';
|
||||
|
||||
if (!empty($comments)) {
|
||||
if (!empty($comments)) {
|
||||
foreach ($comments as $key => $value) {
|
||||
$comment_table .= '<div class="comment_title">'.$value[3].'<span> said </span>'.$value[1].'<span style="float: right;">'.$value[2].' Hours</span></div>';
|
||||
$comment_table .= '<div class="comment_body">'.$value[4].'</div>';
|
||||
}
|
||||
} else {
|
||||
} else {
|
||||
$comment_table = __('No comments found');
|
||||
}
|
||||
|
||||
$upload_comment_form = '<div>';
|
||||
|
||||
if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
$upload_comment_form .= '<form method="post" id="comment_form" enctype="multipart/form-data"><h4>'.__('Add comment').'</h4>'.html_print_table($table_comments_section, true).html_print_input_hidden('upload_comment', 1, true).'</form>';
|
||||
}
|
||||
|
||||
$upload_comment_form .= '<h4>'.__('Comments').'</h4>'.$comment_table.'</div>';
|
||||
}
|
||||
|
||||
$upload_comment_form = '<div>';
|
||||
|
||||
if (check_acl($config['id_user'], 0, 'IW')) {
|
||||
$upload_comment_form .= '<form method="post" id="comment_form" enctype="multipart/form-data"><h4>'.__('Add comment').'</h4>'.html_print_table($table_comments_section, true).html_print_input_hidden('upload_comment', 1, true).'</form>';
|
||||
}
|
||||
|
||||
$upload_comment_form .= '<h4>'.__('Comments').'</h4>'.$comment_table.'</div>';
|
||||
|
||||
// Details box.
|
||||
$details_box = '<div class="integriaims_details_box integriaims_details_box_five">';
|
||||
|
Loading…
x
Reference in New Issue
Block a user