2020-11-09 17:29:12 +00:00
|
|
|
import Model, { attr } from '@ember-data/model';
|
2021-04-12 13:19:49 +00:00
|
|
|
import { computed } from '@ember/object';
|
2020-10-05 17:07:35 +00:00
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
|
|
export const SLUG_KEY = 'ServiceName';
|
2020-11-09 17:29:12 +00:00
|
|
|
|
|
|
|
export default class Topology extends Model {
|
|
|
|
@attr('string') uid;
|
|
|
|
@attr('string') ServiceName;
|
|
|
|
|
|
|
|
@attr('string') Datacenter;
|
|
|
|
@attr('string') Namespace;
|
2021-09-15 18:50:11 +00:00
|
|
|
@attr('string') Partition;
|
2020-11-09 17:29:12 +00:00
|
|
|
@attr('string') Protocol;
|
|
|
|
@attr('boolean') FilteredByACLs;
|
2021-04-08 18:08:57 +00:00
|
|
|
@attr('boolean') TransparentProxy;
|
2020-11-09 17:29:12 +00:00
|
|
|
@attr() Upstreams; // Service[]
|
|
|
|
@attr() Downstreams; // Service[],
|
|
|
|
@attr() meta; // {}
|
2021-04-12 13:19:49 +00:00
|
|
|
|
2021-05-25 15:02:38 +00:00
|
|
|
@computed('Downstreams')
|
|
|
|
get notDefinedIntention() {
|
2021-04-12 13:19:49 +00:00
|
|
|
let undefinedDownstream = false;
|
|
|
|
|
|
|
|
undefinedDownstream =
|
|
|
|
this.Downstreams.filter(
|
|
|
|
item =>
|
|
|
|
item.Source === 'specific-intention' && !item.TransparentProxy && item.Intention.Allowed
|
|
|
|
).length !== 0;
|
|
|
|
|
2021-05-25 15:02:38 +00:00
|
|
|
return undefinedDownstream;
|
|
|
|
}
|
|
|
|
|
2021-10-12 13:27:06 +00:00
|
|
|
@computed('Downstreams', 'Upstreams')
|
|
|
|
// A service has a wildcard intention if `Allowed == true` and `HasExact = false`
|
|
|
|
// The Permissive Intention notice appears if at least one upstream or downstream has
|
|
|
|
// a wildcard intention
|
|
|
|
get wildcardIntention() {
|
|
|
|
const downstreamWildcard =
|
|
|
|
this.Downstreams.filter(item => !item.Intention.HasExact && item.Intention.Allowed).length !==
|
|
|
|
0;
|
2021-05-25 15:02:38 +00:00
|
|
|
|
2021-10-12 13:27:06 +00:00
|
|
|
const upstreamWildcard =
|
|
|
|
this.Upstreams.filter(item => !item.Intention.HasExact && item.Intention.Allowed).length !==
|
|
|
|
0;
|
|
|
|
|
|
|
|
return downstreamWildcard || upstreamWildcard;
|
2021-04-12 13:19:49 +00:00
|
|
|
}
|
2020-11-09 17:29:12 +00:00
|
|
|
}
|