103 lines
3.1 KiB
JavaScript
103 lines
3.1 KiB
JavaScript
import Adapter, { DATACENTER_QUERY_PARAM as API_DATACENTER_KEY } from './application';
|
|
import { get } from '@ember/object';
|
|
import { FOREIGN_KEY as DATACENTER_KEY } from 'consul-ui/models/dc';
|
|
|
|
// Intentions have different namespacing to the rest of the UI in that the don't
|
|
// have a Namespace property, the DestinationNS is essentially its namespace.
|
|
// Listing of intentions still requires the `ns` query string parameter which
|
|
// will give us all the intentions that have the `ns` as either the SourceNS or
|
|
// the DestinationNS.
|
|
// We currently list intentions by the * wildcard namespace for back compat reasons
|
|
|
|
// TODO: Update to use this.formatDatacenter()
|
|
export default class IntentionAdapter extends Adapter {
|
|
requestForQuery(request, { dc, ns, filter, index, uri }) {
|
|
return request`
|
|
GET /v1/connect/intentions?${{ dc }}
|
|
X-Request-ID: ${uri}${
|
|
typeof filter !== 'undefined'
|
|
? `
|
|
X-Range: ${filter}`
|
|
: ``
|
|
}
|
|
|
|
${{
|
|
...this.formatNspace('*'),
|
|
index,
|
|
filter,
|
|
}}
|
|
`;
|
|
}
|
|
|
|
requestForQueryRecord(request, { dc, index, id }) {
|
|
if (typeof id === 'undefined') {
|
|
throw new Error('You must specify an id');
|
|
}
|
|
|
|
// get the information we need from the id, which has been previously
|
|
// encoded
|
|
const [SourceNS, SourceName, DestinationNS, DestinationName] = id
|
|
.split(':')
|
|
.map(decodeURIComponent);
|
|
|
|
return request`
|
|
GET /v1/connect/intentions/exact?${{
|
|
source: `${SourceNS}/${SourceName}`,
|
|
destination: `${DestinationNS}/${DestinationName}`,
|
|
dc: dc,
|
|
}}
|
|
Cache-Control: no-store
|
|
|
|
${{ index }}
|
|
`;
|
|
}
|
|
|
|
requestForCreateRecord(request, serialized, data) {
|
|
const body = {
|
|
SourceNS: serialized.SourceNS,
|
|
DestinationNS: serialized.DestinationNS,
|
|
SourceName: serialized.SourceName,
|
|
DestinationName: serialized.DestinationName,
|
|
SourceType: serialized.SourceType,
|
|
Meta: serialized.Meta,
|
|
Description: serialized.Description,
|
|
};
|
|
|
|
// only send the Action if we have one
|
|
if (get(serialized, 'Action.length')) {
|
|
body.Action = serialized.Action;
|
|
} else {
|
|
// otherwise only send Permissions if we have them
|
|
if (serialized.Permissions) {
|
|
body.Permissions = serialized.Permissions;
|
|
}
|
|
}
|
|
return request`
|
|
PUT /v1/connect/intentions/exact?${{
|
|
source: `${data.SourceNS}/${data.SourceName}`,
|
|
destination: `${data.DestinationNS}/${data.DestinationName}`,
|
|
[API_DATACENTER_KEY]: data[DATACENTER_KEY],
|
|
}}
|
|
|
|
${body}
|
|
`;
|
|
}
|
|
|
|
requestForUpdateRecord(request, serialized, data) {
|
|
// you can no longer save Destinations
|
|
delete serialized.DestinationNS;
|
|
delete serialized.DestinationName;
|
|
return this.requestForCreateRecord(...arguments);
|
|
}
|
|
|
|
requestForDeleteRecord(request, serialized, data) {
|
|
return request`
|
|
DELETE /v1/connect/intentions/exact?${{
|
|
source: `${data.SourceNS}/${data.SourceName}`,
|
|
destination: `${data.DestinationNS}/${data.DestinationName}`,
|
|
[API_DATACENTER_KEY]: data[DATACENTER_KEY],
|
|
}}
|
|
`;
|
|
}
|
|
}
|