2017-12-15 21:39:18 +00:00
|
|
|
import Service, { inject as service } from '@ember/service';
|
|
|
|
import { computed } from '@ember/object';
|
2017-09-19 14:47:10 +00:00
|
|
|
import PromiseObject from '../utils/classes/promise-object';
|
2018-08-02 22:56:11 +00:00
|
|
|
import PromiseArray from '../utils/classes/promise-array';
|
2017-09-19 14:47:10 +00:00
|
|
|
import { namespace } from '../adapters/application';
|
2018-11-02 05:07:58 +00:00
|
|
|
import jsonWithDefault from '../utils/json-with-default';
|
2020-06-10 13:49:16 +00:00
|
|
|
import classic from 'ember-classic-decorator';
|
2018-08-09 18:03:37 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@classic
|
|
|
|
export default class SystemService extends Service {
|
|
|
|
@service token;
|
|
|
|
@service store;
|
2017-10-07 00:14:08 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@computed('activeRegion')
|
|
|
|
get leader() {
|
2019-03-26 07:46:44 +00:00
|
|
|
const token = this.token;
|
2017-10-07 00:14:08 +00:00
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
return PromiseObject.create({
|
2017-10-07 00:14:08 +00:00
|
|
|
promise: token
|
|
|
|
.authorizedRequest(`/${namespace}/status/leader`)
|
2017-09-19 14:47:10 +00:00
|
|
|
.then(res => res.json())
|
|
|
|
.then(rpcAddr => ({ rpcAddr }))
|
|
|
|
.then(leader => {
|
|
|
|
// Dirty self so leader can be used as a dependent key
|
|
|
|
this.notifyPropertyChange('leader.rpcAddr');
|
|
|
|
return leader;
|
|
|
|
}),
|
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2017-10-10 01:50:49 +00:00
|
|
|
|
2020-10-26 06:25:28 +00:00
|
|
|
@computed
|
|
|
|
get agent() {
|
|
|
|
const token = this.token;
|
|
|
|
return PromiseObject.create({
|
|
|
|
promise: token
|
|
|
|
.authorizedRawRequest(`/${namespace}/agent/self`)
|
|
|
|
.then(jsonWithDefault({}))
|
|
|
|
.then(agent => {
|
|
|
|
agent.version = agent.member?.Tags?.build || 'Unknown';
|
|
|
|
return agent;
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@computed
|
|
|
|
get defaultRegion() {
|
2019-03-26 07:46:44 +00:00
|
|
|
const token = this.token;
|
2018-08-09 02:34:56 +00:00
|
|
|
return PromiseObject.create({
|
|
|
|
promise: token
|
|
|
|
.authorizedRawRequest(`/${namespace}/agent/members`)
|
2018-08-09 18:03:37 +00:00
|
|
|
.then(jsonWithDefault({}))
|
2018-08-09 02:34:56 +00:00
|
|
|
.then(json => {
|
|
|
|
return { region: json.ServerRegion };
|
|
|
|
}),
|
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2018-08-09 02:34:56 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@computed
|
|
|
|
get regions() {
|
2019-03-26 07:46:44 +00:00
|
|
|
const token = this.token;
|
2018-08-02 22:56:11 +00:00
|
|
|
|
|
|
|
return PromiseArray.create({
|
2018-08-09 18:03:37 +00:00
|
|
|
promise: token.authorizedRawRequest(`/${namespace}/regions`).then(jsonWithDefault([])),
|
2018-08-02 22:56:11 +00:00
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@computed('regions.[]')
|
|
|
|
get activeRegion() {
|
|
|
|
const regions = this.regions;
|
|
|
|
const region = window.localStorage.nomadActiveRegion;
|
|
|
|
|
|
|
|
if (regions.includes(region)) {
|
|
|
|
return region;
|
2018-08-09 02:34:56 +00:00
|
|
|
}
|
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
set activeRegion(value) {
|
|
|
|
if (value == null) {
|
|
|
|
window.localStorage.removeItem('nomadActiveRegion');
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
// All localStorage values are strings. Stringify first so
|
|
|
|
// the return value is consistent with what is persisted.
|
|
|
|
const strValue = value + '';
|
|
|
|
window.localStorage.nomadActiveRegion = strValue;
|
|
|
|
return strValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@computed('regions.[]')
|
|
|
|
get shouldShowRegions() {
|
|
|
|
return this.get('regions.length') > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@computed('activeRegion', 'defaultRegion.region', 'shouldShowRegions')
|
|
|
|
get shouldIncludeRegion() {
|
|
|
|
return this.shouldShowRegions && this.activeRegion !== this.get('defaultRegion.region');
|
|
|
|
}
|
|
|
|
|
|
|
|
@computed('activeRegion')
|
|
|
|
get namespaces() {
|
2018-08-04 01:17:12 +00:00
|
|
|
return PromiseArray.create({
|
2020-01-31 00:06:35 +00:00
|
|
|
promise: this.store.findAll('namespace').then(namespaces => namespaces.compact()),
|
2018-08-04 01:17:12 +00:00
|
|
|
});
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2017-10-10 01:50:49 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@computed('namespaces.[]')
|
|
|
|
get shouldShowNamespaces() {
|
2019-03-26 07:46:44 +00:00
|
|
|
const namespaces = this.namespaces.toArray();
|
2017-10-23 17:26:48 +00:00
|
|
|
return namespaces.length && namespaces.some(namespace => namespace.get('id') !== 'default');
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
2017-10-23 17:26:48 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
@computed('namespaces.[]')
|
|
|
|
get activeNamespace() {
|
|
|
|
const namespaceId = window.localStorage.nomadActiveNamespace || 'default';
|
|
|
|
const namespace = this.namespaces.findBy('id', namespaceId);
|
2018-03-28 21:55:07 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
if (namespace) {
|
|
|
|
return namespace;
|
|
|
|
}
|
2018-03-28 21:55:07 +00:00
|
|
|
|
2020-06-10 13:49:16 +00:00
|
|
|
// If the namespace in localStorage is no longer in the cluster, it needs to
|
|
|
|
// be cleared from localStorage
|
|
|
|
window.localStorage.removeItem('nomadActiveNamespace');
|
|
|
|
return this.namespaces.findBy('id', 'default');
|
|
|
|
}
|
|
|
|
|
|
|
|
set activeNamespace(value) {
|
|
|
|
if (value == null) {
|
2018-10-17 19:55:00 +00:00
|
|
|
window.localStorage.removeItem('nomadActiveNamespace');
|
2020-06-10 13:49:16 +00:00
|
|
|
return;
|
|
|
|
} else if (typeof value === 'string') {
|
|
|
|
window.localStorage.nomadActiveNamespace = value;
|
|
|
|
return this.namespaces.findBy('id', value);
|
|
|
|
} else {
|
|
|
|
window.localStorage.nomadActiveNamespace = value.get('name');
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
2018-08-04 01:17:12 +00:00
|
|
|
|
|
|
|
reset() {
|
|
|
|
this.set('activeNamespace', null);
|
2020-07-10 03:34:44 +00:00
|
|
|
this.notifyPropertyChange('namespaces');
|
2020-06-10 13:49:16 +00:00
|
|
|
}
|
|
|
|
}
|