phecda-server 8.0.2 → 8.2.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.
Files changed (52) hide show
  1. package/bin/cli.mjs +35 -5
  2. package/dist/{chunk-BLLRB5DQ.mjs → chunk-2P2UICBC.mjs} +2 -1
  3. package/dist/{chunk-UYZSUBX4.js → chunk-C424F7TV.js} +27 -27
  4. package/dist/{chunk-NQ55PA2X.mjs → chunk-JRNXLEAU.mjs} +2 -2
  5. package/dist/{chunk-FI5756JX.mjs → chunk-LYLSA56Y.mjs} +1 -1
  6. package/dist/{chunk-HKN3AAB2.js → chunk-MPKVT4SQ.js} +55 -54
  7. package/dist/{chunk-4LLLQOMF.js → chunk-OUQM7GZH.js} +2 -2
  8. package/dist/{chunk-OLNN4U3O.js → chunk-SRPCXPAQ.js} +20 -20
  9. package/dist/{chunk-PFPOEZHH.mjs → chunk-YDJAOLT2.mjs} +1 -1
  10. package/dist/helper.js +3 -3
  11. package/dist/helper.mjs +2 -2
  12. package/dist/http/elysia/index.d.mts +3 -3
  13. package/dist/http/elysia/index.d.ts +3 -3
  14. package/dist/http/elysia/index.js +40 -40
  15. package/dist/http/elysia/index.mjs +3 -3
  16. package/dist/http/express/index.js +37 -37
  17. package/dist/http/express/index.mjs +2 -2
  18. package/dist/http/fastify/index.js +38 -38
  19. package/dist/http/fastify/index.mjs +3 -3
  20. package/dist/http/h3/index.js +38 -38
  21. package/dist/http/h3/index.mjs +2 -2
  22. package/dist/http/hono/index.js +34 -34
  23. package/dist/http/hono/index.mjs +2 -2
  24. package/dist/http/hyper-express/index.js +35 -35
  25. package/dist/http/hyper-express/index.mjs +2 -2
  26. package/dist/http/koa/index.js +37 -37
  27. package/dist/http/koa/index.mjs +2 -2
  28. package/dist/index.d.mts +3 -1
  29. package/dist/index.d.ts +3 -1
  30. package/dist/index.js +46 -44
  31. package/dist/index.mjs +6 -4
  32. package/dist/rpc/bullmq/index.js +11 -11
  33. package/dist/rpc/bullmq/index.mjs +2 -2
  34. package/dist/rpc/electron/index.js +8 -8
  35. package/dist/rpc/electron/index.mjs +2 -2
  36. package/dist/rpc/kafka/index.js +10 -10
  37. package/dist/rpc/kafka/index.mjs +2 -2
  38. package/dist/rpc/nats/index.js +11 -11
  39. package/dist/rpc/nats/index.mjs +2 -2
  40. package/dist/rpc/rabbitmq/index.js +12 -12
  41. package/dist/rpc/rabbitmq/index.mjs +2 -2
  42. package/dist/rpc/redis/index.js +10 -10
  43. package/dist/rpc/redis/index.mjs +2 -2
  44. package/dist/rpc/ws/index.js +7 -7
  45. package/dist/rpc/ws/index.mjs +2 -2
  46. package/dist/test.js +6 -6
  47. package/dist/test.mjs +2 -2
  48. package/package.json +31 -31
  49. package/register/index.mjs +27 -0
  50. package/register/loader.mjs +65 -65
  51. package/register/utils.mjs +10 -15
  52. package/register/export.mjs +0 -39
@@ -1,16 +1,16 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkUYZSUBX4js = require('../../chunk-UYZSUBX4.js');
3
+ var _chunkC424F7TVjs = require('../../chunk-C424F7TV.js');
4
4
 
5
5
 
6
6
 
7
7
 
8
8
 
9
9
 
10
- var _chunkHKN3AAB2js = require('../../chunk-HKN3AAB2.js');
10
+ var _chunkMPKVT4SQjs = require('../../chunk-MPKVT4SQ.js');
11
11
 
12
12
 
13
- var _chunk4LLLQOMFjs = require('../../chunk-4LLLQOMF.js');
13
+ var _chunkOUQM7GZHjs = require('../../chunk-OUQM7GZH.js');
14
14
 
15
15
  // src/http/elysia/bind.ts
16
16
  var _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
@@ -19,14 +19,14 @@ var debug = _debug2.default.call(void 0, "phecda-server/elysia");
19
19
  function bind(app, data, opts = {}) {
20
20
  const { globalGuards, parallelRoute = "/__PHECDA_SERVER__", globalAddons = [], parallelAddons = [], globalFilter, globalPipe, dynamic = false } = opts;
21
21
  const { moduleMap, meta } = data;
22
- const metaMap = _chunkHKN3AAB2js.createControllerMetaMap.call(void 0, meta, (meta2) => {
22
+ const metaMap = _chunkMPKVT4SQjs.createControllerMetaMap.call(void 0, meta, (meta2) => {
23
23
  const { controller, http, method, tag } = meta2.data;
24
24
  if (controller === "http" && _optionalChain([http, 'optionalAccess', _ => _.method])) {
25
25
  debug(`register method "${method}" in module "${tag}"`);
26
26
  return true;
27
27
  }
28
28
  });
29
- _chunkHKN3AAB2js.detectAopDep.call(void 0, meta, {
29
+ _chunkMPKVT4SQjs.detectAopDep.call(void 0, meta, {
30
30
  addons: [
31
31
  ...globalAddons,
32
32
  ...parallelAddons
@@ -35,29 +35,29 @@ function bind(app, data, opts = {}) {
35
35
  });
36
36
  registerRoute();
37
37
  function registerRoute() {
38
- _chunkHKN3AAB2js.Context.applyAddons(globalAddons, app, "elysia");
38
+ _chunkMPKVT4SQjs.Context.applyAddons(globalAddons, app, "elysia");
39
39
  if (parallelRoute) {
40
40
  const parallelRouter = new (0, _elysia.Elysia)();
41
- _chunkHKN3AAB2js.Context.applyAddons(parallelAddons, app, "elysia");
41
+ _chunkMPKVT4SQjs.Context.applyAddons(parallelAddons, app, "elysia");
42
42
  parallelRouter.post(parallelRoute, async (c) => {
43
43
  const { body } = c;
44
44
  async function errorHandler(e) {
45
- const error = await _chunkHKN3AAB2js.Context.filterRecord.default(e);
45
+ const error = await _chunkMPKVT4SQjs.Context.filterRecord.default(e);
46
46
  c.set.status = error.status;
47
47
  return error;
48
48
  }
49
- _chunk4LLLQOMFjs.__name.call(void 0, errorHandler, "errorHandler");
50
- if (!Array.isArray(body)) return errorHandler(new (0, _chunkHKN3AAB2js.BadRequestException)("data format should be an array"));
49
+ _chunkOUQM7GZHjs.__name.call(void 0, errorHandler, "errorHandler");
50
+ if (!Array.isArray(body)) return errorHandler(new (0, _chunkMPKVT4SQjs.BadRequestException)("data format should be an array"));
51
51
  try {
52
52
  return Promise.all(body.map((item, i) => {
53
53
  return new Promise(async (resolve) => {
54
54
  if (!item) return resolve(null);
55
55
  const { tag, method } = item;
56
56
  debug(`(parallel)invoke method "${method}" in module "${tag}"`);
57
- if (!metaMap.has(tag)) return resolve(await _chunkHKN3AAB2js.Context.filterRecord.default(new (0, _chunkHKN3AAB2js.BadRequestException)(`module "${tag}" doesn't exist`)));
57
+ if (!metaMap.has(tag)) return resolve(await _chunkMPKVT4SQjs.Context.filterRecord.default(new (0, _chunkMPKVT4SQjs.BadRequestException)(`module "${tag}" doesn't exist`)));
58
58
  const meta2 = metaMap.get(tag)[method];
59
- if (!meta2) return resolve(await _chunkHKN3AAB2js.Context.filterRecord.default(new (0, _chunkHKN3AAB2js.BadRequestException)(`"${method}" in "${tag}" doesn't exist`)));
60
- const aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
59
+ if (!meta2) return resolve(await _chunkMPKVT4SQjs.Context.filterRecord.default(new (0, _chunkMPKVT4SQjs.BadRequestException)(`"${method}" in "${tag}" doesn't exist`)));
60
+ const aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
61
61
  globalGuards,
62
62
  globalFilter,
63
63
  globalPipe
@@ -72,23 +72,23 @@ function bind(app, data, opts = {}) {
72
72
  moduleMap,
73
73
  app,
74
74
  ...item,
75
- getCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
76
- setCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
75
+ getCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
76
+ setCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
77
77
  ...opts2,
78
78
  value
79
79
  }), "setCookie"),
80
- delCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
81
- redirect: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (url) => c.redirect(url), "redirect"),
82
- setResHeaders: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
83
- setResStatus: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
84
- getRequest: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => {
80
+ delCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
81
+ redirect: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (url) => c.redirect(url), "redirect"),
82
+ setResHeaders: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
83
+ setResStatus: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
84
+ getRequest: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => {
85
85
  throw new Error("elysia can't support getRequest");
86
86
  }, "getRequest"),
87
- getResponse: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => {
87
+ getResponse: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => {
88
88
  throw new Error("elysia can't support getResponse");
89
89
  }, "getResponse")
90
90
  };
91
- const context = new (0, _chunkHKN3AAB2js.Context)(contextData);
91
+ const context = new (0, _chunkMPKVT4SQjs.Context)(contextData);
92
92
  context.run(aop, resolve, resolve);
93
93
  });
94
94
  })).then((ret) => {
@@ -110,14 +110,14 @@ function bind(app, data, opts = {}) {
110
110
  if (!_optionalChain([http, 'optionalAccess', _2 => _2.method])) continue;
111
111
  let aop;
112
112
  if (!dynamic) {
113
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
113
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
114
114
  globalFilter,
115
115
  globalGuards,
116
116
  globalPipe
117
117
  });
118
118
  }
119
- _chunkHKN3AAB2js.Context.applyAddons(addons, subApp, "elysia");
120
- subApp[http.method](_chunkHKN3AAB2js.joinUrl.call(void 0, http.prefix, http.route), async (c) => {
119
+ _chunkMPKVT4SQjs.Context.applyAddons(addons, subApp, "elysia");
120
+ subApp[http.method](_chunkMPKVT4SQjs.joinUrl.call(void 0, http.prefix, http.route), async (c) => {
121
121
  debug(`invoke method "${method}" in module "${tag}"`);
122
122
  const contextData = {
123
123
  type: "elysia",
@@ -132,33 +132,33 @@ function bind(app, data, opts = {}) {
132
132
  params: c.params,
133
133
  headers: c.headers,
134
134
  app,
135
- getCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
136
- setCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
135
+ getCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
136
+ setCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
137
137
  ...opts2,
138
138
  value
139
139
  }), "setCookie"),
140
- delCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
141
- redirect: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (url) => c.redirect(url), "redirect"),
142
- setResHeaders: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
143
- setResStatus: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
144
- getRequest: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => {
140
+ delCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
141
+ redirect: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (url) => c.redirect(url), "redirect"),
142
+ setResHeaders: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
143
+ setResStatus: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
144
+ getRequest: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => {
145
145
  throw new Error("elysia can't support getRequest");
146
146
  }, "getRequest"),
147
- getResponse: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => {
147
+ getResponse: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => {
148
148
  throw new Error("elysia can't support getResponse");
149
149
  }, "getResponse")
150
150
  };
151
151
  if (dynamic) {
152
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
152
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
153
153
  globalFilter,
154
154
  globalGuards,
155
155
  globalPipe
156
156
  });
157
157
  }
158
- const context = new (0, _chunkHKN3AAB2js.Context)(contextData);
158
+ const context = new (0, _chunkMPKVT4SQjs.Context)(contextData);
159
159
  if (http.headers) c.set.headers = http.headers;
160
160
  if (dynamic) {
161
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
161
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
162
162
  globalFilter,
163
163
  globalGuards,
164
164
  globalPipe
@@ -173,13 +173,13 @@ function bind(app, data, opts = {}) {
173
173
  }
174
174
  }
175
175
  }
176
- _chunk4LLLQOMFjs.__name.call(void 0, registerRoute, "registerRoute");
176
+ _chunkOUQM7GZHjs.__name.call(void 0, registerRoute, "registerRoute");
177
177
  }
178
- _chunk4LLLQOMFjs.__name.call(void 0, bind, "bind");
178
+ _chunkOUQM7GZHjs.__name.call(void 0, bind, "bind");
179
179
  function Elysia(opts) {
180
- return _chunkUYZSUBX4js.Define.call(void 0, "elysia", opts);
180
+ return _chunkC424F7TVjs.Define.call(void 0, "elysia", opts);
181
181
  }
182
- _chunk4LLLQOMFjs.__name.call(void 0, Elysia, "Elysia");
182
+ _chunkOUQM7GZHjs.__name.call(void 0, Elysia, "Elysia");
183
183
 
184
184
 
185
185
 
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  Define
3
- } from "../../chunk-FI5756JX.mjs";
3
+ } from "../../chunk-LYLSA56Y.mjs";
4
4
  import {
5
5
  BadRequestException,
6
6
  Context,
7
7
  createControllerMetaMap,
8
8
  detectAopDep,
9
9
  joinUrl
10
- } from "../../chunk-BLLRB5DQ.mjs";
10
+ } from "../../chunk-2P2UICBC.mjs";
11
11
  import {
12
12
  __name
13
- } from "../../chunk-NQ55PA2X.mjs";
13
+ } from "../../chunk-JRNXLEAU.mjs";
14
14
 
15
15
  // src/http/elysia/bind.ts
16
16
  import Debug from "debug";
@@ -4,11 +4,11 @@
4
4
 
5
5
 
6
6
 
7
- var _chunkHKN3AAB2js = require('../../chunk-HKN3AAB2.js');
7
+ var _chunkMPKVT4SQjs = require('../../chunk-MPKVT4SQ.js');
8
8
 
9
9
 
10
10
 
11
- var _chunk4LLLQOMFjs = require('../../chunk-4LLLQOMF.js');
11
+ var _chunkOUQM7GZHjs = require('../../chunk-OUQM7GZH.js');
12
12
 
13
13
  // src/http/express/bind.ts
14
14
  var _express = require('express');
@@ -18,14 +18,14 @@ function bind(router, data, opts = {}) {
18
18
  const { globalGuards, parallelRoute = "/__PHECDA_SERVER__", globalAddons = [], parallelAddons = [], globalFilter, globalPipe, dynamic = false } = opts;
19
19
  const { moduleMap, meta } = data;
20
20
  const originStack = router.stack.slice(0, router.stack.length);
21
- const metaMap = _chunkHKN3AAB2js.createControllerMetaMap.call(void 0, meta, (meta2) => {
21
+ const metaMap = _chunkMPKVT4SQjs.createControllerMetaMap.call(void 0, meta, (meta2) => {
22
22
  const { controller, http, method, tag } = meta2.data;
23
23
  if (controller === "http" && _optionalChain([http, 'optionalAccess', _ => _.method])) {
24
24
  debug(`register method "${method}" in module "${tag}"`);
25
25
  return true;
26
26
  }
27
27
  });
28
- _chunkHKN3AAB2js.detectAopDep.call(void 0, meta, {
28
+ _chunkMPKVT4SQjs.detectAopDep.call(void 0, meta, {
29
29
  addons: [
30
30
  ...globalAddons,
31
31
  ...parallelAddons
@@ -33,33 +33,33 @@ function bind(router, data, opts = {}) {
33
33
  guards: globalGuards
34
34
  });
35
35
  registerRoute();
36
- _chunk4LLLQOMFjs.HMR.call(void 0, async () => {
36
+ _chunkOUQM7GZHjs.HMR.call(void 0, async () => {
37
37
  router.stack = originStack;
38
38
  registerRoute();
39
39
  });
40
40
  function registerRoute() {
41
- _chunkHKN3AAB2js.Context.applyAddons(globalAddons, router, "express");
41
+ _chunkMPKVT4SQjs.Context.applyAddons(globalAddons, router, "express");
42
42
  if (parallelRoute) {
43
43
  const subRouter = _express.Router.call(void 0, );
44
- _chunkHKN3AAB2js.Context.applyAddons(parallelAddons, subRouter, "express");
44
+ _chunkMPKVT4SQjs.Context.applyAddons(parallelAddons, subRouter, "express");
45
45
  subRouter.use(async (req, res, next) => {
46
46
  const { body } = req;
47
47
  async function errorHandler(e) {
48
- const error = await _chunkHKN3AAB2js.Context.filterRecord.default(e);
48
+ const error = await _chunkMPKVT4SQjs.Context.filterRecord.default(e);
49
49
  return res.status(error.status).json(error);
50
50
  }
51
- _chunk4LLLQOMFjs.__name.call(void 0, errorHandler, "errorHandler");
52
- if (!Array.isArray(body)) return errorHandler(new (0, _chunkHKN3AAB2js.BadRequestException)("data format should be an array"));
51
+ _chunkOUQM7GZHjs.__name.call(void 0, errorHandler, "errorHandler");
52
+ if (!Array.isArray(body)) return errorHandler(new (0, _chunkMPKVT4SQjs.BadRequestException)("data format should be an array"));
53
53
  try {
54
54
  return Promise.all(body.map((item, i) => {
55
55
  return new Promise(async (resolve) => {
56
56
  if (!item) return resolve(null);
57
57
  const { tag, method } = item;
58
58
  debug(`(parallel)invoke method "${method}" in module "${tag}"`);
59
- if (!metaMap.has(tag)) return resolve(await _chunkHKN3AAB2js.Context.filterRecord.default(new (0, _chunkHKN3AAB2js.BadRequestException)(`module "${tag}" doesn't exist`)));
59
+ if (!metaMap.has(tag)) return resolve(await _chunkMPKVT4SQjs.Context.filterRecord.default(new (0, _chunkMPKVT4SQjs.BadRequestException)(`module "${tag}" doesn't exist`)));
60
60
  const meta2 = metaMap.get(tag)[method];
61
- if (!meta2) return resolve(await _chunkHKN3AAB2js.Context.filterRecord.default(new (0, _chunkHKN3AAB2js.BadRequestException)(`"${method}" in "${tag}" doesn't exist`)));
62
- const aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
61
+ if (!meta2) return resolve(await _chunkMPKVT4SQjs.Context.filterRecord.default(new (0, _chunkMPKVT4SQjs.BadRequestException)(`"${method}" in "${tag}" doesn't exist`)));
62
+ const aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
63
63
  globalFilter,
64
64
  globalGuards,
65
65
  globalPipe
@@ -76,18 +76,18 @@ function bind(router, data, opts = {}) {
76
76
  next,
77
77
  app: router,
78
78
  ...item,
79
- getCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
80
- setCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
81
- delCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => res.cookie(key, "", {
79
+ getCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
80
+ setCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
81
+ delCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => res.cookie(key, "", {
82
82
  expires: /* @__PURE__ */ new Date(0)
83
83
  }), "delCookie"),
84
- redirect: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
85
- setResHeaders: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
86
- setResStatus: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
87
- getRequest: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => req, "getRequest"),
88
- getResponse: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => res, "getResponse")
84
+ redirect: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
85
+ setResHeaders: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
86
+ setResStatus: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
87
+ getRequest: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => req, "getRequest"),
88
+ getResponse: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => res, "getResponse")
89
89
  };
90
- const context = new (0, _chunkHKN3AAB2js.Context)(contextData);
90
+ const context = new (0, _chunkMPKVT4SQjs.Context)(contextData);
91
91
  context.run(aop, resolve, resolve);
92
92
  });
93
93
  })).then((ret) => {
@@ -106,15 +106,15 @@ function bind(router, data, opts = {}) {
106
106
  if (!_optionalChain([http, 'optionalAccess', _2 => _2.method])) continue;
107
107
  let aop;
108
108
  if (!dynamic) {
109
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
109
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
110
110
  globalFilter,
111
111
  globalGuards,
112
112
  globalPipe
113
113
  });
114
114
  }
115
115
  const subRouter = _express.Router.call(void 0, );
116
- _chunkHKN3AAB2js.Context.applyAddons(addons, subRouter, "express");
117
- subRouter[http.method](_chunkHKN3AAB2js.joinUrl.call(void 0, http.prefix, http.route), async (req, res, next) => {
116
+ _chunkMPKVT4SQjs.Context.applyAddons(addons, subRouter, "express");
117
+ subRouter[http.method](_chunkMPKVT4SQjs.joinUrl.call(void 0, http.prefix, http.route), async (req, res, next) => {
118
118
  debug(`invoke method "${method}" in module "${tag}"`);
119
119
  const contextData = {
120
120
  type: "express",
@@ -131,21 +131,21 @@ function bind(router, data, opts = {}) {
131
131
  headers: req.headers,
132
132
  app: router,
133
133
  next,
134
- getCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
135
- setCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
136
- delCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => res.cookie(key, "", {
134
+ getCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
135
+ setCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
136
+ delCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => res.cookie(key, "", {
137
137
  expires: /* @__PURE__ */ new Date(0)
138
138
  }), "delCookie"),
139
- redirect: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
140
- setResHeaders: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
141
- setResStatus: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
142
- getRequest: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => req, "getRequest"),
143
- getResponse: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => res, "getResponse")
139
+ redirect: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
140
+ setResHeaders: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
141
+ setResStatus: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
142
+ getRequest: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => req, "getRequest"),
143
+ getResponse: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => res, "getResponse")
144
144
  };
145
- const context = new (0, _chunkHKN3AAB2js.Context)(contextData);
145
+ const context = new (0, _chunkMPKVT4SQjs.Context)(contextData);
146
146
  if (http.headers) res.set(http.headers);
147
147
  if (dynamic) {
148
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
148
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
149
149
  globalFilter,
150
150
  globalGuards,
151
151
  globalPipe
@@ -164,9 +164,9 @@ function bind(router, data, opts = {}) {
164
164
  }
165
165
  }
166
166
  }
167
- _chunk4LLLQOMFjs.__name.call(void 0, registerRoute, "registerRoute");
167
+ _chunkOUQM7GZHjs.__name.call(void 0, registerRoute, "registerRoute");
168
168
  }
169
- _chunk4LLLQOMFjs.__name.call(void 0, bind, "bind");
169
+ _chunkOUQM7GZHjs.__name.call(void 0, bind, "bind");
170
170
 
171
171
 
172
172
  exports.bind = bind;
@@ -4,11 +4,11 @@ import {
4
4
  createControllerMetaMap,
5
5
  detectAopDep,
6
6
  joinUrl
7
- } from "../../chunk-BLLRB5DQ.mjs";
7
+ } from "../../chunk-2P2UICBC.mjs";
8
8
  import {
9
9
  HMR,
10
10
  __name
11
- } from "../../chunk-NQ55PA2X.mjs";
11
+ } from "../../chunk-JRNXLEAU.mjs";
12
12
 
13
13
  // src/http/express/bind.ts
14
14
  import { Router } from "express";
@@ -1,16 +1,16 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkUYZSUBX4js = require('../../chunk-UYZSUBX4.js');
3
+ var _chunkC424F7TVjs = require('../../chunk-C424F7TV.js');
4
4
 
5
5
 
6
6
 
7
7
 
8
8
 
9
9
 
10
- var _chunkHKN3AAB2js = require('../../chunk-HKN3AAB2.js');
10
+ var _chunkMPKVT4SQjs = require('../../chunk-MPKVT4SQ.js');
11
11
 
12
12
 
13
- var _chunk4LLLQOMFjs = require('../../chunk-4LLLQOMF.js');
13
+ var _chunkOUQM7GZHjs = require('../../chunk-OUQM7GZH.js');
14
14
 
15
15
  // src/http/fastify/bind.ts
16
16
  var _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
@@ -18,14 +18,14 @@ var debug = _debug2.default.call(void 0, "phecda-server/fastify");
18
18
  function bind(fastify, data, opts = {}) {
19
19
  const { globalGuards, parallelRoute = "/__PHECDA_SERVER__", globalAddons = [], parallelAddons = [], globalFilter, globalPipe, fastifyOpts, dynamic = false } = opts;
20
20
  const { moduleMap, meta } = data;
21
- const metaMap = _chunkHKN3AAB2js.createControllerMetaMap.call(void 0, meta, (meta2) => {
21
+ const metaMap = _chunkMPKVT4SQjs.createControllerMetaMap.call(void 0, meta, (meta2) => {
22
22
  const { controller, http, method, tag } = meta2.data;
23
23
  if (controller === "http" && _optionalChain([http, 'optionalAccess', _2 => _2.method])) {
24
24
  debug(`register method "${method}" in module "${tag}"`);
25
25
  return true;
26
26
  }
27
27
  });
28
- _chunkHKN3AAB2js.detectAopDep.call(void 0, meta, {
28
+ _chunkMPKVT4SQjs.detectAopDep.call(void 0, meta, {
29
29
  addons: [
30
30
  ...globalAddons,
31
31
  ...parallelAddons
@@ -33,28 +33,28 @@ function bind(fastify, data, opts = {}) {
33
33
  guards: globalGuards
34
34
  });
35
35
  fastify.register(async (fastify2, _, done) => {
36
- _chunkHKN3AAB2js.Context.applyAddons(globalAddons, fastify2, "fastify");
36
+ _chunkMPKVT4SQjs.Context.applyAddons(globalAddons, fastify2, "fastify");
37
37
  if (parallelRoute) {
38
38
  fastify2.register(async (fastify3, _opts, done2) => {
39
- _chunkHKN3AAB2js.Context.applyAddons(parallelAddons, fastify3, "fastify");
39
+ _chunkMPKVT4SQjs.Context.applyAddons(parallelAddons, fastify3, "fastify");
40
40
  fastify3.post(parallelRoute, async (req, res) => {
41
41
  const { body } = req;
42
42
  async function errorHandler(e) {
43
- const error = await _chunkHKN3AAB2js.Context.filterRecord.default(e);
43
+ const error = await _chunkMPKVT4SQjs.Context.filterRecord.default(e);
44
44
  return res.status(error.status).send(error);
45
45
  }
46
- _chunk4LLLQOMFjs.__name.call(void 0, errorHandler, "errorHandler");
47
- if (!Array.isArray(body)) return errorHandler(new (0, _chunkHKN3AAB2js.BadRequestException)("data format should be an array"));
46
+ _chunkOUQM7GZHjs.__name.call(void 0, errorHandler, "errorHandler");
47
+ if (!Array.isArray(body)) return errorHandler(new (0, _chunkMPKVT4SQjs.BadRequestException)("data format should be an array"));
48
48
  try {
49
49
  return Promise.all(body.map((item, i) => {
50
50
  return new Promise(async (resolve) => {
51
51
  if (!item) return resolve(null);
52
52
  const { tag, method } = item;
53
53
  debug(`(parallel)invoke method "${method}" in module "${tag}"`);
54
- if (!metaMap.has(tag)) return resolve(await _chunkHKN3AAB2js.Context.filterRecord.default(new (0, _chunkHKN3AAB2js.BadRequestException)(`module "${tag}" doesn't exist`)));
54
+ if (!metaMap.has(tag)) return resolve(await _chunkMPKVT4SQjs.Context.filterRecord.default(new (0, _chunkMPKVT4SQjs.BadRequestException)(`module "${tag}" doesn't exist`)));
55
55
  const meta2 = metaMap.get(tag)[method];
56
- if (!meta2) return resolve(await _chunkHKN3AAB2js.Context.filterRecord.default(new (0, _chunkHKN3AAB2js.BadRequestException)(`"${method}" in "${tag}" doesn't exist`)));
57
- const aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
56
+ if (!meta2) return resolve(await _chunkMPKVT4SQjs.Context.filterRecord.default(new (0, _chunkMPKVT4SQjs.BadRequestException)(`"${method}" in "${tag}" doesn't exist`)));
57
+ const aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
58
58
  globalFilter,
59
59
  globalGuards,
60
60
  globalPipe
@@ -71,18 +71,18 @@ function bind(fastify, data, opts = {}) {
71
71
  app: fastify3,
72
72
  ...item,
73
73
  // @ts-expect-error need @fastify/cookie
74
- getCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
74
+ getCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
75
75
  // @ts-expect-error need @fastify/cookie
76
- setCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key, value, opts2) => res.setCookie(key, value, opts2), "setCookie"),
76
+ setCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key, value, opts2) => res.setCookie(key, value, opts2), "setCookie"),
77
77
  // @ts-expect-error need @fastify/cookie
78
- delCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => res.clearCookie(key), "delCookie"),
79
- redirect: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (url, status) => res.redirect(url, status), "redirect"),
80
- setResHeaders: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (headers) => res.headers(headers), "setResHeaders"),
81
- setResStatus: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
82
- getRequest: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => req.raw, "getRequest"),
83
- getResponse: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => res.raw, "getResponse")
78
+ delCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => res.clearCookie(key), "delCookie"),
79
+ redirect: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (url, status) => res.redirect(url, status), "redirect"),
80
+ setResHeaders: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (headers) => res.headers(headers), "setResHeaders"),
81
+ setResStatus: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
82
+ getRequest: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => req.raw, "getRequest"),
83
+ getResponse: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => res.raw, "getResponse")
84
84
  };
85
- const context = new (0, _chunkHKN3AAB2js.Context)(contextData);
85
+ const context = new (0, _chunkMPKVT4SQjs.Context)(contextData);
86
86
  context.run(aop, resolve, resolve);
87
87
  });
88
88
  })).then((ret) => {
@@ -101,16 +101,16 @@ function bind(fastify, data, opts = {}) {
101
101
  const { data: { addons, define, http } } = meta2;
102
102
  if (!_optionalChain([http, 'optionalAccess', _3 => _3.method])) continue;
103
103
  fastify2.register(async (fastify3, _opts, done2) => {
104
- _chunkHKN3AAB2js.Context.applyAddons(addons, fastify3, "fastify");
104
+ _chunkMPKVT4SQjs.Context.applyAddons(addons, fastify3, "fastify");
105
105
  let aop;
106
106
  if (!dynamic) {
107
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
107
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
108
108
  globalFilter,
109
109
  globalGuards,
110
110
  globalPipe
111
111
  });
112
112
  }
113
- fastify3[http.method](_chunkHKN3AAB2js.joinUrl.call(void 0, http.prefix, http.route), _optionalChain([define, 'optionalAccess', _4 => _4.fastify]) || {}, async (req, res) => {
113
+ fastify3[http.method](_chunkMPKVT4SQjs.joinUrl.call(void 0, http.prefix, http.route), _optionalChain([define, 'optionalAccess', _4 => _4.fastify]) || {}, async (req, res) => {
114
114
  debug(`invoke method "${method}" in module "${tag}"`);
115
115
  const contextData = {
116
116
  type: "fastify",
@@ -127,23 +127,23 @@ function bind(fastify, data, opts = {}) {
127
127
  headers: req.headers,
128
128
  app: fastify3,
129
129
  // @ts-expect-error need @fastify/cookie
130
- getCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
130
+ getCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
131
131
  // @ts-expect-error need @fastify/cookie
132
- setCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key, value, opts2) => res.setCookie(key, value, opts2), "setCookie"),
132
+ setCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key, value, opts2) => res.setCookie(key, value, opts2), "setCookie"),
133
133
  // @ts-expect-error need @fastify/cookie
134
- delCookie: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (key) => res.clearCookie(key, {
134
+ delCookie: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (key) => res.clearCookie(key, {
135
135
  url: ""
136
136
  }), "delCookie"),
137
- redirect: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (url, status) => res.redirect(url, status), "redirect"),
138
- setResHeaders: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (headers) => res.headers(headers), "setResHeaders"),
139
- setResStatus: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
140
- getRequest: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => req.raw, "getRequest"),
141
- getResponse: /* @__PURE__ */ _chunk4LLLQOMFjs.__name.call(void 0, () => res.raw, "getResponse")
137
+ redirect: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (url, status) => res.redirect(url, status), "redirect"),
138
+ setResHeaders: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (headers) => res.headers(headers), "setResHeaders"),
139
+ setResStatus: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
140
+ getRequest: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => req.raw, "getRequest"),
141
+ getResponse: /* @__PURE__ */ _chunkOUQM7GZHjs.__name.call(void 0, () => res.raw, "getResponse")
142
142
  };
143
- const context = new (0, _chunkHKN3AAB2js.Context)(contextData);
143
+ const context = new (0, _chunkMPKVT4SQjs.Context)(contextData);
144
144
  if (http.headers) res.headers(http.headers);
145
145
  if (dynamic) {
146
- aop = _chunkHKN3AAB2js.Context.getAop(meta2, {
146
+ aop = _chunkMPKVT4SQjs.Context.getAop(meta2, {
147
147
  globalFilter,
148
148
  globalGuards,
149
149
  globalPipe
@@ -164,11 +164,11 @@ function bind(fastify, data, opts = {}) {
164
164
  done();
165
165
  }, fastifyOpts);
166
166
  }
167
- _chunk4LLLQOMFjs.__name.call(void 0, bind, "bind");
167
+ _chunkOUQM7GZHjs.__name.call(void 0, bind, "bind");
168
168
  function Fastify(opts) {
169
- return _chunkUYZSUBX4js.Define.call(void 0, "fastify", opts);
169
+ return _chunkC424F7TVjs.Define.call(void 0, "fastify", opts);
170
170
  }
171
- _chunk4LLLQOMFjs.__name.call(void 0, Fastify, "Fastify");
171
+ _chunkOUQM7GZHjs.__name.call(void 0, Fastify, "Fastify");
172
172
 
173
173
 
174
174
 
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  Define
3
- } from "../../chunk-FI5756JX.mjs";
3
+ } from "../../chunk-LYLSA56Y.mjs";
4
4
  import {
5
5
  BadRequestException,
6
6
  Context,
7
7
  createControllerMetaMap,
8
8
  detectAopDep,
9
9
  joinUrl
10
- } from "../../chunk-BLLRB5DQ.mjs";
10
+ } from "../../chunk-2P2UICBC.mjs";
11
11
  import {
12
12
  __name
13
- } from "../../chunk-NQ55PA2X.mjs";
13
+ } from "../../chunk-JRNXLEAU.mjs";
14
14
 
15
15
  // src/http/fastify/bind.ts
16
16
  import Debug from "debug";