2014-04-30 14:09:41 +00:00
|
|
|
// Add mixins
|
|
|
|
App.KvShowController = Ember.ObjectController.extend(Ember.Validations.Mixin);
|
|
|
|
|
2014-04-25 17:49:36 +00:00
|
|
|
//
|
|
|
|
// path: /
|
|
|
|
//
|
|
|
|
// The index is for choosing datacenters.
|
|
|
|
//
|
|
|
|
App.IndexController = Ember.Controller.extend({
|
|
|
|
});
|
|
|
|
|
|
|
|
//
|
|
|
|
// path: /:dc
|
|
|
|
//
|
|
|
|
App.DcController = Ember.Controller.extend({
|
2014-04-25 20:24:36 +00:00
|
|
|
isDropdownVisible: false,
|
|
|
|
|
|
|
|
checks: function() {
|
2014-04-30 18:02:20 +00:00
|
|
|
var services = this.get('nodes');
|
2014-04-25 20:24:36 +00:00
|
|
|
var checks = Ember.A()
|
|
|
|
|
|
|
|
// loop over all of the services we have,
|
|
|
|
// merge their checks into one.
|
|
|
|
services.forEach(function(item) {
|
|
|
|
checks = checks.concat(item.Checks)
|
|
|
|
});
|
|
|
|
|
|
|
|
// return the checks
|
|
|
|
return checks
|
|
|
|
}.property('checks'),
|
|
|
|
|
|
|
|
checkMessage: function() {
|
|
|
|
var checks = this.get('checks')
|
|
|
|
|
|
|
|
// return the message for display
|
|
|
|
if (this.get('hasFailingChecks') == true) {
|
|
|
|
return checks.filterBy('Status', 'critical').get('length') + ' checks failing';
|
|
|
|
} else {
|
|
|
|
return checks.filterBy('Status', 'passing').get('length') + ' checks passing';
|
|
|
|
}
|
|
|
|
|
|
|
|
}.property('checkMessage'),
|
|
|
|
|
|
|
|
hasFailingChecks: function() {
|
|
|
|
var checks = this.get('checks')
|
|
|
|
|
|
|
|
// Return a boolean if checks are failing.
|
|
|
|
return (checks.filterBy('Status', 'critical').get('length') > 0);
|
|
|
|
|
|
|
|
}.property('hasFailingChecks'),
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
toggle: function(item){
|
|
|
|
this.toggleProperty('isDropdownVisible');
|
|
|
|
}
|
|
|
|
}
|
2014-04-25 17:49:36 +00:00
|
|
|
})
|
|
|
|
|
2014-04-28 15:56:07 +00:00
|
|
|
//
|
|
|
|
// path: /:dc/services
|
|
|
|
//
|
|
|
|
// The index is for choosing services.
|
|
|
|
//
|
|
|
|
App.ServicesController = Ember.ArrayController.extend({
|
|
|
|
needs: ['application']
|
|
|
|
});
|
2014-04-25 17:49:36 +00:00
|
|
|
|
2014-04-28 15:56:07 +00:00
|
|
|
//
|
|
|
|
// path: /:dc/services/:name
|
|
|
|
//
|
|
|
|
// An individual service.
|
|
|
|
//
|
|
|
|
App.ServicesShowController = Ember.Controller.extend({
|
|
|
|
needs: ['services']
|
|
|
|
});
|
2014-04-29 20:16:22 +00:00
|
|
|
|
2014-04-30 14:09:41 +00:00
|
|
|
App.KvShowController.reopen({
|
|
|
|
isLoading: false,
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
createKey: function() {
|
|
|
|
this.set('isLoading', true);
|
|
|
|
|
|
|
|
var newKey = this.get('newKey');
|
|
|
|
var topModel = this.get('topModel');
|
2014-04-30 20:30:14 +00:00
|
|
|
var controller = this;
|
2014-04-30 14:09:41 +00:00
|
|
|
|
|
|
|
// If we don't have a previous model to base
|
|
|
|
// see our parent, or we're not at the root level,
|
|
|
|
// strip the leading slash.
|
|
|
|
if (!topModel || topModel.get('parentKey') != "/") {
|
2014-04-30 20:30:14 +00:00
|
|
|
newKey.set('Key', (topModel.get('parentKey') + newKey.get('Key')));
|
2014-04-30 14:09:41 +00:00
|
|
|
}
|
|
|
|
|
2014-04-30 20:30:14 +00:00
|
|
|
Ember.$.ajax({
|
|
|
|
url: "/v1/kv/" + newKey.get('Key'),
|
|
|
|
type: 'PUT',
|
|
|
|
data: newKey.get('Value')
|
|
|
|
}).then(function(response) {
|
|
|
|
controller.set('isLoading', false)
|
|
|
|
controller.transitionToRoute('kv.edit', newKey.get('urlSafeKey'));
|
|
|
|
controller.get('keys').reload()
|
|
|
|
}).fail(function(response) {
|
|
|
|
controller.set('errorMessage', 'Received error while processing: ' + response.statusText)
|
|
|
|
});
|
2014-04-30 14:09:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-04-29 20:16:22 +00:00
|
|
|
|
|
|
|
App.KvEditController = Ember.Controller.extend({
|
|
|
|
isLoading: false,
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
updateKey: function() {
|
|
|
|
this.set('isLoading', true);
|
|
|
|
|
2014-04-30 20:30:14 +00:00
|
|
|
var key = this.get("model");
|
|
|
|
var controller = this;
|
|
|
|
|
|
|
|
Ember.$.ajax({
|
|
|
|
url: "/v1/kv/" + key.get('Key'),
|
|
|
|
type: 'PUT',
|
|
|
|
data: key.get('valueDecoded')
|
|
|
|
}).then(function(response) {
|
|
|
|
controller.set('isLoading', false)
|
|
|
|
}).fail(function(response) {
|
|
|
|
controller.set('errorMessage', 'Received error while processing: ' + response.statusText)
|
|
|
|
})
|
2014-04-30 14:16:50 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
deleteKey: function() {
|
|
|
|
this.set('isLoading', true);
|
|
|
|
|
2014-04-30 20:30:14 +00:00
|
|
|
var key = this.get("model");
|
|
|
|
var controller = this;
|
|
|
|
var parent = key.get('urlSafeParentKey');
|
|
|
|
|
|
|
|
Ember.$.ajax({
|
|
|
|
url: "/v1/kv/" + key.get('Key'),
|
|
|
|
type: 'DELETE'
|
|
|
|
}).then(function(response) {
|
|
|
|
controller.set('isLoading', false);
|
|
|
|
controller.transitionToRoute('kv.show', parent);
|
|
|
|
}).fail(function(response) {
|
|
|
|
controller.set('errorMessage', 'Received error while processing: ' + response.statusText)
|
|
|
|
})
|
2014-04-30 14:16:50 +00:00
|
|
|
|
2014-04-29 20:16:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|