@shadow-library/fastify 0.0.10 → 0.0.12

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 (71) hide show
  1. package/cjs/classes/default-error-handler.d.ts +6 -0
  2. package/cjs/classes/default-error-handler.js +9 -0
  3. package/cjs/constants.d.ts +12 -0
  4. package/cjs/constants.js +12 -0
  5. package/cjs/decorators/http-controller.decorator.d.ts +6 -0
  6. package/cjs/decorators/http-controller.decorator.js +12 -0
  7. package/cjs/decorators/http-input.decorator.d.ts +6 -0
  8. package/cjs/decorators/http-input.decorator.js +12 -0
  9. package/cjs/decorators/http-output.decorator.d.ts +9 -0
  10. package/cjs/decorators/http-output.decorator.js +6 -0
  11. package/cjs/decorators/http-route.decorator.d.ts +9 -0
  12. package/cjs/decorators/http-route.decorator.js +12 -0
  13. package/cjs/decorators/middleware.decorator.d.ts +11 -0
  14. package/cjs/decorators/middleware.decorator.js +9 -0
  15. package/cjs/decorators/sensitive.decorator.d.ts +9 -0
  16. package/cjs/decorators/sensitive.decorator.js +3 -0
  17. package/cjs/index.d.ts +6 -0
  18. package/cjs/index.js +6 -0
  19. package/cjs/interfaces/error-handler.interface.d.ts +12 -0
  20. package/cjs/interfaces/error-handler.interface.js +3 -0
  21. package/cjs/interfaces/middleware.interface.d.ts +9 -0
  22. package/cjs/interfaces/route-handler.interface.d.ts +12 -0
  23. package/cjs/interfaces/server-metadata.interface.d.ts +9 -0
  24. package/cjs/module/error-response.dto.d.ts +9 -0
  25. package/cjs/module/error-response.dto.js +12 -0
  26. package/cjs/module/fastify-module.interface.d.ts +55 -0
  27. package/cjs/module/fastify-router.d.ts +11 -0
  28. package/cjs/module/fastify-router.js +20 -1
  29. package/cjs/module/fastify.module.d.ts +6 -0
  30. package/cjs/module/fastify.module.js +12 -0
  31. package/cjs/module/fastify.utils.js +14 -1
  32. package/cjs/server.error.d.ts +17 -0
  33. package/cjs/server.error.js +26 -0
  34. package/cjs/services/context.service.d.ts +6 -0
  35. package/cjs/services/context.service.js +6 -0
  36. package/esm/classes/default-error-handler.d.ts +6 -0
  37. package/esm/classes/default-error-handler.js +9 -0
  38. package/esm/constants.d.ts +12 -0
  39. package/esm/constants.js +12 -0
  40. package/esm/decorators/http-controller.decorator.d.ts +6 -0
  41. package/esm/decorators/http-controller.decorator.js +12 -0
  42. package/esm/decorators/http-input.decorator.d.ts +6 -0
  43. package/esm/decorators/http-input.decorator.js +12 -0
  44. package/esm/decorators/http-output.decorator.d.ts +9 -0
  45. package/esm/decorators/http-output.decorator.js +6 -0
  46. package/esm/decorators/http-route.decorator.d.ts +9 -0
  47. package/esm/decorators/http-route.decorator.js +12 -0
  48. package/esm/decorators/middleware.decorator.d.ts +11 -0
  49. package/esm/decorators/middleware.decorator.js +9 -0
  50. package/esm/decorators/sensitive.decorator.d.ts +9 -0
  51. package/esm/decorators/sensitive.decorator.js +3 -0
  52. package/esm/index.d.ts +6 -0
  53. package/esm/index.js +6 -0
  54. package/esm/interfaces/error-handler.interface.d.ts +12 -0
  55. package/esm/interfaces/error-handler.interface.js +3 -0
  56. package/esm/interfaces/middleware.interface.d.ts +9 -0
  57. package/esm/interfaces/route-handler.interface.d.ts +12 -0
  58. package/esm/interfaces/server-metadata.interface.d.ts +9 -0
  59. package/esm/module/error-response.dto.d.ts +9 -0
  60. package/esm/module/error-response.dto.js +12 -0
  61. package/esm/module/fastify-module.interface.d.ts +55 -0
  62. package/esm/module/fastify-router.d.ts +11 -0
  63. package/esm/module/fastify-router.js +20 -1
  64. package/esm/module/fastify.module.d.ts +6 -0
  65. package/esm/module/fastify.module.js +12 -0
  66. package/esm/module/fastify.utils.js +14 -1
  67. package/esm/server.error.d.ts +17 -0
  68. package/esm/server.error.js +26 -0
  69. package/esm/services/context.service.d.ts +6 -0
  70. package/esm/services/context.service.js +6 -0
  71. package/package.json +1 -1
@@ -1,6 +1,12 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import { AppErrorObject } from '@shadow-library/common';
2
5
  import { FastifyError } from 'fastify';
3
6
  import { ErrorHandler, HttpRequest, HttpResponse } from '../interfaces/index.js';
7
+ /**
8
+ * Defining types
9
+ */
4
10
  export interface ParsedFastifyError {
5
11
  statusCode: number;
6
12
  error: AppErrorObject;
@@ -1,9 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DefaultErrorHandler = void 0;
4
+ /**
5
+ * Importing npm packages
6
+ */
4
7
  const common_1 = require("@shadow-library/common");
8
+ /**
9
+ * Importing user defined packages
10
+ */
5
11
  const constants_1 = require("../constants.js");
6
12
  const server_error_1 = require("../server.error.js");
13
+ /**
14
+ * Declaring the constants
15
+ */
7
16
  const unexpectedError = new server_error_1.ServerError(server_error_1.ServerErrorCode.S001);
8
17
  const validationError = new server_error_1.ServerError(server_error_1.ServerErrorCode.S003);
9
18
  const invalidRequestError = new server_error_1.ServerError(server_error_1.ServerErrorCode.S006);
@@ -1,3 +1,15 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
4
+ /**
5
+ * Importing user defined packages
6
+ */
7
+ /**
8
+ * Defining types
9
+ */
10
+ /**
11
+ * Declaring the constants
12
+ */
1
13
  export declare const NAMESPACE = "@shadow-library/fastify";
2
14
  export declare const PARAMTYPES_METADATA = "design:paramtypes";
3
15
  export declare const FASTIFY_CONFIG: unique symbol;
package/cjs/constants.js CHANGED
@@ -1,6 +1,18 @@
1
1
  "use strict";
2
+ /**
3
+ * Importing npm packages
4
+ */
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
6
  exports.HTTP_CONTROLLER_INPUTS = exports.HTTP_CONTROLLER_TYPE = exports.FASTIFY_INSTANCE = exports.FASTIFY_CONFIG = exports.PARAMTYPES_METADATA = exports.NAMESPACE = void 0;
7
+ /**
8
+ * Importing user defined packages
9
+ */
10
+ /**
11
+ * Defining types
12
+ */
13
+ /**
14
+ * Declaring the constants
15
+ */
4
16
  exports.NAMESPACE = '@shadow-library/fastify';
5
17
  exports.PARAMTYPES_METADATA = 'design:paramtypes';
6
18
  exports.FASTIFY_CONFIG = Symbol('fastify-config');
@@ -1 +1,7 @@
1
+ /**
2
+ * Defining types
3
+ */
4
+ /**
5
+ * Declaring the constants
6
+ */
1
7
  export declare function HttpController(path?: string): ClassDecorator;
@@ -1,8 +1,20 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.HttpController = HttpController;
4
+ /**
5
+ * Importing npm packages
6
+ */
4
7
  const app_1 = require("@shadow-library/app");
8
+ /**
9
+ * Importing user defined packages
10
+ */
5
11
  const constants_1 = require("../constants.js");
12
+ /**
13
+ * Defining types
14
+ */
15
+ /**
16
+ * Declaring the constants
17
+ */
6
18
  function HttpController(path = '') {
7
19
  if (path.charAt(0) !== '/')
8
20
  path = `/${path}`;
@@ -1,5 +1,8 @@
1
1
  import { JSONSchema } from '@shadow-library/class-schema';
2
2
  import { Class } from 'type-fest';
3
+ /**
4
+ * Defining types
5
+ */
3
6
  export declare enum RouteInputType {
4
7
  BODY = "body",
5
8
  PARAMS = "params",
@@ -8,6 +11,9 @@ export declare enum RouteInputType {
8
11
  RESPONSE = "response"
9
12
  }
10
13
  export type RouteInputSchemas = Partial<Record<'body' | 'params' | 'query', JSONSchema | Class<unknown>>>;
14
+ /**
15
+ * Declaring the constants
16
+ */
11
17
  export declare function HttpInput(type: RouteInputType, schema?: JSONSchema): ParameterDecorator;
12
18
  export declare const Body: (schema?: JSONSchema) => ParameterDecorator;
13
19
  export declare const Params: (schema?: JSONSchema) => ParameterDecorator;
@@ -5,9 +5,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Res = exports.Response = exports.Req = exports.Request = exports.Query = exports.Params = exports.Body = exports.RouteInputType = void 0;
7
7
  exports.HttpInput = HttpInput;
8
+ /**
9
+ * Importing npm packages
10
+ */
8
11
  const node_assert_1 = __importDefault(require("node:assert"));
9
12
  const app_1 = require("@shadow-library/app");
13
+ /**
14
+ * Importing user defined packages
15
+ */
10
16
  const constants_1 = require("../constants.js");
17
+ /**
18
+ * Defining types
19
+ */
11
20
  var RouteInputType;
12
21
  (function (RouteInputType) {
13
22
  RouteInputType["BODY"] = "body";
@@ -16,6 +25,9 @@ var RouteInputType;
16
25
  RouteInputType["REQUEST"] = "request";
17
26
  RouteInputType["RESPONSE"] = "response";
18
27
  })(RouteInputType || (exports.RouteInputType = RouteInputType = {}));
28
+ /**
29
+ * Declaring the constants
30
+ */
19
31
  function HttpInput(type, schema) {
20
32
  return (target, propertyKey, index) => {
21
33
  (0, node_assert_1.default)(propertyKey, 'Cannot apply decorator to a constructor parameter');
@@ -1,5 +1,14 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import { JSONSchema, SchemaClass } from '@shadow-library/class-schema';
2
5
  import { JsonObject } from 'type-fest';
6
+ /**
7
+ * Importing user defined packages
8
+ */
9
+ /**
10
+ * Defining types
11
+ */
3
12
  export interface DynamicRender<T extends JsonObject> {
4
13
  template: string;
5
14
  data: T;
@@ -1,9 +1,15 @@
1
1
  "use strict";
2
+ /**
3
+ * Importing npm packages
4
+ */
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
6
  exports.Render = exports.Redirect = exports.Header = exports.HttpStatus = void 0;
4
7
  exports.RespondFor = RespondFor;
5
8
  const app_1 = require("@shadow-library/app");
6
9
  const class_schema_1 = require("@shadow-library/class-schema");
10
+ /**
11
+ * Declaring the constants
12
+ */
7
13
  const isClass = (schema) => schema.toString().startsWith('class ');
8
14
  const HttpStatus = (status) => (0, app_1.Route)({ status });
9
15
  exports.HttpStatus = HttpStatus;
@@ -1,3 +1,9 @@
1
+ /**
2
+ * Importing user defined packages
3
+ */
4
+ /**
5
+ * Defining types
6
+ */
1
7
  export declare enum HttpMethod {
2
8
  GET = "GET",
3
9
  POST = "POST",
@@ -12,6 +18,9 @@ export interface RouteOptions {
12
18
  method: HttpMethod;
13
19
  path?: string;
14
20
  }
21
+ /**
22
+ * Declaring the constants
23
+ */
15
24
  export declare function HttpRoute(options: RouteOptions): MethodDecorator;
16
25
  export declare const Get: (path?: string) => MethodDecorator;
17
26
  export declare const Post: (path?: string) => MethodDecorator;
@@ -2,7 +2,16 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.All = exports.Head = exports.Options = exports.Patch = exports.Delete = exports.Put = exports.Post = exports.Get = exports.HttpMethod = void 0;
4
4
  exports.HttpRoute = HttpRoute;
5
+ /**
6
+ * Importing npm packages
7
+ */
5
8
  const app_1 = require("@shadow-library/app");
9
+ /**
10
+ * Importing user defined packages
11
+ */
12
+ /**
13
+ * Defining types
14
+ */
6
15
  var HttpMethod;
7
16
  (function (HttpMethod) {
8
17
  HttpMethod["GET"] = "GET";
@@ -14,6 +23,9 @@ var HttpMethod;
14
23
  HttpMethod["HEAD"] = "HEAD";
15
24
  HttpMethod["ALL"] = "ALL";
16
25
  })(HttpMethod || (exports.HttpMethod = HttpMethod = {}));
26
+ /**
27
+ * Declaring the constants
28
+ */
17
29
  function HttpRoute(options) {
18
30
  if (options.path && options.path.charAt(0) !== '/')
19
31
  options.path = `/${options.path}`;
@@ -1,7 +1,18 @@
1
+ /**
2
+ * Importing user defined packages
3
+ */
1
4
  import { HTTP_CONTROLLER_TYPE } from '../constants.js';
5
+ /**
6
+ * Defining types
7
+ */
2
8
  export type MiddlewareType = 'onRequest' | 'preParsing' | 'preValidation' | 'preHandler' | 'preSerialization' | 'onSend' | 'onResponse' | 'onError';
3
9
  export interface MiddlewareOptions {
10
+ /**
11
+ * Denotes when to execute the middleware. default value is `preHandler`.
12
+ * see https://fastify.dev/docs/latest/Reference/Lifecycle for more information
13
+ */
4
14
  type: MiddlewareType;
15
+ /** Denotes the execution order, the higher value gets executed first */
5
16
  weight: number;
6
17
  }
7
18
  export interface MiddlewareMetadata extends MiddlewareOptions {
@@ -4,9 +4,18 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Middleware = Middleware;
7
+ /**
8
+ * Importing npm packages
9
+ */
7
10
  const node_assert_1 = __importDefault(require("node:assert"));
8
11
  const app_1 = require("@shadow-library/app");
12
+ /**
13
+ * Importing user defined packages
14
+ */
9
15
  const constants_1 = require("../constants.js");
16
+ /**
17
+ * Declaring the constants
18
+ */
10
19
  const propertyKeys = ['generate', 'use'];
11
20
  function Middleware(options = {}) {
12
21
  if (!options.type)
@@ -1,4 +1,13 @@
1
1
  import { MaskOptions } from '@shadow-library/common';
2
+ /**
3
+ * Importing user defined packages
4
+ */
5
+ /**
6
+ * Defining types
7
+ */
2
8
  export type SensitiveDataType = 'secret' | 'email' | 'number' | 'words';
9
+ /**
10
+ * Declaring the constants
11
+ */
3
12
  export declare function Sensitive(type?: SensitiveDataType): PropertyDecorator;
4
13
  export declare function Sensitive(maskOptions: MaskOptions): PropertyDecorator;
@@ -1,6 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Sensitive = Sensitive;
4
+ /**
5
+ * Importing npm packages
6
+ */
4
7
  const class_schema_1 = require("@shadow-library/class-schema");
5
8
  function Sensitive(typeOrMaskOptions = 'secret') {
6
9
  return (target, propertyKey) => {
package/cjs/index.d.ts CHANGED
@@ -1,4 +1,10 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import 'reflect-metadata';
5
+ /**
6
+ * exporting modules
7
+ */
2
8
  export * from './classes/index.js';
3
9
  export * from './decorators/index.js';
4
10
  export * from './interfaces/index.js';
package/cjs/index.js CHANGED
@@ -14,7 +14,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ /**
18
+ * Importing npm packages
19
+ */
17
20
  require("reflect-metadata");
21
+ /**
22
+ * exporting modules
23
+ */
18
24
  __exportStar(require("./classes/index.js"), exports);
19
25
  __exportStar(require("./decorators/index.js"), exports);
20
26
  __exportStar(require("./interfaces/index.js"), exports);
@@ -1,4 +1,16 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
4
+ /**
5
+ * Importing user defined packages
6
+ */
1
7
  import { HttpRequest, HttpResponse } from './route-handler.interface.js';
8
+ /**
9
+ * Defining types
10
+ */
11
+ /**
12
+ * Declaring the constants
13
+ */
2
14
  export interface ErrorHandler {
3
15
  handle(err: Error, req: HttpRequest, res: HttpResponse): any | Promise<any>;
4
16
  }
@@ -1,2 +1,5 @@
1
1
  "use strict";
2
+ /**
3
+ * Importing npm packages
4
+ */
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,14 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import { RouteMetadata } from '@shadow-library/app';
5
+ /**
6
+ * Importing user defined packages
7
+ */
2
8
  import { HttpCallback, HttpRequest, HttpResponse, RouteHandler } from './route-handler.interface.js';
9
+ /**
10
+ * Defining types
11
+ */
3
12
  export interface MiddlewareGenerator {
4
13
  cacheKey?: (metadata: RouteMetadata) => string;
5
14
  generate(metadata: RouteMetadata): RouteHandler | undefined | Promise<RouteHandler | undefined>;
@@ -1,5 +1,17 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import { SyncValue } from '@shadow-library/common';
2
5
  import { DoneFuncWithErrOrRes, FastifyReply, FastifyRequest } from 'fastify';
6
+ /**
7
+ * Importing user defined packages
8
+ */
9
+ /**
10
+ * Defining types
11
+ */
12
+ /**
13
+ * Declaring the constants
14
+ */
3
15
  export type HttpRequest = FastifyRequest;
4
16
  export type HttpResponse = FastifyReply;
5
17
  export type HttpCallback = DoneFuncWithErrOrRes;
@@ -1,8 +1,17 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import { RouteMetadata } from '@shadow-library/app';
2
5
  import { JSONSchema } from '@shadow-library/class-schema';
3
6
  import { RouteShorthandOptions } from 'fastify';
7
+ /**
8
+ * Importing user defined packages
9
+ */
4
10
  import { HTTP_CONTROLLER_TYPE } from '../constants.js';
5
11
  import { HttpMethod, RouteInputSchemas } from '../decorators/index.js';
12
+ /**
13
+ * Defining types
14
+ */
6
15
  declare module '@shadow-library/app' {
7
16
  interface RouteMetadata extends Omit<RouteShorthandOptions, 'config'> {
8
17
  method?: HttpMethod;
@@ -1,3 +1,12 @@
1
+ /**
2
+ * Importing user defined packages
3
+ */
4
+ /**
5
+ * Defining types
6
+ */
7
+ /**
8
+ * Declaring the constants
9
+ */
1
10
  export declare class ErrorFieldDto {
2
11
  field: string;
3
12
  msg: string;
@@ -10,7 +10,19 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.ErrorResponseDto = exports.ErrorFieldDto = void 0;
13
+ /**
14
+ * Importing npm packages
15
+ */
13
16
  const class_schema_1 = require("@shadow-library/class-schema");
17
+ /**
18
+ * Importing user defined packages
19
+ */
20
+ /**
21
+ * Defining types
22
+ */
23
+ /**
24
+ * Declaring the constants
25
+ */
14
26
  let ErrorFieldDto = class ErrorFieldDto {
15
27
  field;
16
28
  msg;
@@ -1,24 +1,79 @@
1
+ /**
2
+ * Importing npm packages
3
+ */
1
4
  import { FactoryProvider, ModuleMetadata } from '@shadow-library/app';
2
5
  import { JSONSchema } from '@shadow-library/class-schema';
3
6
  import { FastifyInstance, FastifyServerOptions } from 'fastify';
4
7
  import { Promisable } from 'type-fest';
8
+ /**
9
+ * Importing user defined packages
10
+ */
5
11
  import { ErrorHandler } from '../interfaces/index.js';
12
+ /**
13
+ * Defining types
14
+ */
6
15
  export interface FastifyConfig extends FastifyServerOptions {
16
+ /**
17
+ * The host on which the Fastify instance is to be started
18
+ * @default '127.0.0.1'
19
+ */
7
20
  host: string;
21
+ /**
22
+ * The port on which the Fastify instance is to be started
23
+ * @default 8080
24
+ */
8
25
  port: number;
26
+ /**
27
+ * The error handler to be used to handle errors thrown by the Fastify instance
28
+ * @default DefaultErrorHandler
29
+ */
9
30
  errorHandler: ErrorHandler;
31
+ /**
32
+ * The schema to be used to validate the response of the Fastify instance
33
+ * @default { '4xx': errorResponseSchema, '5xx': errorResponseSchema }
34
+ */
10
35
  responseSchema?: Record<string | number, JSONSchema>;
36
+ /**
37
+ * Enables internal execution of child routes (e.g., for SSR data fetching) without making actual HTTP requests.
38
+ * Useful for loading data while reusing middleware logic and shared context.
39
+ * @default false
40
+ */
11
41
  enableChildRoutes?: boolean;
42
+ /**
43
+ * Masks fields marked as sensitive in API inputs (body, query, and URL params) when written to logs.
44
+ * @default true
45
+ */
12
46
  maskSensitiveData?: boolean;
13
47
  }
14
48
  export interface FastifyModuleOptions extends Partial<FastifyConfig> {
49
+ /**
50
+ * The list of modules whose controllers are to be registered in the Fastify instance
51
+ */
15
52
  imports?: ModuleMetadata['imports'];
53
+ /**
54
+ * Factory function to modify the Fastify instance before it is used to register the controllers
55
+ */
16
56
  fastifyFactory?: (instance: FastifyInstance) => Promisable<FastifyInstance>;
57
+ /**
58
+ * The list of controllers to be registered in the Fastify instance
59
+ */
17
60
  controllers?: ModuleMetadata['controllers'];
61
+ /**
62
+ * The list of providers to be registered in the Fastify instance
63
+ */
18
64
  providers?: ModuleMetadata['providers'];
65
+ /**
66
+ * The list of providers to be exported by the Fastify module
67
+ */
19
68
  exports?: ModuleMetadata['exports'];
20
69
  }
21
70
  export interface FastifyModuleAsyncOptions extends Pick<FastifyModuleOptions, 'imports' | 'controllers' | 'providers' | 'exports' | 'fastifyFactory'> {
71
+ /**
72
+ * Factory function to create the FastifyModuleOptions
73
+ */
22
74
  useFactory: (...args: any[]) => Promisable<FastifyConfig>;
75
+ /**
76
+ * The list of providers to be injected into the factory function
77
+ */
23
78
  inject?: FactoryProvider['inject'];
24
79
  }
@@ -6,6 +6,9 @@ import { HttpMethod } from '../decorators/index.js';
6
6
  import { HttpRequest, HttpResponse, ServerMetadata } from '../interfaces/index.js';
7
7
  import { ContextService } from '../services/index.js';
8
8
  import { type FastifyConfig } from './fastify-module.interface.js';
9
+ /**
10
+ * Defining types
11
+ */
9
12
  declare module 'fastify' {
10
13
  interface FastifyRequest {
11
14
  rawBody?: Buffer;
@@ -23,7 +26,9 @@ export interface RequestContext {
23
26
  body: JsonObject;
24
27
  }
25
28
  export interface RequestMetadata {
29
+ /** request id */
26
30
  rid?: string;
31
+ /** Service request id */
27
32
  srid?: string;
28
33
  method?: string;
29
34
  url?: string;
@@ -31,6 +36,7 @@ export interface RequestMetadata {
31
36
  reqLen?: string;
32
37
  reqIp?: string;
33
38
  resLen?: string;
39
+ /** Time taken to process the request */
34
40
  timeTaken?: string;
35
41
  body?: any;
36
42
  query?: object;
@@ -71,6 +77,11 @@ export declare class FastifyRouter extends Router {
71
77
  register(controllers: ControllerRouteMetadata[]): Promise<void>;
72
78
  start(): Promise<void>;
73
79
  stop(): Promise<void>;
80
+ /**
81
+ * Creates a new child context derived from the current one to load route-specific data
82
+ * during SSR. Automatically reuses middleware results from the parent context to avoid
83
+ * redundant execution and ensures correct context isolation for nested route data fetching.
84
+ */
74
85
  resolveChildRoute<T extends JsonValue = JsonObject>(url: string): Promise<T>;
75
86
  mockRequest(): MockRequestChain;
76
87
  mockRequest(options: MockRequestOptions): Promise<MockResponse>;
@@ -16,6 +16,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
16
16
  };
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.FastifyRouter = void 0;
19
+ /**
20
+ * Importing npm packages
21
+ */
19
22
  const node_assert_1 = __importDefault(require("node:assert"));
20
23
  const app_1 = require("@shadow-library/app");
21
24
  const class_schema_1 = require("@shadow-library/class-schema");
@@ -23,9 +26,15 @@ const common_1 = require("@shadow-library/common");
23
26
  const deepmerge_1 = __importDefault(require("deepmerge"));
24
27
  const find_my_way_1 = __importDefault(require("find-my-way"));
25
28
  const json_stable_stringify_1 = __importDefault(require("json-stable-stringify"));
29
+ /**
30
+ * Importing user defined packages
31
+ */
26
32
  const constants_1 = require("../constants.js");
27
33
  const decorators_1 = require("../decorators/index.js");
28
34
  const services_1 = require("../services/index.js");
35
+ /**
36
+ * Declaring the constants
37
+ */
29
38
  const httpMethods = Object.values(decorators_1.HttpMethod).filter(m => m !== decorators_1.HttpMethod.ALL);
30
39
  const DEFAULT_ARTIFACTS = { transforms: {} };
31
40
  let FastifyRouter = class FastifyRouter extends app_1.Router {
@@ -90,7 +99,7 @@ let FastifyRouter = class FastifyRouter extends app_1.Router {
90
99
  metadata.reqIp = req.headers['x-forwarded-for'] || req.socket.remoteAddress;
91
100
  metadata.resLen = res.getHeader('content-length');
92
101
  const resTime = process.hrtime(startTime);
93
- metadata.timeTaken = (resTime[0] * 1e3 + resTime[1] * 1e-6).toFixed(3);
102
+ metadata.timeTaken = (resTime[0] * 1e3 + resTime[1] * 1e-6).toFixed(3); // Converting time to milliseconds
94
103
  if (req.body)
95
104
  metadata.body = transforms.maskBody ? transforms.maskBody(structuredClone(req.body)) : req.body;
96
105
  if (req.query)
@@ -152,10 +161,12 @@ let FastifyRouter = class FastifyRouter extends app_1.Router {
152
161
  const query = request.query;
153
162
  const body = request.body;
154
163
  const context = { request, response, params, query, body };
164
+ /** Setting the status code and headers */
155
165
  response.status(statusCode);
156
166
  for (const [key, value] of Object.entries(metadata.headers ?? {})) {
157
167
  response.header(key, typeof value === 'function' ? value() : value);
158
168
  }
169
+ /** Handling the actual route and serializing the output */
159
170
  const args = argsOrder.map(arg => arg && context[arg]);
160
171
  const data = await route.handler(...args);
161
172
  if (metadata.redirect)
@@ -176,11 +187,13 @@ let FastifyRouter = class FastifyRouter extends app_1.Router {
176
187
  async getMiddlewareHandler(middleware, metadata) {
177
188
  if (!middleware.metadata.generates)
178
189
  return middleware.handler.bind(middleware.instance);
190
+ /** Generating the cache key and getting the cached middleware */
179
191
  const genCacheKey = 'cacheKey' in middleware.instance && typeof middleware.instance.cacheKey === 'function' ? middleware.instance.cacheKey : json_stable_stringify_1.default;
180
192
  const cacheKey = genCacheKey(metadata);
181
193
  const cachedMiddleware = this.cachedDynamicMiddlewares.get(cacheKey);
182
194
  if (cachedMiddleware)
183
195
  return cachedMiddleware;
196
+ /** Generating the middleware handler */
184
197
  const handler = await middleware.handler.apply(middleware.instance, [metadata]);
185
198
  this.cachedDynamicMiddlewares.set(cacheKey, handler);
186
199
  return handler;
@@ -206,6 +219,7 @@ let FastifyRouter = class FastifyRouter extends app_1.Router {
206
219
  routeOptions.url = metadata.path;
207
220
  routeOptions.method = metadata.method === decorators_1.HttpMethod.ALL ? httpMethods : [metadata.method];
208
221
  routeOptions.handler = this.generateRouteHandler(route);
222
+ /** Applying middlewares */
209
223
  for (const middleware of middlewares) {
210
224
  const name = middleware.metatype.name;
211
225
  const { type } = middleware.metadata;
@@ -266,6 +280,11 @@ let FastifyRouter = class FastifyRouter extends app_1.Router {
266
280
  await this.instance.close();
267
281
  this.logger.info('server stopped');
268
282
  }
283
+ /**
284
+ * Creates a new child context derived from the current one to load route-specific data
285
+ * during SSR. Automatically reuses middleware results from the parent context to avoid
286
+ * redundant execution and ensures correct context isolation for nested route data fetching.
287
+ */
269
288
  async resolveChildRoute(url) {
270
289
  if (!this.childRouter)
271
290
  throw new common_1.InternalError('Child routes are not enabled');
@@ -1,5 +1,11 @@
1
1
  import { Class } from 'type-fest';
2
2
  import { FastifyModuleAsyncOptions, FastifyModuleOptions } from './fastify-module.interface.js';
3
+ /**
4
+ * Defining types
5
+ */
6
+ /**
7
+ * Declaring the constants
8
+ */
3
9
  export declare class FastifyModule {
4
10
  private static getDefaultConfig;
5
11
  static forRoot(options: FastifyModuleOptions): Class<FastifyModule>;