open-consul/ui/javascripts/app/routes.js

234 lines
6.4 KiB
JavaScript
Raw Normal View History

2014-04-23 22:51:06 +00:00
//
// Superclass to be used by all of the main routes below. All routes
// but the IndexRoute share the need to have a datacenter set.
//
//
2014-04-23 18:01:42 +00:00
App.BaseRoute = Ember.Route.extend({
2014-04-29 17:06:26 +00:00
actions: {
// Used to link to keys that are not objects,
// like parents and grandParents
2014-04-29 17:06:26 +00:00
linkToKey: function(key) {
key = key.replace(/\//g, "-")
if (key.slice(-1) === "-") {
this.transitionTo('kv.show', key)
} else {
this.transitionTo('kv.edit', key)
}
}
}
2014-04-21 20:36:50 +00:00
});
2014-04-23 22:51:06 +00:00
//
// The route for choosing datacenters, typically the first route loaded.
//
App.IndexRoute = App.BaseRoute.extend({
// Retrieve the list of datacenters
2014-04-30 18:02:20 +00:00
model: function(params) {
return Ember.$.getJSON('/v1/catalog/datacenters').then(function(data) {
return data
})
2014-04-27 14:42:21 +00:00
},
2014-04-30 20:30:14 +00:00
afterModel: function(model, transition) {
// If we only have one datacenter, jump
// straight to it and bypass the global
// view
2014-04-30 20:30:14 +00:00
if (model.get('length') === 1) {
this.transitionTo('services', model[0]);
2014-04-23 18:01:42 +00:00
}
}
});
// The parent route for all resources. This keeps the top bar
// functioning, as well as the per-dc requests.
2014-04-25 17:49:36 +00:00
App.DcRoute = App.BaseRoute.extend({
model: function(params) {
// Return a promise hash to retreieve the
// dcs and nodes used in the header
2014-04-30 20:30:14 +00:00
return Ember.RSVP.hash({
dc: params.dc,
dcs: Ember.$.getJSON('/v1/catalog/datacenters'),
nodes: Ember.$.getJSON('/v1/internal/ui/nodes').then(function(data) {
objs = [];
2014-04-30 18:02:20 +00:00
// Merge the nodes into a list and create objects out of them
2014-04-30 20:30:14 +00:00
data.map(function(obj){
objs.push(App.Node.create(obj));
});
2014-04-25 20:24:36 +00:00
2014-04-30 20:30:14 +00:00
return objs;
})
2014-04-30 18:02:20 +00:00
});
},
2014-04-30 20:30:14 +00:00
setupController: function(controller, models) {
controller.set('content', models.dc);
controller.set('nodes', models.nodes);
controller.set('dcs', models.dcs);
2014-04-25 17:49:36 +00:00
}
2014-04-23 18:01:42 +00:00
});
2014-04-28 22:23:01 +00:00
2014-04-29 18:49:07 +00:00
App.KvIndexRoute = App.BaseRoute.extend({
// If they hit /kv we want to just move them to /kv/-
2014-04-29 17:06:26 +00:00
beforeModel: function() {
this.transitionTo('kv.show', '-')
}
});
App.KvShowRoute = App.BaseRoute.extend({
model: function(params) {
// Convert the key back to the format consul understands
2014-04-29 17:06:26 +00:00
var key = params.key.replace(/-/g, "/")
2014-04-28 22:23:01 +00:00
// Return a promise to retrieve the ?keys for that namespace
2014-04-30 19:02:31 +00:00
return Ember.$.getJSON('/v1/kv/' + key + '?keys&seperator=' + '/').then(function(data) {
objs = [];
data.map(function(obj){
objs.push(App.Key.create({Key: obj}));
});
return objs;
});
2014-04-28 22:23:01 +00:00
},
setupController: function(controller, model) {
2014-04-30 21:37:05 +00:00
// If we don't have any k/v, we need to set some basic
// stuff so we can create them
if (model.length == 0) {
var parentKey = "/";
var grandParentKey = "/";
} else {
var parentKey = model[0].parentKey;
var grandParentKey = model[0].grandParentKey;
}
2014-04-28 22:23:01 +00:00
controller.set('content', model);
2014-04-30 21:37:05 +00:00
controller.set('parentKey', parentKey);
controller.set('grandParentKey', grandParentKey);
controller.set('newKey', App.Key.create());
2014-04-29 17:06:26 +00:00
}
});
App.KvEditRoute = App.BaseRoute.extend({
model: function(params) {
2014-04-30 19:02:31 +00:00
var keyName = params.key.replace(/-/g, "/")
var key = keyName;
var parentKey;
// Get the parent key
if (key.slice(-1) == "/") {
key = key.substring(0, key.length - 1);
}
parts = key.split('/');
// Go one level up
2014-04-30 19:02:31 +00:00
parts.pop();
// If we are all the way up, just return nothing for the root
2014-04-30 19:02:31 +00:00
if (parts.length == 0) {
parentKey = ""
} else {
// Add a slash
2014-04-30 19:02:31 +00:00
parentKey = parts.join("/") + "/";
}
// Return a promise hash to get the data for both columns
2014-04-30 20:30:14 +00:00
return Ember.RSVP.hash({
key: Ember.$.getJSON('/v1/kv/' + keyName).then(function(data) {
// Convert the returned data to a Key
2014-04-30 20:30:14 +00:00
return App.Key.create().setProperties(data[0]);
}),
keys: keysPromise = Ember.$.getJSON('/v1/kv/' + parentKey + '?keys&seperator=' + '/').then(function(data) {
objs = [];
data.map(function(obj){
objs.push(App.Key.create({Key: obj}));
});
return objs;
}),
2014-04-30 19:02:31 +00:00
});
2014-04-29 17:06:26 +00:00
},
2014-04-29 17:34:13 +00:00
2014-04-30 20:30:14 +00:00
setupController: function(controller, models) {
controller.set('content', models.key);
2014-04-29 18:49:07 +00:00
// If we don't have the cached model from our
// the kv.show controller, we need to go get it,
// otherwise we just load what we have.
2014-04-29 18:49:07 +00:00
if (this.modelFor('kv.show') == undefined ) {
2014-04-30 20:30:14 +00:00
controller.set('siblings', models.keys);
2014-04-29 18:49:07 +00:00
} else {
controller.set('siblings', this.modelFor('kv.show'));
}
2014-04-28 22:23:01 +00:00
}
});
2014-04-23 18:01:42 +00:00
App.ServicesRoute = App.BaseRoute.extend({
2014-04-30 18:02:20 +00:00
model: function(params) {
// Return a promise to retrieve all of the services
2014-04-30 18:02:20 +00:00
return Ember.$.getJSON('/v1/internal/ui/services').then(function(data) {
objs = [];
data.map(function(obj){
objs.push(App.Service.create(obj));
});
return objs
});
},
setupController: function(controller, model) {
2014-04-30 18:02:20 +00:00
controller.set('services', model);
}
});
2014-04-24 19:18:11 +00:00
App.ServicesShowRoute = App.BaseRoute.extend({
model: function(params) {
// Here we just use the built-in health endpoint, as it gives us everything
// we need.
2014-04-30 18:02:20 +00:00
return Ember.$.getJSON('/v1/health/service/' + params.name).then(function(data) {
objs = [];
data.map(function(obj){
objs.push(App.Node.create(obj));
});
return objs;
});
},
2014-04-21 20:36:50 +00:00
});
2014-04-23 18:01:42 +00:00
App.NodesShowRoute = App.BaseRoute.extend({
2014-04-24 19:18:11 +00:00
model: function(params) {
// Return a promise hash of the node and nodes
2014-04-30 19:25:31 +00:00
return Ember.RSVP.hash({
node: Ember.$.getJSON('/v1/internal/ui/node/' + params.name).then(function(data) {
return App.Node.create(data)
}),
nodes: Ember.$.getJSON('/v1/internal/ui/node/' + params.name).then(function(data) {
return App.Node.create(data)
})
2014-04-30 18:02:20 +00:00
});
2014-04-24 19:18:11 +00:00
},
2014-04-30 19:25:31 +00:00
setupController: function(controller, models) {
controller.set('content', models.node);
2014-04-24 19:18:11 +00:00
//
// Since we have 2 column layout, we need to also display the
2014-04-24 19:33:53 +00:00
// list of nodes on the left. Hence setting the attribute
// {{nodes}} on the controller.
2014-04-24 19:18:11 +00:00
//
2014-04-30 19:25:31 +00:00
controller.set('nodes', models.nodes);
2014-04-24 19:18:11 +00:00
}
});
App.NodesRoute = App.BaseRoute.extend({
2014-04-30 18:02:20 +00:00
model: function(params) {
// Return a promise containing the nodes
2014-04-30 18:02:20 +00:00
return Ember.$.getJSON('/v1/internal/ui/nodes').then(function(data) {
objs = [];
data.map(function(obj){
objs.push(App.Node.create(obj));
});
return objs
});
},
2014-04-24 19:18:11 +00:00
setupController: function(controller, model) {
2014-04-30 18:02:20 +00:00
controller.set('nodes', model);
2014-04-24 19:18:11 +00:00
}
});