Skip to content
Snippets Groups Projects
Commit 4dd22038 authored by Rob Adams's avatar Rob Adams
Browse files

Make web UI use new API

parent a6973147
No related branches found
No related tags found
No related merge requests found
......@@ -35,23 +35,19 @@ window.HostCollection = Backbone.Collection.extend({
var self = this;
console.log("fetching host list")
$.ajax({
url:hackBase + "/wm/devicemanager/device/all/json",
url:hackBase + "/wm/device/",
dataType:"json",
success:function (data) {
console.log("fetched host list: " + _.keys(data).length);
console.log("fetched host list: " + data.length);
// console.log(data);
// data is a hash where each key is a MAC address
_.each(_.keys(data), function(h) {
var d = data[h];
if (d['attachment-points'].length > 0) {
d.id = h;
d.seen = d['last-seen'];
d.swport = _.reduce(d['attachment-points'], function(memo, ap) {
return memo + ap.switch + "-" + ap.port + " "}, "")
d.ip = _.reduce(d['network-addresses'], function(memo, na) {return memo + na.ip + " "}, "")
// console.log(d);
self.add(d, {silent: true});
}
// data is a list of device hashes
_.each(data, function(h) {
if (h['attachmentPoint'].length > 0) {
h.swport = _.reduce(h['attachmentPoint'], function(memo, ap) {
return memo + ap.dpid + "-" + ap.port + " "}, "")
console.log(h.swport);
self.add(h, {silent: true});
}
});
self.trigger('add'); // batch redraws
}
......@@ -76,4 +72,4 @@ window.HostCollection = Backbone.Collection.extend({
}
*/
});
\ No newline at end of file
});
<td><a href="/host/<%= id %>"><%= id %></a></td><td><%= vlan %></td><td><%= ip %></td><td><%= swport %></td><td><%= seen %></td>
<td><a href="/host/<%= mac %>"><%= mac %></a></td><td><%= vlan %></td><td><%= ipv4 %></td><td><%= swport %></td><td><%= lastSeen %></td>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment