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

281 lines
7.1 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() {
// If the service was returned from `/v1/internal/ui/services`
// then we have a aggregated value which we can just grab
2014-08-21 18:31:58 +00:00
if (this.get('ChecksCritical') !== undefined) {
return (this.get('ChecksCritical') + this.get('ChecksWarning'));
// Otherwise, we need to filter the child checks by both failing
// states
2014-04-30 18:02:20 +00:00
} else {
2014-06-03 17:53:22 +00:00
var checks = this.get('Checks');
return (checks.filterBy('Status', 'critical').get('length') +
2014-08-21 18:31:58 +00:00
checks.filterBy('Status', 'warning').get('length'));
2014-04-30 18:02:20 +00:00
}
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() {
// If the service was returned from `/v1/internal/ui/services`
// then we have a aggregated value which we can just grab
2014-08-21 18:31:58 +00:00
if (this.get('ChecksPassing') !== undefined) {
return this.get('ChecksPassing');
// Otherwise, we need to filter the child checks by both failing
// states
2014-04-30 18:02:20 +00:00
} 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
nodes: function() {
2014-08-21 18:31:58 +00:00
return (this.get('Nodes'));
}.property('Nodes'),
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);
}.property('Checks'),
2014-06-03 17:53:22 +00:00
//
// Key used for filtering through an array of this model, i.e s
// searching
//
filterKey: function() {
2014-08-21 18:31:58 +00:00
return this.get('Name');
2014-06-03 17:53:22 +00:00
}.property('Name'),
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() {
var checks = this.get('Checks');
// We view both warning and critical as failing
return (checks.filterBy('Status', 'critical').get('length') +
2014-08-21 18:31:58 +00:00
checks.filterBy('Status', 'warning').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);
}.property('Checks'),
//
// The number of services on the node
//
numServices: function() {
2014-08-21 18:31:58 +00:00
return (this.get('Services').length);
}.property('Services'),
// The number of services on the node
//
services: function() {
2014-08-21 18:31:58 +00:00
return (this.get('Services'));
}.property('Services'),
filterKey: function() {
2014-08-21 18:31:58 +00:00
return this.get('Node');
}.property('Node')
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, {
// Validates using the Ember.Valdiations library
validations: {
Key: { presence: true }
},
// Boolean if the key is valid
2014-04-30 19:02:31 +00:00
keyValid: Ember.computed.empty('errors.Key'),
// Boolean if the value is valid
2014-04-30 19:02:31 +00:00
valueValid: Ember.computed.empty('errors.Value'),
// The key with the parent removed.
// This is only for display purposes, and used for
// showing the key name inside of a nested key.
2014-04-30 19:02:31 +00:00
keyWithoutParent: function() {
return (this.get('Key').replace(this.get('parentKey'), ''));
}.property('Key'),
2014-04-30 16:15:54 +00:00
// Boolean if the key is a "folder" or not, i.e is a nested key
// that feels like a folder. Used for UI
2014-04-29 17:06:26 +00:00
isFolder: function() {
if (this.get('Key') === undefined) {
return false;
2014-08-21 18:31:58 +00:00
}
return (this.get('Key').slice(-1) === '/');
2014-04-30 20:30:14 +00:00
}.property('Key'),
2014-06-06 16:21:36 +00:00
// Boolean if the key is locked or now
isLocked: function() {
if (!this.get('Session')) {
return false;
} else {
return true;
}
}.property('Session'),
// Determines what route to link to. If it's a folder,
// it will link to kv.show. Otherwise, kv.edit
2014-04-29 20:32:38 +00:00
linkToRoute: function() {
2014-05-04 21:05:00 +00:00
if (this.get('Key').slice(-1) === '/') {
2014-08-21 18:31:58 +00:00
return 'kv.show';
2014-04-29 20:32:38 +00:00
} else {
2014-08-21 18:31:58 +00:00
return 'kv.edit';
2014-04-29 20:32:38 +00:00
}
2014-04-30 19:02:31 +00:00
}.property('Key'),
2014-04-29 20:32:38 +00:00
// The base64 decoded value of the key.
// if you set on this key, it will update
// the key.Value
2014-04-30 20:30:14 +00:00
valueDecoded: function(key, value) {
// setter
2014-04-30 20:30:14 +00:00
if (arguments.length > 1) {
this.set('Value', value);
2014-04-30 22:31:45 +00:00
return value;
2014-04-30 20:30:14 +00:00
}
// getter
// If the value is null, we don't
// want to try and base64 decode it, so just return
2014-04-30 20:30:14 +00:00
if (this.get('Value') === null) {
return "";
}
// base64 decode the value
2014-04-30 20:30:14 +00:00
return window.atob(this.get('Value'));
}.property('Value'),
// An array of the key broken up by the /
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
// If the key is a folder, remove the last
// slash to split properly
2014-04-29 18:49:07 +00:00
if (key.slice(-1) == "/") {
key = key.substring(0, key.length - 1);
}
2014-04-29 18:49:07 +00:00
return key.split('/');
2014-04-30 19:02:31 +00:00
}.property('Key'),
2014-04-29 18:49:07 +00:00
// The parent Key is the key one level above this.Key
// key: baz/bar/foobar/
// grandParent: baz/bar/
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
// Remove the last item, essentially going up a level
// in hiearchy
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
// The grandParent Key is the key two levels above this.Key
// key: baz/bar/foobar/
// grandParent: baz/
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
// Remove the last two items, jumping two levels back
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
});
2014-08-21 21:44:17 +00:00
//
// An ACL
//
App.Acl = Ember.Object.extend({
isNotAnon: function() {
if (this.get('ID') === "anonymous"){
return false;
} else {
return true;
}
}.property('ID')
});
// Wrap localstorage with an ember object
App.Settings = Ember.Object.extend({
unknownProperty: function(key) {
return localStorage[key];
},
setUnknownProperty: function(key, value) {
if(Ember.isNone(value)) {
delete localStorage[key];
} else {
localStorage[key] = value;
}
this.notifyPropertyChange(key);
return value;
},
clear: function() {
this.beginPropertyChanges();
for (var i=0, l=localStorage.length; i<l; i++){
this.set(localStorage.key(i));
}
localStorage.clear();
this.endPropertyChanges();
}
2014-08-21 21:44:17 +00:00
});