meshviewer/lib/main.js

182 lines
5.7 KiB
JavaScript
Raw Normal View History

define(['polyglot', 'moment', 'router', 'leaflet', 'gui', 'helper', 'language'],
function (Polyglot, moment, Router, L, GUI, helper, Language) {
'use strict';
2016-05-27 21:59:01 +00:00
return function (config) {
function handleData(data) {
var dataNodes = {};
dataNodes.nodes = [];
var dataGraph = {};
dataGraph.batadv = {};
dataGraph.batadv.nodes = [];
dataGraph.batadv.links = [];
function rearrangeLinks(d) {
d.source += dataGraph.batadv.nodes.length;
d.target += dataGraph.batadv.nodes.length;
}
2016-02-05 12:49:33 +00:00
for (var i = 0; i < data.length; ++i) {
var vererr;
if (i % 2) {
if (data[i].version !== 1) {
vererr = 'Unsupported graph version: ' + data[i].version;
console.error(vererr); // silent fail
} else {
data[i].batadv.links.forEach(rearrangeLinks);
dataGraph.batadv.nodes = dataGraph.batadv.nodes.concat(data[i].batadv.nodes);
dataGraph.batadv.links = dataGraph.batadv.links.concat(data[i].batadv.links);
dataGraph.timestamp = data[i].timestamp;
}
} else if (data[i].version !== 2) {
vererr = 'Unsupported nodes version: ' + data[i].version;
console.error(vererr); // silent fail
2016-02-05 12:49:33 +00:00
} else {
dataNodes.nodes = dataNodes.nodes.concat(data[i].nodes);
dataNodes.timestamp = data[i].timestamp;
2016-02-05 12:49:33 +00:00
}
}
2015-04-07 19:10:37 +00:00
var nodes = dataNodes.nodes.filter(function (d) {
return 'firstseen' in d && 'lastseen' in d;
});
2015-03-24 23:54:00 +00:00
nodes.forEach(function (node) {
node.firstseen = moment.utc(node.firstseen).local();
node.lastseen = moment.utc(node.lastseen).local();
});
2015-03-24 23:54:00 +00:00
var now = moment();
var age = moment(now).subtract(config.maxAge, 'days');
2015-03-24 23:54:00 +00:00
var newnodes = helper.limit('firstseen', age, helper.sortByKey('firstseen', nodes).filter(helper.online));
var lostnodes = helper.limit('lastseen', age, helper.sortByKey('lastseen', nodes).filter(helper.offline));
2015-03-24 23:54:00 +00:00
var graphnodes = {};
2015-07-30 17:20:16 +00:00
dataNodes.nodes.forEach(function (d) {
graphnodes[d.nodeinfo.node_id] = d;
});
2015-07-30 17:20:16 +00:00
var graph = dataGraph.batadv;
2015-03-24 23:54:00 +00:00
graph.nodes.forEach(function (d) {
if (d.node_id in graphnodes) {
d.node = graphnodes[d.node_id];
if (d.unseen) {
d.node.flags.online = true;
d.node.flags.unseen = true;
}
2016-03-05 11:38:43 +00:00
}
});
graph.links.forEach(function (d) {
d.source = graph.nodes[d.source];
if (graph.nodes[d.target].node) {
d.target = graph.nodes[d.target];
} else {
d.target = undefined;
}
});
var links = graph.links.filter(function (d) {
return d.target !== undefined;
});
2017-02-12 23:31:31 +00:00
nodes.forEach(function (d) {
d.neighbours = [];
});
links.forEach(function (d) {
var unknown = (d.source.node === undefined);
var ids;
2017-02-12 23:31:31 +00:00
if (unknown) {
2017-02-12 23:31:31 +00:00
d.target.node.neighbours.push({ id: d.source.id, link: d, incoming: true });
ids = [d.source.id.replace(/:/g, ''), d.target.node.nodeinfo.node_id];
} else {
2017-02-12 23:31:31 +00:00
ids = [d.source.node.nodeinfo.node_id, d.target.node.nodeinfo.node_id];
d.source.node.neighbours.push({ node: d.target.node, link: d, incoming: false });
d.target.node.neighbours.push({ node: d.source.node, link: d, incoming: true });
if (d.vpn) {
2017-02-12 23:31:31 +00:00
d.source.node.meshlinks = d.source.node.meshlinks ? d.source.node.meshlinks + 1 : 1;
}
}
2017-02-12 23:31:31 +00:00
d.id = ids.join('-');
2017-02-12 23:31:31 +00:00
try {
d.latlngs = [];
d.latlngs.push(L.latLng(d.source.node.nodeinfo.location.latitude, d.source.node.nodeinfo.location.longitude));
d.latlngs.push(L.latLng(d.target.node.nodeinfo.location.latitude, d.target.node.nodeinfo.location.longitude));
2017-02-12 23:31:31 +00:00
d.distance = d.latlngs[0].distanceTo(d.latlngs[1]);
} catch (e) {
// ignore exception
}
});
2017-02-12 23:31:31 +00:00
links.sort(function (a, b) {
return b.tq - a.tq;
});
return {
now: now,
timestamp: moment.utc(dataNodes.timestamp).local(),
nodes: {
all: nodes,
new: newnodes,
lost: lostnodes
},
graph: {
links: links,
nodes: graph.nodes
}
};
}
2016-05-26 16:37:24 +00:00
var language = new Language(config);
var router = new Router();
var urls = [];
if (typeof config.dataPath === 'string' || config.dataPath instanceof String) {
config.dataPath = [config.dataPath];
}
for (var i in config.dataPath) {
urls.push(config.dataPath[i] + 'nodes.json');
urls.push(config.dataPath[i] + 'graph.json');
}
function update() {
2016-05-26 16:37:24 +00:00
return Promise.all(urls.map(helper.getJSON))
.then(handleData);
}
update()
.then(function (d) {
var gui = new GUI(config, router, language);
gui.setData(d);
router.setData(d);
router.start();
window.setInterval(function () {
update().then(function (n) {
gui.setData(n);
router.setData(n);
router.update();
});
}, 60000);
})
.catch(function (e) {
2017-03-18 17:53:59 +00:00
document.querySelector('.loader').innerHTML += e.message
+ '<br /><br /><button onclick="location.reload(true)" class="btn text">Try to reload</button><br /> or report to your community';
2016-05-26 16:37:24 +00:00
console.warn(e);
});
};
});