phecda-server 7.0.0-alpha.2 → 7.0.0-alpha.4
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/assets/ps.json +1 -1
- package/assets/schema.json +55 -55
- package/bin/cli.mjs +1 -0
- package/dist/{chunk-NQIFUZL4.js → chunk-6EBEME3I.js} +51 -51
- package/dist/{chunk-XYVMNY2X.mjs → chunk-A53KNKY4.mjs} +1 -1
- package/dist/{chunk-HMVLXNV3.mjs → chunk-KUGFI6SC.mjs} +1 -1
- package/dist/{chunk-3FHZB3Z5.mjs → chunk-MMG73S64.mjs} +1 -1
- package/dist/{chunk-7YQ57BQS.js → chunk-PKSWGQLW.js} +18 -18
- package/dist/{chunk-MBCHNDAY.js → chunk-QCOBXM7F.js} +24 -24
- package/dist/{chunk-WHJ5FALK.mjs → chunk-QD3QR3NW.mjs} +3 -3
- package/dist/{chunk-J5CFUN4V.js → chunk-RQSQRZL4.js} +3 -3
- package/dist/helper.js +3 -3
- package/dist/helper.mjs +2 -2
- package/dist/http/elysia/index.js +40 -40
- package/dist/http/elysia/index.mjs +3 -3
- package/dist/http/express/index.js +37 -37
- package/dist/http/express/index.mjs +2 -2
- package/dist/http/fastify/index.js +38 -38
- package/dist/http/fastify/index.mjs +3 -3
- package/dist/http/h3/index.js +37 -37
- package/dist/http/h3/index.mjs +2 -2
- package/dist/http/hono/index.js +35 -35
- package/dist/http/hono/index.mjs +2 -2
- package/dist/http/hyper-express/index.js +35 -35
- package/dist/http/hyper-express/index.mjs +2 -2
- package/dist/http/koa/index.js +37 -37
- package/dist/http/koa/index.mjs +2 -2
- package/dist/index.js +38 -38
- package/dist/index.mjs +4 -4
- package/dist/rpc/bullmq/index.js +14 -14
- package/dist/rpc/bullmq/index.mjs +2 -2
- package/dist/rpc/kafka/index.js +14 -14
- package/dist/rpc/kafka/index.mjs +2 -2
- package/dist/rpc/nats/index.js +13 -13
- package/dist/rpc/nats/index.mjs +2 -2
- package/dist/rpc/rabbitmq/index.js +15 -15
- package/dist/rpc/rabbitmq/index.mjs +2 -2
- package/dist/rpc/redis/index.js +13 -13
- package/dist/rpc/redis/index.mjs +2 -2
- package/dist/test.d.mts +1 -1
- package/dist/test.d.ts +1 -1
- package/dist/test.js +6 -6
- package/dist/test.mjs +2 -2
- package/package.json +2 -2
- package/register/index.mjs +41 -40
- package/register/loader.mjs +36 -11
|
@@ -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
|
|
3
|
+
var _chunkQCOBXM7Fjs = require('../../chunk-QCOBXM7F.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunk6EBEME3Ijs = require('../../chunk-6EBEME3I.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
var
|
|
13
|
+
var _chunkRQSQRZL4js = require('../../chunk-RQSQRZL4.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 =
|
|
21
|
+
const metaMap = _chunk6EBEME3Ijs.createControllerMetaMap.call(void 0, meta, (meta2) => {
|
|
22
22
|
const { controller, http, func, tag } = meta2.data;
|
|
23
23
|
if (controller === "http" && _optionalChain([http, 'optionalAccess', _2 => _2.type])) {
|
|
24
24
|
debug(`register method "${func}" in module "${tag}"`);
|
|
25
25
|
return true;
|
|
26
26
|
}
|
|
27
27
|
});
|
|
28
|
-
|
|
28
|
+
_chunk6EBEME3Ijs.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
|
-
|
|
36
|
+
_chunk6EBEME3Ijs.Context.applyAddons(globalAddons, fastify2, "fastify");
|
|
37
37
|
if (parallelRoute) {
|
|
38
38
|
fastify2.register(async (fastify3, _opts, done2) => {
|
|
39
|
-
|
|
39
|
+
_chunk6EBEME3Ijs.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
|
|
43
|
+
const error = await _chunk6EBEME3Ijs.Context.filterRecord.default(e);
|
|
44
44
|
return res.status(error.status).send(error);
|
|
45
45
|
}
|
|
46
|
-
|
|
47
|
-
if (!Array.isArray(body)) return errorHandler(new (0,
|
|
46
|
+
_chunkRQSQRZL4js.__name.call(void 0, errorHandler, "errorHandler");
|
|
47
|
+
if (!Array.isArray(body)) return errorHandler(new (0, _chunk6EBEME3Ijs.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
|
const { tag, func } = item;
|
|
52
52
|
debug(`(parallel)invoke method "${func}" in module "${tag}"`);
|
|
53
|
-
if (!metaMap.has(tag)) return resolve(await
|
|
53
|
+
if (!metaMap.has(tag)) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`module "${tag}" doesn't exist`)));
|
|
54
54
|
const meta2 = metaMap.get(tag)[func];
|
|
55
|
-
if (!meta2) return resolve(await
|
|
55
|
+
if (!meta2) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
|
|
56
56
|
const { data: { params } } = meta2;
|
|
57
|
-
const aop =
|
|
57
|
+
const aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
58
58
|
globalFilter,
|
|
59
59
|
globalGuards,
|
|
60
60
|
globalPipe
|
|
@@ -71,20 +71,20 @@ function bind(fastify, data, opts = {}) {
|
|
|
71
71
|
tag,
|
|
72
72
|
func,
|
|
73
73
|
app: fastify3,
|
|
74
|
-
...
|
|
74
|
+
..._chunk6EBEME3Ijs.argToReq.call(void 0, params, item.args, req.headers),
|
|
75
75
|
// @ts-expect-error need @fastify/cookie
|
|
76
|
-
getCookie: /* @__PURE__ */
|
|
76
|
+
getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
|
|
77
77
|
// @ts-expect-error need @fastify/cookie
|
|
78
|
-
setCookie: /* @__PURE__ */
|
|
78
|
+
setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => res.setCookie(key, value, opts2), "setCookie"),
|
|
79
79
|
// @ts-expect-error need @fastify/cookie
|
|
80
|
-
delCookie: /* @__PURE__ */
|
|
81
|
-
redirect: /* @__PURE__ */
|
|
82
|
-
setResHeaders: /* @__PURE__ */
|
|
83
|
-
setResStatus: /* @__PURE__ */
|
|
84
|
-
getRequest: /* @__PURE__ */
|
|
85
|
-
getResponse: /* @__PURE__ */
|
|
80
|
+
delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => res.clearCookie(key), "delCookie"),
|
|
81
|
+
redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url, status) => res.redirect(url, status), "redirect"),
|
|
82
|
+
setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => res.headers(headers), "setResHeaders"),
|
|
83
|
+
setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (code) => res.status(code), "setResStatus"),
|
|
84
|
+
getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => req.raw, "getRequest"),
|
|
85
|
+
getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => res.raw, "getResponse")
|
|
86
86
|
};
|
|
87
|
-
const context = new (0,
|
|
87
|
+
const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
|
|
88
88
|
context.run(aop, resolve, resolve);
|
|
89
89
|
});
|
|
90
90
|
})).then((ret) => {
|
|
@@ -103,10 +103,10 @@ function bind(fastify, data, opts = {}) {
|
|
|
103
103
|
const { data: { addons, define, http } } = meta2;
|
|
104
104
|
if (!_optionalChain([http, 'optionalAccess', _3 => _3.type])) continue;
|
|
105
105
|
fastify2.register(async (fastify3, _opts, done2) => {
|
|
106
|
-
|
|
106
|
+
_chunk6EBEME3Ijs.Context.applyAddons(addons, fastify3, "fastify");
|
|
107
107
|
let aop;
|
|
108
108
|
if (!dynamic) {
|
|
109
|
-
aop =
|
|
109
|
+
aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
110
110
|
globalFilter,
|
|
111
111
|
globalGuards,
|
|
112
112
|
globalPipe
|
|
@@ -129,23 +129,23 @@ function bind(fastify, data, opts = {}) {
|
|
|
129
129
|
headers: req.headers,
|
|
130
130
|
app: fastify3,
|
|
131
131
|
// @ts-expect-error need @fastify/cookie
|
|
132
|
-
getCookie: /* @__PURE__ */
|
|
132
|
+
getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
|
|
133
133
|
// @ts-expect-error need @fastify/cookie
|
|
134
|
-
setCookie: /* @__PURE__ */
|
|
134
|
+
setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => res.setCookie(key, value, opts2), "setCookie"),
|
|
135
135
|
// @ts-expect-error need @fastify/cookie
|
|
136
|
-
delCookie: /* @__PURE__ */
|
|
136
|
+
delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => res.clearCookie(key, {
|
|
137
137
|
url: ""
|
|
138
138
|
}), "delCookie"),
|
|
139
|
-
redirect: /* @__PURE__ */
|
|
140
|
-
setResHeaders: /* @__PURE__ */
|
|
141
|
-
setResStatus: /* @__PURE__ */
|
|
142
|
-
getRequest: /* @__PURE__ */
|
|
143
|
-
getResponse: /* @__PURE__ */
|
|
139
|
+
redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url, status) => res.redirect(url, status), "redirect"),
|
|
140
|
+
setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => res.headers(headers), "setResHeaders"),
|
|
141
|
+
setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (code) => res.status(code), "setResStatus"),
|
|
142
|
+
getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => req.raw, "getRequest"),
|
|
143
|
+
getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => res.raw, "getResponse")
|
|
144
144
|
};
|
|
145
|
-
const context = new (0,
|
|
145
|
+
const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
|
|
146
146
|
if (http.headers) res.headers(http.headers);
|
|
147
147
|
if (dynamic) {
|
|
148
|
-
aop =
|
|
148
|
+
aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
149
149
|
globalFilter,
|
|
150
150
|
globalGuards,
|
|
151
151
|
globalPipe
|
|
@@ -166,11 +166,11 @@ function bind(fastify, data, opts = {}) {
|
|
|
166
166
|
done();
|
|
167
167
|
}, fastifyOpts);
|
|
168
168
|
}
|
|
169
|
-
|
|
169
|
+
_chunkRQSQRZL4js.__name.call(void 0, bind, "bind");
|
|
170
170
|
function Fastify(opts) {
|
|
171
|
-
return
|
|
171
|
+
return _chunkQCOBXM7Fjs.Define.call(void 0, "fastify", opts);
|
|
172
172
|
}
|
|
173
|
-
|
|
173
|
+
_chunkRQSQRZL4js.__name.call(void 0, Fastify, "Fastify");
|
|
174
174
|
|
|
175
175
|
|
|
176
176
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Define
|
|
3
|
-
} from "../../chunk-
|
|
3
|
+
} from "../../chunk-KUGFI6SC.mjs";
|
|
4
4
|
import {
|
|
5
5
|
BadRequestException,
|
|
6
6
|
Context,
|
|
7
7
|
argToReq,
|
|
8
8
|
createControllerMetaMap,
|
|
9
9
|
detectAopDep
|
|
10
|
-
} from "../../chunk-
|
|
10
|
+
} from "../../chunk-MMG73S64.mjs";
|
|
11
11
|
import {
|
|
12
12
|
__name
|
|
13
|
-
} from "../../chunk-
|
|
13
|
+
} from "../../chunk-QD3QR3NW.mjs";
|
|
14
14
|
|
|
15
15
|
// src/http/fastify/bind.ts
|
|
16
16
|
import Debug from "debug";
|
package/dist/http/h3/index.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunk6EBEME3Ijs = require('../../chunk-6EBEME3I.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkRQSQRZL4js = require('../../chunk-RQSQRZL4.js');
|
|
11
11
|
|
|
12
12
|
// src/http/h3/bind.ts
|
|
13
13
|
var _h3 = require('h3');
|
|
@@ -16,14 +16,14 @@ var debug = _debug2.default.call(void 0, "phecda-server/h3");
|
|
|
16
16
|
function bind(router, data, opts = {}) {
|
|
17
17
|
const { globalGuards, parallelRoute = "/__PHECDA_SERVER__", globalAddons = [], parallelAddons = [], globalFilter, globalPipe, dynamic = false } = opts;
|
|
18
18
|
const { moduleMap, meta } = data;
|
|
19
|
-
const metaMap =
|
|
19
|
+
const metaMap = _chunk6EBEME3Ijs.createControllerMetaMap.call(void 0, meta, (meta2) => {
|
|
20
20
|
const { controller, http, func, tag } = meta2.data;
|
|
21
21
|
if (controller === "http" && _optionalChain([http, 'optionalAccess', _ => _.type])) {
|
|
22
22
|
debug(`register method "${func}" in module "${tag}"`);
|
|
23
23
|
return true;
|
|
24
24
|
}
|
|
25
25
|
});
|
|
26
|
-
|
|
26
|
+
_chunk6EBEME3Ijs.detectAopDep.call(void 0, meta, {
|
|
27
27
|
addons: [
|
|
28
28
|
...globalAddons,
|
|
29
29
|
...parallelAddons
|
|
@@ -32,32 +32,32 @@ function bind(router, data, opts = {}) {
|
|
|
32
32
|
});
|
|
33
33
|
registerRoute();
|
|
34
34
|
function registerRoute() {
|
|
35
|
-
|
|
35
|
+
_chunk6EBEME3Ijs.Context.applyAddons(globalAddons, router, "h3");
|
|
36
36
|
if (parallelRoute) {
|
|
37
37
|
const subRouter = _h3.createRouter.call(void 0, );
|
|
38
|
-
|
|
38
|
+
_chunk6EBEME3Ijs.Context.applyAddons(parallelAddons, subRouter, "h3");
|
|
39
39
|
subRouter.post(parallelRoute, _h3.eventHandler.call(void 0, {
|
|
40
|
-
handler: /* @__PURE__ */
|
|
40
|
+
handler: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, async (event) => {
|
|
41
41
|
const body = await _h3.readBody.call(void 0, event, {
|
|
42
42
|
strict: true
|
|
43
43
|
});
|
|
44
44
|
async function errorHandler(e) {
|
|
45
|
-
const error = await
|
|
45
|
+
const error = await _chunk6EBEME3Ijs.Context.filterRecord.default(e);
|
|
46
46
|
_h3.setResponseStatus.call(void 0, event, error.status);
|
|
47
47
|
return error;
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
if (!Array.isArray(body)) return errorHandler(new (0,
|
|
49
|
+
_chunkRQSQRZL4js.__name.call(void 0, errorHandler, "errorHandler");
|
|
50
|
+
if (!Array.isArray(body)) return errorHandler(new (0, _chunk6EBEME3Ijs.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
|
const { tag, func } = item;
|
|
55
55
|
debug(`(parallel)invoke method "${func}" in module "${tag}"`);
|
|
56
|
-
if (!metaMap.has(tag)) return resolve(await
|
|
56
|
+
if (!metaMap.has(tag)) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`module "${tag}" doesn't exist`)));
|
|
57
57
|
const meta2 = metaMap.get(tag)[func];
|
|
58
|
-
if (!meta2) return resolve(await
|
|
58
|
+
if (!meta2) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
|
|
59
59
|
const { data: { params } } = meta2;
|
|
60
|
-
const aop =
|
|
60
|
+
const aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
61
61
|
globalFilter,
|
|
62
62
|
globalGuards,
|
|
63
63
|
globalPipe
|
|
@@ -73,17 +73,17 @@ function bind(router, data, opts = {}) {
|
|
|
73
73
|
func,
|
|
74
74
|
parallel: true,
|
|
75
75
|
app: router,
|
|
76
|
-
...
|
|
77
|
-
getCookie: /* @__PURE__ */
|
|
78
|
-
setCookie: /* @__PURE__ */
|
|
79
|
-
delCookie: /* @__PURE__ */
|
|
80
|
-
redirect: /* @__PURE__ */
|
|
81
|
-
setResHeaders: /* @__PURE__ */
|
|
82
|
-
setResStatus: /* @__PURE__ */
|
|
83
|
-
getRequest: /* @__PURE__ */
|
|
84
|
-
getResponse: /* @__PURE__ */
|
|
76
|
+
..._chunk6EBEME3Ijs.argToReq.call(void 0, params, item.args, _h3.getRequestHeaders.call(void 0, event)),
|
|
77
|
+
getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _h3.getCookie.call(void 0, event, key), "getCookie"),
|
|
78
|
+
setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => _h3.setCookie.call(void 0, event, key, value, opts2), "setCookie"),
|
|
79
|
+
delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _h3.deleteCookie.call(void 0, event, key), "delCookie"),
|
|
80
|
+
redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url, status) => _h3.sendRedirect.call(void 0, event, url, status), "redirect"),
|
|
81
|
+
setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => _h3.setResponseHeaders.call(void 0, event, headers), "setResHeaders"),
|
|
82
|
+
setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (code) => _h3.setResponseStatus.call(void 0, event, code), "setResStatus"),
|
|
83
|
+
getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => event.node.req, "getRequest"),
|
|
84
|
+
getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => event.node.res, "getResponse")
|
|
85
85
|
};
|
|
86
|
-
const context = new (0,
|
|
86
|
+
const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
|
|
87
87
|
context.run(aop, resolve, resolve);
|
|
88
88
|
});
|
|
89
89
|
}));
|
|
@@ -102,14 +102,14 @@ function bind(router, data, opts = {}) {
|
|
|
102
102
|
const needBody = params.some((item) => item.type === "body");
|
|
103
103
|
let aop;
|
|
104
104
|
if (!dynamic) {
|
|
105
|
-
aop =
|
|
105
|
+
aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
106
106
|
globalFilter,
|
|
107
107
|
globalGuards,
|
|
108
108
|
globalPipe
|
|
109
109
|
});
|
|
110
110
|
}
|
|
111
111
|
const subRouter = _h3.createRouter.call(void 0, );
|
|
112
|
-
|
|
112
|
+
_chunk6EBEME3Ijs.Context.applyAddons(addons, subRouter, "h3");
|
|
113
113
|
subRouter[http.type](http.prefix + http.route, _h3.defineEventHandler.call(void 0, async (event) => {
|
|
114
114
|
debug(`invoke method "${func}" in module "${tag}"`);
|
|
115
115
|
const contextData = {
|
|
@@ -127,19 +127,19 @@ function bind(router, data, opts = {}) {
|
|
|
127
127
|
body: needBody ? await _h3.readBody.call(void 0, event, {
|
|
128
128
|
strict: true
|
|
129
129
|
}) : void 0,
|
|
130
|
-
getCookie: /* @__PURE__ */
|
|
131
|
-
setCookie: /* @__PURE__ */
|
|
132
|
-
redirect: /* @__PURE__ */
|
|
133
|
-
setResHeaders: /* @__PURE__ */
|
|
134
|
-
setResStatus: /* @__PURE__ */
|
|
135
|
-
delCookie: /* @__PURE__ */
|
|
136
|
-
getRequest: /* @__PURE__ */
|
|
137
|
-
getResponse: /* @__PURE__ */
|
|
130
|
+
getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _h3.getCookie.call(void 0, event, key), "getCookie"),
|
|
131
|
+
setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => _h3.setCookie.call(void 0, event, key, value, opts2), "setCookie"),
|
|
132
|
+
redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url) => _h3.sendRedirect.call(void 0, event, url), "redirect"),
|
|
133
|
+
setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => _h3.setResponseHeaders.call(void 0, event, headers), "setResHeaders"),
|
|
134
|
+
setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (code) => _h3.setResponseStatus.call(void 0, event, code), "setResStatus"),
|
|
135
|
+
delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _h3.deleteCookie.call(void 0, event, key), "delCookie"),
|
|
136
|
+
getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => event.node.req, "getRequest"),
|
|
137
|
+
getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => event.node.res, "getResponse")
|
|
138
138
|
};
|
|
139
|
-
const context = new (0,
|
|
139
|
+
const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
|
|
140
140
|
_h3.setHeaders.call(void 0, event, http.headers || {});
|
|
141
141
|
if (dynamic) {
|
|
142
|
-
aop =
|
|
142
|
+
aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
143
143
|
globalFilter,
|
|
144
144
|
globalGuards,
|
|
145
145
|
globalPipe
|
|
@@ -154,9 +154,9 @@ function bind(router, data, opts = {}) {
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
|
-
|
|
157
|
+
_chunkRQSQRZL4js.__name.call(void 0, registerRoute, "registerRoute");
|
|
158
158
|
}
|
|
159
|
-
|
|
159
|
+
_chunkRQSQRZL4js.__name.call(void 0, bind, "bind");
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
exports.bind = bind;
|
package/dist/http/h3/index.mjs
CHANGED
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
argToReq,
|
|
5
5
|
createControllerMetaMap,
|
|
6
6
|
detectAopDep
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-MMG73S64.mjs";
|
|
8
8
|
import {
|
|
9
9
|
__name
|
|
10
|
-
} from "../../chunk-
|
|
10
|
+
} from "../../chunk-QD3QR3NW.mjs";
|
|
11
11
|
|
|
12
12
|
// src/http/h3/bind.ts
|
|
13
13
|
import { createRouter, defineEventHandler, deleteCookie, eventHandler, getCookie, getQuery, getRequestHeaders, getRouterParams, readBody, sendRedirect, setCookie, setHeaders, setResponseHeaders, setResponseStatus, useBase } from "h3";
|
package/dist/http/hono/index.js
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
var
|
|
7
|
+
var _chunk6EBEME3Ijs = require('../../chunk-6EBEME3I.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkRQSQRZL4js = require('../../chunk-RQSQRZL4.js');
|
|
11
11
|
|
|
12
12
|
// src/http/hono/bind.ts
|
|
13
13
|
var _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
|
|
@@ -17,14 +17,14 @@ var debug = _debug2.default.call(void 0, "phecda-server/hono");
|
|
|
17
17
|
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
|
-
const metaMap =
|
|
20
|
+
const metaMap = _chunk6EBEME3Ijs.createControllerMetaMap.call(void 0, meta, (meta2) => {
|
|
21
21
|
const { controller, http, func, tag } = meta2.data;
|
|
22
22
|
if (controller === "http" && _optionalChain([http, 'optionalAccess', _ => _.type])) {
|
|
23
23
|
debug(`register method "${func}" in module "${tag}"`);
|
|
24
24
|
return true;
|
|
25
25
|
}
|
|
26
26
|
});
|
|
27
|
-
|
|
27
|
+
_chunk6EBEME3Ijs.detectAopDep.call(void 0, meta, {
|
|
28
28
|
addons: [
|
|
29
29
|
...globalAddons,
|
|
30
30
|
...parallelAddons
|
|
@@ -35,26 +35,26 @@ function bind(router, data, opts = {}) {
|
|
|
35
35
|
function registerRoute() {
|
|
36
36
|
if (parallelRoute) {
|
|
37
37
|
const subApp = new (0, _hono.Hono)();
|
|
38
|
-
|
|
38
|
+
_chunk6EBEME3Ijs.Context.applyAddons(parallelAddons, subApp, "hono");
|
|
39
39
|
subApp.post("", async (c) => {
|
|
40
40
|
const body = await c.req.json();
|
|
41
41
|
async function errorHandler(e) {
|
|
42
|
-
const error = await
|
|
42
|
+
const error = await _chunk6EBEME3Ijs.Context.filterRecord.default(e);
|
|
43
43
|
c.status(error.status);
|
|
44
44
|
return c.json(error);
|
|
45
45
|
}
|
|
46
|
-
|
|
47
|
-
if (!Array.isArray(body)) return errorHandler(new (0,
|
|
46
|
+
_chunkRQSQRZL4js.__name.call(void 0, errorHandler, "errorHandler");
|
|
47
|
+
if (!Array.isArray(body)) return errorHandler(new (0, _chunk6EBEME3Ijs.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
|
const { tag, func } = item;
|
|
52
52
|
debug(`(parallel)invoke method "${func}" in module "${tag}"`);
|
|
53
|
-
if (!metaMap.has(tag)) return resolve(await
|
|
53
|
+
if (!metaMap.has(tag)) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`module "${tag}" doesn't exist`)));
|
|
54
54
|
const meta2 = metaMap.get(tag)[func];
|
|
55
|
-
if (!meta2) return resolve(await
|
|
55
|
+
if (!meta2) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
|
|
56
56
|
const { data: { params } } = meta2;
|
|
57
|
-
const aop =
|
|
57
|
+
const aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
58
58
|
globalFilter,
|
|
59
59
|
globalGuards,
|
|
60
60
|
globalPipe
|
|
@@ -70,19 +70,19 @@ function bind(router, data, opts = {}) {
|
|
|
70
70
|
tag,
|
|
71
71
|
func,
|
|
72
72
|
app: router,
|
|
73
|
-
...
|
|
74
|
-
getCookie: /* @__PURE__ */
|
|
75
|
-
delCookie: /* @__PURE__ */
|
|
76
|
-
setCookie: /* @__PURE__ */
|
|
77
|
-
redirect: /* @__PURE__ */
|
|
78
|
-
setResHeaders: /* @__PURE__ */
|
|
73
|
+
..._chunk6EBEME3Ijs.argToReq.call(void 0, params, item.args, c.req.header()),
|
|
74
|
+
getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _cookie.getCookie.call(void 0, c, key), "getCookie"),
|
|
75
|
+
delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _cookie.deleteCookie.call(void 0, c, key), "delCookie"),
|
|
76
|
+
setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => _cookie.setCookie.call(void 0, c, key, value, opts2), "setCookie"),
|
|
77
|
+
redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url) => c.redirect(url), "redirect"),
|
|
78
|
+
setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => {
|
|
79
79
|
for (const name in headers) c.header(name, headers[name]);
|
|
80
80
|
}, "setResHeaders"),
|
|
81
|
-
setResStatus: /* @__PURE__ */
|
|
82
|
-
getRequest: /* @__PURE__ */
|
|
83
|
-
getResponse: /* @__PURE__ */
|
|
81
|
+
setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (status) => c.status(status), "setResStatus"),
|
|
82
|
+
getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => c.req.raw, "getRequest"),
|
|
83
|
+
getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => c.res, "getResponse")
|
|
84
84
|
};
|
|
85
|
-
const context = new (0,
|
|
85
|
+
const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
|
|
86
86
|
context.run(aop, resolve, resolve);
|
|
87
87
|
});
|
|
88
88
|
})).then((ret) => {
|
|
@@ -102,14 +102,14 @@ function bind(router, data, opts = {}) {
|
|
|
102
102
|
const needBody = params.some((item) => item.type === "body");
|
|
103
103
|
let aop;
|
|
104
104
|
if (!dynamic) {
|
|
105
|
-
aop =
|
|
105
|
+
aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
106
106
|
globalFilter,
|
|
107
107
|
globalGuards,
|
|
108
108
|
globalPipe
|
|
109
109
|
});
|
|
110
110
|
}
|
|
111
111
|
const subApp = new (0, _hono.Hono)();
|
|
112
|
-
|
|
112
|
+
_chunk6EBEME3Ijs.Context.applyAddons(addons, subApp, "hono");
|
|
113
113
|
subApp[http.type](http.route, async (c) => {
|
|
114
114
|
debug(`invoke method "${func}" in module "${tag}"`);
|
|
115
115
|
const contextData = {
|
|
@@ -125,23 +125,23 @@ function bind(router, data, opts = {}) {
|
|
|
125
125
|
params: c.req.param(),
|
|
126
126
|
headers: c.req.header(),
|
|
127
127
|
app: router,
|
|
128
|
-
getCookie: /* @__PURE__ */
|
|
129
|
-
delCookie: /* @__PURE__ */
|
|
130
|
-
setCookie: /* @__PURE__ */
|
|
131
|
-
redirect: /* @__PURE__ */
|
|
132
|
-
setResHeaders: /* @__PURE__ */
|
|
128
|
+
getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _cookie.getCookie.call(void 0, c, key), "getCookie"),
|
|
129
|
+
delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => _cookie.deleteCookie.call(void 0, c, key), "delCookie"),
|
|
130
|
+
setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => _cookie.setCookie.call(void 0, c, key, value, opts2), "setCookie"),
|
|
131
|
+
redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url) => c.redirect(url), "redirect"),
|
|
132
|
+
setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => {
|
|
133
133
|
for (const name in headers) c.header(name, headers[name]);
|
|
134
134
|
}, "setResHeaders"),
|
|
135
|
-
setResStatus: /* @__PURE__ */
|
|
136
|
-
getRequest: /* @__PURE__ */
|
|
137
|
-
getResponse: /* @__PURE__ */
|
|
135
|
+
setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (status) => c.status(status), "setResStatus"),
|
|
136
|
+
getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => c.req.raw, "getRequest"),
|
|
137
|
+
getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => c.res, "getResponse")
|
|
138
138
|
};
|
|
139
|
-
const context = new (0,
|
|
139
|
+
const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
|
|
140
140
|
if (http.headers) {
|
|
141
141
|
for (const name in http.headers) c.header(name, http.headers[name]);
|
|
142
142
|
}
|
|
143
143
|
if (dynamic) {
|
|
144
|
-
aop =
|
|
144
|
+
aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
|
|
145
145
|
globalFilter,
|
|
146
146
|
globalGuards,
|
|
147
147
|
globalPipe
|
|
@@ -160,9 +160,9 @@ function bind(router, data, opts = {}) {
|
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
-
|
|
163
|
+
_chunkRQSQRZL4js.__name.call(void 0, registerRoute, "registerRoute");
|
|
164
164
|
}
|
|
165
|
-
|
|
165
|
+
_chunkRQSQRZL4js.__name.call(void 0, bind, "bind");
|
|
166
166
|
|
|
167
167
|
|
|
168
168
|
exports.bind = bind;
|
package/dist/http/hono/index.mjs
CHANGED
|
@@ -4,10 +4,10 @@ import {
|
|
|
4
4
|
argToReq,
|
|
5
5
|
createControllerMetaMap,
|
|
6
6
|
detectAopDep
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-MMG73S64.mjs";
|
|
8
8
|
import {
|
|
9
9
|
__name
|
|
10
|
-
} from "../../chunk-
|
|
10
|
+
} from "../../chunk-QD3QR3NW.mjs";
|
|
11
11
|
|
|
12
12
|
// src/http/hono/bind.ts
|
|
13
13
|
import Debug from "debug";
|