This commit is contained in:
Daniel Barbero Martin 2019-10-24 17:42:37 +02:00
parent de22fb70e3
commit 3dee6888d6
5 changed files with 253 additions and 36 deletions

View File

@ -68,8 +68,10 @@ class Diagnostics extends Wizard
// Check access.
check_login();
// Check Acl.
if (!check_acl($config['id_user'], 0, 'PM')) {
// TODO:XXX
/*
// Check Acl.
if (!check_acl($config['id_user'], 0, 'PM')) {
db_pandora_audit(
'ACL Violation',
'Trying to access diagnostic info'
@ -81,7 +83,8 @@ class Diagnostics extends Wizard
include 'general/noaccess.php';
exit;
}
}
*/
$this->ajaxController = $page;
$this->pdf = $pdf;
@ -1755,18 +1758,14 @@ class Diagnostics extends Wizard
// FIX for customer key.
if ($key === 'customerKey') {
$spanValue = '<span>'.$items[$key]['value'].'</span>';
if ($this->pdf === true) {
$spanValue = '<span>';
$spanValue .= wordwrap(
$items[$key]['value'],
10,
"\n",
true
);
$spanValue .= '</span>';
}
$customerKey = ui_print_truncate_text(
$items[$key]['value'],
30,
false,
true,
false
);
$spanValue = '<span>'.$customerKey.'</span>';
$items[$key]['value'] = $spanValue;
}
@ -1805,10 +1804,100 @@ class Diagnostics extends Wizard
public function createdScheduleFeedbackTask():void
{
global $config;
// TODO: feedback@artica.es
$mail_feedback = 'feedback@artica.es';
$email = 'daniel.barbero@artica.es';
$subject = 'PandoraFMS Report '.$config['pandora_uid'];
$text = get_parameter('what-happened', '');
$attachment = get_parameter_switch('include_installation_data', 0);
$email_from = get_parameter_switch('email', '');
if (!check_acl($config['id_user'], 0, 'PM')) {
// TODO: MAIL TO ADMIN.
$email = get_mail_admin();
$email = 'daniel.barbero@artica.es';
$product_name = io_safe_output(get_product_name());
$name_admin = get_name_admin();
$subject = __('Feedback').' '.$product_name.' '.$config['pandora_uid'];
$title = __('Hello').' '.$name_admin;
$p1 = __(
'User %s is reporting an issue in its %s experience',
$email_from,
$product_name
);
$p1 .= ':';
$p2 = $text;
if ($attachment === 1) {
$msg_attch = __('Find some files attached to this mail');
$msg_attch .= '. ';
$msg_attch .= __(
'PDF is the diagnostic information retrieved at report time'
);
$msg_attch .= '. ';
$msg_attch .= __('CSV contains the statuses of every product file');
$msg_attch .= '. ';
}
$p3 = __(
'If you think this report must be escalated, feel free to forward this mail to "%s"',
$mail_feedback
);
$legal = __('LEGAL WARNING');
$legal1 = __(
'The information contained in this transmission is privileged and confidential information intended only for the use of the individual or entity named above'
);
$legal1 .= '. ';
$legal2 = __(
'If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited'
);
$legal2 .= '. ';
$legal3 = __(
'If you have received this transmission in error, do not read it'
);
$legal3 .= '. ';
$legal4 = __(
'Please immediately reply to the sender that you have received this communication in error and then delete it'
);
$legal4 .= '.';
$patterns = [
'/__title__/',
'/__p1__/',
'/__p2__/',
'/__attachment__/',
'/__p3__/',
'/__legal__/',
'/__legal1__/',
'/__legal2__/',
'/__legal3__/',
'/__legal4__/',
];
$substitutions = [
$title,
$p1,
$p2,
$msg_attch,
$p3,
$legal,
$legal1,
$legal2,
$legal3,
$legal4,
];
$html_template = file_get_contents(
$config['homedir'].'/include/templates/feedback_send_mail.html'
);
$text = preg_replace($patterns, $substitutions, $html_template);
}
$idUserTask = db_get_value(
'id',
@ -1948,11 +2037,11 @@ class Diagnostics extends Wizard
'label' => __('Your email'),
'class' => 'flex-row-baseline',
'arguments' => [
'name' => 'email',
'id' => 'email',
'type' => 'text',
'return' => true,
'size' => 40,
'name' => 'email',
'id' => 'email',
'type' => 'email',
'size' => 40,
'required' => 'required',
],
];

View File

@ -1535,6 +1535,89 @@ function html_print_input_text($name, $value, $alt='', $size=50, $maxlength=255,
}
/**
* Render an input email element.
*
* @param array $settings Array with attributes input.
* only name is necessary.
*
* @return string Html input.
*/
function html_print_input_email(array $settings):string
{
// TODO: const.
$valid_attrs = [
'accept',
'disabled',
'maxlength',
'name',
'readonly',
'placeholder',
'size',
'value',
'accesskey',
'class',
'dir',
'id',
'lang',
'style',
'tabindex',
'title',
'xml:lang',
'onfocus',
'onblur',
'onselect',
'onchange',
'onclick',
'ondblclick',
'onmousedown',
'onmouseup',
'onmouseover',
'onmousemove',
'onmouseout',
'onkeypress',
'onkeydown',
'onkeyup',
'required',
'pattern',
'autocomplete',
];
$output = '';
if (isset($settings) === true && is_array($settings) === true) {
// Check Name is necessary.
if (isset($settings['name']) === true) {
$output = '<input type="email" ';
// Check Max length.
if (isset($settings['maxlength']) === false) {
$settings['maxlength'] = 255;
}
// Check Size.
if (isset($settings['size']) === false
|| $settings['size'] === 0
) {
$settings['size'] = 255;
}
foreach ($settings as $attribute => $attr_value) {
// Check valid attribute.
if (in_array($attribute, $valid_attrs) === false) {
continue;
}
$output .= $attribute.'="'.$attr_value.'" ';
}
$output .= $function.'/>';
}
}
return $output;
}
/**
* Render an input image element.
*
@ -3208,6 +3291,10 @@ function html_print_input($data, $wrapper='div', $input_only=false)
);
break;
case 'email':
$output .= html_print_input_email($data);
break;
case 'hidden':
$output .= html_print_input_hidden(
$data['name'],

View File

@ -1236,3 +1236,29 @@ function users_get_explode_tags(&$group)
}
}
/**
* Get mail admin.
*
* @return string Return mail admin.
*/
function get_mail_admin():string
{
$mail = db_get_value('email', 'tusuario', 'is_admin', 1);
return $mail;
}
/**
* Get name admin.
*
* @return string Return name admin.
*/
function get_name_admin():string
{
$mail = db_get_value('fullname', 'tusuario', 'is_admin', 1);
return $mail;
}

View File

@ -1958,7 +1958,14 @@ function load_modal(settings) {
formdata.append("page", settings.onsubmit.page);
formdata.append("method", settings.onsubmit.method);
var flagError = false;
$("#" + settings.form + " :input").each(function() {
if (this.checkValidity() === false) {
// TODO: Tooltip msg.
console.log(this.validationMessage);
flagError = true;
}
if (this.type == "file") {
if ($(this).prop("files")[0]) {
formdata.append(this.name, $(this).prop("files")[0]);
@ -1974,24 +1981,28 @@ function load_modal(settings) {
}
});
$.ajax({
method: "post",
url: settings.url,
processData: false,
contentType: false,
data: formdata,
dataType: settings.onsubmit.dataType,
success: function(data) {
if (settings.ajax_callback != undefined) {
if (settings.idMsgCallback != undefined) {
settings.ajax_callback(data, settings.idMsgCallback);
} else {
settings.ajax_callback(data);
if (flagError === false) {
$.ajax({
method: "post",
url: settings.url,
processData: false,
contentType: false,
data: formdata,
dataType: settings.onsubmit.dataType,
success: function(data) {
if (settings.ajax_callback != undefined) {
if (settings.idMsgCallback != undefined) {
settings.ajax_callback(data, settings.idMsgCallback);
} else {
settings.ajax_callback(data);
}
}
AJAX_RUNNING = 0;
}
AJAX_RUNNING = 0;
}
});
});
} else {
AJAX_RUNNING = 0;
}
}
}
],

View File

@ -5910,3 +5910,7 @@ table.table_modal_alternate tr td:first-child {
.flot-text {
width: 101%;
}
input:invalid {
border-color: #c00;
}