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

165 lines
4.0 KiB
JavaScript
Raw Normal View History

2014-04-25 17:49:36 +00:00
//
// A Consul service.
//
App.Service = Ember.Object.extend({
//
// The number of failing checks within the service.
//
failingChecks: function() {
2014-04-30 18:02:20 +00:00
if (this.get('ChecksCritical') != undefined) {
return (this.get('ChecksCritical') + this.get('ChecksWarning'))
} else {
return this.get('Checks').filterBy('Status', 'critical').get('length');
}
2014-04-29 19:24:32 +00:00
}.property('Checks'),
2014-04-25 17:49:36 +00:00
//
// The number of passing checks within the service.
//
passingChecks: function() {
2014-04-30 18:02:20 +00:00
if (this.get('ChecksPassing') != undefined) {
return this.get('ChecksPassing')
} else {
return this.get('Checks').filterBy('Status', 'passing').get('length');
}
2014-04-29 19:24:32 +00:00
}.property('Checks'),
2014-04-25 17:49:36 +00:00
//
// The formatted message returned for the user which represents the
// number of checks failing or passing. Returns `1 passing` or `2 failing`
//
checkMessage: function() {
if (this.get('hasFailingChecks') === false) {
return this.get('passingChecks') + ' passing';
} else {
return this.get('failingChecks') + ' failing';
}
2014-04-29 19:24:32 +00:00
}.property('Checks'),
2014-04-25 17:49:36 +00:00
//
// Boolean of whether or not there are failing checks in the service.
// This is used to set color backgrounds and so on.
//
hasFailingChecks: function() {
return (this.get('failingChecks') > 0);
2014-04-29 19:24:32 +00:00
}.property('Checks')
2014-04-25 17:49:36 +00:00
});
//
// A Consul Node
//
App.Node = Ember.Object.extend({
//
// The number of failing checks within the service.
//
failingChecks: function() {
return this.get('Checks').filterBy('Status', 'critical').get('length');
}.property('Checks'),
2014-04-25 17:49:36 +00:00
//
// The number of passing checks within the service.
//
passingChecks: function() {
return this.get('Checks').filterBy('Status', 'passing').get('length');
2014-04-29 19:24:32 +00:00
}.property('Checks'),
2014-04-25 17:49:36 +00:00
//
// The formatted message returned for the user which represents the
// number of checks failing or passing. Returns `1 passing` or `2 failing`
//
checkMessage: function() {
if (this.get('hasFailingChecks') === false) {
return this.get('passingChecks') + ' passing';
} else {
return this.get('failingChecks') + ' failing';
}
2014-04-29 19:24:32 +00:00
}.property('Checks'),
2014-04-25 17:49:36 +00:00
//
// Boolean of whether or not there are failing checks in the service.
// This is used to set color backgrounds and so on.
//
hasFailingChecks: function() {
return (this.get('failingChecks') > 0);
2014-04-29 19:24:32 +00:00
}.property('Checks')
2014-04-25 17:49:36 +00:00
});
2014-04-29 17:06:26 +00:00
//
// A key/value object
//
App.Key = Ember.Object.extend(Ember.Validations.Mixin, {
validations: {
2014-04-30 19:02:31 +00:00
Key: { presence: true },
Value: { presence: true }
},
2014-04-30 19:02:31 +00:00
keyValid: Ember.computed.empty('errors.Key'),
valueValid: Ember.computed.empty('errors.Value'),
keyWithoutParent: function() {
return (this.get('Key').replace(this.get('parentKey'), ''));
}.property('Key'),
2014-04-30 16:15:54 +00:00
2014-04-29 17:06:26 +00:00
isFolder: function() {
2014-04-30 19:02:31 +00:00
return (this.get('Key').slice(-1) == "/")
}.property('Key'),
2014-04-29 17:06:26 +00:00
2014-04-29 20:32:38 +00:00
urlSafeKey: function() {
2014-04-30 19:02:31 +00:00
return this.get('Key').replace(/\//g, "-")
}.property('Key'),
2014-04-29 20:32:38 +00:00
2014-04-30 20:30:14 +00:00
urlSafeParentKey: function() {
return this.get('parentKey').replace(/\//g, "-")
}.property('Key'),
2014-04-29 20:32:38 +00:00
linkToRoute: function() {
var key = this.get('urlSafeKey')
if (key.slice(-1) === "-") {
return 'kv.show'
} else {
return 'kv.edit'
}
2014-04-30 19:02:31 +00:00
}.property('Key'),
2014-04-29 20:32:38 +00:00
2014-04-30 20:30:14 +00:00
valueDecoded: function(key, value) {
// Setter
if (arguments.length > 1) {
this.set('Value', window.btoa(value));
}
if (this.get('Value') === null) {
return "";
}
// getter
return window.atob(this.get('Value'));
}.property('Value'),
2014-04-29 18:49:07 +00:00
keyParts: function() {
2014-04-30 19:02:31 +00:00
var key = this.get('Key');
2014-04-29 17:34:13 +00:00
2014-04-29 18:49:07 +00:00
if (key.slice(-1) == "/") {
key = key.substring(0, key.length - 1);
}
return key.split('/');
2014-04-30 19:02:31 +00:00
}.property('Key'),
2014-04-29 18:49:07 +00:00
parentKey: function() {
2014-04-29 19:24:32 +00:00
var parts = this.get('keyParts').toArray();
2014-04-29 18:49:07 +00:00
parts.pop();
return parts.join("/") + "/";
2014-04-30 19:02:31 +00:00
}.property('Key'),
2014-04-29 18:49:07 +00:00
grandParentKey: function() {
2014-04-29 19:24:32 +00:00
var parts = this.get('keyParts').toArray();
2014-04-29 17:34:13 +00:00
2014-04-29 18:49:07 +00:00
parts.pop();
parts.pop();
2014-04-29 17:06:26 +00:00
2014-04-29 18:49:07 +00:00
return parts.join("/") + "/";
2014-04-30 19:02:31 +00:00
}.property('Key')
2014-04-29 17:06:26 +00:00
});