2022-06-21 11:17:18 +02:00
|
|
|
/*global jQuery, $, forced_title_callback, confirmDialog*/
|
2019-06-12 13:17:18 +02:00
|
|
|
|
2012-10-09 18:05:32 +02:00
|
|
|
// Show the modal window of an event
|
2022-06-21 11:17:18 +02:00
|
|
|
function show_event_dialog(event, dialog_page) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var ajax_file = $("#hidden-ajax_file").val();
|
|
|
|
|
|
|
|
if (dialog_page == undefined) {
|
|
|
|
dialog_page = "general";
|
|
|
|
}
|
|
|
|
|
2019-06-17 17:02:33 +02:00
|
|
|
try {
|
|
|
|
event = JSON.parse(atob(event));
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
return;
|
|
|
|
}
|
2019-01-30 12:27:18 +01:00
|
|
|
|
2019-06-14 19:23:04 +02:00
|
|
|
var inputs = $("#events_form :input");
|
|
|
|
var values = {};
|
|
|
|
inputs.each(function() {
|
|
|
|
values[this.name] = $(this).val();
|
|
|
|
});
|
|
|
|
|
2019-01-30 12:27:18 +01:00
|
|
|
// Metaconsole mode flag
|
|
|
|
var meta = $("#hidden-meta").val();
|
|
|
|
|
|
|
|
// History mode flag
|
|
|
|
var history = $("#hidden-history").val();
|
|
|
|
|
|
|
|
jQuery.post(
|
|
|
|
ajax_file,
|
|
|
|
{
|
|
|
|
page: "include/ajax/events",
|
|
|
|
get_extended_event: 1,
|
|
|
|
dialog_page: dialog_page,
|
2019-06-17 17:02:33 +02:00
|
|
|
event: event,
|
2019-01-30 12:27:18 +01:00
|
|
|
meta: meta,
|
2019-06-14 19:23:04 +02:00
|
|
|
history: history,
|
|
|
|
filter: values
|
2019-01-30 12:27:18 +01:00
|
|
|
},
|
2019-06-12 13:17:18 +02:00
|
|
|
function(data) {
|
2019-01-30 12:27:18 +01:00
|
|
|
$("#event_details_window")
|
|
|
|
.hide()
|
|
|
|
.empty()
|
|
|
|
.append(data)
|
|
|
|
.dialog({
|
2019-06-17 17:02:33 +02:00
|
|
|
title: event.evento,
|
2019-01-30 12:27:18 +01:00
|
|
|
resizable: true,
|
|
|
|
draggable: true,
|
|
|
|
modal: true,
|
2021-10-15 09:36:22 +02:00
|
|
|
minWidth: 875,
|
2021-05-11 15:49:40 +02:00
|
|
|
minHeight: 600,
|
2019-01-30 12:27:18 +01:00
|
|
|
close: function() {
|
|
|
|
$("#refrcounter").countdown("resume");
|
|
|
|
$("div.vc-countdown").countdown("resume");
|
|
|
|
},
|
|
|
|
overlay: {
|
|
|
|
opacity: 0.5,
|
|
|
|
background: "black"
|
|
|
|
},
|
2019-06-17 19:12:45 +02:00
|
|
|
width: 710,
|
2022-03-03 18:37:33 +01:00
|
|
|
height: 600,
|
|
|
|
autoOpen: true,
|
|
|
|
open: function() {
|
|
|
|
if (
|
|
|
|
$.ui &&
|
|
|
|
$.ui.dialog &&
|
|
|
|
$.ui.dialog.prototype._allowInteraction
|
|
|
|
) {
|
|
|
|
var ui_dialog_interaction =
|
|
|
|
$.ui.dialog.prototype._allowInteraction;
|
|
|
|
$.ui.dialog.prototype._allowInteraction = function(e) {
|
|
|
|
if ($(e.target).closest(".select2-dropdown").length)
|
|
|
|
return true;
|
|
|
|
return ui_dialog_interaction.apply(this, arguments);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_allowInteraction: function(event) {
|
|
|
|
return !!$(event.target).is(".select2-input") || this._super(event);
|
|
|
|
}
|
2019-01-30 12:27:18 +01:00
|
|
|
})
|
|
|
|
.show();
|
|
|
|
|
|
|
|
$("#refrcounter").countdown("pause");
|
|
|
|
$("div.vc-countdown").countdown("pause");
|
|
|
|
|
2022-06-21 11:17:18 +02:00
|
|
|
/*
|
2019-01-30 12:27:18 +01:00
|
|
|
switch (result) {
|
|
|
|
case "comment_ok":
|
|
|
|
$("#notification_comment_success").show();
|
|
|
|
break;
|
|
|
|
case "comment_error":
|
|
|
|
$("#notification_comment_error").show();
|
|
|
|
break;
|
|
|
|
case "status_ok":
|
|
|
|
$("#notification_status_success").show();
|
|
|
|
break;
|
|
|
|
case "status_error":
|
|
|
|
$("#notification_status_error").show();
|
|
|
|
break;
|
|
|
|
case "owner_ok":
|
|
|
|
$("#notification_owner_success").show();
|
|
|
|
break;
|
|
|
|
case "owner_error":
|
|
|
|
$("#notification_owner_error").show();
|
|
|
|
break;
|
|
|
|
}
|
2022-06-21 11:17:18 +02:00
|
|
|
*/
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
forced_title_callback();
|
|
|
|
},
|
|
|
|
"html"
|
|
|
|
);
|
|
|
|
return false;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
|
|
|
|
2019-01-30 12:27:18 +01:00
|
|
|
// Check the response type and open it in a modal dialog or new window
|
2012-12-20 16:33:23 +01:00
|
|
|
function execute_response(event_id, server_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var response_id = $("#select_custom_response option:selected").val();
|
|
|
|
|
2022-06-15 13:06:10 +02:00
|
|
|
var response = get_response(response_id, server_id);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
// If cannot get response abort it
|
|
|
|
if (response == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
response["target"] = get_response_target(event_id, response_id, server_id);
|
2020-04-15 15:50:08 +02:00
|
|
|
response["event_id"] = event_id;
|
|
|
|
response["server_id"] = server_id;
|
2019-01-30 12:27:18 +01:00
|
|
|
|
2020-04-15 15:50:08 +02:00
|
|
|
if (response["type"] == "url" && response["new_window"] == 1) {
|
|
|
|
window.open(response["target"], "_blank");
|
|
|
|
} else {
|
|
|
|
show_response_dialog(response_id, response);
|
2019-01-30 12:27:18 +01:00
|
|
|
}
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
2012-10-01 13:15:31 +02:00
|
|
|
|
2012-10-09 18:05:32 +02:00
|
|
|
//Show the modal window of an event response
|
2020-04-15 15:50:08 +02:00
|
|
|
function show_response_dialog(response_id, response) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("dialogue_event_response=1");
|
|
|
|
params.push("massive=0");
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("event_id=" + response["event_id"]);
|
2020-08-14 14:48:34 +02:00
|
|
|
params.push("target=" + encodeURIComponent(response["target"]));
|
2019-01-30 12:27:18 +01:00
|
|
|
params.push("response_id=" + response_id);
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("server_id=" + response["server_id"]);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
$("#event_response_window")
|
|
|
|
.hide()
|
|
|
|
.empty()
|
|
|
|
.append(data)
|
|
|
|
.dialog({
|
|
|
|
title: $("#select_custom_response option:selected").html(),
|
|
|
|
resizable: true,
|
|
|
|
draggable: true,
|
|
|
|
modal: false,
|
2019-06-12 13:17:18 +02:00
|
|
|
open: function() {
|
2020-04-15 15:50:08 +02:00
|
|
|
perform_response(response, response_id);
|
2019-01-30 12:27:18 +01:00
|
|
|
},
|
|
|
|
width: response["modal_width"],
|
|
|
|
height: response["modal_height"]
|
|
|
|
})
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
});
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
2019-01-14 12:10:43 +01:00
|
|
|
//Show the modal window of event responses when multiple events are selected
|
2019-01-30 12:27:18 +01:00
|
|
|
function show_massive_response_dialog(
|
|
|
|
response_id,
|
|
|
|
response,
|
|
|
|
out_iterator,
|
|
|
|
end
|
|
|
|
) {
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("dialogue_event_response=1");
|
|
|
|
params.push("massive=1");
|
|
|
|
params.push("end=" + end);
|
|
|
|
params.push("out_iterator=" + out_iterator);
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("event_id=" + response["event_id"]);
|
2019-01-30 12:27:18 +01:00
|
|
|
params.push("target=" + response["target"]);
|
|
|
|
params.push("response_id=" + response_id);
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("server_id=" + response["server_id"]);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
2020-04-15 15:50:08 +02:00
|
|
|
response_tg: response,
|
2019-01-30 12:27:18 +01:00
|
|
|
response_id: response_id,
|
|
|
|
out_iterator: out_iterator,
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
if (out_iterator === 0) $("#event_response_window").empty();
|
|
|
|
|
|
|
|
$("#event_response_window")
|
|
|
|
.hide()
|
|
|
|
.append(data)
|
|
|
|
.dialog({
|
|
|
|
title: $("#select_custom_response option:selected").html(),
|
|
|
|
resizable: true,
|
|
|
|
draggable: true,
|
|
|
|
modal: false,
|
2019-06-12 13:17:18 +02:00
|
|
|
open: function() {
|
2019-01-30 12:27:18 +01:00
|
|
|
$("#response_loading_dialog").hide();
|
|
|
|
$("#button-submit_event_response").show();
|
|
|
|
},
|
2019-06-12 13:17:18 +02:00
|
|
|
close: function() {
|
2020-01-14 08:37:04 +01:00
|
|
|
$("#checkbox-all_validate_box").prop("checked", false);
|
2019-01-30 12:27:18 +01:00
|
|
|
$(".chk_val").prop("checked", false);
|
|
|
|
},
|
|
|
|
width: response["modal_width"],
|
|
|
|
height: response["modal_height"]
|
|
|
|
})
|
|
|
|
.show();
|
|
|
|
|
|
|
|
perform_response_massive(
|
|
|
|
this.response_tg,
|
|
|
|
this.response_id,
|
|
|
|
this.out_iterator
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2019-01-14 12:10:43 +01:00
|
|
|
}
|
|
|
|
|
2012-10-09 18:05:32 +02:00
|
|
|
// Get an event response from db
|
2022-06-15 13:06:10 +02:00
|
|
|
function get_response(response_id, server_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var response = "";
|
|
|
|
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("get_response=1");
|
|
|
|
params.push("response_id=" + response_id);
|
2022-06-15 13:06:10 +02:00
|
|
|
params.push("server_id=" + server_id);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: false,
|
|
|
|
dataType: "json",
|
|
|
|
success: function(data) {
|
|
|
|
response = data;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return response;
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get an event response params from db
|
|
|
|
function get_response_params(response_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var response_params;
|
|
|
|
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("get_response_params=1");
|
|
|
|
params.push("response_id=" + response_id);
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: false,
|
|
|
|
dataType: "json",
|
|
|
|
success: function(data) {
|
|
|
|
response_params = data;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return response_params;
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get an event response description from db
|
|
|
|
function get_response_description(response_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var response_description = "";
|
|
|
|
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("get_response_description=1");
|
|
|
|
params.push("response_id=" + response_id);
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: false,
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
response_description = data;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return response_description;
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function add_row_param(id_table, param) {
|
2019-01-30 12:27:18 +01:00
|
|
|
$("#" + id_table).append(
|
2019-04-26 11:57:41 +02:00
|
|
|
'<tr class="params_rows"><td style="text-align:left; padding-left:40px; font-weight: normal; font-style: italic;">' +
|
2019-01-30 12:27:18 +01:00
|
|
|
param +
|
2019-04-26 11:57:41 +02:00
|
|
|
'</td><td style="text-align:left" colspan="2"><input type="text" name="' +
|
2019-01-30 12:27:18 +01:00
|
|
|
param +
|
|
|
|
'" id="' +
|
|
|
|
param +
|
|
|
|
'"></td></tr>'
|
|
|
|
);
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get an event response from db
|
2019-02-27 10:59:44 +01:00
|
|
|
function get_response_target(
|
|
|
|
event_id,
|
|
|
|
response_id,
|
|
|
|
server_id,
|
|
|
|
response_command
|
|
|
|
) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var target = "";
|
|
|
|
|
|
|
|
// Replace the main macros
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("get_response_target=1");
|
|
|
|
params.push("event_id=" + event_id);
|
|
|
|
params.push("response_id=" + response_id);
|
|
|
|
params.push("server_id=" + server_id);
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: false,
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
target = data;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-02-27 10:59:44 +01:00
|
|
|
// Replace the custom params macros.
|
2019-01-30 12:27:18 +01:00
|
|
|
var response_params = get_response_params(response_id);
|
|
|
|
if (response_params.length > 1 || response_params[0] != "") {
|
2019-06-12 13:17:18 +02:00
|
|
|
for (var i = 0; i < response_params.length; i++) {
|
2019-02-27 10:59:44 +01:00
|
|
|
if (!response_command) {
|
2020-08-13 14:10:57 +02:00
|
|
|
var response_param = "_" + response_params[i] + "_";
|
|
|
|
|
|
|
|
if (
|
|
|
|
response_params[i].startsWith("_") &&
|
2020-08-13 14:13:12 +02:00
|
|
|
response_params[i].endsWith("_")
|
2020-08-13 14:10:57 +02:00
|
|
|
) {
|
|
|
|
response_param = response_params[i];
|
|
|
|
}
|
|
|
|
|
2019-02-27 10:59:44 +01:00
|
|
|
target = target.replace(
|
2020-08-13 14:10:57 +02:00
|
|
|
response_param,
|
2019-02-27 10:59:44 +01:00
|
|
|
$("#" + response_params[i]).val()
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
target = target.replace(
|
|
|
|
"_" + response_params[i] + "_",
|
|
|
|
response_command[response_params[i] + "-" + i]
|
|
|
|
);
|
|
|
|
}
|
2019-01-30 12:27:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return target;
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Perform a response and put the output into a div
|
2020-04-15 15:50:08 +02:00
|
|
|
function perform_response(response, response_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
$("#re_exec_command").hide();
|
|
|
|
$("#response_loading_command").show();
|
|
|
|
$("#response_out").html("");
|
|
|
|
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("perform_event_response=1");
|
2020-08-14 14:48:34 +02:00
|
|
|
params.push("target=" + encodeURIComponent(response["target"]));
|
2019-01-30 12:27:18 +01:00
|
|
|
params.push("response_id=" + response_id);
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("event_id=" + response["event_id"]);
|
|
|
|
params.push("server_id=" + response["server_id"]);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: true,
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
var out = data.replace(/[\n|\r]/g, "<br>");
|
|
|
|
$("#response_out").html(out);
|
|
|
|
$("#response_loading_command").hide();
|
|
|
|
$("#re_exec_command").show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
2012-10-09 18:05:32 +02:00
|
|
|
}
|
|
|
|
|
2019-01-14 12:10:43 +01:00
|
|
|
// Perform a response and put the output into a div
|
2020-04-15 15:50:08 +02:00
|
|
|
function perform_response_massive(response, response_id, out_iterator) {
|
2019-01-30 12:27:18 +01:00
|
|
|
$("#re_exec_command").hide();
|
|
|
|
$("#response_loading_command_" + out_iterator).show();
|
|
|
|
$("#response_out_" + out_iterator).html("");
|
|
|
|
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("perform_event_response=1");
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("target=" + response["target"]);
|
2019-01-30 12:27:18 +01:00
|
|
|
params.push("response_id=" + response_id);
|
2020-04-15 15:50:08 +02:00
|
|
|
params.push("event_id=" + response["event_id"]);
|
|
|
|
params.push("server_id=" + response["server_id"]);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: true,
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
var out = data.replace(/[\n|\r]/g, "<br>");
|
|
|
|
$("#response_out_" + out_iterator).html(out);
|
|
|
|
$("#response_loading_command_" + out_iterator).hide();
|
|
|
|
$("#re_exec_command_" + out_iterator).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
2019-01-14 12:10:43 +01:00
|
|
|
}
|
|
|
|
|
2019-02-27 10:59:44 +01:00
|
|
|
// Change the status of an event to new, in process or validated.
|
2022-06-15 13:06:10 +02:00
|
|
|
function event_change_status(event_ids, server_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var new_status = $("#estado").val();
|
|
|
|
|
|
|
|
$("#button-status_button").attr("disabled", "disabled");
|
|
|
|
$("#response_loading").show();
|
|
|
|
|
|
|
|
jQuery.ajax({
|
2019-07-10 12:15:41 +02:00
|
|
|
data: {
|
|
|
|
page: "include/ajax/events",
|
|
|
|
change_status: 1,
|
|
|
|
event_ids: event_ids,
|
|
|
|
new_status: new_status,
|
2022-06-15 13:06:10 +02:00
|
|
|
server_id: server_id
|
2019-07-10 12:15:41 +02:00
|
|
|
},
|
2019-01-30 12:27:18 +01:00
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2020-10-30 14:42:10 +01:00
|
|
|
dataType: "json",
|
2019-01-30 12:27:18 +01:00
|
|
|
success: function(data) {
|
|
|
|
$("#button-status_button").removeAttr("disabled");
|
|
|
|
$("#response_loading").hide();
|
2019-07-10 12:15:41 +02:00
|
|
|
|
|
|
|
if ($("#notification_status_success").length) {
|
|
|
|
$("#notification_status_success").hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($("#notification_status_error").length) {
|
|
|
|
$("#notification_status_error").hide();
|
|
|
|
}
|
2022-03-22 18:02:53 +01:00
|
|
|
|
2020-10-30 14:42:10 +01:00
|
|
|
if (data.status == "status_ok") {
|
2020-03-26 12:29:38 +01:00
|
|
|
if (typeof dt_events !== "undefined") {
|
|
|
|
dt_events.draw(false);
|
|
|
|
}
|
2019-07-10 12:15:41 +02:00
|
|
|
$("#notification_status_success").show();
|
2020-10-30 14:42:10 +01:00
|
|
|
if (new_status == 1) {
|
|
|
|
$("#extended_event_general_page table td.general_acknowleded").text(
|
|
|
|
data.user
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$("#extended_event_general_page table td.general_acknowleded").text(
|
|
|
|
"N/A"
|
|
|
|
);
|
|
|
|
}
|
2022-03-21 18:15:58 +01:00
|
|
|
|
|
|
|
$("#general_status")
|
|
|
|
.find(".general_status")
|
|
|
|
.text(data.status_title);
|
|
|
|
$("#general_status")
|
|
|
|
.find("img")
|
|
|
|
.attr("src", data.status_img);
|
2019-07-10 12:15:41 +02:00
|
|
|
} else {
|
|
|
|
$("#notification_status_error").show();
|
|
|
|
}
|
2019-01-30 12:27:18 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
|
|
|
|
2012-10-09 18:05:32 +02:00
|
|
|
// Change te owner of an event to one user of empty
|
2022-06-15 13:06:10 +02:00
|
|
|
function event_change_owner(event_id, server_id) {
|
2019-01-30 12:27:18 +01:00
|
|
|
var new_owner = $("#id_owner").val();
|
|
|
|
|
|
|
|
$("#button-owner_button").attr("disabled", "disabled");
|
|
|
|
$("#response_loading").show();
|
|
|
|
|
|
|
|
jQuery.ajax({
|
2019-07-09 16:41:00 +02:00
|
|
|
data: {
|
|
|
|
page: "include/ajax/events",
|
|
|
|
change_owner: 1,
|
|
|
|
event_id: event_id,
|
2022-06-15 13:06:10 +02:00
|
|
|
server_id: server_id,
|
|
|
|
new_owner: new_owner
|
2019-07-09 16:41:00 +02:00
|
|
|
},
|
2019-01-30 12:27:18 +01:00
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
async: true,
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
$("#button-owner_button").removeAttr("disabled");
|
|
|
|
$("#response_loading").hide();
|
|
|
|
|
2019-07-10 11:05:06 +02:00
|
|
|
if ($("#notification_owner_success").length) {
|
|
|
|
$("#notification_owner_success").hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($("#notification_owner_error").length) {
|
|
|
|
$("#notification_owner_error").hide();
|
|
|
|
}
|
|
|
|
|
2019-07-09 16:41:00 +02:00
|
|
|
if (data == "owner_ok") {
|
2020-03-26 12:29:38 +01:00
|
|
|
if (typeof dt_events !== "undefined") {
|
|
|
|
dt_events.draw(false);
|
|
|
|
}
|
2019-07-09 16:41:00 +02:00
|
|
|
$("#notification_owner_success").show();
|
|
|
|
if (new_owner == -1) {
|
2019-07-10 12:15:41 +02:00
|
|
|
$("#extended_event_general_page table td.general_owner").html(
|
|
|
|
"<i>N/A</i>"
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$("#extended_event_general_page table td.general_owner").text(
|
|
|
|
new_owner
|
|
|
|
);
|
2019-07-09 16:41:00 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$("#notification_owner_error").show();
|
|
|
|
}
|
2019-01-30 12:27:18 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
|
|
|
|
2012-10-09 18:05:32 +02:00
|
|
|
// Save a comment into an event
|
2020-03-26 12:29:38 +01:00
|
|
|
function event_comment(current_event) {
|
2019-06-17 19:12:45 +02:00
|
|
|
var event;
|
|
|
|
try {
|
|
|
|
event = JSON.parse(atob(current_event));
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 12:27:18 +01:00
|
|
|
var comment = $("#textarea_comment").val();
|
2020-03-26 12:29:38 +01:00
|
|
|
|
2019-01-30 12:27:18 +01:00
|
|
|
if (comment == "") {
|
2019-06-17 19:12:45 +02:00
|
|
|
show_event_dialog(current_event, "comments", "comment_error");
|
2019-01-30 12:27:18 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("add_comment=1");
|
2021-11-29 16:12:15 +01:00
|
|
|
if (event.event_rep > 0) {
|
|
|
|
params.push("event_id=" + event.max_id_evento);
|
|
|
|
} else {
|
|
|
|
params.push("event_id=" + event.id_evento);
|
|
|
|
}
|
2019-01-30 12:27:18 +01:00
|
|
|
params.push("comment=" + comment);
|
2022-06-14 18:47:09 +02:00
|
|
|
params.push("server_id=" + event.server_id);
|
2019-01-30 12:27:18 +01:00
|
|
|
|
|
|
|
$("#button-comment_button").attr("disabled", "disabled");
|
|
|
|
$("#response_loading").show();
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-01-30 12:27:18 +01:00
|
|
|
dataType: "html",
|
2022-06-15 13:06:10 +02:00
|
|
|
success: function() {
|
2019-01-30 12:27:18 +01:00
|
|
|
$("#button-comment_button").removeAttr("disabled");
|
2019-06-20 21:11:56 +02:00
|
|
|
$("#response_loading").hide();
|
|
|
|
$("#link_comments").click();
|
2019-01-30 12:27:18 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
2012-10-01 13:15:31 +02:00
|
|
|
}
|
2016-07-22 16:08:45 +02:00
|
|
|
|
2019-02-27 10:59:44 +01:00
|
|
|
function show_event_response_command_dialog(id, response, total_checked) {
|
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("get_table_response_command=1");
|
|
|
|
params.push("event_response_id=" + id);
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
2019-06-12 13:17:18 +02:00
|
|
|
url: $("#hidden-ajax_file").val(),
|
2019-02-27 10:59:44 +01:00
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
$("#event_response_command_window")
|
|
|
|
.hide()
|
|
|
|
.empty()
|
|
|
|
.append(data)
|
|
|
|
.dialog({
|
|
|
|
resizable: true,
|
|
|
|
draggable: true,
|
|
|
|
modal: false,
|
|
|
|
open: function() {
|
|
|
|
$("#response_loading_dialog").hide();
|
|
|
|
$("#button-submit_event_response").show();
|
|
|
|
},
|
|
|
|
width: 600,
|
|
|
|
height: 300
|
|
|
|
})
|
|
|
|
.show();
|
|
|
|
|
|
|
|
$("#submit-enter_command").on("click", function(e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var response_command = [];
|
|
|
|
|
|
|
|
$(".response_command_input").each(function() {
|
|
|
|
response_command[$(this).attr("name")] = $(this).val();
|
|
|
|
});
|
|
|
|
|
|
|
|
check_massive_response_event(
|
|
|
|
id,
|
|
|
|
response,
|
|
|
|
total_checked,
|
|
|
|
response_command
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-06-12 18:19:39 +02:00
|
|
|
|
2019-06-18 10:32:04 +02:00
|
|
|
var processed = 0;
|
2022-06-15 13:06:10 +02:00
|
|
|
function update_event(table, id_evento, type, event_rep, row, server_id) {
|
2019-06-13 12:30:09 +02:00
|
|
|
var inputs = $("#events_form :input");
|
|
|
|
var values = {};
|
2019-06-13 13:07:11 +02:00
|
|
|
var redraw = false;
|
2019-06-13 12:30:09 +02:00
|
|
|
inputs.each(function() {
|
|
|
|
values[this.name] = $(this).val();
|
|
|
|
});
|
2019-06-13 13:07:11 +02:00
|
|
|
var t1 = new Date();
|
2020-06-04 13:50:36 +02:00
|
|
|
|
2019-06-13 12:30:09 +02:00
|
|
|
$.ajax({
|
2019-06-18 11:00:48 +02:00
|
|
|
async: true,
|
2019-06-13 12:30:09 +02:00
|
|
|
type: "POST",
|
|
|
|
url: $("#hidden-ajax_file").val(),
|
|
|
|
data: {
|
|
|
|
page: "include/ajax/events",
|
|
|
|
validate_event: type.validate_event,
|
|
|
|
in_process_event: type.in_process_event,
|
2019-06-13 16:28:26 +02:00
|
|
|
delete_event: type.delete_event,
|
2019-06-13 12:30:09 +02:00
|
|
|
id_evento: id_evento,
|
2022-06-15 13:06:10 +02:00
|
|
|
server_id: server_id,
|
2019-06-18 18:35:34 +02:00
|
|
|
event_rep: event_rep,
|
2019-06-13 12:30:09 +02:00
|
|
|
filter: values
|
|
|
|
},
|
2019-06-18 10:32:04 +02:00
|
|
|
success: function(d) {
|
|
|
|
processed += 1;
|
2019-06-13 13:07:11 +02:00
|
|
|
var t2 = new Date();
|
2019-06-13 13:35:02 +02:00
|
|
|
var diff_g = t2.getTime() - t1.getTime();
|
2019-06-13 13:07:11 +02:00
|
|
|
var diff_s = diff_g / 1000;
|
2019-06-18 10:32:04 +02:00
|
|
|
if (processed >= $(".chk_val:checked").length) {
|
|
|
|
// If operation takes less than 2 seconds, redraw.
|
2019-06-25 17:24:16 +02:00
|
|
|
if (diff_s < 2 || $(".chk_val:checked").length > 1) {
|
2019-06-18 10:32:04 +02:00
|
|
|
redraw = true;
|
|
|
|
}
|
|
|
|
if (redraw) {
|
2022-06-21 11:17:18 +02:00
|
|
|
$("#" + table)
|
|
|
|
.DataTable()
|
|
|
|
.draw(false);
|
2019-06-18 10:32:04 +02:00
|
|
|
} else {
|
|
|
|
$(row)
|
|
|
|
.closest("tr")
|
|
|
|
.remove();
|
2019-06-13 20:09:55 +02:00
|
|
|
}
|
2019-06-13 12:36:31 +02:00
|
|
|
}
|
2019-06-18 14:26:55 +02:00
|
|
|
},
|
|
|
|
error: function() {
|
|
|
|
processed += 1;
|
2019-06-13 12:30:09 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-06-04 13:50:36 +02:00
|
|
|
// Update events matching current filters and id_evento selected.
|
2019-06-13 12:30:09 +02:00
|
|
|
|
2022-06-15 13:06:10 +02:00
|
|
|
function validate_event(table, id_evento, event_rep, row, server_id) {
|
2019-06-18 15:03:49 +02:00
|
|
|
var button = document.getElementById("val-" + id_evento);
|
2022-06-21 11:17:18 +02:00
|
|
|
var meta = $("#hidden-meta").val();
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
button = document.getElementById("val-" + id_evento + "-" + server_id);
|
|
|
|
}
|
|
|
|
|
2019-06-18 15:03:49 +02:00
|
|
|
if (!button) {
|
|
|
|
// Button does not exist. Ignore.
|
2019-06-25 16:05:56 +02:00
|
|
|
processed += 1;
|
2019-06-18 15:03:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.children[0];
|
|
|
|
button.children[0].src = "images/spinner.gif";
|
2022-06-15 13:06:10 +02:00
|
|
|
return update_event(
|
|
|
|
table,
|
|
|
|
id_evento,
|
|
|
|
{ validate_event: 1 },
|
|
|
|
event_rep,
|
|
|
|
row,
|
|
|
|
server_id
|
|
|
|
);
|
2019-06-13 12:30:09 +02:00
|
|
|
}
|
|
|
|
|
2022-06-15 13:06:10 +02:00
|
|
|
function in_process_event(table, id_evento, event_rep, row, server_id) {
|
2019-06-18 15:03:49 +02:00
|
|
|
var button = document.getElementById("proc-" + id_evento);
|
2022-06-21 11:17:18 +02:00
|
|
|
var meta = $("#hidden-meta").val();
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
button = document.getElementById("proc-" + id_evento + "-" + server_id);
|
|
|
|
}
|
|
|
|
|
2019-06-18 15:03:49 +02:00
|
|
|
if (!button) {
|
|
|
|
// Button does not exist. Ignore.
|
2019-06-25 16:05:56 +02:00
|
|
|
processed += 1;
|
2019-06-18 15:03:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
button.children[0];
|
|
|
|
button.children[0].src = "images/spinner.gif";
|
2019-06-18 18:35:34 +02:00
|
|
|
return update_event(
|
|
|
|
table,
|
|
|
|
id_evento,
|
|
|
|
{ in_process_event: 1 },
|
|
|
|
event_rep,
|
2022-06-15 13:06:10 +02:00
|
|
|
row,
|
|
|
|
server_id
|
2019-06-18 18:35:34 +02:00
|
|
|
);
|
2019-06-12 18:19:39 +02:00
|
|
|
}
|
|
|
|
|
2022-06-15 13:06:10 +02:00
|
|
|
function delete_event(table, id_evento, event_rep, row, server_id) {
|
2019-06-18 15:03:49 +02:00
|
|
|
var button = document.getElementById("del-" + id_evento);
|
2022-06-21 11:17:18 +02:00
|
|
|
var meta = $("#hidden-meta").val();
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
button = document.getElementById("del-" + id_evento + "-" + server_id);
|
|
|
|
}
|
|
|
|
|
2019-06-18 15:03:49 +02:00
|
|
|
if (!button) {
|
|
|
|
// Button does not exist. Ignore.
|
2019-06-25 16:05:56 +02:00
|
|
|
processed += 1;
|
2019-06-18 15:03:49 +02:00
|
|
|
return;
|
|
|
|
}
|
2022-06-16 11:31:07 +02:00
|
|
|
var message = "<h3 style = 'text-align: center;' > Are you sure?</h3> ";
|
2020-06-04 11:08:51 +02:00
|
|
|
confirmDialog({
|
|
|
|
title: "ATTENTION",
|
2020-06-04 13:50:36 +02:00
|
|
|
message: message,
|
2020-06-04 11:08:51 +02:00
|
|
|
cancel: "Cancel",
|
|
|
|
ok: "Ok",
|
|
|
|
onAccept: function() {
|
|
|
|
button.children[0];
|
|
|
|
button.children[0].src = "images/spinner.gif";
|
|
|
|
return update_event(
|
|
|
|
table,
|
|
|
|
id_evento,
|
|
|
|
{ delete_event: 1 },
|
|
|
|
event_rep,
|
2022-06-15 13:06:10 +02:00
|
|
|
row,
|
|
|
|
server_id
|
2020-06-04 11:08:51 +02:00
|
|
|
);
|
2020-06-04 13:50:36 +02:00
|
|
|
},
|
|
|
|
onDeny: function() {
|
|
|
|
button.children[0];
|
|
|
|
button.children[0].src = "images/cross.png";
|
|
|
|
return;
|
2020-06-04 11:08:51 +02:00
|
|
|
}
|
|
|
|
});
|
2019-06-12 18:19:39 +02:00
|
|
|
}
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2022-06-20 12:29:00 +02:00
|
|
|
function execute_delete_event_reponse(
|
|
|
|
table,
|
|
|
|
id_evento,
|
|
|
|
event_rep,
|
|
|
|
row,
|
|
|
|
server_id
|
|
|
|
) {
|
2020-06-04 13:50:36 +02:00
|
|
|
var button = document.getElementById("del-" + id_evento);
|
2022-06-21 11:17:18 +02:00
|
|
|
var meta = $("#hidden-meta").val();
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
button = document.getElementById("del-" + id_evento + "-" + server_id);
|
|
|
|
}
|
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
if (!button) {
|
|
|
|
// Button does not exist. Ignore.
|
|
|
|
processed += 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
button.children[0];
|
|
|
|
button.children[0].src = "images/spinner.gif";
|
2022-06-20 12:29:00 +02:00
|
|
|
return update_event(
|
|
|
|
table,
|
|
|
|
id_evento,
|
|
|
|
{ delete_event: 1 },
|
|
|
|
event_rep,
|
|
|
|
row,
|
|
|
|
server_id
|
|
|
|
);
|
2020-06-04 13:50:36 +02:00
|
|
|
}
|
|
|
|
|
2019-06-13 19:41:21 +02:00
|
|
|
// Imported from old files.
|
|
|
|
function execute_event_response(event_list_btn) {
|
2021-03-29 09:23:03 +02:00
|
|
|
var message =
|
|
|
|
"<h4 style = 'text-align: center; color:black' > Are you sure?</h4> ";
|
2020-06-04 13:50:36 +02:00
|
|
|
confirmDialog({
|
|
|
|
title: "ATTENTION",
|
|
|
|
message: message,
|
|
|
|
cancel: "Cancel",
|
|
|
|
ok: "Ok",
|
|
|
|
onAccept: function() {
|
|
|
|
// Continue execution.
|
|
|
|
processed = 0;
|
|
|
|
$("#max_custom_event_resp_msg").hide();
|
|
|
|
$("#max_custom_selected").hide();
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
var response_id = $("select[name=response_id]").val();
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
var total_checked = $(".chk_val:checked").length;
|
2019-06-18 10:32:04 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
// Check select an event.
|
|
|
|
if (total_checked == 0) {
|
|
|
|
$("#max_custom_selected").show();
|
|
|
|
return;
|
|
|
|
}
|
2019-06-18 10:32:04 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
if (!isNaN(response_id)) {
|
|
|
|
// It is a custom response
|
|
|
|
var response = get_response(response_id);
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
// If cannot get response abort it
|
|
|
|
if (response == null) {
|
|
|
|
return;
|
|
|
|
}
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
// Limit number of events to apply custom responses
|
|
|
|
// due performance reasons.
|
|
|
|
if (total_checked > $("#max_execution_event_response").val()) {
|
|
|
|
$("#max_custom_event_resp_msg").show();
|
|
|
|
return;
|
|
|
|
}
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
var response_command = [];
|
|
|
|
$(".response_command_input").each(function() {
|
|
|
|
response_command[$(this).attr("name")] = $(this).val();
|
2019-06-13 19:41:21 +02:00
|
|
|
});
|
2020-06-04 13:50:36 +02:00
|
|
|
|
|
|
|
if (event_list_btn) {
|
|
|
|
$("#button-submit_event_response").hide(function() {
|
|
|
|
$("#response_loading_dialog").show(function() {
|
|
|
|
var check_params = get_response_params(response_id);
|
|
|
|
|
|
|
|
if (check_params[0] !== "") {
|
|
|
|
show_event_response_command_dialog(
|
|
|
|
response_id,
|
|
|
|
response,
|
|
|
|
total_checked
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
check_massive_response_event(
|
|
|
|
response_id,
|
|
|
|
response,
|
|
|
|
total_checked,
|
|
|
|
response_command
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$("#button-btn_str").hide(function() {
|
|
|
|
$("#execute_again_loading").show(function() {
|
|
|
|
check_massive_response_event(
|
|
|
|
response_id,
|
|
|
|
response,
|
|
|
|
total_checked,
|
|
|
|
response_command
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// It is not a custom response
|
|
|
|
switch (response_id) {
|
|
|
|
case "in_progress_selected":
|
|
|
|
$(".chk_val:checked").each(function() {
|
2022-06-21 11:17:18 +02:00
|
|
|
var event_id = $(this).val();
|
|
|
|
var meta = $("#hidden-meta").val();
|
|
|
|
var server_id = 0;
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
var split_id = event_id.split("|");
|
|
|
|
event_id = split_id[0];
|
|
|
|
server_id = split_id[1];
|
|
|
|
}
|
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
in_process_event(
|
2022-06-21 11:17:18 +02:00
|
|
|
"events",
|
|
|
|
event_id,
|
2020-06-04 13:50:36 +02:00
|
|
|
$(this).attr("event_rep"),
|
2022-06-20 12:29:00 +02:00
|
|
|
this.parentElement.parentElement,
|
|
|
|
server_id
|
2020-06-04 13:50:36 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "validate_selected":
|
|
|
|
$(".chk_val:checked").each(function() {
|
2022-06-21 11:17:18 +02:00
|
|
|
var event_id = $(this).val();
|
|
|
|
var meta = $("#hidden-meta").val();
|
|
|
|
var server_id = 0;
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
var split_id = event_id.split("|");
|
|
|
|
event_id = split_id[0];
|
|
|
|
server_id = split_id[1];
|
|
|
|
}
|
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
validate_event(
|
2022-06-21 11:17:18 +02:00
|
|
|
"events",
|
2022-06-20 12:29:00 +02:00
|
|
|
event_id,
|
2020-06-04 13:50:36 +02:00
|
|
|
$(this).attr("event_rep"),
|
2022-06-20 12:29:00 +02:00
|
|
|
this.parentElement.parentElement,
|
|
|
|
server_id
|
2020-06-04 13:50:36 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case "delete_selected":
|
|
|
|
$(".chk_val:checked").each(function() {
|
2022-06-21 11:17:18 +02:00
|
|
|
var event_id = $(this).val();
|
|
|
|
var meta = $("#hidden-meta").val();
|
|
|
|
var server_id = 0;
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
var split_id = event_id.split("|");
|
|
|
|
event_id = split_id[0];
|
|
|
|
server_id = split_id[1];
|
|
|
|
}
|
|
|
|
|
2020-06-04 13:50:36 +02:00
|
|
|
execute_delete_event_reponse(
|
2022-06-21 11:17:18 +02:00
|
|
|
"events",
|
2022-06-20 12:29:00 +02:00
|
|
|
event_id,
|
2020-06-04 13:50:36 +02:00
|
|
|
$(this).attr("event_rep"),
|
2022-06-20 12:29:00 +02:00
|
|
|
this.parentElement.parentElement,
|
|
|
|
server_id
|
2020-06-04 13:50:36 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onDeny: function() {
|
|
|
|
processed += 1;
|
|
|
|
return;
|
2019-06-13 19:41:21 +02:00
|
|
|
}
|
2020-06-04 13:50:36 +02:00
|
|
|
});
|
2019-06-13 19:41:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function check_massive_response_event(
|
|
|
|
response_id,
|
|
|
|
response,
|
|
|
|
total_checked,
|
|
|
|
response_command
|
|
|
|
) {
|
|
|
|
var counter = 0;
|
|
|
|
var end = 0;
|
|
|
|
|
2019-06-18 10:32:04 +02:00
|
|
|
$(".chk_val:checked").each(function() {
|
|
|
|
var event_id = $(this).val();
|
2020-04-15 15:50:08 +02:00
|
|
|
var meta = $("#hidden-meta").val();
|
|
|
|
var server_id = 0;
|
2022-06-22 10:29:19 +02:00
|
|
|
if (meta != 0) {
|
2022-06-21 11:17:18 +02:00
|
|
|
var split_id = event_id.split("|");
|
|
|
|
event_id = split_id[0];
|
|
|
|
server_id = split_id[1];
|
2020-04-15 15:50:08 +02:00
|
|
|
}
|
|
|
|
|
2019-06-18 10:32:04 +02:00
|
|
|
response["target"] = get_response_target(
|
|
|
|
event_id,
|
|
|
|
response_id,
|
|
|
|
server_id,
|
|
|
|
response_command
|
|
|
|
);
|
2020-04-15 15:50:08 +02:00
|
|
|
response["server_id"] = server_id;
|
|
|
|
response["event_id"] = event_id;
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2019-06-18 10:32:04 +02:00
|
|
|
if (total_checked - 1 === counter) end = 1;
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2020-04-15 15:50:08 +02:00
|
|
|
show_massive_response_dialog(response_id, response, counter, end);
|
2019-06-13 19:41:21 +02:00
|
|
|
|
2019-06-18 10:32:04 +02:00
|
|
|
counter++;
|
2019-06-13 19:41:21 +02:00
|
|
|
});
|
|
|
|
}
|
2021-02-10 18:41:53 +01:00
|
|
|
|
|
|
|
function event_widget_options() {
|
|
|
|
if ($("#customFilter").val() != "-1") {
|
|
|
|
$(".event-widget-input").disable();
|
|
|
|
} else {
|
|
|
|
$(".event-widget-input").enable();
|
|
|
|
}
|
|
|
|
}
|
2022-06-21 11:17:18 +02:00
|
|
|
|
|
|
|
function process_buffers(buffers) {
|
|
|
|
$("#events_buffers_display").empty();
|
|
|
|
if (buffers != null && buffers.settings != undefined && buffers.data) {
|
2022-06-23 18:06:25 +02:00
|
|
|
var params = [];
|
|
|
|
params.push("page=include/ajax/events");
|
|
|
|
params.push("process_buffers=1");
|
|
|
|
params.push("buffers=" + JSON.stringify(buffers));
|
|
|
|
|
|
|
|
jQuery.ajax({
|
|
|
|
data: params.join("&"),
|
|
|
|
type: "POST",
|
|
|
|
url: $("#hidden-ajax_file").val(),
|
|
|
|
async: true,
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
|
|
|
$("#events_buffers_display").html(data);
|
2022-06-21 11:17:18 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2022-06-30 17:17:05 +02:00
|
|
|
|
|
|
|
function openSoundEventModal(settings) {
|
|
|
|
settings = JSON.parse(atob(settings));
|
|
|
|
|
|
|
|
// Check modal exists and is open.
|
|
|
|
if (
|
|
|
|
$("#modal-sound").hasClass("ui-dialog-content") &&
|
|
|
|
$("#modal-sound").dialog("isOpen")
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize modal.
|
|
|
|
$("#modal-sound")
|
|
|
|
.dialog({
|
|
|
|
title: settings.title,
|
|
|
|
resizable: false,
|
|
|
|
modal: true,
|
|
|
|
position: { my: "right top", at: "right bottom", of: window },
|
|
|
|
overlay: {
|
|
|
|
opacity: 0.5,
|
|
|
|
background: "black"
|
|
|
|
},
|
|
|
|
width: 600,
|
|
|
|
height: 600,
|
|
|
|
open: function() {
|
|
|
|
$.ajax({
|
|
|
|
method: "post",
|
|
|
|
url: settings.url,
|
|
|
|
data: {
|
|
|
|
page: settings.page,
|
|
|
|
drawConsoleSound: 1
|
|
|
|
},
|
|
|
|
dataType: "html",
|
|
|
|
success: function(data) {
|
2022-07-01 13:08:39 +02:00
|
|
|
$("#modal-sound").append(data);
|
|
|
|
$("#tabs-sound-modal").tabs();
|
2022-06-30 17:17:05 +02:00
|
|
|
},
|
|
|
|
error: function(error) {
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
close: function() {
|
|
|
|
$(this).dialog("destroy");
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.show();
|
|
|
|
}
|