@nestia/fetcher 11.0.0-dev.20260305 → 11.0.0-dev.20260312

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 (50) hide show
  1. package/lib/AesPkcs5.d.ts +30 -0
  2. package/lib/AesPkcs5.js +49 -0
  3. package/lib/AesPkcs5.js.map +1 -0
  4. package/lib/EncryptedFetcher.d.ts +47 -0
  5. package/lib/EncryptedFetcher.js +98 -0
  6. package/lib/EncryptedFetcher.js.map +1 -0
  7. package/lib/FormDataInput.d.ts +70 -0
  8. package/lib/FormDataInput.js +3 -0
  9. package/lib/FormDataInput.js.map +1 -0
  10. package/lib/HttpError.d.ts +1 -0
  11. package/lib/HttpError.js +6 -0
  12. package/lib/HttpError.js.map +1 -0
  13. package/lib/IConnection.d.ts +165 -0
  14. package/lib/IConnection.js +3 -0
  15. package/lib/IConnection.js.map +1 -0
  16. package/lib/IEncryptionPassword.d.ts +41 -0
  17. package/lib/IEncryptionPassword.js +3 -0
  18. package/lib/IEncryptionPassword.js.map +1 -0
  19. package/lib/IFetchEvent.d.ts +11 -0
  20. package/lib/IFetchEvent.js +21 -0
  21. package/lib/IFetchEvent.js.map +1 -0
  22. package/lib/IFetchRoute.d.ts +46 -0
  23. package/lib/IFetchRoute.js +3 -0
  24. package/lib/IFetchRoute.js.map +1 -0
  25. package/lib/IPropagation.d.ts +69 -0
  26. package/lib/IPropagation.js +3 -0
  27. package/lib/IPropagation.js.map +1 -0
  28. package/lib/NestiaSimulator.d.ts +13 -0
  29. package/lib/NestiaSimulator.js +44 -0
  30. package/lib/NestiaSimulator.js.map +1 -0
  31. package/lib/PlainFetcher.d.ts +46 -0
  32. package/lib/PlainFetcher.js +58 -0
  33. package/lib/PlainFetcher.js.map +1 -0
  34. package/lib/index.d.ts +11 -0
  35. package/lib/index.js +28 -0
  36. package/lib/index.js.map +1 -0
  37. package/lib/internal/FetcherBase.d.ts +1 -0
  38. package/lib/internal/FetcherBase.js +185 -0
  39. package/lib/internal/FetcherBase.js.map +1 -0
  40. package/package.json +3 -3
  41. package/src/EncryptedFetcher.ts +176 -176
  42. package/src/FormDataInput.ts +80 -80
  43. package/src/IConnection.ts +241 -241
  44. package/src/IEncryptionPassword.ts +44 -44
  45. package/src/IFetchEvent.ts +31 -31
  46. package/src/IFetchRoute.ts +60 -60
  47. package/src/IPropagation.ts +99 -99
  48. package/src/NestiaSimulator.ts +82 -82
  49. package/src/PlainFetcher.ts +105 -105
  50. package/src/internal/FetcherBase.ts +235 -235
@@ -0,0 +1,69 @@
1
+ /**
2
+ * Propagation type.
3
+ *
4
+ * `IPropagation` is a type gathering all possible status codes and their body
5
+ * data types as a discriminated union type. You can specify the status code and
6
+ * its body data type just by using conditional statement like below.
7
+ *
8
+ * ```typescript
9
+ * type Output = IPropagation<{
10
+ * 200: ISeller.IAuthorized;
11
+ * 400: TypeGuardError.IProps;
12
+ * >};
13
+ *
14
+ * const output: Output = await sdk.sellers.authenticate.join(input);
15
+ * if (output.success) {
16
+ * // automatically casted to "ISeller.IAuthorized" type
17
+ * const authorized: ISeller.IAuthorized = output.data;
18
+ * } else if (output.status === 400) {
19
+ * // automatically casted to "TypeGuardError.IProps" type
20
+ * const error: TypeGuardError.IProps = output.data;
21
+ * } else {
22
+ * // unknown type when out of pre-defined status codes
23
+ * const result: unknown = output.data;
24
+ * }
25
+ * ```
26
+ *
27
+ * For reference, this `IPropagation` type is utilized by SDK library generated
28
+ * by `@nestia/sdk`, when you've configured {@link INestiaConfig.propagate} to be
29
+ * `true`. In that case, SDK functions generated by `@nestia/sdk` no more
30
+ * returns response DTO typed data directly, but returns this `IPropagation`
31
+ * typed object instead.
32
+ *
33
+ * @author Jeongho Nam - https://github.com/samchon
34
+ * @template StatusMap Map of status code and its body data type.
35
+ * @template Success Default success status code.
36
+ */
37
+ export type IPropagation<StatusMap extends {
38
+ [P in IPropagation.Status]?: any;
39
+ }, Success extends number = 200 | 201> = {
40
+ [P in keyof StatusMap]: IPropagation.IBranch<P extends Success ? true : false, P, StatusMap[P]>;
41
+ }[keyof StatusMap] | IPropagation.IBranch<false, unknown, unknown>;
42
+ export declare namespace IPropagation {
43
+ /**
44
+ * Type of configurable status codes.
45
+ *
46
+ * The special characters like `2XX`, `3XX`, `4XX`, `5XX` are meaning the
47
+ * range of status codes. If `5XX` is specified, it means the status code is
48
+ * in the range of `500` to `599`.
49
+ */
50
+ export type Status = number | "2XX" | "3XX" | "4XX" | "5XX";
51
+ /**
52
+ * Branch type of propagation.
53
+ *
54
+ * `IPropagation.IBranch` is a branch type composing `IPropagation` type,
55
+ * which is gathering all possible status codes and their body data types as a
56
+ * union type.
57
+ */
58
+ export interface IBranch<Success extends boolean, StatusValue, BodyData> {
59
+ success: Success;
60
+ status: StatusValue extends "2XX" | "3XX" | "4XX" | "5XX" ? StatusRange<StatusValue> : StatusValue extends number ? StatusValue : never;
61
+ data: BodyData;
62
+ headers: Record<string, string | string[]>;
63
+ }
64
+ /** Range of status codes by the first digit. */
65
+ export type StatusRange<T extends "2XX" | "3XX" | "4XX" | "5XX"> = T extends 0 ? IntRange<200, 299> : T extends 3 ? IntRange<300, 399> : T extends 4 ? IntRange<400, 499> : IntRange<500, 599>;
66
+ type IntRange<F extends number, T extends number> = Exclude<Enumerate<T>, Enumerate<F>>;
67
+ type Enumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N ? Acc[number] : Enumerate<N, [...Acc, Acc["length"]]>;
68
+ export {};
69
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IPropagation.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IPropagation.js","sourceRoot":"","sources":["../src/IPropagation.ts"],"names":[],"mappings":""}
@@ -0,0 +1,13 @@
1
+ export declare namespace NestiaSimulator {
2
+ interface IProps {
3
+ host: string;
4
+ path: string;
5
+ method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE";
6
+ contentType: string;
7
+ }
8
+ const assert: (props: IProps) => {
9
+ param: (name: string) => <T>(task: () => T) => void;
10
+ query: <T>(task: () => T) => void;
11
+ body: <T>(task: () => T) => void;
12
+ };
13
+ }
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NestiaSimulator = void 0;
4
+ const HttpError_1 = require("./HttpError");
5
+ var NestiaSimulator;
6
+ (function (NestiaSimulator) {
7
+ NestiaSimulator.assert = (props) => {
8
+ return {
9
+ param: param(props),
10
+ query: query(props),
11
+ body: body(props),
12
+ };
13
+ };
14
+ const param = (props) => (name) => (task) => {
15
+ validate((exp) => `URL parameter "${name}" is not ${exp.expected} type.`)(props)(task);
16
+ };
17
+ const query = (props) => (task) => validate(() => "Request query parameters are not following the promised type.")(props)(task);
18
+ const body = (props) => (task) => validate(() => "Request body is not following the promised type.")(props)(task);
19
+ const validate = (message, path) => (props) => (task) => {
20
+ try {
21
+ task();
22
+ }
23
+ catch (exp) {
24
+ if (isTypeGuardError(exp))
25
+ throw new HttpError_1.HttpError(props.method, props.host + props.path, 400, {
26
+ "Content-Type": props.contentType,
27
+ }, JSON.stringify({
28
+ method: exp.method,
29
+ path: path !== null && path !== void 0 ? path : exp.path,
30
+ expected: exp.expected,
31
+ value: exp.value,
32
+ message: message(exp),
33
+ }));
34
+ throw exp;
35
+ }
36
+ };
37
+ })(NestiaSimulator || (exports.NestiaSimulator = NestiaSimulator = {}));
38
+ const isTypeGuardError = (input) => "string" === typeof input.method &&
39
+ (undefined === input.path || "string" === typeof input.path) &&
40
+ "string" === typeof input.expected &&
41
+ "string" === typeof input.name &&
42
+ "string" === typeof input.message &&
43
+ (undefined === input.stack || "string" === typeof input.stack);
44
+ //# sourceMappingURL=NestiaSimulator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NestiaSimulator.js","sourceRoot":"","sources":["../src/NestiaSimulator.ts"],"names":[],"mappings":";;;AAAA,2CAAwC;AAExC,IAAiB,eAAe,CAgE/B;AAhED,WAAiB,eAAe;IAQjB,sBAAM,GAAG,CAAC,KAAa,EAAE,EAAE;QACtC,OAAO;YACL,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;YACnB,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;YACnB,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC;SAClB,CAAC;IACJ,CAAC,CAAC;IACF,MAAM,KAAK,GACT,CAAC,KAAa,EAAE,EAAE,CAClB,CAAC,IAAY,EAAE,EAAE,CACjB,CAAI,IAAa,EAAQ,EAAE;QACzB,QAAQ,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,kBAAkB,IAAI,YAAY,GAAG,CAAC,QAAQ,QAAQ,CAAC,CACvE,KAAK,CACN,CAAC,IAAI,CAAC,CAAC;IACV,CAAC,CAAC;IAEJ,MAAM,KAAK,GACT,CAAC,KAAa,EAAE,EAAE,CAClB,CAAI,IAAa,EAAQ,EAAE,CACzB,QAAQ,CACN,GAAG,EAAE,CAAC,+DAA+D,CACtE,CAAC,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC;IAEnB,MAAM,IAAI,GACR,CAAC,KAAa,EAAE,EAAE,CAClB,CAAI,IAAa,EAAQ,EAAE,CACzB,QAAQ,CAAC,GAAG,EAAE,CAAC,kDAAkD,CAAC,CAAC,KAAK,CAAC,CACvE,IAAI,CACL,CAAC;IAEN,MAAM,QAAQ,GACZ,CAAC,OAAwC,EAAE,IAAa,EAAE,EAAE,CAC5D,CAAC,KAAa,EAAE,EAAE,CAClB,CAAI,IAAa,EAAQ,EAAE;QACzB,IAAI,CAAC;YACH,IAAI,EAAE,CAAC;QACT,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,IAAI,gBAAgB,CAAC,GAAG,CAAC;gBACvB,MAAM,IAAI,qBAAS,CACjB,KAAK,CAAC,MAAM,EACZ,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,EACvB,GAAG,EACH;oBACE,cAAc,EAAE,KAAK,CAAC,WAAW;iBAClC,EACD,IAAI,CAAC,SAAS,CAAC;oBACb,MAAM,EAAE,GAAG,CAAC,MAAM;oBAClB,IAAI,EAAE,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,GAAG,CAAC,IAAI;oBACtB,QAAQ,EAAE,GAAG,CAAC,QAAQ;oBACtB,KAAK,EAAE,GAAG,CAAC,KAAK;oBAChB,OAAO,EAAE,OAAO,CAAC,GAAG,CAAC;iBACtB,CAAC,CACH,CAAC;YACJ,MAAM,GAAG,CAAC;QACZ,CAAC;IACH,CAAC,CAAC;AACN,CAAC,EAhEgB,eAAe,+BAAf,eAAe,QAgE/B;AAED,MAAM,gBAAgB,GAAG,CAAC,KAAU,EAA2B,EAAE,CAC/D,QAAQ,KAAK,OAAO,KAAK,CAAC,MAAM;IAChC,CAAC,SAAS,KAAK,KAAK,CAAC,IAAI,IAAI,QAAQ,KAAK,OAAO,KAAK,CAAC,IAAI,CAAC;IAC5D,QAAQ,KAAK,OAAO,KAAK,CAAC,QAAQ;IAClC,QAAQ,KAAK,OAAO,KAAK,CAAC,IAAI;IAC9B,QAAQ,KAAK,OAAO,KAAK,CAAC,OAAO;IACjC,CAAC,SAAS,KAAK,KAAK,CAAC,KAAK,IAAI,QAAQ,KAAK,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC"}
@@ -0,0 +1,46 @@
1
+ import { IConnection } from "./IConnection";
2
+ import { IFetchRoute } from "./IFetchRoute";
3
+ import { IPropagation } from "./IPropagation";
4
+ /**
5
+ * Utility class for `fetch` functions used in `@nestia/sdk`.
6
+ *
7
+ * `PlainFetcher` is a utility class designed for SDK functions generated by
8
+ * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote
9
+ * HTTP sever API. In other words, this is a collection of dedicated `fetch()`
10
+ * functions for `@nestia/sdk`.
11
+ *
12
+ * For reference, `PlainFetcher` class does not encrypt or decrypt the body data
13
+ * at all. It just delivers plain data without any post processing. If you've
14
+ * defined a controller method through `@EncryptedRoute` or `@EncryptedBody`
15
+ * decorator, then {@liink EncryptedFetcher} class would be used instead.
16
+ *
17
+ * @author Jeongho Nam - https://github.com/samchon
18
+ */
19
+ export declare namespace PlainFetcher {
20
+ /**
21
+ * Fetch function only for `HEAD` method.
22
+ *
23
+ * @param connection Connection information for the remote HTTP server
24
+ * @param route Route information about the target API
25
+ * @returns Nothing because of `HEAD` method
26
+ */
27
+ function fetch(connection: IConnection, route: IFetchRoute<"HEAD">): Promise<void>;
28
+ /**
29
+ * Fetch function only for `GET` method.
30
+ *
31
+ * @param connection Connection information for the remote HTTP server
32
+ * @param route Route information about the target API
33
+ * @returns Response body data from the remote API
34
+ */
35
+ function fetch<Output>(connection: IConnection, route: IFetchRoute<"GET">): Promise<Output>;
36
+ /**
37
+ * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.
38
+ *
39
+ * @param connection Connection information for the remote HTTP server
40
+ * @param route Route information about the target API
41
+ * @returns Response body data from the remote API
42
+ */
43
+ function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<"POST" | "PUT" | "PATCH" | "DELETE">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;
44
+ function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<"GET" | "HEAD">): Promise<Output>;
45
+ function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<"DELETE" | "GET" | "HEAD" | "PATCH" | "POST" | "PUT">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;
46
+ }
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.PlainFetcher = void 0;
13
+ const FetcherBase_1 = require("./internal/FetcherBase");
14
+ /**
15
+ * Utility class for `fetch` functions used in `@nestia/sdk`.
16
+ *
17
+ * `PlainFetcher` is a utility class designed for SDK functions generated by
18
+ * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote
19
+ * HTTP sever API. In other words, this is a collection of dedicated `fetch()`
20
+ * functions for `@nestia/sdk`.
21
+ *
22
+ * For reference, `PlainFetcher` class does not encrypt or decrypt the body data
23
+ * at all. It just delivers plain data without any post processing. If you've
24
+ * defined a controller method through `@EncryptedRoute` or `@EncryptedBody`
25
+ * decorator, then {@liink EncryptedFetcher} class would be used instead.
26
+ *
27
+ * @author Jeongho Nam - https://github.com/samchon
28
+ */
29
+ var PlainFetcher;
30
+ (function (PlainFetcher) {
31
+ function fetch(connection, route, input, stringify) {
32
+ return __awaiter(this, void 0, void 0, function* () {
33
+ var _a, _b;
34
+ if (((_a = route.request) === null || _a === void 0 ? void 0 : _a.encrypted) === true || ((_b = route.response) === null || _b === void 0 ? void 0 : _b.encrypted) === true)
35
+ throw new Error("Error on PlainFetcher.fetch(): PlainFetcher doesn't have encryption ability. Use EncryptedFetcher instead.");
36
+ return FetcherBase_1.FetcherBase.request({
37
+ className: "PlainFetcher",
38
+ encode: (input) => input,
39
+ decode: (input) => input,
40
+ })(connection, route, input, stringify);
41
+ });
42
+ }
43
+ PlainFetcher.fetch = fetch;
44
+ function propagate(connection, route, input, stringify) {
45
+ return __awaiter(this, void 0, void 0, function* () {
46
+ var _a, _b;
47
+ if (((_a = route.request) === null || _a === void 0 ? void 0 : _a.encrypted) === true || ((_b = route.response) === null || _b === void 0 ? void 0 : _b.encrypted) === true)
48
+ throw new Error("Error on PlainFetcher.propagate(): PlainFetcher doesn't have encryption ability. Use EncryptedFetcher instead.");
49
+ return FetcherBase_1.FetcherBase.propagate({
50
+ className: "PlainFetcher",
51
+ encode: (input) => input,
52
+ decode: (input) => input,
53
+ })(connection, route, input, stringify);
54
+ });
55
+ }
56
+ PlainFetcher.propagate = propagate;
57
+ })(PlainFetcher || (exports.PlainFetcher = PlainFetcher = {}));
58
+ //# sourceMappingURL=PlainFetcher.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlainFetcher.js","sourceRoot":"","sources":["../src/PlainFetcher.ts"],"names":[],"mappings":";;;;;;;;;;;;AAGA,wDAAqD;AAErD;;;;;;;;;;;;;;GAcG;AACH,IAAiB,YAAY,CAoF5B;AApFD,WAAiB,YAAY;IAuC3B,SAAsB,KAAK,CACzB,UAAuB,EACvB,KAAwE,EACxE,KAAa,EACb,SAAoC;;;YAEpC,IAAI,CAAA,MAAA,KAAK,CAAC,OAAO,0CAAE,SAAS,MAAK,IAAI,IAAI,CAAA,MAAA,KAAK,CAAC,QAAQ,0CAAE,SAAS,MAAK,IAAI;gBACzE,MAAM,IAAI,KAAK,CACb,4GAA4G,CAC7G,CAAC;YACJ,OAAO,yBAAW,CAAC,OAAO,CAAC;gBACzB,SAAS,EAAE,cAAc;gBACzB,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK;gBACxB,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK;aACzB,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC;QAC1C,CAAC;KAAA;IAfqB,kBAAK,QAe1B,CAAA;IAcD,SAAsB,SAAS,CAC7B,UAAuB,EACvB,KAAwE,EACxE,KAAa,EACb,SAAoC;;;YAEpC,IAAI,CAAA,MAAA,KAAK,CAAC,OAAO,0CAAE,SAAS,MAAK,IAAI,IAAI,CAAA,MAAA,KAAK,CAAC,QAAQ,0CAAE,SAAS,MAAK,IAAI;gBACzE,MAAM,IAAI,KAAK,CACb,gHAAgH,CACjH,CAAC;YACJ,OAAO,yBAAW,CAAC,SAAS,CAAC;gBAC3B,SAAS,EAAE,cAAc;gBACzB,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK;gBACxB,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK;aACzB,CAAC,CAAC,UAAU,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,CAAoB,CAAC;QAC7D,CAAC;KAAA;IAfqB,sBAAS,YAe9B,CAAA;AACH,CAAC,EApFgB,YAAY,4BAAZ,YAAY,QAoF5B"}
package/lib/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ export * from "./AesPkcs5";
2
+ export * from "./EncryptedFetcher";
3
+ export * from "./FormDataInput";
4
+ export * from "./HttpError";
5
+ export * from "./IConnection";
6
+ export * from "./IEncryptionPassword";
7
+ export * from "./IFetchEvent";
8
+ export * from "./IFetchRoute";
9
+ export * from "./IPropagation";
10
+ export * from "./NestiaSimulator";
11
+ export * from "./PlainFetcher";
package/lib/index.js ADDED
@@ -0,0 +1,28 @@
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("./AesPkcs5"), exports);
18
+ __exportStar(require("./EncryptedFetcher"), exports);
19
+ __exportStar(require("./FormDataInput"), exports);
20
+ __exportStar(require("./HttpError"), exports);
21
+ __exportStar(require("./IConnection"), exports);
22
+ __exportStar(require("./IEncryptionPassword"), exports);
23
+ __exportStar(require("./IFetchEvent"), exports);
24
+ __exportStar(require("./IFetchRoute"), exports);
25
+ __exportStar(require("./IPropagation"), exports);
26
+ __exportStar(require("./NestiaSimulator"), exports);
27
+ __exportStar(require("./PlainFetcher"), exports);
28
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,qDAAmC;AACnC,kDAAgC;AAChC,8CAA4B;AAC5B,gDAA8B;AAC9B,wDAAsC;AACtC,gDAA8B;AAC9B,gDAA8B;AAC9B,iDAA+B;AAE/B,oDAAkC;AAClC,iDAA+B"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,185 @@
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.FetcherBase = void 0;
13
+ const HttpError_1 = require("../HttpError");
14
+ /** @internal */
15
+ var FetcherBase;
16
+ (function (FetcherBase) {
17
+ FetcherBase.request = (props) => (connection, route, input, stringify) => __awaiter(this, void 0, void 0, function* () {
18
+ const result = yield _Propagate("fetch")(props)(connection, route, input, stringify);
19
+ if (result.success === false)
20
+ throw new HttpError_1.HttpError(route.method, route.path, result.status, result.headers, result.data);
21
+ return result.data;
22
+ });
23
+ FetcherBase.propagate = (props) => (connection, route, input, stringify) => __awaiter(this, void 0, void 0, function* () { return _Propagate("propagate")(props)(connection, route, input, stringify); });
24
+ /** @internal */
25
+ const _Propagate = (method) => (props) => (connection, route, input, stringify) => __awaiter(this, void 0, void 0, function* () {
26
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
27
+ //----
28
+ // REQUEST MESSAGE
29
+ //----
30
+ // METHOD & HEADERS
31
+ const headers = Object.assign({}, ((_a = connection.headers) !== null && _a !== void 0 ? _a : {}));
32
+ if (input !== undefined) {
33
+ if (((_b = route.request) === null || _b === void 0 ? void 0 : _b.type) === undefined)
34
+ throw new Error(`Error on ${props.className}.fetch(): no content-type being configured.`);
35
+ else if (route.request.type !== "multipart/form-data")
36
+ headers["Content-Type"] = route.request.type;
37
+ }
38
+ else if (input === undefined && headers["Content-Type"] !== undefined)
39
+ delete headers["Content-Type"];
40
+ // INIT REQUEST DATA
41
+ const init = Object.assign(Object.assign({}, ((_c = connection.options) !== null && _c !== void 0 ? _c : {})), { method: route.method, headers: (() => {
42
+ const output = [];
43
+ for (const [key, value] of Object.entries(headers))
44
+ if (value === undefined)
45
+ continue;
46
+ else if (Array.isArray(value))
47
+ for (const v of value)
48
+ output.push([key, String(v)]);
49
+ else
50
+ output.push([key, String(value)]);
51
+ return output;
52
+ })() });
53
+ // CONSTRUCT BODY DATA
54
+ if (input !== undefined)
55
+ init.body = props.encode(
56
+ // BODY TRANSFORM
57
+ ((_d = route.request) === null || _d === void 0 ? void 0 : _d.type) === "application/x-www-form-urlencoded"
58
+ ? request_query_body(input)
59
+ : ((_e = route.request) === null || _e === void 0 ? void 0 : _e.type) === "multipart/form-data"
60
+ ? request_form_data_body(input)
61
+ : ((_f = route.request) === null || _f === void 0 ? void 0 : _f.type) !== "text/plain"
62
+ ? (stringify !== null && stringify !== void 0 ? stringify : JSON.stringify)(input)
63
+ : input, headers);
64
+ //----
65
+ // RESPONSE MESSAGE
66
+ //----
67
+ // URL SPECIFICATION
68
+ const path = connection.host[connection.host.length - 1] !== "/" &&
69
+ route.path[0] !== "/"
70
+ ? `/${route.path}`
71
+ : route.path;
72
+ const url = new URL(`${connection.host}${path}`);
73
+ // DO FETCH
74
+ const event = {
75
+ route,
76
+ path,
77
+ status: null,
78
+ input,
79
+ output: undefined,
80
+ started_at: new Date(),
81
+ respond_at: null,
82
+ completed_at: null,
83
+ };
84
+ try {
85
+ // TRY FETCH
86
+ const response = yield ((_g = connection.fetch) !== null && _g !== void 0 ? _g : fetch)(url.href, init);
87
+ event.respond_at = new Date();
88
+ event.status = response.status;
89
+ // CONSTRUCT RESULT DATA
90
+ const result = {
91
+ success: response.status === 200 ||
92
+ response.status === 201 ||
93
+ response.status === route.status,
94
+ status: response.status,
95
+ headers: response_headers_to_object(response.headers),
96
+ data: undefined,
97
+ };
98
+ if (result.success === false) {
99
+ // WHEN FAILED
100
+ result.data = yield response.text();
101
+ const type = response.headers.get("content-type");
102
+ if (method !== "fetch" &&
103
+ type &&
104
+ type.indexOf("application/json") !== -1)
105
+ try {
106
+ result.data = JSON.parse(result.data);
107
+ }
108
+ catch (_k) { }
109
+ }
110
+ else {
111
+ // WHEN SUCCESS
112
+ if (route.method === "HEAD")
113
+ result.data = undefined;
114
+ else if (((_h = route.response) === null || _h === void 0 ? void 0 : _h.type) === "application/json") {
115
+ const text = yield response.text();
116
+ result.data = text.length ? JSON.parse(text) : undefined;
117
+ }
118
+ else if (((_j = route.response) === null || _j === void 0 ? void 0 : _j.type) === "application/x-www-form-urlencoded") {
119
+ const query = new URLSearchParams(yield response.text());
120
+ result.data = route.parseQuery ? route.parseQuery(query) : query;
121
+ }
122
+ else
123
+ result.data = props.decode(yield response.text(), result.headers);
124
+ }
125
+ event.output = result.data;
126
+ return result;
127
+ }
128
+ catch (exp) {
129
+ throw exp;
130
+ }
131
+ finally {
132
+ event.completed_at = new Date();
133
+ if (connection.logger)
134
+ try {
135
+ yield connection.logger(event);
136
+ }
137
+ catch (_l) { }
138
+ }
139
+ });
140
+ })(FetcherBase || (exports.FetcherBase = FetcherBase = {}));
141
+ /** @internal */
142
+ const request_query_body = (input) => {
143
+ const q = new URLSearchParams();
144
+ for (const [key, value] of Object.entries(input))
145
+ if (value === undefined)
146
+ continue;
147
+ else if (Array.isArray(value))
148
+ value.forEach((elem) => q.append(key, String(elem)));
149
+ else
150
+ q.set(key, String(value));
151
+ return q;
152
+ };
153
+ /** @internal */
154
+ const request_form_data_body = (input) => {
155
+ const encoded = new FormData();
156
+ const append = (key) => (value) => {
157
+ if (value === undefined)
158
+ return;
159
+ else if (typeof File === "function" && value instanceof File)
160
+ encoded.append(key, value, value.name);
161
+ else
162
+ encoded.append(key, value);
163
+ };
164
+ for (const [key, value] of Object.entries(input))
165
+ if (Array.isArray(value))
166
+ value.map(append(key));
167
+ else
168
+ append(key)(value);
169
+ return encoded;
170
+ };
171
+ /** @internal */
172
+ const response_headers_to_object = (headers) => {
173
+ const output = {};
174
+ headers.forEach((value, key) => {
175
+ var _a;
176
+ if (key === "set-cookie") {
177
+ (_a = output[key]) !== null && _a !== void 0 ? _a : (output[key] = []);
178
+ output[key].push(...value.split(";").map((str) => str.trim()));
179
+ }
180
+ else
181
+ output[key] = value;
182
+ });
183
+ return output;
184
+ };
185
+ //# sourceMappingURL=FetcherBase.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FetcherBase.js","sourceRoot":"","sources":["../../src/internal/FetcherBase.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestia/fetcher",
3
- "version": "11.0.0-dev.20260305",
3
+ "version": "11.0.0-dev.20260312",
4
4
  "description": "Fetcher library of Nestia SDK",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -26,8 +26,8 @@
26
26
  },
27
27
  "homepage": "https://nestia.io",
28
28
  "dependencies": {
29
- "@typia/interface": "12.0.0-dev.20260303-2",
30
- "@typia/utils": "12.0.0-dev.20260303-2"
29
+ "@typia/interface": "12.0.0-dev.20260312-2",
30
+ "@typia/utils": "12.0.0-dev.20260312-2"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^25.3.3",