2020-03-19 10:28:21 +00:00
|
|
|
import Service, { inject as service } from '@ember/service';
|
|
|
|
import { get } from '@ember/object';
|
|
|
|
|
2020-11-09 09:25:35 +00:00
|
|
|
export default class HttpService extends Service {
|
|
|
|
@service('repository/dc')
|
|
|
|
datacenters;
|
|
|
|
|
|
|
|
@service('repository/node')
|
|
|
|
nodes;
|
|
|
|
|
|
|
|
@service('repository/node')
|
|
|
|
node;
|
|
|
|
|
|
|
|
@service('repository/node')
|
|
|
|
leader;
|
|
|
|
|
|
|
|
@service('repository/service')
|
|
|
|
gateways;
|
|
|
|
|
|
|
|
@service('repository/service')
|
|
|
|
services;
|
|
|
|
|
|
|
|
@service('repository/service')
|
|
|
|
service;
|
|
|
|
|
|
|
|
@service('repository/service-instance')
|
|
|
|
'service-instance';
|
|
|
|
|
2020-12-07 09:14:30 +00:00
|
|
|
@service('repository/service-instance')
|
|
|
|
'proxy-service-instance';
|
|
|
|
|
2020-11-09 09:25:35 +00:00
|
|
|
@service('repository/service-instance')
|
|
|
|
'service-instances';
|
|
|
|
|
|
|
|
@service('repository/proxy')
|
|
|
|
proxies;
|
|
|
|
|
|
|
|
@service('repository/proxy')
|
|
|
|
'proxy-instance';
|
|
|
|
|
|
|
|
@service('repository/discovery-chain')
|
|
|
|
'discovery-chain';
|
|
|
|
|
|
|
|
@service('repository/topology')
|
|
|
|
topology;
|
|
|
|
|
|
|
|
@service('repository/coordinate')
|
|
|
|
coordinates;
|
|
|
|
|
|
|
|
@service('repository/session')
|
|
|
|
sessions;
|
|
|
|
|
|
|
|
@service('repository/nspace')
|
|
|
|
namespaces;
|
|
|
|
|
|
|
|
@service('repository/intention')
|
|
|
|
intentions;
|
|
|
|
|
|
|
|
@service('repository/intention')
|
|
|
|
intention;
|
|
|
|
|
|
|
|
@service('repository/kv')
|
|
|
|
kv;
|
|
|
|
|
|
|
|
@service('repository/token')
|
|
|
|
token;
|
|
|
|
|
|
|
|
@service('repository/policy')
|
|
|
|
policies;
|
|
|
|
|
|
|
|
@service('repository/policy')
|
|
|
|
policy;
|
|
|
|
|
|
|
|
@service('repository/role')
|
|
|
|
roles;
|
|
|
|
|
|
|
|
@service('repository/oidc-provider')
|
|
|
|
oidc;
|
|
|
|
|
|
|
|
@service('repository/metrics')
|
|
|
|
metrics;
|
|
|
|
|
|
|
|
@service('data-source/protocols/http/blocking')
|
|
|
|
type;
|
|
|
|
|
|
|
|
source(src, configuration) {
|
2020-07-17 13:42:45 +00:00
|
|
|
// TODO: Consider adding/requiring 'action': nspace, dc, model, action, ...rest
|
|
|
|
const [, nspace, dc, model, ...rest] = src.split('/').map(decodeURIComponent);
|
|
|
|
// nspaces can be filled, blank or *
|
|
|
|
// so we might get urls like //dc/services
|
2020-03-19 10:28:21 +00:00
|
|
|
let find;
|
|
|
|
const repo = this[model];
|
2020-07-29 08:16:09 +00:00
|
|
|
configuration.createEvent = function(result = {}, configuration) {
|
|
|
|
const event = {
|
|
|
|
type: 'message',
|
|
|
|
data: result,
|
2020-03-19 10:28:21 +00:00
|
|
|
};
|
2020-07-29 08:16:09 +00:00
|
|
|
const meta = get(event, 'data.meta') || {};
|
|
|
|
if (typeof meta.range === 'undefined') {
|
|
|
|
repo.reconcile(meta);
|
|
|
|
}
|
|
|
|
return event;
|
|
|
|
};
|
2020-10-09 20:31:15 +00:00
|
|
|
let method, slug, more, protocol;
|
2020-03-19 10:28:21 +00:00
|
|
|
switch (model) {
|
2020-10-09 20:31:15 +00:00
|
|
|
case 'metrics':
|
|
|
|
[method, slug, ...more] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'summary-for-service':
|
|
|
|
[protocol, ...more] = more;
|
|
|
|
find = configuration =>
|
|
|
|
repo.findServiceSummary(protocol, slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
case 'upstream-summary-for-service':
|
|
|
|
find = configuration => repo.findUpstreamSummary(slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
case 'downstream-summary-for-service':
|
|
|
|
find = configuration => repo.findDownstreamSummary(slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2020-03-19 10:28:21 +00:00
|
|
|
case 'datacenters':
|
2020-04-21 15:49:11 +00:00
|
|
|
case 'namespaces':
|
|
|
|
find = configuration => repo.findAll(configuration);
|
|
|
|
break;
|
2020-07-09 09:08:47 +00:00
|
|
|
case 'services':
|
2020-07-17 13:42:45 +00:00
|
|
|
case 'nodes':
|
2020-04-22 16:30:26 +00:00
|
|
|
case 'roles':
|
|
|
|
case 'policies':
|
|
|
|
find = configuration => repo.findAllByDatacenter(dc, nspace, configuration);
|
|
|
|
break;
|
2020-10-06 13:26:44 +00:00
|
|
|
case 'leader':
|
|
|
|
find = configuration => repo.findLeader(dc, configuration);
|
|
|
|
break;
|
2020-07-09 09:08:47 +00:00
|
|
|
case 'intentions':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'for-service':
|
2020-07-17 13:42:45 +00:00
|
|
|
find = configuration => repo.findByService(slug, dc, nspace, configuration);
|
2020-07-09 09:08:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
find = configuration => repo.findAllByDatacenter(dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2020-08-26 14:24:30 +00:00
|
|
|
case 'service-instances':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'for-service':
|
|
|
|
find = configuration => repo.findByService(slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2020-07-17 13:42:45 +00:00
|
|
|
case 'coordinates':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'for-node':
|
|
|
|
find = configuration => repo.findAllByNode(slug, dc, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'proxies':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'for-service':
|
|
|
|
find = configuration => repo.findAllBySlug(slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'gateways':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'for-service':
|
|
|
|
find = configuration => repo.findGatewayBySlug(slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'sessions':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'for-node':
|
|
|
|
find = configuration => repo.findByNode(slug, dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'token':
|
|
|
|
find = configuration => repo.self(rest[1], dc);
|
|
|
|
break;
|
|
|
|
case 'discovery-chain':
|
|
|
|
case 'node':
|
|
|
|
find = configuration => repo.findBySlug(rest[0], dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
case 'service-instance':
|
2020-08-26 14:24:30 +00:00
|
|
|
// id, node, service
|
|
|
|
find = configuration =>
|
|
|
|
repo.findBySlug(rest[0], rest[1], rest[2], dc, nspace, configuration);
|
|
|
|
break;
|
2020-12-07 09:14:30 +00:00
|
|
|
case 'proxy-service-instance':
|
|
|
|
// id, node, service
|
|
|
|
find = configuration =>
|
|
|
|
repo.findProxyBySlug(rest[0], rest[1], rest[2], dc, nspace, configuration);
|
|
|
|
break;
|
2020-07-17 13:42:45 +00:00
|
|
|
case 'proxy-instance':
|
|
|
|
// id, node, service
|
|
|
|
find = configuration =>
|
|
|
|
repo.findInstanceBySlug(rest[0], rest[1], rest[2], dc, nspace, configuration);
|
|
|
|
break;
|
2020-10-09 18:39:16 +00:00
|
|
|
case 'topology':
|
|
|
|
// id, service kind
|
|
|
|
find = configuration => repo.findBySlug(rest[0], rest[1], dc, nspace, configuration);
|
|
|
|
break;
|
2020-07-17 13:42:45 +00:00
|
|
|
case 'policy':
|
2020-07-20 17:04:43 +00:00
|
|
|
case 'kv':
|
2020-07-09 09:08:47 +00:00
|
|
|
case 'intention':
|
2020-07-17 13:42:45 +00:00
|
|
|
slug = rest[0];
|
2020-07-09 09:08:47 +00:00
|
|
|
if (slug) {
|
|
|
|
find = configuration => repo.findBySlug(slug, dc, nspace, configuration);
|
|
|
|
} else {
|
|
|
|
find = configuration =>
|
|
|
|
Promise.resolve(repo.create({ Datacenter: dc, Namespace: nspace }));
|
|
|
|
}
|
|
|
|
break;
|
2020-05-11 15:37:11 +00:00
|
|
|
case 'oidc':
|
|
|
|
[method, ...slug] = rest;
|
|
|
|
switch (method) {
|
|
|
|
case 'providers':
|
|
|
|
find = configuration => repo.findAllByDatacenter(dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
case 'provider':
|
|
|
|
find = configuration => repo.findBySlug(slug[0], dc, nspace);
|
|
|
|
break;
|
|
|
|
case 'authorize':
|
|
|
|
find = configuration =>
|
|
|
|
repo.authorize(slug[0], slug[1], slug[2], dc, nspace, configuration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2020-03-19 10:28:21 +00:00
|
|
|
}
|
|
|
|
return this.type.source(find, configuration);
|
2020-11-09 09:25:35 +00:00
|
|
|
}
|
|
|
|
}
|