455dfe0a1b
* Add model layer support for filtering intentions by service * Add Route, Controller and template for services.show.intentions tab We are still loading the intentions themselves in the parent Route for the moment * Load the intentions in in the parent route for the moment * Temporarily add support for returning to history -1 Once we have an intention form underneath the service/intention tab this will no longer be needed * Add the new tab and enable blocking queries for it * Add some further acceptance testing around intention listings
68 lines
2.1 KiB
JavaScript
68 lines
2.1 KiB
JavaScript
import Adapter, { DATACENTER_QUERY_PARAM as API_DATACENTER_KEY } from './application';
|
|
import { FOREIGN_KEY as DATACENTER_KEY } from 'consul-ui/models/dc';
|
|
import { SLUG_KEY } from 'consul-ui/models/intention';
|
|
// Intentions use SourceNS and DestinationNS properties for namespacing
|
|
// so we don't need to add the `?ns=` anywhere here
|
|
|
|
// TODO: Update to use this.formatDatacenter()
|
|
export default Adapter.extend({
|
|
requestForQuery: function(request, { dc, filter, index }) {
|
|
return request`
|
|
GET /v1/connect/intentions?${{ dc }}
|
|
|
|
${{
|
|
index,
|
|
filter,
|
|
}}
|
|
`;
|
|
},
|
|
requestForQueryRecord: function(request, { dc, index, id }) {
|
|
if (typeof id === 'undefined') {
|
|
throw new Error('You must specify an id');
|
|
}
|
|
return request`
|
|
GET /v1/connect/intentions/${id}?${{ dc }}
|
|
|
|
${{ index }}
|
|
`;
|
|
},
|
|
requestForCreateRecord: function(request, serialized, data) {
|
|
// TODO: need to make sure we remove dc
|
|
return request`
|
|
POST /v1/connect/intentions?${{ [API_DATACENTER_KEY]: data[DATACENTER_KEY] }}
|
|
|
|
${{
|
|
SourceNS: serialized.SourceNS,
|
|
DestinationNS: serialized.DestinationNS,
|
|
SourceName: serialized.SourceName,
|
|
DestinationName: serialized.DestinationName,
|
|
SourceType: serialized.SourceType,
|
|
Action: serialized.Action,
|
|
Description: serialized.Description,
|
|
}}
|
|
`;
|
|
},
|
|
requestForUpdateRecord: function(request, serialized, data) {
|
|
return request`
|
|
PUT /v1/connect/intentions/${data[SLUG_KEY]}?${{ [API_DATACENTER_KEY]: data[DATACENTER_KEY] }}
|
|
|
|
${{
|
|
SourceNS: serialized.SourceNS,
|
|
DestinationNS: serialized.DestinationNS,
|
|
SourceName: serialized.SourceName,
|
|
DestinationName: serialized.DestinationName,
|
|
SourceType: serialized.SourceType,
|
|
Action: serialized.Action,
|
|
Description: serialized.Description,
|
|
}}
|
|
`;
|
|
},
|
|
requestForDeleteRecord: function(request, serialized, data) {
|
|
return request`
|
|
DELETE /v1/connect/intentions/${data[SLUG_KEY]}?${{
|
|
[API_DATACENTER_KEY]: data[DATACENTER_KEY],
|
|
}}
|
|
`;
|
|
},
|
|
});
|