ntopng/scripts/lua/unknown_devices.lua
2023-01-01 16:37:57 +01:00

203 lines
6.3 KiB
Lua

--
-- (C) 2013-23 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
package.path = dirs.installdir .. "/scripts/lua/modules/pools/?.lua;" .. package.path
require "lua_utils"
local ui_utils = require "ui_utils"
local graph_utils = require "graph_utils"
local template = require "template_utils"
local host_pools = require "host_pools"
interface.select(ifname)
local ifstats = interface.getStats()
-- Instantiate host pools
local host_pools_instance = host_pools:create()
local base_url = ntop.getHttpPrefix().."/lua/if_stats.lua"
local page_params = {}
page_params.ifid = ifstats.id
page_params.page = "pools"
local devices_mode_filter = ""
if not isEmptyString(_GET["unassigned_devices"]) then
page_params.unassigned_devices = _GET["unassigned_devices"]
devices_mode_filter = '<span class="fas fa-filter"></span>'
end
if isAdministrator() and (_POST["member"] ~= nil) and (_POST["pool"] ~= nil) then
-- change member pool
host_pools_instance:bind_member(_POST["member"], _POST["pool"])
end
print("<h3>"..i18n("unknown_devices.unassigned_devices").." <small><a title='".. i18n("host_pools.manage_pools") .."' href='".. ntop.getHttpPrefix() .."/lua/admin/manage_pools.lua'><i class='fas fa-cog'></i></a></small></h3>")
print(
template.gen("modal_confirm_dialog.html", {
dialog={
id = "assign_device_dialog",
action = "assignDevicePool(mac_to_assign)",
title = i18n("unknown_devices.assign_device_pool"),
message = i18n("unknown_devices.select_pool", {mac="<span id=\"assign_device_dialog_mac\"></span>"}) ..
'<br><br><select class="form-select" id="device_target_pool" style="width:15em;" >'..
graph_utils.poolDropdown(ifstats.id, "")..
'</select>',
custom_alert_class = "",
confirm = i18n("unknown_devices.assign_pool"),
}
})
)
local pools = host_pools_instance:get_num_pools()
local no_pools = (pools < 2)
local notes = {
{content = i18n("unknown_devices.no_pools"), hidden = not no_pools},
{content = i18n("unknown_devices.devices_only_note")},
}
print [[
<br>
<div id="table-mac"></div>]]
print(ui_utils.render_notes(notes))
print[[
<script>
function assignDevicePool(mac_address) {
var params = {};
params.pool = $("#device_target_pool").val();
params.member = mac_address;
params.csrf = "]] print(ntop.getRandomCSRFValue()) print[[";
NtopUtils.paramsToForm('<form method="post"></form>', params).appendTo('body').submit();
}
var url_update = "]]
print(getPageUrl(ntop.getHttpPrefix().."/lua/get_unknown_devices_data.lua", page_params))
print ('";')
print [[
$("#table-mac").datatable({
title: "Mac List",
url: url_update ,
]]
print('title: "",\n')
-- Set the preference table
preference = tablePreferences("rows_number",_GET["perPage"])
if (preference ~= "") then print ('perPage: '..preference.. ",\n") end
-- Automatic default sorted. NB: the column must exist.
print ('sort: [ ["' .. getDefaultTableSort("unknown_devices") ..'","' .. getDefaultTableSortOrder("unknown_devices").. '"] ],')
print('buttons: [')
-- table.clone needed to modify some parameters while keeping the original unchanged
local devices_mode = table.clone(page_params)
print('\'<div class="btn-group float-right"><button class="btn btn-link dropdown-toggle" data-bs-toggle="dropdown">'..i18n("unknown_devices.filter_devices")..devices_mode_filter..'<span class="caret"></span></button> <ul class="dropdown-menu scrollable-dropdown" role="menu" style="min-width: 90px;">')
devices_mode.unassigned_devices = nil
print ('<li class="nav-item"><a class="dropdown-item" href="')
print (getPageUrl(base_url, devices_mode))
print ('#unassigned">'..i18n("unknown_devices.all_devices")..'</a></li>')
devices_mode.unassigned_devices = "active_only"
print('<li>')
print('<a class="dropdown-item ')
if page_params.unassigned_devices == devices_mode.unassigned_devices then print('active') end
print('" href="')
print (getPageUrl(base_url, devices_mode))
print ('#unassigned">'..i18n("unknown_devices.active_only")..'</a></li>')
devices_mode.unassigned_devices = "inactive_only"
print('<li>')
print('<a class="dropdown-item ')
if page_params.unassigned_devices == devices_mode.unassigned_devices then print('active') end
print('" href="')
print (getPageUrl(base_url, devices_mode))
print ('#unassigned">'..i18n("unknown_devices.inactive_only")..'</a></li>')
print('</ul></div>\'')
print(" ],")
print [[
showPagination: true,
columns: [
{
field: "key",
hidden: true,
}, {
title: "]] print(i18n("mac_address")) print[[",
field: "column_mac",
sortable: true,
css: {
textAlign: 'left'
}
}, {
title: "]] print(i18n("mac_stats.manufacturer")) print[[",
field: "column_manufacturer",
hidden: true,
sortable: false,
css: {
textAlign: 'left'
}
}, {
title: "]] print(i18n("unknown_devices.device_name")) print[[",
field: "column_name",
sortable: true,
css: {
textAlign: 'left'
}
}, {
title: "]] print(i18n("unknown_devices.first_seen")) print[[",
field: "column_first_seen",
sortable: true,
css: {
textAlign: 'left'
}
}, {
title: "]] print(i18n("unknown_devices.last_seen")) print[[",
field: "column_last_seen",
sortable: true,
css: {
textAlign: 'left'
}
}, {
title: "]] print(i18n("actions")) print[[",
]]
if no_pools then
print("hidden:true, ")
end
print[[
sortable: false,
css: {
textAlign: 'center'
}
}
], tableCallback: function() {
datatableForEachRow("#table-mac", function() {
var device_mac = $("td:nth-child(1)", $(this)).html();
]]
if isAdministrator() then
print[[
datatableAddActionButtonCallback.bind(this)(7, "mac_to_assign ='" + device_mac + "'; $('#assign_device_dialog_mac').html('" + device_mac +"'); $('#assign_device_dialog').modal('show');", "<i class='fas fa-ring'></i>");]]
end
print[[
});
},
});
</script>
]]