@toa.io/extensions.exposition 0.20.0-alpha.0 → 0.20.0-alpha.2

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.
Files changed (225) hide show
  1. package/components/context.toa.yaml +2 -2
  2. package/documentation/notes/sse.md +71 -0
  3. package/documentation/protocol.md +4 -1
  4. package/features/access.feature +48 -42
  5. package/features/annotation.feature +6 -4
  6. package/features/body.feature +24 -0
  7. package/features/directives.feature +2 -2
  8. package/features/dynamic.feature +11 -1
  9. package/features/errors.feature +14 -29
  10. package/features/identity.basic.feature +47 -6
  11. package/features/identity.tokens.feature +19 -16
  12. package/features/steps/Gateway.ts +26 -18
  13. package/features/steps/components/echo/manifest.toa.yaml +9 -0
  14. package/features/steps/components/echo/operations/affect.js +7 -0
  15. package/features/steps/components/echo/operations/compute.js +7 -0
  16. package/features/steps/components/greeter/manifest.toa.yaml +0 -4
  17. package/features/steps/components/greeter/operations/greet.js +1 -1
  18. package/features/steps/components/sequences/manifest.toa.yaml +10 -0
  19. package/features/steps/components/sequences/operations/numbers.js +7 -0
  20. package/features/steps/components/sequences/operations/tokens.js +16 -0
  21. package/features/streams.feature +26 -0
  22. package/package.json +7 -6
  23. package/readme.md +2 -0
  24. package/schemas/annotation.cos.yaml +5 -4
  25. package/schemas/method.cos.yaml +0 -1
  26. package/schemas/query.cos.yaml +1 -0
  27. package/source/Annotation.ts +1 -0
  28. package/source/Composition.ts +1 -2
  29. package/source/Endpoint.ts +5 -3
  30. package/source/Factory.ts +8 -10
  31. package/source/HTTP/Server.ts +1 -1
  32. package/source/HTTP/messages.ts +18 -6
  33. package/source/Mapping.ts +12 -9
  34. package/source/RTD/Node.ts +5 -5
  35. package/source/RTD/Route.ts +5 -4
  36. package/source/RTD/Tree.ts +2 -5
  37. package/source/RTD/syntax/parse.ts +1 -1
  38. package/source/Remotes.test.ts +2 -1
  39. package/source/Remotes.ts +2 -0
  40. package/source/deployment.ts +9 -2
  41. package/source/directives/dev/Family.ts +3 -1
  42. package/source/directives/dev/Throw.ts +14 -0
  43. package/source/manifest.test.ts +3 -1
  44. package/source/manifest.ts +22 -9
  45. package/transpiled/Annotation.d.ts +0 -6
  46. package/transpiled/Annotation.js +0 -3
  47. package/transpiled/Annotation.js.map +0 -1
  48. package/transpiled/Branch.d.ts +0 -7
  49. package/transpiled/Branch.js +0 -3
  50. package/transpiled/Branch.js.map +0 -1
  51. package/transpiled/Composition.d.ts +0 -14
  52. package/transpiled/Composition.js +0 -43
  53. package/transpiled/Composition.js.map +0 -1
  54. package/transpiled/Context.d.ts +0 -5
  55. package/transpiled/Context.js +0 -3
  56. package/transpiled/Context.js.map +0 -1
  57. package/transpiled/Directive.d.ts +0 -32
  58. package/transpiled/Directive.js +0 -76
  59. package/transpiled/Directive.js.map +0 -1
  60. package/transpiled/Endpoint.d.ts +0 -20
  61. package/transpiled/Endpoint.js +0 -44
  62. package/transpiled/Endpoint.js.map +0 -1
  63. package/transpiled/Factory.d.ts +0 -11
  64. package/transpiled/Factory.js +0 -67
  65. package/transpiled/Factory.js.map +0 -1
  66. package/transpiled/Gateway.d.ts +0 -19
  67. package/transpiled/Gateway.js +0 -90
  68. package/transpiled/Gateway.js.map +0 -1
  69. package/transpiled/HTTP/Server.d.ts +0 -22
  70. package/transpiled/HTTP/Server.fixtures.d.ts +0 -12
  71. package/transpiled/HTTP/Server.fixtures.js +0 -36
  72. package/transpiled/HTTP/Server.fixtures.js.map +0 -1
  73. package/transpiled/HTTP/Server.js +0 -111
  74. package/transpiled/HTTP/Server.js.map +0 -1
  75. package/transpiled/HTTP/exceptions.d.ts +0 -39
  76. package/transpiled/HTTP/exceptions.js +0 -78
  77. package/transpiled/HTTP/exceptions.js.map +0 -1
  78. package/transpiled/HTTP/formats/index.d.ts +0 -8
  79. package/transpiled/HTTP/formats/index.js +0 -38
  80. package/transpiled/HTTP/formats/index.js.map +0 -1
  81. package/transpiled/HTTP/formats/json.d.ts +0 -4
  82. package/transpiled/HTTP/formats/json.js +0 -15
  83. package/transpiled/HTTP/formats/json.js.map +0 -1
  84. package/transpiled/HTTP/formats/msgpack.d.ts +0 -4
  85. package/transpiled/HTTP/formats/msgpack.js +0 -36
  86. package/transpiled/HTTP/formats/msgpack.js.map +0 -1
  87. package/transpiled/HTTP/formats/text.d.ts +0 -4
  88. package/transpiled/HTTP/formats/text.js +0 -13
  89. package/transpiled/HTTP/formats/text.js.map +0 -1
  90. package/transpiled/HTTP/formats/yaml.d.ts +0 -4
  91. package/transpiled/HTTP/formats/yaml.js +0 -39
  92. package/transpiled/HTTP/formats/yaml.js.map +0 -1
  93. package/transpiled/HTTP/index.d.ts +0 -3
  94. package/transpiled/HTTP/index.js +0 -20
  95. package/transpiled/HTTP/index.js.map +0 -1
  96. package/transpiled/HTTP/messages.d.ts +0 -27
  97. package/transpiled/HTTP/messages.js +0 -49
  98. package/transpiled/HTTP/messages.js.map +0 -1
  99. package/transpiled/Mapping.d.ts +0 -8
  100. package/transpiled/Mapping.js +0 -35
  101. package/transpiled/Mapping.js.map +0 -1
  102. package/transpiled/Query.d.ts +0 -13
  103. package/transpiled/Query.js +0 -107
  104. package/transpiled/Query.js.map +0 -1
  105. package/transpiled/RTD/Context.d.ts +0 -11
  106. package/transpiled/RTD/Context.js +0 -3
  107. package/transpiled/RTD/Context.js.map +0 -1
  108. package/transpiled/RTD/Directives.d.ts +0 -7
  109. package/transpiled/RTD/Directives.js +0 -3
  110. package/transpiled/RTD/Directives.js.map +0 -1
  111. package/transpiled/RTD/Endpoint.d.ts +0 -9
  112. package/transpiled/RTD/Endpoint.js +0 -3
  113. package/transpiled/RTD/Endpoint.js.map +0 -1
  114. package/transpiled/RTD/Match.d.ts +0 -11
  115. package/transpiled/RTD/Match.js +0 -3
  116. package/transpiled/RTD/Match.js.map +0 -1
  117. package/transpiled/RTD/Method.d.ts +0 -9
  118. package/transpiled/RTD/Method.js +0 -16
  119. package/transpiled/RTD/Method.js.map +0 -1
  120. package/transpiled/RTD/Node.d.ts +0 -21
  121. package/transpiled/RTD/Node.js +0 -61
  122. package/transpiled/RTD/Node.js.map +0 -1
  123. package/transpiled/RTD/Route.d.ts +0 -14
  124. package/transpiled/RTD/Route.js +0 -48
  125. package/transpiled/RTD/Route.js.map +0 -1
  126. package/transpiled/RTD/Tree.d.ts +0 -14
  127. package/transpiled/RTD/Tree.js +0 -45
  128. package/transpiled/RTD/Tree.js.map +0 -1
  129. package/transpiled/RTD/factory.d.ts +0 -6
  130. package/transpiled/RTD/factory.js +0 -36
  131. package/transpiled/RTD/factory.js.map +0 -1
  132. package/transpiled/RTD/index.d.ts +0 -8
  133. package/transpiled/RTD/index.js +0 -38
  134. package/transpiled/RTD/index.js.map +0 -1
  135. package/transpiled/RTD/segment.d.ts +0 -8
  136. package/transpiled/RTD/segment.js +0 -23
  137. package/transpiled/RTD/segment.js.map +0 -1
  138. package/transpiled/RTD/syntax/index.d.ts +0 -2
  139. package/transpiled/RTD/syntax/index.js +0 -19
  140. package/transpiled/RTD/syntax/index.js.map +0 -1
  141. package/transpiled/RTD/syntax/parse.d.ts +0 -4
  142. package/transpiled/RTD/syntax/parse.js +0 -128
  143. package/transpiled/RTD/syntax/parse.js.map +0 -1
  144. package/transpiled/RTD/syntax/types.d.ts +0 -41
  145. package/transpiled/RTD/syntax/types.js +0 -5
  146. package/transpiled/RTD/syntax/types.js.map +0 -1
  147. package/transpiled/Remotes.d.ts +0 -7
  148. package/transpiled/Remotes.js +0 -19
  149. package/transpiled/Remotes.js.map +0 -1
  150. package/transpiled/Tenant.d.ts +0 -12
  151. package/transpiled/Tenant.js +0 -30
  152. package/transpiled/Tenant.js.map +0 -1
  153. package/transpiled/deployment.d.ts +0 -3
  154. package/transpiled/deployment.js +0 -61
  155. package/transpiled/deployment.js.map +0 -1
  156. package/transpiled/directives/auth/Anonymous.d.ts +0 -6
  157. package/transpiled/directives/auth/Anonymous.js +0 -17
  158. package/transpiled/directives/auth/Anonymous.js.map +0 -1
  159. package/transpiled/directives/auth/Echo.d.ts +0 -6
  160. package/transpiled/directives/auth/Echo.js +0 -13
  161. package/transpiled/directives/auth/Echo.js.map +0 -1
  162. package/transpiled/directives/auth/Family.d.ts +0 -20
  163. package/transpiled/directives/auth/Family.js +0 -125
  164. package/transpiled/directives/auth/Family.js.map +0 -1
  165. package/transpiled/directives/auth/Id.d.ts +0 -7
  166. package/transpiled/directives/auth/Id.js +0 -17
  167. package/transpiled/directives/auth/Id.js.map +0 -1
  168. package/transpiled/directives/auth/Incept.d.ts +0 -10
  169. package/transpiled/directives/auth/Incept.js +0 -59
  170. package/transpiled/directives/auth/Incept.js.map +0 -1
  171. package/transpiled/directives/auth/Role.d.ts +0 -11
  172. package/transpiled/directives/auth/Role.js +0 -44
  173. package/transpiled/directives/auth/Role.js.map +0 -1
  174. package/transpiled/directives/auth/Rule.d.ts +0 -9
  175. package/transpiled/directives/auth/Rule.js +0 -22
  176. package/transpiled/directives/auth/Rule.js.map +0 -1
  177. package/transpiled/directives/auth/Scheme.d.ts +0 -7
  178. package/transpiled/directives/auth/Scheme.js +0 -47
  179. package/transpiled/directives/auth/Scheme.js.map +0 -1
  180. package/transpiled/directives/auth/index.d.ts +0 -2
  181. package/transpiled/directives/auth/index.js +0 -7
  182. package/transpiled/directives/auth/index.js.map +0 -1
  183. package/transpiled/directives/auth/schemes.d.ts +0 -3
  184. package/transpiled/directives/auth/schemes.js +0 -9
  185. package/transpiled/directives/auth/schemes.js.map +0 -1
  186. package/transpiled/directives/auth/split.d.ts +0 -2
  187. package/transpiled/directives/auth/split.js +0 -38
  188. package/transpiled/directives/auth/split.js.map +0 -1
  189. package/transpiled/directives/auth/types.d.ts +0 -31
  190. package/transpiled/directives/auth/types.js +0 -3
  191. package/transpiled/directives/auth/types.js.map +0 -1
  192. package/transpiled/directives/dev/Family.d.ts +0 -10
  193. package/transpiled/directives/dev/Family.js +0 -25
  194. package/transpiled/directives/dev/Family.js.map +0 -1
  195. package/transpiled/directives/dev/Stub.d.ts +0 -7
  196. package/transpiled/directives/dev/Stub.js +0 -14
  197. package/transpiled/directives/dev/Stub.js.map +0 -1
  198. package/transpiled/directives/dev/index.d.ts +0 -2
  199. package/transpiled/directives/dev/index.js +0 -7
  200. package/transpiled/directives/dev/index.js.map +0 -1
  201. package/transpiled/directives/dev/types.d.ts +0 -4
  202. package/transpiled/directives/dev/types.js +0 -3
  203. package/transpiled/directives/dev/types.js.map +0 -1
  204. package/transpiled/directives/index.d.ts +0 -2
  205. package/transpiled/directives/index.js +0 -10
  206. package/transpiled/directives/index.js.map +0 -1
  207. package/transpiled/discovery.d.ts +0 -1
  208. package/transpiled/discovery.js +0 -3
  209. package/transpiled/discovery.js.map +0 -1
  210. package/transpiled/exceptions.d.ts +0 -2
  211. package/transpiled/exceptions.js +0 -39
  212. package/transpiled/exceptions.js.map +0 -1
  213. package/transpiled/index.d.ts +0 -5
  214. package/transpiled/index.js +0 -12
  215. package/transpiled/index.js.map +0 -1
  216. package/transpiled/manifest.d.ts +0 -3
  217. package/transpiled/manifest.js +0 -30
  218. package/transpiled/manifest.js.map +0 -1
  219. package/transpiled/root.d.ts +0 -2
  220. package/transpiled/root.js +0 -39
  221. package/transpiled/root.js.map +0 -1
  222. package/transpiled/schemas.d.ts +0 -3
  223. package/transpiled/schemas.js +0 -14
  224. package/transpiled/schemas.js.map +0 -1
  225. package/transpiled/tsconfig.tsbuildinfo +0 -1
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=Match.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Match.js","sourceRoot":"","sources":["../../source/RTD/Match.ts"],"names":[],"mappings":""}
@@ -1,9 +0,0 @@
1
- import { type Directives } from './Directives';
2
- import { type Endpoint } from './Endpoint';
3
- export declare class Method<TEndpoint extends Endpoint<TEndpoint> = any, TDirectives extends Directives<TDirectives> = any> {
4
- readonly endpoint: TEndpoint | null;
5
- readonly directives: TDirectives;
6
- constructor(endpoint: TEndpoint | null, directives: TDirectives);
7
- close(): Promise<void>;
8
- }
9
- export type Methods<TEndpoint extends Endpoint<TEndpoint> = any, TDirectives extends Directives<TDirectives> = any> = Record<string, Method<TEndpoint, TDirectives>>;
@@ -1,16 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Method = void 0;
4
- class Method {
5
- endpoint;
6
- directives;
7
- constructor(endpoint, directives) {
8
- this.endpoint = endpoint;
9
- this.directives = directives;
10
- }
11
- async close() {
12
- await this.endpoint?.close();
13
- }
14
- }
15
- exports.Method = Method;
16
- //# sourceMappingURL=Method.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Method.js","sourceRoot":"","sources":["../../source/RTD/Method.ts"],"names":[],"mappings":";;;AAGA,MAAa,MAAM;IAID,QAAQ,CAAkB;IAC1B,UAAU,CAAa;IAEvC,YAAoB,QAA0B,EAAE,UAAuB;QACrE,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;IAC9B,CAAC;IAEM,KAAK,CAAC,KAAK;QAChB,MAAM,IAAI,CAAC,QAAQ,EAAE,KAAK,EAAE,CAAA;IAC9B,CAAC;CACF;AAfD,wBAeC"}
@@ -1,21 +0,0 @@
1
- import { type Route } from './Route';
2
- import { type Methods } from './Method';
3
- import { type Parameter } from './Match';
4
- import { type Directives } from './Directives';
5
- import { type Endpoint } from './Endpoint';
6
- export declare class Node<TEndpoint extends Endpoint<TEndpoint> = any, TDirectives extends Directives<TDirectives> = any> {
7
- intermediate: boolean;
8
- methods: Methods<TEndpoint, TDirectives>;
9
- private readonly protected;
10
- private routes;
11
- constructor(routes: Route[], methods: Methods<TEndpoint, TDirectives>, properties: Properties);
12
- match(fragments: string[], parameters: Parameter[]): Node<TEndpoint, TDirectives> | null;
13
- merge(node: Node<TEndpoint, TDirectives>): void;
14
- private replace;
15
- private append;
16
- private mergeRoute;
17
- private sort;
18
- }
19
- export interface Properties {
20
- protected: boolean;
21
- }
@@ -1,61 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Node = void 0;
4
- class Node {
5
- intermediate;
6
- methods;
7
- protected;
8
- routes;
9
- constructor(routes, methods, properties) {
10
- this.routes = routes;
11
- this.methods = methods;
12
- this.protected = properties.protected;
13
- this.intermediate = this.routes.findIndex((route) => route.root) !== -1;
14
- this.sort();
15
- }
16
- match(fragments, parameters) {
17
- for (const route of this.routes) {
18
- const node = route.match(fragments, parameters);
19
- if (node !== null)
20
- return node;
21
- }
22
- return null;
23
- }
24
- merge(node) {
25
- this.intermediate = node.intermediate;
26
- if (!this.protected)
27
- this.replace(node);
28
- else
29
- this.append(node);
30
- this.sort();
31
- }
32
- replace(node) {
33
- const methods = Object.values(this.methods);
34
- this.routes = node.routes;
35
- this.methods = node.methods;
36
- for (const method of methods)
37
- void method.close(); // race condition is really unlikely
38
- }
39
- append(node) {
40
- for (const route of node.routes)
41
- this.mergeRoute(route);
42
- for (const [verb, method] of Object.entries(node.methods))
43
- if (verb in this.methods)
44
- console.warn(`Overriding of the protected method ${verb} is not permitted.`);
45
- else
46
- this.methods[verb] = method;
47
- }
48
- mergeRoute(candidate) {
49
- for (const route of this.routes)
50
- if (candidate.equals(route)) {
51
- route.merge(candidate);
52
- return;
53
- }
54
- this.routes.push(candidate);
55
- }
56
- sort() {
57
- this.routes.sort((a, b) => a.variables - b.variables);
58
- }
59
- }
60
- exports.Node = Node;
61
- //# sourceMappingURL=Node.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Node.js","sourceRoot":"","sources":["../../source/RTD/Node.ts"],"names":[],"mappings":";;;AAMA,MAAa,IAAI;IAIR,YAAY,CAAS;IACrB,OAAO,CAAiC;IAC9B,SAAS,CAAS;IAC3B,MAAM,CAAS;IAEvB,YACC,MAAe,EAAE,OAAwC,EAAE,UAAsB;QAChF,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;QACpB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,SAAS,GAAG,UAAU,CAAC,SAAS,CAAA;QACrC,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;QAEvE,IAAI,CAAC,IAAI,EAAE,CAAA;IACb,CAAC;IAEM,KAAK,CAAE,SAAmB,EAAE,UAAuB;QACxD,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,MAAM,EAAE;YAC/B,MAAM,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,SAAS,EAAE,UAAU,CAAC,CAAA;YAE/C,IAAI,IAAI,KAAK,IAAI;gBACf,OAAO,IAAI,CAAA;SACd;QAED,OAAO,IAAI,CAAA;IACb,CAAC;IAEM,KAAK,CAAE,IAAkC;QAC9C,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,YAAY,CAAA;QAErC,IAAI,CAAC,IAAI,CAAC,SAAS;YAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAA;;YAClC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAA;QAEtB,IAAI,CAAC,IAAI,EAAE,CAAA;IACb,CAAC;IAEO,OAAO,CAAE,IAAkC;QACjD,MAAM,OAAO,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,CAAA;QAE3C,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAA;QACzB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAA;QAE3B,KAAK,MAAM,MAAM,IAAI,OAAO;YAC1B,KAAK,MAAM,CAAC,KAAK,EAAE,CAAA,CAAC,oCAAoC;IAC5D,CAAC;IAEO,MAAM,CAAE,IAAkC;QAChD,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,MAAM;YAC7B,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;QAExB,KAAK,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC;YACvD,IAAI,IAAI,IAAI,IAAI,CAAC,OAAO;gBACtB,OAAO,CAAC,IAAI,CAAC,sCAAsC,IAAI,oBAAoB,CAAC,CAAA;;gBAE5E,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,MAAM,CAAA;IACjC,CAAC;IAEO,UAAU,CAAE,SAAgB;QAClC,KAAK,MAAM,KAAK,IAAI,IAAI,CAAC,MAAM;YAC7B,IAAI,SAAS,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE;gBAC3B,KAAK,CAAC,KAAK,CAAC,SAAS,CAAC,CAAA;gBAEtB,OAAM;aACP;QAEH,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAA;IAC7B,CAAC;IAEO,IAAI;QACV,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,SAAS,CAAC,CAAA;IACvD,CAAC;CACF;AA1ED,oBA0EC"}
@@ -1,14 +0,0 @@
1
- import { type Node } from './Node';
2
- import { type Segment } from './segment';
3
- import { type Parameter } from './Match';
4
- export declare class Route {
5
- readonly root: boolean;
6
- readonly variables: number;
7
- private readonly segments;
8
- private readonly node;
9
- constructor(segments: Segment[], node: Node);
10
- match(fragments: string[], parameters: Parameter[]): Node | null;
11
- equals(route: Route): boolean;
12
- merge(route: Route): void;
13
- private matchNested;
14
- }
@@ -1,48 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Route = void 0;
4
- class Route {
5
- root;
6
- variables = 0;
7
- segments;
8
- node;
9
- constructor(segments, node) {
10
- this.root = segments.length === 0;
11
- this.segments = segments;
12
- this.node = node;
13
- for (const segment of segments)
14
- if (segment.fragment === null)
15
- this.variables++;
16
- }
17
- match(fragments, parameters) {
18
- for (let i = 0; i < this.segments.length; i++) {
19
- const segment = this.segments[i];
20
- if (segment.fragment !== null && segment.fragment !== fragments[i])
21
- return null;
22
- if (segment.fragment === null)
23
- parameters.push({ name: segment.placeholder, value: fragments[i] });
24
- }
25
- const exact = this.segments.length === fragments.length;
26
- if (exact && !this.node.intermediate)
27
- return this.node;
28
- else
29
- return this.matchNested(fragments, parameters);
30
- }
31
- equals(route) {
32
- if (route.segments.length !== this.segments.length)
33
- return false;
34
- for (let i = 0; i < this.segments.length; i++)
35
- if (this.segments[i].fragment !== route.segments[i].fragment)
36
- return false;
37
- return true;
38
- }
39
- merge(route) {
40
- this.node.merge(route.node);
41
- }
42
- matchNested(fragments, parameters) {
43
- fragments = fragments.slice(this.segments.length);
44
- return this.node.match(fragments, parameters);
45
- }
46
- }
47
- exports.Route = Route;
48
- //# sourceMappingURL=Route.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Route.js","sourceRoot":"","sources":["../../source/RTD/Route.ts"],"names":[],"mappings":";;;AAIA,MAAa,KAAK;IACA,IAAI,CAAS;IACb,SAAS,GAAW,CAAC,CAAA;IACpB,QAAQ,CAAW;IACnB,IAAI,CAAM;IAE3B,YAAoB,QAAmB,EAAE,IAAU;QACjD,IAAI,CAAC,IAAI,GAAG,QAAQ,CAAC,MAAM,KAAK,CAAC,CAAA;QACjC,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;QACxB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;QAEhB,KAAK,MAAM,OAAO,IAAI,QAAQ;YAC5B,IAAI,OAAO,CAAC,QAAQ,KAAK,IAAI;gBAC3B,IAAI,CAAC,SAAS,EAAE,CAAA;IACtB,CAAC;IAEM,KAAK,CAAE,SAAmB,EAAE,UAAuB;QACxD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YAC7C,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAA;YAEhC,IAAI,OAAO,CAAC,QAAQ,KAAK,IAAI,IAAI,OAAO,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC;gBAChE,OAAO,IAAI,CAAA;YAEb,IAAI,OAAO,CAAC,QAAQ,KAAK,IAAI;gBAC3B,UAAU,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,WAAW,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAA;SACtE;QAED,MAAM,KAAK,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,KAAK,SAAS,CAAC,MAAM,CAAA;QAEvD,IAAI,KAAK,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY;YAAE,OAAO,IAAI,CAAC,IAAI,CAAA;;YACjD,OAAO,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE,UAAU,CAAC,CAAA;IACrD,CAAC;IAEM,MAAM,CAAE,KAAY;QACzB,IAAI,KAAK,CAAC,QAAQ,CAAC,MAAM,KAAK,IAAI,CAAC,QAAQ,CAAC,MAAM;YAChD,OAAO,KAAK,CAAA;QAEd,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC,EAAE;YAC3C,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,KAAK,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ;gBAC1D,OAAO,KAAK,CAAA;QAEhB,OAAO,IAAI,CAAA;IACb,CAAC;IAEM,KAAK,CAAE,KAAY;QACxB,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IAC7B,CAAC;IAEO,WAAW,CAAE,SAAmB,EAAE,UAAuB;QAC/D,SAAS,GAAG,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;QAEjD,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE,UAAU,CAAC,CAAA;IAC/C,CAAC;CACF;AArDD,sBAqDC"}
@@ -1,14 +0,0 @@
1
- import { type Match } from './Match';
2
- import { type Directives, type DirectivesFactory } from './Directives';
3
- import { type Endpoint, type EndpointsFactory } from './Endpoint';
4
- import type * as syntax from './syntax';
5
- export declare class Tree<TEndpoint extends Endpoint<TEndpoint> = any, TDirectives extends Directives<TDirectives> = any> {
6
- private readonly root;
7
- private readonly trunk;
8
- private readonly endpoints;
9
- private readonly directives;
10
- constructor(node: syntax.Node, endpoints: EndpointsFactory, directives: DirectivesFactory);
11
- match(path: string): Match<TEndpoint, TDirectives> | null;
12
- merge(node: syntax.Node, extension: any): void;
13
- private createNode;
14
- }
@@ -1,45 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Tree = void 0;
4
- const factory_1 = require("./factory");
5
- const segment_1 = require("./segment");
6
- class Tree {
7
- root;
8
- trunk;
9
- endpoints;
10
- directives;
11
- constructor(node, endpoints, directives) {
12
- this.endpoints = endpoints;
13
- this.directives = directives;
14
- this.trunk = this.createNode(node, PROTECTED);
15
- this.root = node;
16
- }
17
- match(path) {
18
- const fragments = (0, segment_1.fragment)(path);
19
- const parameters = [];
20
- const node = this.trunk.match(fragments, parameters);
21
- if (node === null)
22
- return null;
23
- else
24
- return { node, parameters };
25
- }
26
- merge(node, extension) {
27
- const branch = this.createNode(node, !PROTECTED, extension);
28
- this.trunk.merge(branch);
29
- }
30
- createNode(node, protect, extension) {
31
- const context = {
32
- protected: protect,
33
- endpoints: this.endpoints,
34
- directives: {
35
- factory: this.directives,
36
- stack: this.root?.directives ?? []
37
- },
38
- extension
39
- };
40
- return (0, factory_1.createNode)(node, context);
41
- }
42
- }
43
- exports.Tree = Tree;
44
- const PROTECTED = true;
45
- //# sourceMappingURL=Tree.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Tree.js","sourceRoot":"","sources":["../../source/RTD/Tree.ts"],"names":[],"mappings":";;;AACA,uCAAsC;AACtC,uCAAoC;AAOpC,MAAa,IAAI;IAIE,IAAI,CAAa;IACjB,KAAK,CAA8B;IACnC,SAAS,CAA6B;IACtC,UAAU,CAAmB;IAE9C,YACC,IAAiB,EAAE,SAA2B,EAAE,UAA6B;QAC5E,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;QAC1B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;QAC5B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,SAAS,CAAC,CAAA;QAC7C,IAAI,CAAC,IAAI,GAAG,IAAI,CAAA;IAClB,CAAC;IAEM,KAAK,CAAE,IAAY;QACxB,MAAM,SAAS,GAAG,IAAA,kBAAQ,EAAC,IAAI,CAAC,CAAA;QAChC,MAAM,UAAU,GAAgB,EAAE,CAAA;QAClC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,SAAS,EAAE,UAAU,CAAC,CAAA;QAEpD,IAAI,IAAI,KAAK,IAAI;YAAE,OAAO,IAAI,CAAA;;YACzB,OAAO,EAAE,IAAI,EAAE,UAAU,EAAE,CAAA;IAClC,CAAC;IAEM,KAAK,CAAE,IAAiB,EAAE,SAAc;QAC7C,MAAM,MAAM,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,SAAS,EAAE,SAAS,CAAC,CAAA;QAE3D,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;IAC1B,CAAC;IAEO,UAAU,CAAE,IAAiB,EAAE,OAAgB,EAAE,SAAe;QACtE,MAAM,OAAO,GAAY;YACvB,SAAS,EAAE,OAAO;YAClB,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,UAAU,EAAE;gBACV,OAAO,EAAE,IAAI,CAAC,UAAU;gBACxB,KAAK,EAAE,IAAI,CAAC,IAAI,EAAE,UAAU,IAAI,EAAE;aACnC;YACD,SAAS;SACV,CAAA;QAED,OAAO,IAAA,oBAAU,EAAC,IAAI,EAAE,OAAO,CAAC,CAAA;IAClC,CAAC;CACF;AA7CD,oBA6CC;AAED,MAAM,SAAS,GAAG,IAAI,CAAA"}
@@ -1,6 +0,0 @@
1
- import { Node } from './Node';
2
- import { type Context } from './Context';
3
- import { type Endpoint } from './Endpoint';
4
- import { type Directives } from './Directives';
5
- import type * as syntax from './syntax';
6
- export declare function createNode<TEndpoint extends Endpoint, TDirectives extends Directives>(node: syntax.Node, context: Context): Node<TEndpoint, TDirectives>;
@@ -1,36 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createNode = void 0;
4
- const Node_1 = require("./Node");
5
- const Route_1 = require("./Route");
6
- const segment_1 = require("./segment");
7
- const Method_1 = require("./Method");
8
- function createNode(node, context) {
9
- if (node.isolated === true)
10
- context.directives.stack = node.directives;
11
- else
12
- context.directives.stack = node.directives.concat(context.directives.stack);
13
- const routes = node.routes.map((route) => createRoute(route, context));
14
- const methods = {};
15
- for (const method of node.methods)
16
- methods[method.verb] = createMethod(method, context);
17
- const properties = { protected: node.protected ?? context.protected };
18
- return new Node_1.Node(routes, methods, properties);
19
- }
20
- exports.createNode = createNode;
21
- function createRoute(route, context) {
22
- const stack = context.directives.stack.slice();
23
- const segments = (0, segment_1.segment)(route.path);
24
- const node = createNode(route.node, context);
25
- context.directives.stack = stack; // restore
26
- return new Route_1.Route(segments, node);
27
- }
28
- function createMethod(method, context) {
29
- const stack = context.directives.stack.concat(method.directives.reverse());
30
- const directives = context.directives.factory.create(stack);
31
- const endpoint = method.mapping?.endpoint === undefined
32
- ? null
33
- : context.endpoints.create(method, context);
34
- return new Method_1.Method(endpoint, directives);
35
- }
36
- //# sourceMappingURL=factory.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"factory.js","sourceRoot":"","sources":["../../source/RTD/factory.ts"],"names":[],"mappings":";;;AAAA,iCAA8C;AAC9C,mCAA+B;AAE/B,uCAAmC;AACnC,qCAA+C;AAK/C,SAAgB,UAAU,CACzB,IAAiB,EAAE,OAAgB;IAClC,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI;QACxB,OAAO,CAAC,UAAU,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,CAAA;;QAE1C,OAAO,CAAC,UAAU,CAAC,KAAK,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAAA;IAE7E,MAAM,MAAM,GAAY,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,WAAW,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAA;IAC/E,MAAM,OAAO,GAAY,EAAE,CAAA;IAE3B,KAAK,MAAM,MAAM,IAAI,IAAI,CAAC,OAAO;QAC/B,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAEtD,MAAM,UAAU,GAAe,EAAE,SAAS,EAAE,IAAI,CAAC,SAAS,IAAI,OAAO,CAAC,SAAS,EAAE,CAAA;IAEjF,OAAO,IAAI,WAAI,CAAC,MAAM,EAAE,OAAO,EAAE,UAAU,CAAC,CAAA;AAC9C,CAAC;AAhBD,gCAgBC;AAED,SAAS,WAAW,CAAE,KAAmB,EAAE,OAAgB;IACzD,MAAM,KAAK,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,EAAE,CAAA;IAC9C,MAAM,QAAQ,GAAG,IAAA,iBAAO,EAAC,KAAK,CAAC,IAAI,CAAC,CAAA;IACpC,MAAM,IAAI,GAAG,UAAU,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,CAAC,CAAA;IAE5C,OAAO,CAAC,UAAU,CAAC,KAAK,GAAG,KAAK,CAAA,CAAC,UAAU;IAE3C,OAAO,IAAI,aAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;AAClC,CAAC;AAED,SAAS,YAAY,CAAE,MAAqB,EAAE,OAAgB;IAC5D,MAAM,KAAK,GAAG,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAA;IAC1E,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAA;IAE3D,MAAM,QAAQ,GAAG,MAAM,CAAC,OAAO,EAAE,QAAQ,KAAK,SAAS;QACrD,CAAC,CAAC,IAAI;QACN,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;IAE7C,OAAO,IAAI,eAAM,CAAC,QAAQ,EAAE,UAAU,CAAC,CAAA;AACzC,CAAC"}
@@ -1,8 +0,0 @@
1
- export * from './Tree';
2
- export * from './Node';
3
- export * from './Match';
4
- export * from './Method';
5
- export * from './Context';
6
- export * from './Endpoint';
7
- export * from './Directives';
8
- export * as syntax from './syntax';
@@ -1,38 +0,0 @@
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
19
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
20
- };
21
- var __importStar = (this && this.__importStar) || function (mod) {
22
- if (mod && mod.__esModule) return mod;
23
- var result = {};
24
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
25
- __setModuleDefault(result, mod);
26
- return result;
27
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.syntax = void 0;
30
- __exportStar(require("./Tree"), exports);
31
- __exportStar(require("./Node"), exports);
32
- __exportStar(require("./Match"), exports);
33
- __exportStar(require("./Method"), exports);
34
- __exportStar(require("./Context"), exports);
35
- __exportStar(require("./Endpoint"), exports);
36
- __exportStar(require("./Directives"), exports);
37
- exports.syntax = __importStar(require("./syntax"));
38
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../source/RTD/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAAsB;AACtB,yCAAsB;AACtB,0CAAuB;AACvB,2CAAwB;AACxB,4CAAyB;AACzB,6CAA0B;AAC1B,+CAA4B;AAC5B,mDAAkC"}
@@ -1,8 +0,0 @@
1
- export declare function segment(path: string): Segment[];
2
- export declare function fragment(path: string): string[];
3
- export type Segment = {
4
- fragment: string;
5
- } | {
6
- fragment: null;
7
- placeholder: string;
8
- };
@@ -1,23 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.fragment = exports.segment = void 0;
4
- function segment(path) {
5
- return fragment(path).map(parse);
6
- }
7
- exports.segment = segment;
8
- function fragment(path) {
9
- const parts = path.split('/');
10
- // trailing slash
11
- if (parts[parts.length - 1] === '')
12
- parts.length--;
13
- // leading slash
14
- return parts.splice(1);
15
- }
16
- exports.fragment = fragment;
17
- function parse(segment) {
18
- if (segment[0] === ':')
19
- return { fragment: null, placeholder: segment.substring(1) };
20
- else
21
- return { fragment: segment };
22
- }
23
- //# sourceMappingURL=segment.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"segment.js","sourceRoot":"","sources":["../../source/RTD/segment.ts"],"names":[],"mappings":";;;AAAA,SAAgB,OAAO,CAAE,IAAY;IACnC,OAAO,QAAQ,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAA;AAClC,CAAC;AAFD,0BAEC;AAED,SAAgB,QAAQ,CAAE,IAAY;IACpC,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAA;IAE7B,iBAAiB;IACjB,IAAI,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,KAAK,EAAE;QAAE,KAAK,CAAC,MAAM,EAAE,CAAA;IAElD,gBAAgB;IAChB,OAAO,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,CAAA;AACxB,CAAC;AARD,4BAQC;AAED,SAAS,KAAK,CAAE,OAAe;IAC7B,IAAI,OAAO,CAAC,CAAC,CAAC,KAAK,GAAG;QAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,WAAW,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAA;;QAC/E,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAA;AACnC,CAAC"}
@@ -1,2 +0,0 @@
1
- export * from './parse';
2
- export * from './types';
@@ -1,19 +0,0 @@
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 __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./parse"), exports);
18
- __exportStar(require("./types"), exports);
19
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../source/RTD/syntax/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAuB;AACvB,0CAAuB"}
@@ -1,4 +0,0 @@
1
- import { type Node } from './types';
2
- export declare function parse(input: object, shortcuts?: Shortcuts): Node;
3
- export declare function createNode(): Node;
4
- export type Shortcuts = Map<string, string>;
@@ -1,128 +0,0 @@
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
@@ -1 +0,0 @@
1
- {"version":3,"file":"parse.js","sourceRoot":"","sources":["../../../source/RTD/syntax/parse.ts"],"names":[],"mappings":"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"}
@@ -1,41 +0,0 @@
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>;
@@ -1,5 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.verbs = void 0;
4
- exports.verbs = new Set(['GET', 'POST', 'PUT', 'PATCH', 'DELETE']);
5
- //# sourceMappingURL=types.js.map
@@ -1 +0,0 @@
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"}
@@ -1,7 +0,0 @@
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
- }