ntopng/scripts/lua/get_geo_hosts.lua
2021-01-02 12:08:23 +01:00

225 lines
5.5 KiB
Lua

--
-- (C) 2013-21 - ntop.org
--
local dirs = ntop.getDirs()
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
require "lua_utils"
local json = require("dkjson")
sendHTTPHeader('application/json')
interface.select(ifname)
local response = {}
local host_key = _GET["host"] or ""
local host_info = url2hostinfo(_GET)
local MAX_HOSTS = 100
local function is_localizable(host)
return host and host["ip"] and not host["privatehost"] and not host["is_multicast"] and not host["is_broadcast"] and not isBroadMulticast(host["ip"])
end
local function get_max_bytes_from_peers(peers)
local max = 0
for key, value in pairs(peers) do
if (value["bytes"] > max) then
max = value["bytes"]
end
end
return max
end
local function load_hosts()
local hosts = {}
if (host_info["host"] == nil) then
local hosts_stats = interface.getHostsInfo(true, "column_traffic", MAX_HOSTS)
hosts_stats = hosts_stats["hosts"]
for host_ip, host in pairs(hosts_stats) do
if is_localizable(host) then
local res = {
lat = host["latitude"],
lng = host["longitude"],
name = host_ip,
html = getFlag(host["country"])
}
if not isEmptyString(host["city"]) then
host["city"] = host["city"]
end
table.insert(hosts, res)
end
end
end
return hosts
end
-- BEGIN OLD CODE
local function load_flows(hosts_count, host_key)
local flows = {}
local peers = getTopFlowPeers(hostinfo2hostkey(host_info), MAX_HOSTS - hosts_count, nil, {detailsLevel="max"})
local max_bytes = get_max_bytes_from_peers(peers)
local min_threshold = 0
for key, value in pairs(peers) do
local flow = {}
local bytes = value["bytes"]
local percentage = (bytes * 100) / max_bytes
local client = {
lat = value["cli.latitude"],
lng = value["cli.longitude"]
}
local is_public = (not(value["cli.private"] and value["srv.private"]) and
not(isBroadMulticast(value["cli.ip"])) and
not(isBroadMulticast(value["srv.ip"])))
if not is_public then goto continue end
if (percentage >= min_threshold) and (client.lat ~= nil) and (client.lng ~= nil) then
-- set up the client informations
-- if the client is private then disable his rendering
client["isDrawable"] = not(value["cli.private"])
-- check if the client is the root
client["isRoot"] = (value["cli.ip"] == host_key);
if not isEmptyString(value["cli.city"]) then
client["city"] = value["cli.city"]
end
client["html"] = getFlag(value["cli.country"])
client["name"] = hostinfo2hostkey(value, "cli")
-- set up the server informations
local server = {
lat = value["srv.latitude"],
lng = value["srv.longitude"],
isDrawable = not(value["srv.private"]),
isRoot = (value["srv.ip"] == host_key),
html = getFlag(value["srv.country"]),
name = hostinfo2hostkey(value, "srv")
}
if not isEmptyString(value["srv.city"]) then
server["city"] = value["srv.city"]
end
flow["client"] = client
flow["server"] = server
flow["flow"] = percentage
flow["html"] = hostinfo2hostkey(value, "cli").." -> "..hostinfo2hostkey(value, "srv")
end
table.insert(flows, flow)
::continue::
end
return flows
end
-- Initialize host array object
-- response["hosts"] = load_hosts()
-- response["flows"] = load_flows(table.len(response["hosts"]), host_key)
-- print(json.encode(response))
-- END OLD CODE
-- ############################################################
local function handlePeer(prefix, host_key, value)
if((value[prefix..".latitude"] ~= 0) or (value[prefix..".longitude"] ~= 0)) then
-- set up the host informations
local host = {
lat = value[prefix..".latitude"],
lng = value[prefix..".longitude"],
-- isDrawable = not(value[prefix..".private"]),
isRoot = (value[prefix..".ip"] == host_key),
html = getFlag(value[prefix..".country"]),
name = hostinfo2hostkey(value, prefix)
}
if not isEmptyString(value[prefix..".city"]) then
host["city"] = value[prefix..".city"]
end
return(host)
end
return(nil)
end
local function handleHost(address, value)
if((value["latitude"] ~= 0) or (value["longitude"] ~= 0)) then
-- set up the host informations
local host = {
lat = value["latitude"],
lng = value["longitude"],
isRoot = false,
html = getFlag(value["country"]),
name = address
}
if not isEmptyString(value["city"]) then
host["city"] = value["city"]
end
return(host)
end
return(nil)
end
-- ##############
local function show_hosts(hosts_count, host_key)
local hosts = {}
if((host_key == nil) or (host_key == "")) then
local what = interface.getHostsInfo(true, "column_traffic", MAX_HOSTS)
for key,value in pairs(what.hosts) do
local h = handleHost(key, value)
if(h ~= nil) then table.insert(hosts, h) end
end
else
local what = getTopFlowPeers(hostinfo2hostkey(host_info), MAX_HOSTS - hosts_count, nil, {detailsLevel="max"})
local keys = {}
for key, value in pairs(what) do
if(keys[value["cli.ip"]] == nil) then
local h = handlePeer("cli", host_key, value)
keys[value["cli.ip"]] = true
if(h ~= nil) then table.insert(hosts, h) end
end
if(keys[value["srv.ip"]] == nil) then
local h = handlePeer("srv", host_key, value)
keys[value["srv.ip"]] = true
if(h ~= nil) then table.insert(hosts, h) end
end
end
end
return(hosts)
end
print(json.encode(show_hosts(table.len(response["hosts"]), host_key)))