mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 22:34:55 +00:00
77b4d8f42a
* ui: Use `X-Range` header/meta to decide whether to reconcile or not Previously we used a `shouldReconcile` method in order to decide whether a response should trigger a reconciliation of the frontend ember-data 'source of truth' or not. It's a lot nicer/clearer if this 'flag' can be set alongside the HTTP request information, moreover we almost have the same functionality in `If-Range`/`Partial Content` HTTP functionality. Here we partly follow this HTTP semantics but use a custom `X-Range` header instead.
75 lines
2.3 KiB
JavaScript
75 lines
2.3 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, uri }) {
|
|
return request`
|
|
GET /v1/connect/intentions?${{ dc }}
|
|
X-Request-ID: ${uri}${
|
|
typeof filter !== 'undefined'
|
|
? `
|
|
X-Range: ${filter}`
|
|
: ``
|
|
}
|
|
|
|
${{
|
|
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 }}
|
|
Cache-Control: no-store
|
|
|
|
${{ 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],
|
|
}}
|
|
`;
|
|
},
|
|
});
|