2018-05-22 15:03:45 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
2020-09-18 10:14:06 +00:00
|
|
|
import { computed } from '@ember/object';
|
|
|
|
|
|
|
|
import { fragmentArray } from 'ember-data-model-fragments/attributes';
|
2018-05-22 15:03:45 +00:00
|
|
|
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
|
|
export const SLUG_KEY = 'ID';
|
2019-12-17 18:47:37 +00:00
|
|
|
export default Model.extend({
|
2018-05-22 15:03:45 +00:00
|
|
|
[PRIMARY_KEY]: attr('string'),
|
|
|
|
[SLUG_KEY]: attr('string'),
|
|
|
|
Description: attr('string'),
|
|
|
|
SourceNS: attr('string'),
|
2020-07-09 09:08:47 +00:00
|
|
|
SourceName: attr('string', { defaultValue: '*' }),
|
|
|
|
DestinationName: attr('string', { defaultValue: '*' }),
|
2018-08-29 09:00:15 +00:00
|
|
|
DestinationNS: attr('string'),
|
2018-05-22 15:03:45 +00:00
|
|
|
Precedence: attr('number'),
|
2020-09-18 10:14:06 +00:00
|
|
|
Permissions: fragmentArray('intention-permission'),
|
2018-06-06 11:00:25 +00:00
|
|
|
SourceType: attr('string', { defaultValue: 'consul' }),
|
2020-09-18 10:14:06 +00:00
|
|
|
Action: attr('string'),
|
2018-05-22 15:03:45 +00:00
|
|
|
Meta: attr(),
|
2020-09-18 10:14:06 +00:00
|
|
|
Legacy: attr('boolean', { defaultValue: true }),
|
2020-09-24 15:07:13 +00:00
|
|
|
LegacyID: attr('string'),
|
2020-09-18 10:14:06 +00:00
|
|
|
|
|
|
|
IsManagedByCRD: computed('Meta', function() {
|
|
|
|
const meta = Object.entries(this.Meta || {}).find(
|
|
|
|
([key, value]) => key === 'external-source' && value === 'kubernetes'
|
|
|
|
);
|
|
|
|
return typeof meta !== 'undefined';
|
|
|
|
}),
|
|
|
|
IsEditable: computed('Legacy', 'IsManagedByCRD', function() {
|
|
|
|
return this.Legacy && !this.IsManagedByCRD;
|
|
|
|
}),
|
2020-04-24 13:37:35 +00:00
|
|
|
SyncTime: attr('number'),
|
2018-05-22 15:03:45 +00:00
|
|
|
Datacenter: attr('string'),
|
|
|
|
CreatedAt: attr('date'),
|
|
|
|
UpdatedAt: attr('date'),
|
|
|
|
CreateIndex: attr('number'),
|
|
|
|
ModifyIndex: attr('number'),
|
|
|
|
});
|