vpnmanager/static/js/devices.js

106 lines
3.2 KiB
JavaScript
Raw Normal View History

2018-11-28 15:38:35 +00:00
function timeSince(obj) {
last = new Date(Number(obj));
2019-01-13 16:28:52 +00:00
var seconds = Math.floor((new Date() - last) / 1000);
interval = Math.floor(seconds / 3600);
out = "";
2018-11-28 15:38:35 +00:00
2019-01-16 12:26:35 +00:00
if (interval > 24) return "at " + last.toUTCString().substr(4);
2019-01-13 16:28:52 +00:00
if (interval > 1) out = interval + " hours ";
2018-11-28 15:38:35 +00:00
2019-01-13 16:28:52 +00:00
interval = Math.floor(seconds / 60);
2018-11-28 15:38:35 +00:00
2019-01-13 16:28:52 +00:00
if (seconds < 120) out = seconds + " seconds "
else if (interval > 1 && interval < 120) out = out + interval + " minutes ";
2018-11-28 15:38:35 +00:00
return out + "ago";
2018-11-28 15:38:35 +00:00
}
function styleStatus(msg, device) {
device_status = $("#" + device + "-indicator");
device_ip = $("#" + device + "-ip");
device_network = $("#" + device + "-network");
device_name = $("#" + device + "-name");
device_id = $("#" + device + "-id");
2018-11-28 15:38:35 +00:00
2019-01-13 17:14:15 +00:00
device_status.css("color", msg.status == 1 ? "green" : (msg.status == 2 ? "yellow" : (msg.status == 0 ? "red" : "grey")));
2019-01-13 17:28:59 +00:00
device_status.prop("title", msg.status == 1 ? "Online and in VPN mode" : (msg.status == 2 ? "Online and in local mode" : (msg.status == 0 ? "Offline" : "No information available")));
2018-11-28 15:38:35 +00:00
if (msg.hasOwnProperty("ip")) {
device_ip.text(msg.ip + (msg.status == 1 ? "" :" (" + timeSince(msg.time) + ")"));
};
if (msg.hasOwnProperty("network")) {
device_network.text(msg.network.intip + (msg.network.name ? (" (" + msg.network.name + ")") : ""));
};
if (msg.hasOwnProperty("reboot")) {
device_id.css("font-style", msg.reboot == 1 ? "italic" : "normal")
};
2018-12-26 01:24:36 +00:00
if (msg.hasOwnProperty("update")) {
device_id.css("font-weight", msg.update == 1 ? "bold" : "normal")
};
if (msg.hasOwnProperty("name")) {
device_name.text(msg.name);
};
2018-11-28 15:38:35 +00:00
};
function updateStatus(device_id) {
$.getJSON( "/devices/" + device_id + "/ping/", function(json) { styleStatus(json, device_id); });
};
function askdelete(device_id) {
if (confirm("Are you sure you want to delete this device?")) window.location.href = "/devices/" + device_id + "/delete";
};
2019-01-06 18:15:13 +00:00
function askdeletewifi(wifi_id) {
if (confirm("Are you sure you want to delete this WiFi?")) window.location.href = "/wifi/" + wifi_id + "/delete";
};
function askreboot(device_id) {
if (confirm("Are you sure you want to reboot this device?")) window.location.href = "/devices/" + device_id + "/reboot";
};
function downloadnotice() {
alert("Your file is being prepared. This will take a minute, please be patient and do not leave this page. The download will start automatically.");
};
function showdevices() {
$("#devicespart").show();
$("#wifipart").hide();
2019-01-13 12:55:53 +00:00
$("#userpart").hide();
$("#linkdevices").css("font-weight", "bold");
$("#linkwifi").css("font-weight", "normal");
$("#linkusers").css("font-weight", "normal");
};
function showwifi() {
$("#devicespart").hide();
$("#wifipart").show();
2019-01-13 12:55:53 +00:00
$("#userpart").hide();
$("#linkdevices").css("font-weight", "normal");
$("#linkwifi").css("font-weight", "bold");
$("#linkusers").css("font-weight", "normal");
2019-01-13 12:55:53 +00:00
};
function showusers() {
2019-01-13 16:28:52 +00:00
$("#devicespart").hide();
$("#wifipart").hide();
$("#userpart").show();
$("#linkdevices").css("font-weight", "normal");
$("#linkwifi").css("font-weight", "normal");
$("#linkusers").css("font-weight", "bold");
};
2019-01-13 16:28:52 +00:00
showdevices();
$("div[id$='-indicator']").each(function() {
device_id = this.id.split("-")[0];
updateStatus(device_id);
setInterval(updateStatus, 10000, device_id);
});