mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 08:50:12 +00:00
175 lines
5.3 KiB
JavaScript
175 lines
5.3 KiB
JavaScript
$(function () {
|
|
|
|
const red_marker = L.icon({
|
|
iconUrl: `${http_prefix}/leaflet/images/marker-icon-red.png`,
|
|
shadowUrl: '${http_prefix}/leaflet/images/marker-shadow.png',
|
|
iconSize: [25, 41],
|
|
popupAnchor: [1, -34],
|
|
tooltipAnchor: [16, -28]
|
|
});
|
|
|
|
const info_key_names = {
|
|
"score": i18n.score,
|
|
"asname": i18n.as,
|
|
"html": i18n.nation,
|
|
"active_alerted_flows": i18n.alerted_flows,
|
|
"num_blacklisted_flows": i18n.blacklisted_flows,
|
|
"bytes.sent": i18n.traffic_sent,
|
|
"bytes.rcvd": i18n.traffic_rcvd,
|
|
"total_flows": i18n.flows,
|
|
};
|
|
|
|
const formatters = {
|
|
"bytes.sent": NtopUtils.bytesToSize,
|
|
"bytes.rcvd": NtopUtils.bytesToSize,
|
|
}
|
|
|
|
const default_coords = [41.9, 12.4833333];
|
|
const zoom_level = 4;
|
|
|
|
// initialize alert api
|
|
$('#geomap-alert').alert();
|
|
|
|
const create_marker = (h) => {
|
|
const settings = { title: h.name };
|
|
if (h.isRoot) settings.icon = red_marker;
|
|
|
|
const ip = h.ip
|
|
const lat = h.lat;
|
|
const lng = h.lng;
|
|
const name = h.name;
|
|
let name_ip = ip;
|
|
let extra_info = '';
|
|
|
|
h.ip = null;
|
|
h.lat = null;
|
|
h.lng = null;
|
|
h.name = null;
|
|
h.isRoot = null;
|
|
|
|
// Formatting the extra info to print into the Geo Map
|
|
for (const key in h) {
|
|
if(formatters[key])
|
|
h[key] = formatters[key](h[key])
|
|
|
|
if(h[key] && info_key_names[key])
|
|
extra_info = extra_info + info_key_names[key] + ": <b>" + h[key] + "</b></br>";
|
|
}
|
|
|
|
if(name)
|
|
name_ip = name + "</br>" + name_ip;
|
|
|
|
return L.marker(L.latLng(lat, lng), settings).bindPopup(`
|
|
<div class='infowin'>
|
|
<a href='${http_prefix}/lua/host_details.lua?host=${ip}'>${name_ip}</a>
|
|
<hr>
|
|
${extra_info}
|
|
</div>
|
|
`);
|
|
}
|
|
|
|
// return true if the status code is different from 200
|
|
const check_status_code = (status_code, status_text, $error_label) => {
|
|
|
|
const is_different = (status_code != 200);
|
|
|
|
if (is_different && $error_label != null) {
|
|
$error_label.find('p').text(`${i18n.request_failed_message}: ${status_code} - ${status_text}`).show();
|
|
}
|
|
else if (is_different && $error_label == null) {
|
|
alert(`${i18n.request_failed_message}: ${status_code} - ${status_text}`);
|
|
}
|
|
|
|
return is_different;
|
|
}
|
|
|
|
const display_errors = (errors) => {
|
|
const error_messages = {
|
|
1: 'Permission denied',
|
|
2: 'Position unavailable',
|
|
3: 'Request timeout'
|
|
};
|
|
const error_code = error_messages[errors.code];
|
|
|
|
show_positions({ coords: { latitude: 0, longitude: 0 }});
|
|
|
|
if (errors.code != 1) {
|
|
display_localized_error(error_code);
|
|
}
|
|
}
|
|
|
|
const init_map = () => {
|
|
|
|
if (navigator.geolocation) {
|
|
navigator.geolocation.getCurrentPosition(show_positions, display_errors,
|
|
{
|
|
enableHighAccuracy: true,
|
|
timeout: 10000,
|
|
maximumAge: 0
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
const draw_markers = (hosts, map_markers, map) => {
|
|
|
|
hosts.forEach(h => {
|
|
|
|
map_markers.addLayer(
|
|
create_marker(h)
|
|
);
|
|
|
|
// make a transitions to the root host
|
|
if (h.isRoot) {
|
|
map.flyTo([h.lat, h.lng], zoom_level);
|
|
}
|
|
});
|
|
|
|
map.addLayer(map_markers);
|
|
}
|
|
|
|
const show_positions = (current_user_position) => {
|
|
|
|
// these are two map providers provided by: https://leaflet-extras.github.io/leaflet-providers/preview/
|
|
const layers = {
|
|
light: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
|
|
// dark: "https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png"
|
|
};
|
|
// select the right layer
|
|
const layer = layers.light;
|
|
const user_coords = [current_user_position.coords.latitude, current_user_position.coords.longitude];
|
|
|
|
if (user_coords[0] == 0 && user_coords[1] == 0) {
|
|
/* Do not even report the info/error to the user, this is
|
|
* not relevant as the map functionality is not impacted */
|
|
//display_localized_no_geolocation_msg();
|
|
console.log("Geolocation unavailable, using default location");
|
|
|
|
user_coords[0] = default_coords[0], user_coords[1] = default_coords[1];
|
|
}
|
|
|
|
const hosts_map = L.map('map-canvas').setView(user_coords || default_coords, zoom_level);
|
|
const map_markers = L.markerClusterGroup({
|
|
maxClusterRadius: 100,
|
|
spiderLegPolylineOptions: {
|
|
opacity: 0
|
|
}
|
|
});
|
|
|
|
L.tileLayer(layer, {
|
|
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
}).addTo(hosts_map);
|
|
|
|
$.get(`${http_prefix}/lua/get_geo_hosts.lua?${zoomIP || ''}`)
|
|
.then((data) => {
|
|
draw_markers(data, map_markers, hosts_map);
|
|
})
|
|
.fail(({ status, statusText }) => {
|
|
NtopUtils.check_status_code(status, statusText, $("#geomap-alert"));
|
|
});
|
|
|
|
}
|
|
|
|
init_map();
|
|
|
|
});
|