mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-03 01:10:10 +00:00
323 lines
11 KiB
JavaScript
323 lines
11 KiB
JavaScript
$(function () {
|
|
|
|
const MAX_ENDPOINTS_COUNT = 10;
|
|
const COLUMN_INDEX_ENDPOINT_TYPE = 1;
|
|
|
|
const getTypesCount = (configs) => {
|
|
|
|
const currentTypesCount = {};
|
|
for (let i = 0; i < configs.length; i++) {
|
|
|
|
const config = configs[i];
|
|
if (!currentTypesCount[config.endpoint_key]) {
|
|
currentTypesCount[config.endpoint_key] = 1;
|
|
}
|
|
else {
|
|
currentTypesCount[config.endpoint_key]++;
|
|
}
|
|
}
|
|
|
|
return currentTypesCount;
|
|
}
|
|
|
|
const disableTypes = (configs) => {
|
|
|
|
// count the current types inside the datatable
|
|
const currentTypesCount = getTypesCount(configs);
|
|
for (let [key, max] of Object.entries(endpoints_info)) {
|
|
if (max != -1 && currentTypesCount[key] >= max) {
|
|
$(`#endpoint-type-select option[value='${key}']`).hide();
|
|
}
|
|
else {
|
|
$(`#endpoint-type-select option[value='${key}']`).show();
|
|
}
|
|
}
|
|
}
|
|
|
|
const makeFormData = (formSelector) => {
|
|
|
|
const $inputsTemplate = $(`${formSelector} .endpoint-template-container [name]`);
|
|
|
|
const params = {
|
|
endpoint_id: $(`${formSelector} [name='endpoint_id']`).val(),
|
|
endpoint_conf_name: $(`${formSelector} [name='name']`).val(),
|
|
endpoint_conf_type: $(`${formSelector} [name='type']`).val(),
|
|
};
|
|
|
|
$inputsTemplate.each(function (i, input) {
|
|
params[$(this).attr('name')] = $(this).val().trim();
|
|
});
|
|
|
|
return params;
|
|
}
|
|
|
|
const createTemplateOnSelect = (formSelector) => {
|
|
|
|
const $templateContainer = $(`${formSelector} .endpoint-template-container`);
|
|
$(`${formSelector} select[name='type']`).change(function (e) {
|
|
const $cloned = cloneTemplate($(this).val());
|
|
$templateContainer.empty().append($cloned).fadeIn();
|
|
});
|
|
}
|
|
|
|
const cloneTemplate = (endpointType) => {
|
|
return $($(`template#${endpointType}-template`).html());
|
|
}
|
|
|
|
let dtConfig = DataTableUtils.getStdDatatableConfig([
|
|
{
|
|
text: '<i class="fas fa-plus"></i>',
|
|
className: 'btn-link',
|
|
action: function (e, dt, node, config) {
|
|
$('#add-endpoint-modal').modal('show');
|
|
}
|
|
},
|
|
{
|
|
text: '<i class="fas fa-sync"></i>',
|
|
className: 'btn-link',
|
|
action: function (e, dt, node, config) {
|
|
$endpointsTable.ajax.reload();
|
|
}
|
|
}
|
|
]);
|
|
dtConfig = DataTableUtils.setAjaxConfig(dtConfig, `${http_prefix}/lua/get_endpoint_configs.lua`);
|
|
dtConfig = DataTableUtils.extendConfig(dtConfig, {
|
|
columns: [
|
|
{
|
|
data: 'endpoint_conf_name'
|
|
},
|
|
{
|
|
data: 'endpoint_key',
|
|
render: function (key, type, endpoint) {
|
|
if (type == "display") {
|
|
|
|
let badge = '';
|
|
const isBuiltin = endpoint.endpoint_conf.builtin || false;
|
|
|
|
if (isBuiltin) {
|
|
badge = ` <span class='badge bg-dark'>built-in</span>`;
|
|
}
|
|
|
|
return `${i18n.endpoint_types[key]}${badge}`;
|
|
}
|
|
return key;
|
|
}
|
|
},
|
|
{
|
|
data: 'recipients',
|
|
render: (recipients, type) => {
|
|
if (type == "display")
|
|
return NtopUtils.arrayToListString(recipients.map(recipient => {
|
|
|
|
const destPage = NtopUtils.buildURL('/lua/admin/recipients_list.lua', {
|
|
recipient_id: recipient.recipient_id,
|
|
});
|
|
|
|
return `<a href='${destPage}'>${recipient.recipient_name}</a>`
|
|
}), MAX_ENDPOINTS_COUNT);
|
|
return recipients;
|
|
}
|
|
},
|
|
{
|
|
targets: -1,
|
|
className: 'text-center',
|
|
data: null,
|
|
render: (_, type, endpoint) => {
|
|
|
|
const isBuiltin = endpoint.endpoint_conf.builtin || false;
|
|
|
|
return DataTableUtils.createActionButtons([
|
|
{class: `btn-info ${isBuiltin ? 'disabled' : ''}`, icon: 'fa-edit', modal: '#edit-endpoint-modal' },
|
|
{class: `btn-danger ${isBuiltin ? 'disabled' : ''}`, icon: 'fa-trash', modal: '#remove-endpoint-modal'},
|
|
]);
|
|
}
|
|
}
|
|
],
|
|
initComplete: function (settings) {
|
|
|
|
const tableAPI = settings.oInstance.api();
|
|
disableTypes(tableAPI.rows().data());
|
|
|
|
// when the data has been fetched check if the url has a recipient_id param
|
|
// if the recipient is builtin then cancel the modal opening
|
|
DataTableUtils.openEditModalByQuery({
|
|
paramName: 'endpoint_conf_name',
|
|
datatableInstance: tableAPI,
|
|
modalHandler: $editEndpointModal,
|
|
cancelIf: (endpoint) => endpoint.endpoint_conf.builtin,
|
|
});
|
|
|
|
}
|
|
});
|
|
|
|
const $endpointsTable = $(`table#notification-list`).DataTable(dtConfig);
|
|
DataTableUtils.addToggleColumnsDropdown($endpointsTable);
|
|
|
|
const endpointTypeFilterMenu = new DataTableFiltersMenu({
|
|
filterTitle: i18n.endpoint_type,
|
|
filters: endpointTypeFilters,
|
|
columnIndex: COLUMN_INDEX_ENDPOINT_TYPE,
|
|
tableAPI: $endpointsTable,
|
|
filterMenuKey: 'endpoint-type'
|
|
}).init();
|
|
|
|
/* bind add endpoint event */
|
|
$(`#add-endpoint-modal form`).modalHandler({
|
|
method: 'post',
|
|
endpoint: `${http_prefix}/lua/edit_endpoint.lua`,
|
|
csrf: csrf,
|
|
resetAfterSubmit: false,
|
|
beforeSumbit: () => {
|
|
|
|
$(`#add-endpoint-modal form button[type='submit']`).click(function () {
|
|
$(`#add-endpoint-modal form span.invalid-feedback`).hide();
|
|
});
|
|
|
|
const body = makeFormData(`#add-endpoint-modal form`);
|
|
body.action = 'add';
|
|
|
|
return body;
|
|
},
|
|
onModalInit: () => {
|
|
createTemplateOnSelect(`#add-endpoint-modal`);
|
|
},
|
|
onModalShow: () => {
|
|
// trigger a change event to the select so the template will be loaded
|
|
$(`#add-endpoint-modal select[name='type']`).trigger('change');
|
|
},
|
|
onSubmitSuccess: (response) => {
|
|
|
|
if (response.result.status == "OK") {
|
|
|
|
$(`#add-endpoint-modal`).modal('hide');
|
|
$(`#add-endpoint-modal form .endpoint-template-container`).hide();
|
|
|
|
$endpointsTable.ajax.reload(function (data) {
|
|
// disable endpoint type if a endpoint reached its max num config
|
|
disableTypes(data);
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (response.result.error) {
|
|
const localizedString = i18n[response.result.error.type];
|
|
$(`#add-endpoint-modal form .invalid-feedback`).text(localizedString).show();
|
|
}
|
|
|
|
}
|
|
}).invokeModalInit();
|
|
|
|
const $editEndpointModal = $('#edit-endpoint-modal form').modalHandler({
|
|
method: 'post',
|
|
csrf: csrf,
|
|
endpoint: `${http_prefix}/lua/edit_endpoint.lua`,
|
|
beforeSumbit: function () {
|
|
const body = makeFormData(`#edit-endpoint-modal form`);
|
|
body.action = 'edit';
|
|
return body;
|
|
},
|
|
onModalInit: function (data) {
|
|
/* load the right template from templates */
|
|
$(`#edit-endpoint-modal form .endpoint-template-container`)
|
|
.empty().append(cloneTemplate(data.endpoint_key));
|
|
$(`#endpoint-type`).html(data.endpoint_conf_name);
|
|
/* load the values inside the template */
|
|
$(`#edit-endpoint-modal form [name='name']`).val(data.endpoint_conf_name);
|
|
$(`#edit-endpoint-modal form [name='endpoint_id']`).val(data.endpoint_id);
|
|
$(`#edit-endpoint-modal form .endpoint-template-container [name]`).each(function (i, input) {
|
|
$(this).val(data.endpoint_conf[$(this).attr('name')]);
|
|
});
|
|
},
|
|
onSubmitSuccess: function (response) {
|
|
if (response.result.status == "OK") {
|
|
$(`#edit-endpoint-modal`).modal('hide');
|
|
$endpointsTable.ajax.reload();
|
|
}
|
|
}
|
|
});
|
|
|
|
const $removeEndpointModal = $(`#remove-endpoint-modal form`).modalHandler({
|
|
method: 'post',
|
|
csrf: csrf,
|
|
dontDisableSubmit: true,
|
|
endpoint: `${http_prefix}/lua/edit_endpoint.lua`,
|
|
beforeSumbit: (endpoint) => {
|
|
return {
|
|
action: 'remove',
|
|
endpoint_id: endpoint.endpoint_id
|
|
};
|
|
},
|
|
onModalInit: (endpoint) => {
|
|
|
|
// count recipients that are not builtins
|
|
const recipientsCount = endpoint.recipients.filter(recipient => !recipient.endpoint_conf.builtin).length;
|
|
if (recipientsCount > 0) {
|
|
$(`.count`).show();
|
|
$(`.recipients-count`).html(recipientsCount);
|
|
}
|
|
else {
|
|
$(`.count`).hide();
|
|
}
|
|
|
|
$(`.remove-endpoint-name`).text(endpoint.endpoint_conf_name);
|
|
},
|
|
onSubmitSuccess: (response) => {
|
|
if (response.result.status == "OK") {
|
|
$(`#remove-endpoint-modal`).modal('hide');
|
|
$endpointsTable.ajax.reload(function (data) {
|
|
// re-enable endpoint type
|
|
disableTypes(data);
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
/* bind edit endpoint event */
|
|
$(`table#notification-list`).on('click', `a[href='#edit-endpoint-modal']`, function (e) {
|
|
|
|
const endpointSelected = $endpointsTable.row($(this).parent().parent()).data();
|
|
|
|
// prevent the deleting of a builtin element
|
|
if (endpointSelected.endpoint_conf.builtin) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
$editEndpointModal.invokeModalInit(endpointSelected);
|
|
});
|
|
|
|
/* bind remove endpoint event */
|
|
$(`table#notification-list`).on('click', `a[href='#remove-endpoint-modal']`, function (e) {
|
|
|
|
const endpointSelected = $endpointsTable.row($(this).parent().parent()).data();
|
|
|
|
// prevent the deleting of a builtin element
|
|
if (endpointSelected.endpoint_conf.builtin) {
|
|
e.preventDefault();
|
|
return;
|
|
}
|
|
|
|
$removeEndpointModal.invokeModalInit(endpointSelected);
|
|
});
|
|
|
|
$(`#btn-factory-reset`).click(async function(event) {
|
|
|
|
try {
|
|
|
|
const response = await NtopUtils.fetchWithTimeout(`${http_prefix}/lua/rest/v2/delete/endpoints.lua`);
|
|
const result = await response.json();
|
|
if (result.rc == 0) {
|
|
$endpointsTable.ajax.reload();
|
|
$(`#factory-reset-modal`).modal('hide');
|
|
}
|
|
}
|
|
catch (error) {
|
|
|
|
if (error.message == "Response timed out") {
|
|
$(`#factory-reset-modal .invalid-feedback`).html(i18n.timed_out);
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
|
|
});
|