@toa.io/extensions.exposition 0.8.3-dev.9 → 0.20.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/context.toa.yaml +15 -0
- package/components/identity.bans/manifest.toa.yaml +18 -0
- package/components/identity.basic/events/principal.js +9 -0
- package/components/identity.basic/manifest.toa.yaml +50 -0
- package/components/identity.basic/source/authenticate.ts +29 -0
- package/components/identity.basic/source/create.ts +19 -0
- package/components/identity.basic/source/transit.ts +64 -0
- package/components/identity.basic/source/types.ts +42 -0
- package/components/identity.basic/tsconfig.json +9 -0
- package/components/identity.roles/manifest.toa.yaml +31 -0
- package/components/identity.roles/source/list.ts +7 -0
- package/components/identity.roles/source/principal.ts +20 -0
- package/components/identity.roles/tsconfig.json +9 -0
- package/components/identity.tokens/manifest.toa.yaml +39 -0
- package/components/identity.tokens/receivers/identity.bans.updated.js +3 -0
- package/components/identity.tokens/source/authenticate.test.ts +56 -0
- package/components/identity.tokens/source/authenticate.ts +38 -0
- package/components/identity.tokens/source/decrypt.test.ts +59 -0
- package/components/identity.tokens/source/decrypt.ts +25 -0
- package/components/identity.tokens/source/encrypt.test.ts +35 -0
- package/components/identity.tokens/source/encrypt.ts +25 -0
- package/components/identity.tokens/source/revoke.ts +5 -0
- package/components/identity.tokens/source/types.ts +48 -0
- package/components/identity.tokens/tsconfig.json +9 -0
- package/cucumber.js +9 -0
- package/documentation/.assets/ia3-dark.jpg +0 -0
- package/documentation/.assets/ia3-light.jpg +0 -0
- package/documentation/.assets/overview-dark.jpg +0 -0
- package/documentation/.assets/overview-light.jpg +0 -0
- package/documentation/.assets/role-scopes-dark.jpg +0 -0
- package/documentation/.assets/role-scopes-light.jpg +0 -0
- package/documentation/.assets/rtd-dark.jpg +0 -0
- package/documentation/.assets/rtd-light.jpg +0 -0
- package/documentation/access.md +256 -0
- package/documentation/components.md +276 -0
- package/documentation/identity.md +156 -0
- package/documentation/protocol.md +15 -0
- package/documentation/query.md +226 -0
- package/documentation/tree.md +169 -0
- package/features/access.feature +442 -0
- package/features/annotation.feature +28 -0
- package/features/body.feature +21 -0
- package/features/directives.feature +56 -0
- package/features/dynamic.feature +89 -0
- package/features/errors.feature +208 -0
- package/features/identity.basic.feature +235 -0
- package/features/identity.feature +61 -0
- package/features/identity.roles.feature +51 -0
- package/features/identity.tokens.feature +116 -0
- package/features/queries.feature +214 -0
- package/features/routes.feature +49 -0
- package/features/steps/Common.ts +10 -0
- package/features/steps/Components.ts +43 -0
- package/features/steps/Database.ts +58 -0
- package/features/steps/Gateway.ts +105 -0
- package/features/steps/HTTP.ts +71 -0
- package/features/steps/Parameters.ts +12 -0
- package/features/steps/Workspace.ts +40 -0
- package/features/steps/components/greeter/manifest.toa.yaml +9 -0
- package/features/steps/components/greeter/operations/greet.js +7 -0
- package/features/steps/components/pots/manifest.toa.yaml +20 -0
- package/features/steps/components/users/manifest.toa.yaml +11 -0
- package/features/steps/tsconfig.json +9 -0
- package/package.json +31 -17
- package/readme.md +181 -0
- package/schemas/annotation.cos.yaml +4 -0
- package/schemas/directive.cos.yaml +3 -0
- package/schemas/method.cos.yaml +9 -0
- package/schemas/node.cos.yaml +5 -0
- package/schemas/query.cos.yaml +16 -0
- package/schemas/querystring.cos.yaml +5 -0
- package/schemas/range.cos.yaml +2 -0
- package/schemas/route.cos.yaml +2 -0
- package/source/Annotation.ts +6 -0
- package/source/Branch.ts +8 -0
- package/source/Composition.ts +58 -0
- package/source/Context.ts +6 -0
- package/source/Directive.test.ts +91 -0
- package/source/Directive.ts +120 -0
- package/source/Endpoint.ts +57 -0
- package/source/Factory.ts +53 -0
- package/source/Gateway.ts +93 -0
- package/source/HTTP/Server.fixtures.ts +45 -0
- package/source/HTTP/Server.test.ts +221 -0
- package/source/HTTP/Server.ts +135 -0
- package/source/HTTP/exceptions.ts +77 -0
- package/source/HTTP/formats/index.ts +19 -0
- package/source/HTTP/formats/json.ts +13 -0
- package/source/HTTP/formats/msgpack.ts +10 -0
- package/source/HTTP/formats/text.ts +9 -0
- package/source/HTTP/formats/yaml.ts +14 -0
- package/source/HTTP/index.ts +3 -0
- package/source/HTTP/messages.test.ts +116 -0
- package/source/HTTP/messages.ts +77 -0
- package/source/Mapping.ts +48 -0
- package/source/Query.test.ts +37 -0
- package/source/Query.ts +105 -0
- package/source/RTD/Context.ts +16 -0
- package/source/RTD/Directives.ts +9 -0
- package/source/RTD/Endpoint.ts +11 -0
- package/source/RTD/Match.ts +16 -0
- package/source/RTD/Method.ts +24 -0
- package/source/RTD/Node.ts +85 -0
- package/source/RTD/Route.ts +58 -0
- package/source/RTD/Tree.ts +57 -0
- package/source/RTD/factory.ts +47 -0
- package/source/RTD/index.ts +8 -0
- package/source/RTD/segment.test.ts +32 -0
- package/source/RTD/segment.ts +25 -0
- package/source/RTD/syntax/index.ts +2 -0
- package/source/RTD/syntax/parse.test.ts +188 -0
- package/source/RTD/syntax/parse.ts +153 -0
- package/source/RTD/syntax/types.ts +48 -0
- package/source/Remotes.test.ts +41 -0
- package/source/Remotes.ts +20 -0
- package/source/Tenant.ts +38 -0
- package/source/deployment.ts +42 -0
- package/source/directives/auth/Anonymous.ts +14 -0
- package/source/directives/auth/Echo.ts +12 -0
- package/source/directives/auth/Family.ts +145 -0
- package/source/directives/auth/Id.ts +19 -0
- package/source/directives/auth/Incept.ts +42 -0
- package/source/directives/auth/Role.test.ts +62 -0
- package/source/directives/auth/Role.ts +56 -0
- package/source/directives/auth/Rule.ts +28 -0
- package/source/directives/auth/Scheme.ts +26 -0
- package/source/directives/auth/index.ts +3 -0
- package/source/directives/auth/schemes.ts +8 -0
- package/source/directives/auth/split.ts +15 -0
- package/source/directives/auth/types.ts +37 -0
- package/source/directives/dev/Family.ts +34 -0
- package/source/directives/dev/Stub.ts +14 -0
- package/source/directives/dev/index.ts +3 -0
- package/source/directives/dev/types.ts +5 -0
- package/source/directives/index.ts +5 -0
- package/source/discovery.ts +1 -0
- package/source/exceptions.ts +17 -0
- package/source/index.test.ts +9 -0
- package/source/index.ts +6 -0
- package/source/manifest.test.ts +57 -0
- package/source/manifest.ts +35 -0
- package/source/root.ts +38 -0
- package/source/schemas.ts +9 -0
- package/transpiled/Annotation.d.ts +6 -0
- package/transpiled/Annotation.js +3 -0
- package/transpiled/Annotation.js.map +1 -0
- package/transpiled/Branch.d.ts +7 -0
- package/transpiled/Branch.js +3 -0
- package/transpiled/Branch.js.map +1 -0
- package/transpiled/Composition.d.ts +14 -0
- package/transpiled/Composition.js +43 -0
- package/transpiled/Composition.js.map +1 -0
- package/transpiled/Context.d.ts +5 -0
- package/transpiled/Context.js +3 -0
- package/transpiled/Context.js.map +1 -0
- package/transpiled/Directive.d.ts +32 -0
- package/transpiled/Directive.js +76 -0
- package/transpiled/Directive.js.map +1 -0
- package/transpiled/Endpoint.d.ts +20 -0
- package/transpiled/Endpoint.js +44 -0
- package/transpiled/Endpoint.js.map +1 -0
- package/transpiled/Factory.d.ts +11 -0
- package/transpiled/Factory.js +67 -0
- package/transpiled/Factory.js.map +1 -0
- package/transpiled/Gateway.d.ts +19 -0
- package/transpiled/Gateway.js +90 -0
- package/transpiled/Gateway.js.map +1 -0
- package/transpiled/HTTP/Server.d.ts +22 -0
- package/transpiled/HTTP/Server.fixtures.d.ts +12 -0
- package/transpiled/HTTP/Server.fixtures.js +36 -0
- package/transpiled/HTTP/Server.fixtures.js.map +1 -0
- package/transpiled/HTTP/Server.js +111 -0
- package/transpiled/HTTP/Server.js.map +1 -0
- package/transpiled/HTTP/exceptions.d.ts +39 -0
- package/transpiled/HTTP/exceptions.js +78 -0
- package/transpiled/HTTP/exceptions.js.map +1 -0
- package/transpiled/HTTP/formats/index.d.ts +8 -0
- package/transpiled/HTTP/formats/index.js +38 -0
- package/transpiled/HTTP/formats/index.js.map +1 -0
- package/transpiled/HTTP/formats/json.d.ts +4 -0
- package/transpiled/HTTP/formats/json.js +15 -0
- package/transpiled/HTTP/formats/json.js.map +1 -0
- package/transpiled/HTTP/formats/msgpack.d.ts +4 -0
- package/transpiled/HTTP/formats/msgpack.js +36 -0
- package/transpiled/HTTP/formats/msgpack.js.map +1 -0
- package/transpiled/HTTP/formats/text.d.ts +4 -0
- package/transpiled/HTTP/formats/text.js +13 -0
- package/transpiled/HTTP/formats/text.js.map +1 -0
- package/transpiled/HTTP/formats/yaml.d.ts +4 -0
- package/transpiled/HTTP/formats/yaml.js +39 -0
- package/transpiled/HTTP/formats/yaml.js.map +1 -0
- package/transpiled/HTTP/index.d.ts +3 -0
- package/transpiled/HTTP/index.js +20 -0
- package/transpiled/HTTP/index.js.map +1 -0
- package/transpiled/HTTP/messages.d.ts +27 -0
- package/transpiled/HTTP/messages.js +49 -0
- package/transpiled/HTTP/messages.js.map +1 -0
- package/transpiled/Mapping.d.ts +8 -0
- package/transpiled/Mapping.js +35 -0
- package/transpiled/Mapping.js.map +1 -0
- package/transpiled/Query.d.ts +13 -0
- package/transpiled/Query.js +107 -0
- package/transpiled/Query.js.map +1 -0
- package/transpiled/RTD/Context.d.ts +11 -0
- package/transpiled/RTD/Context.js +3 -0
- package/transpiled/RTD/Context.js.map +1 -0
- package/transpiled/RTD/Directives.d.ts +7 -0
- package/transpiled/RTD/Directives.js +3 -0
- package/transpiled/RTD/Directives.js.map +1 -0
- package/transpiled/RTD/Endpoint.d.ts +9 -0
- package/transpiled/RTD/Endpoint.js +3 -0
- package/transpiled/RTD/Endpoint.js.map +1 -0
- package/transpiled/RTD/Match.d.ts +11 -0
- package/transpiled/RTD/Match.js +3 -0
- package/transpiled/RTD/Match.js.map +1 -0
- package/transpiled/RTD/Method.d.ts +9 -0
- package/transpiled/RTD/Method.js +16 -0
- package/transpiled/RTD/Method.js.map +1 -0
- package/transpiled/RTD/Node.d.ts +21 -0
- package/transpiled/RTD/Node.js +61 -0
- package/transpiled/RTD/Node.js.map +1 -0
- package/transpiled/RTD/Route.d.ts +14 -0
- package/transpiled/RTD/Route.js +48 -0
- package/transpiled/RTD/Route.js.map +1 -0
- package/transpiled/RTD/Tree.d.ts +14 -0
- package/transpiled/RTD/Tree.js +45 -0
- package/transpiled/RTD/Tree.js.map +1 -0
- package/transpiled/RTD/factory.d.ts +6 -0
- package/transpiled/RTD/factory.js +36 -0
- package/transpiled/RTD/factory.js.map +1 -0
- package/transpiled/RTD/index.d.ts +8 -0
- package/transpiled/RTD/index.js +38 -0
- package/transpiled/RTD/index.js.map +1 -0
- package/transpiled/RTD/segment.d.ts +8 -0
- package/transpiled/RTD/segment.js +23 -0
- package/transpiled/RTD/segment.js.map +1 -0
- package/transpiled/RTD/syntax/index.d.ts +2 -0
- package/transpiled/RTD/syntax/index.js +19 -0
- package/transpiled/RTD/syntax/index.js.map +1 -0
- package/transpiled/RTD/syntax/parse.d.ts +4 -0
- package/transpiled/RTD/syntax/parse.js +128 -0
- package/transpiled/RTD/syntax/parse.js.map +1 -0
- package/transpiled/RTD/syntax/types.d.ts +41 -0
- package/transpiled/RTD/syntax/types.js +5 -0
- package/transpiled/RTD/syntax/types.js.map +1 -0
- package/transpiled/Remotes.d.ts +7 -0
- package/transpiled/Remotes.js +19 -0
- package/transpiled/Remotes.js.map +1 -0
- package/transpiled/Tenant.d.ts +12 -0
- package/transpiled/Tenant.js +30 -0
- package/transpiled/Tenant.js.map +1 -0
- package/transpiled/deployment.d.ts +3 -0
- package/transpiled/deployment.js +61 -0
- package/transpiled/deployment.js.map +1 -0
- package/transpiled/directives/auth/Anonymous.d.ts +6 -0
- package/transpiled/directives/auth/Anonymous.js +17 -0
- package/transpiled/directives/auth/Anonymous.js.map +1 -0
- package/transpiled/directives/auth/Echo.d.ts +6 -0
- package/transpiled/directives/auth/Echo.js +13 -0
- package/transpiled/directives/auth/Echo.js.map +1 -0
- package/transpiled/directives/auth/Family.d.ts +20 -0
- package/transpiled/directives/auth/Family.js +125 -0
- package/transpiled/directives/auth/Family.js.map +1 -0
- package/transpiled/directives/auth/Id.d.ts +7 -0
- package/transpiled/directives/auth/Id.js +17 -0
- package/transpiled/directives/auth/Id.js.map +1 -0
- package/transpiled/directives/auth/Incept.d.ts +10 -0
- package/transpiled/directives/auth/Incept.js +59 -0
- package/transpiled/directives/auth/Incept.js.map +1 -0
- package/transpiled/directives/auth/Role.d.ts +11 -0
- package/transpiled/directives/auth/Role.js +44 -0
- package/transpiled/directives/auth/Role.js.map +1 -0
- package/transpiled/directives/auth/Rule.d.ts +9 -0
- package/transpiled/directives/auth/Rule.js +22 -0
- package/transpiled/directives/auth/Rule.js.map +1 -0
- package/transpiled/directives/auth/Scheme.d.ts +7 -0
- package/transpiled/directives/auth/Scheme.js +47 -0
- package/transpiled/directives/auth/Scheme.js.map +1 -0
- package/transpiled/directives/auth/index.d.ts +2 -0
- package/transpiled/directives/auth/index.js +7 -0
- package/transpiled/directives/auth/index.js.map +1 -0
- package/transpiled/directives/auth/schemes.d.ts +3 -0
- package/transpiled/directives/auth/schemes.js +9 -0
- package/transpiled/directives/auth/schemes.js.map +1 -0
- package/transpiled/directives/auth/split.d.ts +2 -0
- package/transpiled/directives/auth/split.js +38 -0
- package/transpiled/directives/auth/split.js.map +1 -0
- package/transpiled/directives/auth/types.d.ts +31 -0
- package/transpiled/directives/auth/types.js +3 -0
- package/transpiled/directives/auth/types.js.map +1 -0
- package/transpiled/directives/dev/Family.d.ts +10 -0
- package/transpiled/directives/dev/Family.js +25 -0
- package/transpiled/directives/dev/Family.js.map +1 -0
- package/transpiled/directives/dev/Stub.d.ts +7 -0
- package/transpiled/directives/dev/Stub.js +14 -0
- package/transpiled/directives/dev/Stub.js.map +1 -0
- package/transpiled/directives/dev/index.d.ts +2 -0
- package/transpiled/directives/dev/index.js +7 -0
- package/transpiled/directives/dev/index.js.map +1 -0
- package/transpiled/directives/dev/types.d.ts +4 -0
- package/transpiled/directives/dev/types.js +3 -0
- package/transpiled/directives/dev/types.js.map +1 -0
- package/transpiled/directives/index.d.ts +2 -0
- package/transpiled/directives/index.js +10 -0
- package/transpiled/directives/index.js.map +1 -0
- package/transpiled/discovery.d.ts +1 -0
- package/transpiled/discovery.js +3 -0
- package/transpiled/discovery.js.map +1 -0
- package/transpiled/exceptions.d.ts +2 -0
- package/transpiled/exceptions.js +39 -0
- package/transpiled/exceptions.js.map +1 -0
- package/transpiled/index.d.ts +5 -0
- package/transpiled/index.js +12 -0
- package/transpiled/index.js.map +1 -0
- package/transpiled/manifest.d.ts +3 -0
- package/transpiled/manifest.js +30 -0
- package/transpiled/manifest.js.map +1 -0
- package/transpiled/root.d.ts +2 -0
- package/transpiled/root.js +39 -0
- package/transpiled/root.js.map +1 -0
- package/transpiled/schemas.d.ts +3 -0
- package/transpiled/schemas.js +14 -0
- package/transpiled/schemas.js.map +1 -0
- package/transpiled/tsconfig.tsbuildinfo +1 -0
- package/tsconfig.json +12 -0
- package/src/.manifest/index.js +0 -7
- package/src/.manifest/normalize.js +0 -58
- package/src/.manifest/schema.yaml +0 -69
- package/src/.manifest/validate.js +0 -17
- package/src/constants.js +0 -3
- package/src/deployment.js +0 -23
- package/src/exposition.js +0 -68
- package/src/factory.js +0 -76
- package/src/index.js +0 -9
- package/src/manifest.js +0 -12
- package/src/query/criteria.js +0 -55
- package/src/query/enum.js +0 -35
- package/src/query/index.js +0 -17
- package/src/query/query.js +0 -60
- package/src/query/range.js +0 -28
- package/src/query/sort.js +0 -19
- package/src/remote.js +0 -88
- package/src/server.js +0 -83
- package/src/tenant.js +0 -29
- package/src/translate/etag.js +0 -14
- package/src/translate/index.js +0 -7
- package/src/translate/request.js +0 -68
- package/src/translate/response.js +0 -62
- package/src/tree.js +0 -109
- package/test/manifest.normalize.fixtures.js +0 -37
- package/test/manifest.normalize.test.js +0 -37
- package/test/manifest.validate.test.js +0 -40
- package/test/query.range.test.js +0 -18
- package/test/tree.fixtures.js +0 -21
- package/test/tree.test.js +0 -44
- package/types/annotations.d.ts +0 -10
- package/types/declarations.d.ts +0 -31
- package/types/exposition.d.ts +0 -13
- package/types/http.d.ts +0 -13
- package/types/query.d.ts +0 -16
- package/types/remote.d.ts +0 -19
- package/types/server.d.ts +0 -13
- package/types/tree.d.ts +0 -33
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.createNode = exports.parse = void 0;
|
|
27
|
+
const schemas = __importStar(require("../../schemas"));
|
|
28
|
+
const types_1 = require("./types");
|
|
29
|
+
function parse(input, shortcuts) {
|
|
30
|
+
const node = parseNode(input, shortcuts);
|
|
31
|
+
schemas.node.validate(node);
|
|
32
|
+
return node;
|
|
33
|
+
}
|
|
34
|
+
exports.parse = parse;
|
|
35
|
+
function parseNode(input, shortcuts) {
|
|
36
|
+
const node = createNode();
|
|
37
|
+
for (const [key, value] of Object.entries(input)) {
|
|
38
|
+
if (PROPERTIES.includes(key)) {
|
|
39
|
+
node[key] = value;
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
42
|
+
if (key[0] === '/') {
|
|
43
|
+
const route = parseRoute(key, value, shortcuts);
|
|
44
|
+
node.routes.push(route);
|
|
45
|
+
continue;
|
|
46
|
+
}
|
|
47
|
+
if (types_1.verbs.has(key)) {
|
|
48
|
+
const method = parseMethod(key, value, shortcuts);
|
|
49
|
+
node.methods.push(method);
|
|
50
|
+
continue;
|
|
51
|
+
}
|
|
52
|
+
const directive = parseDirective(key, value, shortcuts);
|
|
53
|
+
if (directive !== null) {
|
|
54
|
+
node.directives.push(directive);
|
|
55
|
+
continue;
|
|
56
|
+
}
|
|
57
|
+
throw new Error(`RTD parse error: unknown key '${key}'.`);
|
|
58
|
+
}
|
|
59
|
+
return node;
|
|
60
|
+
}
|
|
61
|
+
function createNode() {
|
|
62
|
+
return {
|
|
63
|
+
routes: [],
|
|
64
|
+
methods: [],
|
|
65
|
+
directives: []
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
exports.createNode = createNode;
|
|
69
|
+
function parseRoute(path, value, shortcuts) {
|
|
70
|
+
const node = parse(value, shortcuts);
|
|
71
|
+
return createRoute(path, node);
|
|
72
|
+
}
|
|
73
|
+
function createRoute(path, node) {
|
|
74
|
+
return { path, node };
|
|
75
|
+
}
|
|
76
|
+
function parseMethod(verb, value, shortcuts) {
|
|
77
|
+
const mapping = typeof value === 'string' ? { endpoint: value } : value;
|
|
78
|
+
parseEndpoint(mapping);
|
|
79
|
+
parseQuery(mapping);
|
|
80
|
+
const directives = parseDirectives(mapping, shortcuts);
|
|
81
|
+
return { verb, mapping, directives };
|
|
82
|
+
}
|
|
83
|
+
function parseEndpoint(mapping) {
|
|
84
|
+
if (mapping.endpoint === undefined)
|
|
85
|
+
return;
|
|
86
|
+
const [endpoiont, component, namespace] = mapping.endpoint.split('.').reverse();
|
|
87
|
+
if (component !== undefined) {
|
|
88
|
+
mapping.component = component;
|
|
89
|
+
mapping.namespace = namespace ?? mapping.namespace ?? 'default';
|
|
90
|
+
mapping.endpoint = endpoiont;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
function parseQuery(mapping) {
|
|
94
|
+
const query = mapping.query;
|
|
95
|
+
if (query === undefined)
|
|
96
|
+
return;
|
|
97
|
+
if (typeof query.limit === 'number')
|
|
98
|
+
query.limit = expandRange(query.limit);
|
|
99
|
+
if (typeof query.omit === 'number')
|
|
100
|
+
query.omit = expandRange(query.omit);
|
|
101
|
+
}
|
|
102
|
+
function parseDirectives(mapping, shortcuts) {
|
|
103
|
+
const directives = [];
|
|
104
|
+
for (const [key, value] of Object.entries(mapping)) {
|
|
105
|
+
const directive = parseDirective(key, value, shortcuts);
|
|
106
|
+
if (directive === null)
|
|
107
|
+
continue;
|
|
108
|
+
directives.push(directive);
|
|
109
|
+
// eslint-disable-next-line @typescript-eslint/no-dynamic-delete
|
|
110
|
+
delete mapping[key];
|
|
111
|
+
}
|
|
112
|
+
return directives;
|
|
113
|
+
}
|
|
114
|
+
function parseDirective(key, value, shortcuts) {
|
|
115
|
+
if (shortcuts?.has(key) === true)
|
|
116
|
+
key = shortcuts.get(key);
|
|
117
|
+
const match = key.match(DIRECTIVE_RX);
|
|
118
|
+
if (match === null)
|
|
119
|
+
return null;
|
|
120
|
+
const { family, name } = match.groups;
|
|
121
|
+
return { family, name, value };
|
|
122
|
+
}
|
|
123
|
+
function expandRange(range) {
|
|
124
|
+
return { value: range, range: [range, range] };
|
|
125
|
+
}
|
|
126
|
+
const DIRECTIVE_RX = /^(?<family>\w{1,32}):(?<name>\w{1,32})$/;
|
|
127
|
+
const PROPERTIES = ['protected', 'isolated'];
|
|
128
|
+
//# sourceMappingURL=parse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parse.js","sourceRoot":"","sources":["../../../source/RTD/syntax/parse.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export interface Node {
|
|
2
|
+
protected?: boolean;
|
|
3
|
+
isolated?: boolean;
|
|
4
|
+
routes: Route[];
|
|
5
|
+
methods: Method[];
|
|
6
|
+
directives: Directive[];
|
|
7
|
+
}
|
|
8
|
+
export interface Route {
|
|
9
|
+
path: string;
|
|
10
|
+
node: Node;
|
|
11
|
+
}
|
|
12
|
+
export interface Method {
|
|
13
|
+
verb: string;
|
|
14
|
+
mapping?: Mapping;
|
|
15
|
+
directives: Directive[];
|
|
16
|
+
}
|
|
17
|
+
export interface Directive {
|
|
18
|
+
family: string;
|
|
19
|
+
name: string;
|
|
20
|
+
value: any;
|
|
21
|
+
}
|
|
22
|
+
export interface Mapping {
|
|
23
|
+
namespace?: string;
|
|
24
|
+
component?: string;
|
|
25
|
+
endpoint: string;
|
|
26
|
+
query?: Query;
|
|
27
|
+
}
|
|
28
|
+
export interface Query {
|
|
29
|
+
id?: string;
|
|
30
|
+
criteria?: string;
|
|
31
|
+
sort?: string;
|
|
32
|
+
omit: Range;
|
|
33
|
+
limit: Range;
|
|
34
|
+
selectors?: string[];
|
|
35
|
+
projection?: string[];
|
|
36
|
+
}
|
|
37
|
+
export interface Range {
|
|
38
|
+
value?: number;
|
|
39
|
+
range: [number, number];
|
|
40
|
+
}
|
|
41
|
+
export declare const verbs: Set<string>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../source/RTD/syntax/types.ts"],"names":[],"mappings":";;;AA+Ca,QAAA,KAAK,GAAG,IAAI,GAAG,CAAS,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Connector, type Component } from '@toa.io/core';
|
|
2
|
+
import { type Bootloader } from './Factory';
|
|
3
|
+
export declare class Remotes extends Connector {
|
|
4
|
+
private readonly boot;
|
|
5
|
+
constructor(boot: Bootloader);
|
|
6
|
+
discover(namespace: string, name: string): Promise<Component>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Remotes = void 0;
|
|
4
|
+
const core_1 = require("@toa.io/core");
|
|
5
|
+
class Remotes extends core_1.Connector {
|
|
6
|
+
boot;
|
|
7
|
+
constructor(boot) {
|
|
8
|
+
super();
|
|
9
|
+
this.boot = boot;
|
|
10
|
+
}
|
|
11
|
+
async discover(namespace, name) {
|
|
12
|
+
const locator = new core_1.Locator(name, namespace);
|
|
13
|
+
const remote = await this.boot.remote(locator);
|
|
14
|
+
this.depends(remote);
|
|
15
|
+
return remote;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
exports.Remotes = Remotes;
|
|
19
|
+
//# sourceMappingURL=Remotes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Remotes.js","sourceRoot":"","sources":["../source/Remotes.ts"],"names":[],"mappings":";;;AAAA,uCAAiE;AAGjE,MAAa,OAAQ,SAAQ,gBAAS;IACnB,IAAI,CAAY;IAEjC,YAAoB,IAAgB;QAClC,KAAK,EAAE,CAAA;QACP,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;IAClB,CAAC;IAEM,KAAK,CAAC,QAAQ,CAAE,SAAiB,EAAE,IAAY;QACpD,MAAM,OAAO,GAAG,IAAI,cAAO,CAAC,IAAI,EAAE,SAAS,CAAC,CAAA;QAC5C,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAA;QAE9C,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;QAEpB,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAhBD,0BAgBC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Connector, type Locator, type bindings } from '@toa.io/core';
|
|
2
|
+
import { type Label } from './discovery';
|
|
3
|
+
import type * as RTD from './RTD/syntax';
|
|
4
|
+
export declare class Tenant extends Connector {
|
|
5
|
+
private readonly broadcast;
|
|
6
|
+
private readonly branch;
|
|
7
|
+
constructor(broadcast: Broadcast, locator: Locator, node: RTD.Node);
|
|
8
|
+
open(): Promise<void>;
|
|
9
|
+
private expose;
|
|
10
|
+
}
|
|
11
|
+
type Broadcast = bindings.Broadcast<Label>;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Tenant = void 0;
|
|
4
|
+
const core_1 = require("@toa.io/core");
|
|
5
|
+
class Tenant extends core_1.Connector {
|
|
6
|
+
broadcast;
|
|
7
|
+
branch;
|
|
8
|
+
constructor(broadcast, locator, node) {
|
|
9
|
+
super();
|
|
10
|
+
this.broadcast = broadcast;
|
|
11
|
+
this.branch = {
|
|
12
|
+
namespace: locator.namespace,
|
|
13
|
+
component: locator.name,
|
|
14
|
+
isolated: locator.namespace === 'identity',
|
|
15
|
+
node
|
|
16
|
+
};
|
|
17
|
+
this.depends(broadcast);
|
|
18
|
+
}
|
|
19
|
+
async open() {
|
|
20
|
+
await this.expose();
|
|
21
|
+
await this.broadcast.receive('ping', this.expose.bind(this));
|
|
22
|
+
console.info('Exposition Tenant for ' +
|
|
23
|
+
`'${this.branch.namespace}.${this.branch.component}' has started.`);
|
|
24
|
+
}
|
|
25
|
+
async expose() {
|
|
26
|
+
await this.broadcast.transmit('expose', this.branch);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
exports.Tenant = Tenant;
|
|
30
|
+
//# sourceMappingURL=Tenant.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tenant.js","sourceRoot":"","sources":["../source/Tenant.ts"],"names":[],"mappings":";;;AAAA,uCAAqE;AAKrE,MAAa,MAAO,SAAQ,gBAAS;IAClB,SAAS,CAAW;IACpB,MAAM,CAAQ;IAE/B,YAAoB,SAAoB,EAAE,OAAgB,EAAE,IAAc;QACxE,KAAK,EAAE,CAAA;QAEP,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;QAE1B,IAAI,CAAC,MAAM,GAAG;YACZ,SAAS,EAAE,OAAO,CAAC,SAAS;YAC5B,SAAS,EAAE,OAAO,CAAC,IAAI;YACvB,QAAQ,EAAE,OAAO,CAAC,SAAS,KAAK,UAAU;YAC1C,IAAI;SACL,CAAA;QAED,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;IACzB,CAAC;IAEe,KAAK,CAAC,IAAI;QACxB,MAAM,IAAI,CAAC,MAAM,EAAE,CAAA;QACnB,MAAM,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAA;QAE5D,OAAO,CAAC,IAAI,CAAC,wBAAwB;YACnC,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,IAAI,IAAI,CAAC,MAAM,CAAC,SAAS,gBAAgB,CAAC,CAAA;IACvE,CAAC;IAEO,KAAK,CAAC,MAAM;QAClB,MAAM,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,QAAQ,EAAE,IAAI,CAAC,MAAM,CAAC,CAAA;IACtD,CAAC;CACF;AA9BD,wBA8BC"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.deployment = void 0;
|
|
27
|
+
const generic_1 = require("@toa.io/generic");
|
|
28
|
+
const schemas = __importStar(require("./schemas"));
|
|
29
|
+
const Directive_1 = require("./Directive");
|
|
30
|
+
const Composition_1 = require("./Composition");
|
|
31
|
+
const syntax_1 = require("./RTD/syntax");
|
|
32
|
+
function deployment(_, annotation) {
|
|
33
|
+
const labels = (0, Composition_1.components)().labels;
|
|
34
|
+
const service = {
|
|
35
|
+
group: 'exposition',
|
|
36
|
+
name: 'gateway',
|
|
37
|
+
port: 8000,
|
|
38
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
39
|
+
version: require('../package.json').version,
|
|
40
|
+
variables: [],
|
|
41
|
+
components: labels
|
|
42
|
+
};
|
|
43
|
+
if (annotation?.host !== undefined)
|
|
44
|
+
service.ingress = {
|
|
45
|
+
host: annotation.host,
|
|
46
|
+
class: annotation.class,
|
|
47
|
+
annotations: annotation.annotations
|
|
48
|
+
};
|
|
49
|
+
if (annotation?.['/'] !== undefined) {
|
|
50
|
+
annotation['/'] = (0, syntax_1.parse)(annotation['/'], Directive_1.shortcuts);
|
|
51
|
+
service.variables.push({
|
|
52
|
+
name: 'TOA_EXPOSITION',
|
|
53
|
+
value: (0, generic_1.encode)(annotation['/'])
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
if (annotation !== undefined)
|
|
57
|
+
schemas.annotaion.validate(annotation);
|
|
58
|
+
return { services: [service] };
|
|
59
|
+
}
|
|
60
|
+
exports.deployment = deployment;
|
|
61
|
+
//# sourceMappingURL=deployment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../source/deployment.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AACA,6CAAwC;AAExC,mDAAoC;AACpC,2CAAuC;AACvC,+CAA0C;AAC1C,yCAAoC;AAEpC,SAAgB,UAAU,CAAE,CAAU,EAAE,UAAkC;IACxE,MAAM,MAAM,GAAG,IAAA,wBAAU,GAAE,CAAC,MAAM,CAAA;IAElC,MAAM,OAAO,GAAY;QACvB,KAAK,EAAE,YAAY;QACnB,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,IAAI;QACV,8DAA8D;QAC9D,OAAO,EAAE,OAAO,CAAC,iBAAiB,CAAC,CAAC,OAAO;QAC3C,SAAS,EAAE,EAAE;QACb,UAAU,EAAE,MAAM;KACnB,CAAA;IAED,IAAI,UAAU,EAAE,IAAI,KAAK,SAAS;QAChC,OAAO,CAAC,OAAO,GAAG;YAChB,IAAI,EAAE,UAAU,CAAC,IAAI;YACrB,KAAK,EAAE,UAAU,CAAC,KAAK;YACvB,WAAW,EAAE,UAAU,CAAC,WAAW;SACpC,CAAA;IAEH,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,KAAK,SAAS,EAAE;QACnC,UAAU,CAAC,GAAG,CAAC,GAAG,IAAA,cAAK,EAAC,UAAU,CAAC,GAAG,CAAC,EAAE,qBAAS,CAAC,CAAA;QAEnD,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC;YACrB,IAAI,EAAE,gBAAgB;YACtB,KAAK,EAAE,IAAA,gBAAM,EAAC,UAAU,CAAC,GAAG,CAAC,CAAC;SAC/B,CAAC,CAAA;KACH;IAED,IAAI,UAAU,KAAK,SAAS;QAC1B,OAAO,CAAC,SAAS,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAA;IAExC,OAAO,EAAE,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAA;AAChC,CAAC;AAjCD,gCAiCC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Anonymous = void 0;
|
|
4
|
+
class Anonymous {
|
|
5
|
+
allow;
|
|
6
|
+
constructor(allow) {
|
|
7
|
+
this.allow = allow;
|
|
8
|
+
}
|
|
9
|
+
authorize(_, input) {
|
|
10
|
+
if ('authorization' in input.headers)
|
|
11
|
+
return false;
|
|
12
|
+
else
|
|
13
|
+
return this.allow;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.Anonymous = Anonymous;
|
|
17
|
+
//# sourceMappingURL=Anonymous.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Anonymous.js","sourceRoot":"","sources":["../../../source/directives/auth/Anonymous.ts"],"names":[],"mappings":";;;AAEA,MAAa,SAAS;IACH,KAAK,CAAS;IAE/B,YAAoB,KAAc;QAChC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAA;IACpB,CAAC;IAEM,SAAS,CAAE,CAAM,EAAE,KAAY;QACpC,IAAI,eAAe,IAAI,KAAK,CAAC,OAAO;YAAE,OAAO,KAAK,CAAA;;YAC7C,OAAO,IAAI,CAAC,KAAK,CAAA;IACxB,CAAC;CACF;AAXD,8BAWC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Echo = void 0;
|
|
4
|
+
class Echo {
|
|
5
|
+
authorize(identity) {
|
|
6
|
+
return identity !== null;
|
|
7
|
+
}
|
|
8
|
+
reply(identity) {
|
|
9
|
+
return { body: identity };
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.Echo = Echo;
|
|
13
|
+
//# sourceMappingURL=Echo.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Echo.js","sourceRoot":"","sources":["../../../source/directives/auth/Echo.ts"],"names":[],"mappings":";;;AAGA,MAAa,IAAI;IACR,SAAS,CAAE,QAAyB;QACzC,OAAO,QAAQ,KAAK,IAAI,CAAA;IAC1B,CAAC;IAEM,KAAK,CAAE,QAAyB;QACrC,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,CAAA;IAC3B,CAAC;CACF;AARD,oBAQC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { type Parameter } from '../../RTD';
|
|
2
|
+
import { type Family, type Output } from '../../Directive';
|
|
3
|
+
import { type Remotes } from '../../Remotes';
|
|
4
|
+
import * as http from '../../HTTP';
|
|
5
|
+
import { type Directive, type Extension, type Input } from './types';
|
|
6
|
+
declare class Authorization implements Family<Directive, Extension> {
|
|
7
|
+
readonly name: string;
|
|
8
|
+
readonly mandatory: boolean;
|
|
9
|
+
private readonly schemes;
|
|
10
|
+
private readonly discovery;
|
|
11
|
+
private tokens;
|
|
12
|
+
private bans;
|
|
13
|
+
create(name: string, value: any, remotes: Remotes): Directive;
|
|
14
|
+
preflight(directives: Directive[], input: Input, parameters: Parameter[]): Promise<Output>;
|
|
15
|
+
settle(directives: Directive[], request: Input, response: http.OutgoingMessage): Promise<void>;
|
|
16
|
+
private resolve;
|
|
17
|
+
private banned;
|
|
18
|
+
}
|
|
19
|
+
declare const _default: Authorization;
|
|
20
|
+
export = _default;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
const nopeable_1 = require("nopeable");
|
|
26
|
+
const http = __importStar(require("../../HTTP"));
|
|
27
|
+
const Anonymous_1 = require("./Anonymous");
|
|
28
|
+
const Id_1 = require("./Id");
|
|
29
|
+
const Role_1 = require("./Role");
|
|
30
|
+
const Rule_1 = require("./Rule");
|
|
31
|
+
const Incept_1 = require("./Incept");
|
|
32
|
+
const split_1 = require("./split");
|
|
33
|
+
const schemes_1 = require("./schemes");
|
|
34
|
+
const Scheme_1 = require("./Scheme");
|
|
35
|
+
const Echo_1 = require("./Echo");
|
|
36
|
+
class Authorization {
|
|
37
|
+
name = 'auth';
|
|
38
|
+
mandatory = true;
|
|
39
|
+
schemes = {};
|
|
40
|
+
discovery = {};
|
|
41
|
+
tokens = null;
|
|
42
|
+
bans = null;
|
|
43
|
+
create(name, value, remotes) {
|
|
44
|
+
const Class = CLASSES[name];
|
|
45
|
+
if (Class === undefined)
|
|
46
|
+
throw new Error(`Directive '${name}' is not provided by the '${this.name}' family.`);
|
|
47
|
+
for (const name of REMOTES)
|
|
48
|
+
this.discovery[name] ??= remotes.discover('identity', name);
|
|
49
|
+
if (Class === Role_1.Role)
|
|
50
|
+
return new Class(value, this.discovery.roles);
|
|
51
|
+
else if (Class === Rule_1.Rule)
|
|
52
|
+
return new Class(value, this.create.bind(this));
|
|
53
|
+
else if (Class === Incept_1.Incept)
|
|
54
|
+
return new Class(value, this.discovery);
|
|
55
|
+
else
|
|
56
|
+
return new Class(value);
|
|
57
|
+
}
|
|
58
|
+
async preflight(directives, input, parameters) {
|
|
59
|
+
const identity = await this.resolve(input.headers.authorization);
|
|
60
|
+
input.identity = identity;
|
|
61
|
+
for (const directive of directives) {
|
|
62
|
+
const allow = await directive.authorize(identity, input, parameters);
|
|
63
|
+
if (allow)
|
|
64
|
+
return directive.reply?.(identity) ?? null;
|
|
65
|
+
}
|
|
66
|
+
if (identity === null)
|
|
67
|
+
throw new http.Unauthorized();
|
|
68
|
+
else
|
|
69
|
+
throw new http.Forbidden();
|
|
70
|
+
}
|
|
71
|
+
async settle(directives, request, response) {
|
|
72
|
+
for (const directive of directives)
|
|
73
|
+
await directive.settle?.(request, response);
|
|
74
|
+
const identity = request.identity;
|
|
75
|
+
if (identity === null)
|
|
76
|
+
return;
|
|
77
|
+
if (identity.scheme === schemes_1.PRIMARY && !identity.refresh)
|
|
78
|
+
return;
|
|
79
|
+
// Role directive may have already set the value
|
|
80
|
+
if (identity.roles === undefined)
|
|
81
|
+
await Role_1.Role.set(identity, this.discovery.roles);
|
|
82
|
+
this.tokens ??= await this.discovery.tokens;
|
|
83
|
+
const token = await this.tokens.invoke('encrypt', { input: { identity } });
|
|
84
|
+
const authorization = `Token ${token}`;
|
|
85
|
+
if (response.headers === undefined)
|
|
86
|
+
response.headers = {};
|
|
87
|
+
response.headers.authorization = authorization;
|
|
88
|
+
}
|
|
89
|
+
async resolve(authorization) {
|
|
90
|
+
if (authorization === undefined)
|
|
91
|
+
return null;
|
|
92
|
+
const [scheme, credentials] = (0, split_1.split)(authorization);
|
|
93
|
+
const provider = schemes_1.PROVIDERS[scheme];
|
|
94
|
+
if (!(provider in this.discovery))
|
|
95
|
+
throw new http.Unauthorized(`Unknown authentication scheme '${scheme}'.`);
|
|
96
|
+
this.schemes[scheme] ??= await this.discovery[provider];
|
|
97
|
+
const result = await this.schemes[scheme]
|
|
98
|
+
.invoke('authenticate', { input: credentials });
|
|
99
|
+
if (result instanceof nopeable_1.Nope)
|
|
100
|
+
return null;
|
|
101
|
+
const identity = result.identity;
|
|
102
|
+
if (scheme !== schemes_1.PRIMARY && await this.banned(identity))
|
|
103
|
+
throw new http.Unauthorized();
|
|
104
|
+
identity.scheme = scheme;
|
|
105
|
+
identity.refresh = result.refresh;
|
|
106
|
+
return identity;
|
|
107
|
+
}
|
|
108
|
+
async banned(identity) {
|
|
109
|
+
this.bans ??= await this.discovery.bans;
|
|
110
|
+
const ban = await this.bans.invoke('observe', { query: { id: identity.id } });
|
|
111
|
+
return ban.banned;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
const CLASSES = {
|
|
115
|
+
anonymous: Anonymous_1.Anonymous,
|
|
116
|
+
id: Id_1.Id,
|
|
117
|
+
role: Role_1.Role,
|
|
118
|
+
rule: Rule_1.Rule,
|
|
119
|
+
incept: Incept_1.Incept,
|
|
120
|
+
scheme: Scheme_1.Scheme,
|
|
121
|
+
echo: Echo_1.Echo
|
|
122
|
+
};
|
|
123
|
+
const REMOTES = ['basic', 'tokens', 'roles', 'bans'];
|
|
124
|
+
module.exports = new Authorization();
|
|
125
|
+
//# sourceMappingURL=Family.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Family.js","sourceRoot":"","sources":["../../../source/directives/auth/Family.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type Parameter } from '../../RTD';
|
|
2
|
+
import { type Directive, type Identity } from './types';
|
|
3
|
+
export declare class Id implements Directive {
|
|
4
|
+
private readonly parameter;
|
|
5
|
+
constructor(parameter: string);
|
|
6
|
+
authorize(identity: Identity | null, _: any, parameters: Parameter[]): boolean;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Id = void 0;
|
|
4
|
+
class Id {
|
|
5
|
+
parameter;
|
|
6
|
+
constructor(parameter) {
|
|
7
|
+
this.parameter = parameter;
|
|
8
|
+
}
|
|
9
|
+
authorize(identity, _, parameters) {
|
|
10
|
+
if (identity === null)
|
|
11
|
+
return false;
|
|
12
|
+
const parameter = parameters.find((parameter) => parameter.name === this.parameter);
|
|
13
|
+
return parameter?.value === identity.id;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.Id = Id;
|
|
17
|
+
//# sourceMappingURL=Id.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Id.js","sourceRoot":"","sources":["../../../source/directives/auth/Id.ts"],"names":[],"mappings":";;;AAGA,MAAa,EAAE;IACI,SAAS,CAAQ;IAElC,YAAoB,SAAiB;QACnC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;IAC5B,CAAC;IAEM,SAAS,CAAE,QAAyB,EAAE,CAAM,EAAE,UAAuB;QAC1E,IAAI,QAAQ,KAAK,IAAI;YACnB,OAAO,KAAK,CAAA;QAEd,MAAM,SAAS,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC,SAAS,EAAE,EAAE,CAAC,SAAS,CAAC,IAAI,KAAK,IAAI,CAAC,SAAS,CAAC,CAAA;QAEnF,OAAO,SAAS,EAAE,KAAK,KAAK,QAAQ,CAAC,EAAE,CAAA;IACzC,CAAC;CACF;AAfD,gBAeC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as http from '../../HTTP';
|
|
2
|
+
import { type Directive, type Discovery, type Identity, type Input } from './types';
|
|
3
|
+
export declare class Incept implements Directive {
|
|
4
|
+
private readonly property;
|
|
5
|
+
private readonly discovery;
|
|
6
|
+
private readonly schemes;
|
|
7
|
+
constructor(property: string, discovery: Discovery);
|
|
8
|
+
authorize(identity: Identity | null, input: Input): boolean;
|
|
9
|
+
settle(request: Input, response: http.OutgoingMessage): Promise<void>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Incept = void 0;
|
|
27
|
+
const nopeable_1 = require("nopeable");
|
|
28
|
+
const http = __importStar(require("../../HTTP"));
|
|
29
|
+
const split_1 = require("./split");
|
|
30
|
+
const schemes_1 = require("./schemes");
|
|
31
|
+
class Incept {
|
|
32
|
+
property;
|
|
33
|
+
discovery;
|
|
34
|
+
schemes = {};
|
|
35
|
+
constructor(property, discovery) {
|
|
36
|
+
this.property = property;
|
|
37
|
+
this.discovery = discovery;
|
|
38
|
+
}
|
|
39
|
+
authorize(identity, input) {
|
|
40
|
+
return identity === null && 'authorization' in input.headers;
|
|
41
|
+
}
|
|
42
|
+
async settle(request, response) {
|
|
43
|
+
const id = response.body?.[this.property];
|
|
44
|
+
if (id === undefined)
|
|
45
|
+
throw new http.Conflict('Identity inception has failed as the response body ' +
|
|
46
|
+
` does not contain the '${this.property}' property.`);
|
|
47
|
+
const [scheme, credentials] = (0, split_1.split)(request.headers.authorization);
|
|
48
|
+
const provider = schemes_1.PROVIDERS[scheme];
|
|
49
|
+
this.schemes[scheme] ??= await this.discovery[provider];
|
|
50
|
+
const identity = await this.schemes[scheme]
|
|
51
|
+
.invoke('create', { input: { id, credentials } });
|
|
52
|
+
if (identity instanceof nopeable_1.Nope)
|
|
53
|
+
throw new http.Conflict(identity);
|
|
54
|
+
request.identity = identity;
|
|
55
|
+
request.identity.scheme = scheme;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
exports.Incept = Incept;
|
|
59
|
+
//# sourceMappingURL=Incept.js.map
|