UNPKG

redis-smq-rest-api

Version:

REST API for RedisSMQ: OpenAPI 3 schema and Swagger UI for managing queues, messages, and consumers.

81 lines 4.01 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.parseRoutingMap = parseRoutingMap; const path = __importStar(require("path/posix")); function isRouterResourceDescription(resource) { return (!!resource && typeof resource === 'object' && 'handler' in resource && typeof resource.handler === 'function'); } function extractControllerMetadata(handlerFunction, pathSegments) { const handlerName = handlerFunction.name; const fullRoutePath = path.resolve(...pathSegments); return { controllerRoutePath: fullRoutePath, controllerName: handlerName, controller: handlerFunction, }; } function parseRoutingMap(routingDefinition_1, callbackFn_1) { return __awaiter(this, arguments, void 0, function* (routingDefinition, callbackFn, accumulatedPath = [], accumulatedTags = []) { try { if (Array.isArray(routingDefinition)) { for (const routeItem of routingDefinition) { yield parseRoutingMap(routeItem, callbackFn, accumulatedPath, accumulatedTags); } } else if (isRouterResourceDescription(routingDefinition)) { const { handler, description, method, payload } = routingDefinition; const { controller, controllerName, controllerRoutePath } = extractControllerMetadata(handler, accumulatedPath); const applicableTags = accumulatedTags .filter((tagSet) => tagSet.length) .at(-1); yield callbackFn(controller, controllerName, method, payload, controllerRoutePath, description, applicableTags); } else { const { path: routePathSegment, tags = [], resource } = routingDefinition; const updatedPath = [...accumulatedPath, routePathSegment]; const updatedTags = [...accumulatedTags, tags]; yield parseRoutingMap(resource, callbackFn, updatedPath, updatedTags); } } catch (error) { const errorMessage = error instanceof Error ? error.message : String(error); throw new Error(`Error parsing routing map: ${errorMessage}`); } }); } //# sourceMappingURL=parser.js.map