`);
$radio_buttons.find(`input[type='radio']`).on('click', function(e) {
// remove active class from every button
$radio_buttons.find('label').removeClass('active').removeClass('btn-primary').addClass('btn-secondary');
// remove checked from buttons
$radio_buttons.find('input').removeAttr('checked');
// add active class and btn-primary to the new one
$(this).prop('checked', '').parent().addClass('active btn-primary').removeClass('btn-secondary');
});
if (has_container) {
const $radio_container = $(``);
return $radio_container.append($radio_buttons);
}
return $radio_buttons;
}
/* ******************************************************* */
const reset_radio_button = (name, value) => {
$(`input[name='${name}']`)
.removeAttr('checked')
.parent()
.removeClass('btn-primary')
.removeClass('active')
.addClass('btn-secondary');
$(`input[name='${name}'][value='${value}']`)
.attr('checked', '')
.parent()
.toggleClass('btn-secondary')
.toggleClass('btn-primary')
.toggleClass('active');
}
/* ******************************************************* */
const get_unit_bytes = (bytes) => {
if (bytes < 1048576 || bytes == undefined || bytes == null) {
return ["KB", bytes / 1024, 1024];
}
else if (bytes >= 1048576 && bytes < 1073741824) {
return ["MB", bytes / 1048576, 1048576];
}
else {
return ["GB", bytes / 1073741824, 1073741824];
}
};
/* ******************************************************* */
const get_unit_times = (seconds) => {
if (seconds < 3600 || seconds == undefined || seconds == null) {
return [`${i18n.metrics.minutes}`, seconds / 60, 60];
}
else if (seconds >= 3600 && seconds < 86400) {
return [`${i18n.metrics.hours}`, seconds / 3600, 3600];
}
else if (seconds >= 86400) {
return [`${i18n.metrics.days}`, seconds / 86400, 86400];
}
};
/* ******************************************************* */
const apply_edits_script = (template_data, script_subdir, script_key) => {
const $apply_btn = $('#btn-apply');
const $error_label = $("#apply-error");
// remove dirty class from form
$('#edit-form').removeClass('dirty')
$apply_btn.attr('disabled', '');
$.post(`${http_prefix}/lua/edit_user_script_config.lua`, {
script_subdir: script_subdir,
script_key: script_key,
csrf: csrf_edit_config,
JSON: JSON.stringify(template_data),
confset_id: confset_id
})
.done((d, status, xhr) => {
if (check_status_code(xhr.status, xhr.statusText, $error_label)) return;
if (!d.success) {
$error_label.text(d.error).show();
// update token
csrf_edit_config = d.csrf;
// re enable button
$apply_btn.removeAttr('disabled');
}
// if the operation was successfull then reload the page
if (d.success) reloadPageAfterPOST();
})
.fail(({ status, statusText }) => {
check_status_code(status, statusText, $error_label);
if (status == 200) {
$error_label.text(`${i18n.expired_csrf}`).show();
}
$apply_btn.removeAttr('disabled');
});
}
const reset_script_defaults = (script_key, script_subdir, callback_reset) => {
const $error_label = $('#apply-error');
$.get(`${http_prefix}/lua/get_user_script_config.lua`, {
script_subdir: script_subdir,
script_key: script_key
})
.done((reset_data, status, xhr) => {
// if there is an error about the http request
if (check_status_code(xhr.status, xhr.statusText, $error_label)) return;
// call callback function to reset fields
callback_reset(reset_data);
// add dirty class to form
$('#edit-form').addClass('dirty');
})
.fail(({ status, statusText }) => {
check_status_code(status, statusText, $error_label);
// hide modal if there is error
$("#modal-script").modal("toggle");
})
}
/* ******************************************************* */
const ThresholdCross = (gui, hooks, script_subdir, script_key) => {
const $table_editor = $("#script-config-editor");
const render_select_operator = (operators, key, hook) => {
const $select = $(`
`);
operators.forEach((op) => {
$select.append($(``));
});
// select the right operator
if (hook.script_conf.operator != undefined) {
$select.val(hook.script_conf.operator)
}
return $select;
}
const render_template = () => {
const { field_operator, fields_unit, field_min, field_max } = gui;
const operators = ['gt', 'lt'];
// save input fields
const $input_fields = {};
// iterate over keys to create each hooks
for (const key in hooks) {
if (key == undefined) continue;
// get hook
const hook = hooks[key];
let $select = null;
if (field_operator == undefined) {
$select = render_select_operator(operators, key, hook);
}
else {
$select = $(`&${field_operator}`).data('value', field_operator);
}
const $field = $(``);
$field.append($(``).append($select));
$field.append(``);
$field.append(`${fields_unit ? fields_unit : ""}`);
$field.append(``);
const $input_container = $(`
`);
const $checkbox = $(`
`);
// bind check event on checkboxes
$checkbox.find(`input[type='checkbox']`).change(function (e) {
const checked = $(this).prop('checked');
// if the checked option is false the disable the elements
if (!checked) {
$field.find(`input[type='number']`).attr("readonly", "");
$select.attr("disabled", "");
return;
}
$field.find(`input[type='number']`).removeAttr("readonly");
$select.removeAttr("disabled");
});
// append label and checkbox inside the row
$input_container.append(
$(`
`).append($checkbox),
$(`
${(hook.label ? hook.label.titleCase() : "")}
`),
$(`
`).append($field)
);
// save input field
$input_fields[key] = $input_container;
}
// clean script editor table from previous state
$table_editor.empty();
// append each hooks to the table
$table_editor.append(`
${i18n.enabled}
`)
if ("min" in $input_fields) {
$table_editor.append($input_fields['min']);
delete $input_fields['min'];
}
if ("5mins" in $input_fields) {
$table_editor.append($input_fields['5mins']);
delete $input_fields['5mins'];
}
if ("hour" in $input_fields) {
$table_editor.append($input_fields['hour']);
delete $input_fields['hour'];
}
if ("day" in $input_fields) {
$table_editor.append($input_fields['day']);
delete $input_fields['day'];
}
let other_keys = [];
for (let key in $input_fields) other_keys.push(key);
/* Guarantees the sort order */
other_keys.sort();
$.each(other_keys, function(idx, item) {
$table_editor.append($input_fields[item]);
});
};
const apply_event = (event) => {
// prepare request to save config
const data = {};
// iterate over granularities
$table_editor.find("tr[id]").each(function (index) {
const id = $(this).attr("id");
const enabled = $(this).find("input[type='checkbox']").is(":checked");
const $template = $(this).find(".template");
const $error_label = $template.find(`.invalid-feedback`);
let operator = $template.find("select").val();
// if operator is undefined it means there isn't any select, so take the value from span
if (operator == undefined) {
operator = $template.find('span.input-group-text').data('value');
}
const $input_box = $template.find("input");
let threshold = parseInt($input_box.val());
// hide before errors
$error_label.hide();
// remove class error
$input_box.removeClass('is-invalid');
// save data into dictonary
data[id] = {
'enabled': enabled,
'script_conf': {
'operator': operator,
'threshold': parseInt(threshold)
}
}
});
apply_edits_script(data, script_subdir, script_key);
};
const reset_event = (event) => {
reset_script_defaults(script_key, script_subdir, (data) => {
const { hooks } = data;
// reset default values
for (key in hooks) {
const granularity = hooks[key];
$(`input[name='${key}-check']`).prop('checked', granularity.enabled);
if (granularity.script_conf.threshold === undefined) {
$(`input[name='${key}-input']`).val('');
}
else {
$(`input[name='${key}-input']`).val(granularity.script_conf.threshold);
}
if (granularity.enabled) {
$(`select[name='${key}-select']`).removeAttr("disabled");
$(`input[name='${key}-input']`).removeAttr("readonly");
}
else {
$(`input[name='${key}-input']`).attr("readonly", "");
$(`select[name='${key}-select']`).attr("disabled", "");
}
$(`select[name='${key}-select']`).val(granularity.script_conf.operator);
}
});
}
return {
apply_click_event: apply_event,
reset_click_event:reset_event,
render: render_template,
}
}
/* ******************************************************* */
const ItemsList = (gui, hooks, script_subdir, script_key) => {
const $table_editor = $("#script-config-editor");
const render_template = () => {
const $component_container = $(`
`);
const callback_checkbox = function(e) {
const checked = $(this).prop('checked');
// if the checked option is false the disable the elements
if (!checked) {
$text_area.find(`#itemslist-textarea`).attr("readonly", "");
return;
}
$text_area.find(`#itemslist-textarea`).removeAttr("readonly", "");
};
const $checkbox_enabled = generate_checkbox_enabled(
'itemslist-checkbox', hooks.all.enabled, callback_checkbox
);
const items_list = hooks.all.script_conf.items || [];
const $text_area = $(`
`);
// append all inside the table
$table_editor.append($container);
}
const apply_event = (event) => {
const hook_enabled = $('#mud-checkbox').prop('checked');
const items_list = $(`select[name='item_list']`).val();
const max_recording = parseInt($(`select[name='max_recording']`).val());
const template_data = {
all: {
enabled: hook_enabled,
script_conf: {
device_types: items_list,
max_recording: max_recording,
}
}
}
// make post request to save data
apply_edits_script(template_data, script_subdir, script_key);
}
const reset_event = (event) => {
reset_script_defaults(script_key, script_subdir, (reset_data) => {
const max_recording = reset_data.hooks.all.script_conf.max_recording || 3600;
const items_list = reset_data.hooks.all.script_conf.device_types || [];
const enabled = reset_data.hooks.all.enabled;
// set textarea value with default's one
$(`select[name='item_list']`).val(items_list.join(','));
$('#mud-checkbox').prop('checked', enabled);
$(`select[name='max_recording']`).val(max_recording);
if (!enabled) {
$(`select[name='item_list']`).attr('disabled', '');
$(`select[name='max_recording']`).attr('disabled', '');
} else {
$(`select[name='item_list']`).removeAttr('disabled', '');
$(`select[name='max_recording']`).removeAttr('disabled', '');
}
})
}
return {
apply_click_event: apply_event,
reset_click_event: reset_event,
render: render_template,
}
};
/* ******************************************************* */
const EmptyTemplate = (gui = null, hooks = null, script_subdir = null, script_key = null) => {
return {
apply_click_event: function() {},
reset_click_event: function() {},
render: function() {},
}
}
/* ******************************************************* */
// get script key and script name
const initScriptConfModal = (script_key, script_title, script_desc) => {
// change title to modal
$("#script-name").html(`${script_title}`);
$('#script-description').text(script_desc);
$("#modal-script form").off('submit');
$("#modal-script").on("submit", "form", function (e) {
e.preventDefault();
$('#edit-form').trigger('reinitialize.areYouSure').removeClass('dirty');
$("#btn-apply").trigger("click");
});
$.get(`${http_prefix}/lua/get_user_script_config.lua`,
{
script_subdir: script_subdir,
confset_id: confset_id,
script_key: script_key
}
)
.then((data, status, xhr) => {
// check status code
if (check_status_code(xhr.status, xhr.statusText, null)) return;
// hide previous error
$("#apply-error").hide();
const template = TemplateBuilder(data, script_subdir, script_key);
// render template
template.render();
// bind on_apply event on apply button
$("#edit-form").off("submit").on('submit', template.apply_click_event);
$("#btn-reset").off("click").on('click', template.reset_click_event);
// bind are you sure to form
$('#edit-form').trigger('rescan.areYouSure').trigger('reinitialize.areYouSure');
})
.fail(({status, statusText}) => {
check_status_code(status, statusText, null);
// hide modal if there is error
$("#modal-script").modal("toggle");
})
}
/* ******************************************************* */
/**
* This function return the search criteria for the datatable
* 'true': apply filter categories criteria only on enabled scripts
* 'false': apply filter categories criteria only on disabled scripts
* '': apply filter categories criteria for all scripts
*
* @returns {string} 'true'|'false'|''
*/
const get_search_toggle_value = hash => hash == "#enabled" ? 'true' : (hash == "#disabled" ? 'false' : '');
/* ******************************************************* */
const TemplateBuilder = ({gui, hooks}, script_subdir, script_key) => {
// get template name
const template_name = gui.input_builder;
const templates = {
threshold_cross: ThresholdCross(gui, hooks, script_subdir, script_key),
items_list: ItemsList(gui, hooks, script_subdir, script_key),
long_lived: LongLived(gui, hooks, script_subdir, script_key),
elephant_flows: ElephantFlows(gui, hooks, script_subdir, script_key),
flow_mud: FlowMud(gui, hooks, script_subdir, script_key),
}
let template_chosen = templates[template_name];
if (!template_chosen) {
template_chosen = EmptyTemplate();
throw(`${i18n.scripts_list.templates.template_not_implemented}`);
}
return template_chosen;
}
/* ******************************************************* */
// End templates and template builder
const create_enabled_button = (row_data) => {
const {is_enabled} = row_data;
const $button = $(``);
if (!is_enabled) {
const has_all_hook = row_data.all_hooks.find(e => e.key == 'all');
if (!has_all_hook && hasConfigDialog(row_data)) $button.css('visibility', 'hidden');
$button.text(`${i18n.enable}`);
$button.addClass('badge-success');
}
else {
if (row_data.enabled_hooks.length < 1) $button.css('visibility', 'hidden');
$button.text(`${i18n.disable}`);
$button.addClass('badge-danger');
}
$button.off('click').on('click', function() {
$.post(`${http_prefix}/lua/toggle_user_script.lua`, {
script_subdir: script_subdir,
script_key: row_data.key,
csrf: csrf_toggle_buttons,
action: (is_enabled) ? 'disable' : 'enable',
confset_id: confset_id
})
.done((d, status, xhr) => {
if (!d.success) {
$("#alert-row-buttons").text(d.error).removeClass('d-none').show();
// update csrf
csrf_toggle_buttons = d.csrf;
}
if (d.success) reloadPageAfterPOST();
})
.fail(({ status, statusText }) => {
check_status_code(status, statusText, $("#alert-row-buttons"));
// if the csrf has expired
if (status == 200) {
$("#alert-row-buttons").text(`${i18n.expired_csrf}`).removeClass('d-none').show();
}
// re eanble buttons
$button.removeAttr("disabled").removeClass('disabled');
});
})
return $button;
};
$(document).ready(function() {
const CATEGORY_COLUMN_INDEX = 1;
const VALUES_COLUMN_INDEX = 3;
const add_filter_categories_dropdown = () => {
const $dropdown = $(`
`);
$dropdown.find('#category-filter').append(
scripts_categories.map((c, index) => {
// list element to append inside the dropdown selector
const $list_element = $(`
${c.label}
`);
// when a user click the filter category then the datatable
// will be filtered
$list_element.click(function() {
// if the category is not inside the array
// it means the filter category is `All`
if (c.disableFilter) {
$script_table
.column(CATEGORY_COLUMN_INDEX).search('')
.column(VALUES_COLUMN_INDEX).search(get_search_toggle_value(location.hash))
.draw();
$dropdown.find('button span').text(`${i18n.filter_categories}`);
return;
}
$dropdown.find('button span').html(` ${c.label}`);
$script_table
.column(CATEGORY_COLUMN_INDEX).search(c.label)
.column(VALUES_COLUMN_INDEX).search(get_search_toggle_value(location.hash))
.draw();
});
return $list_element;
})
);
$('#scripts-config_filter').prepend($dropdown);
return $dropdown;
}
const hide_categories_dropdown = () => {
// get current category filter
const current_category_filter = $script_table.column(CATEGORY_COLUMN_INDEX).search();
// get alla categories from current datatable instance
const data_rows = $script_table
.column(CATEGORY_COLUMN_INDEX)
.search('')
.rows({filter: 'applied'}).data();
const categories_set = new Set();
for (let i = 0; i < data_rows.length; i++) {
categories_set.add(data_rows[i].category_title);
}
const enabled_categories = [...categories_set];
if (enabled_categories.indexOf(current_category_filter) == -1) {
$('#category-filter-menu button span').text(`${i18n.filter_categories}`);
$script_table.column(CATEGORY_COLUMN_INDEX).search('').draw();
}
$('#category-filter li').each(function(index, element) {
const value = $(this).text();
// all filter must be always enabled
if (scripts_categories.find(e => e.label == value).disableFilter) return;
// hide category
if (enabled_categories.indexOf(value) == -1) {
$(this).hide();
return;
}
$(this).show();
});
}
const truncate_string = (str, lim, strip_html = false) => {
if (strip_html) {
let str_sub = str.replace(/(<([^>]+)>)/ig,"");
return (str_sub.length > lim) ? str_sub.substr(0, lim) + '...' : str_sub;
}
return (str.length > lim) ? str.substr(0, lim) + '...': str;
}
// initialize script table
const $script_table = $("#scripts-config").DataTable({
dom: "Bfrtip",
pagingType: 'full_numbers',
language: {
info: i18n.showing_x_to_y_rows,
search: i18n.script_search,
infoFiltered: "",
paginate: {
previous: '<',
next: '>',
first: '«',
last: '»'
}
},
lengthChange: false,
ajax: {
url: `${http_prefix}/lua/get_user_scripts.lua?confset_id=${confset_id}&script_subdir=${script_subdir}`,
type: 'get',
dataSrc: ''
},
stateSave: true,
initComplete: function (settings, json) {
// add categories dropdown
const $categories_filter = add_filter_categories_dropdown();
// check if there is a previous filter
if (settings.oLoadedState != null) {
const loaded_filter = settings.oLoadedState.columns[CATEGORY_COLUMN_INDEX].search.search;
if (loaded_filter != "") $categories_filter.find('button span').html(` ${loaded_filter}`);
}
const [enabled_count, disabled_count] = count_scripts();
// select the correct tab
select_script_filter(enabled_count);
// clean searchbox
$(".dataTables_filter").find("input[type='search']").val('').trigger('keyup');
// hide category in base selected pill
hide_categories_dropdown();
$('#all-scripts,#enabled-scripts,#disabled-scripts').click(function() {
hide_categories_dropdown();
});
// update the tabs counters
const $disabled_button = $(`#disabled-scripts`);
const $all_button = $("#all-scripts");
const $enabled_button = $(`#enabled-scripts`);
$all_button.html(`${i18n.all} (${enabled_count + disabled_count})`)
$enabled_button.html(`${i18n.enabled} (${enabled_count})`);
$disabled_button.html(`${i18n.disabled} (${disabled_count})`);
if (script_key_filter) {
let elem = json.filter((x) => { return(x.key == script_key_filter); })[0];
if (elem) {
let title = elem.title;
let desc = elem.description;
this.DataTable().search(title).draw();
if(hasConfigDialog(elem)) {
initScriptConfModal(script_key_filter, title, desc);
$("#modal-script").modal("show");
}
}
}
},
order: [[0, "asc"]],
buttons: [
{
extend: "filterScripts",
attr: {
id: "all-scripts",
},
text: "All"
},
{
extend: "filterScripts",
attr: {
id: "enabled-scripts"
},
text: "Enabled"
},
{
extend: "filterScripts",
attr: {
id: "disabled-scripts"
},
text: "Disabled"
}
],
columns: [
{
data: 'title',
render: function (data, type, row) {
if (type == 'display') return `${data}`;
return data;
},
},
{
data: null,
sortable: true,
searchable: true,
className: 'text-center',
render: function (data, type, row) {
const icon = (!row.category_icon) ? '' : ``;
if (type == "display") return `${icon}`;
return row.category_title;
}
},
{
data: 'description',
render: function (data, type, row) {
if (type == "display") {
return `= 72 ? `data-toggle='popover' data-placement='top' data-html='true'` : ``}
title="${row.title}"
data-content="${data}" >
${truncate_string(data, 72, true)}
`;
}
return data;
},
},
{
data: 'enabled_hooks',
sortable: false,
className: 'text-left',
render: function (data, type, row) {
// if the type is flter return true if the data length is greather or equal
// than 0 so the script table can detect if a plugin is enabled
if (data.length <= 0 && type == "filter") return false;
if (data.length > 0 && type == "filter") return true;
return (type == 'display') ? `
= 32 ? `data-toggle='popover' data-placement='top'` : ``}
data-content='${row.value_description}'>
${row.value_description.substr(0, 32)}${row.value_description.length >= 32 ? '...' : ''}
` : '';;
},
},
{
targets: -1,
data: null,
name: 'actions',
className: 'text-center',
width: '200px',
sortable: false,
render: function (data, type, row) {
const edit_script_btn = `
${i18n.edit}
`;
const edit_url_btn = `
${i18n.view}
`;
return `${edit_script_btn}${edit_url_btn}`;
},
createdCell: function(td, cellData, row) {
const enabled_button = create_enabled_button(row);
$(td).prepend(enabled_button);
}
}
]
});
// initialize are you sure
$("#edit-form").areYouSure({ message: i18n.are_you_sure });
// handle modal-script close event
$("#modal-script").on("hide.bs.modal", function(e) {
// if the forms is dirty then ask to the user
// if he wants save edits
if ($('#edit-form').hasClass('dirty')) {
// ask to user if he REALLY wants close modal
const result = confirm(`${i18n.are_you_sure}`);
if (!result) e.preventDefault();
// remove dirty class from form
$('#edit-form').removeClass('dirty');
}
})
.on("shown.bs.modal", function(e) {
// add focus to btn apply to enable focusing on the modal hence user can press escape button to
// close the modal
$("#btn-apply").trigger('focus');
});
// load templates for the script
$('#scripts-config').on('click', 'a[data-target="#modal-script"]', function(e) {
const row_data = $script_table.row($(this).parent()).data();
const script_key = row_data.key;
const script_title = row_data.title;
const script_desc = row_data.description;
initScriptConfModal(script_key, script_title, script_desc);
});
/**
* Count the scripts that are enabled, disabled inside the script table
*/
const count_scripts = () => {
let enabled_count = 0;
let disabled_count = 0;
$script_table.data().each(d => {
if (d.is_enabled) {
enabled_count++;
return;
}
disabled_count++;
});
return [enabled_count, disabled_count];
}
});