Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/@nestjs/core/injector/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InstanceLinksHost = void 0; const shared_utils_1 = require("@nestjs/common/utils/shared.utils"); const unknown_element_exception_1 = require("../errors/exceptions/unknown-element.exception"); class InstanceLinksHost { constructor(container) { this.container = container; this.instanceLinks = new Map(); this.initialize(); } get(token, options = {}) { const instanceLinksForGivenToken = this.instanceLinks.get(token); if (!instanceLinksForGivenToken) { throw new unknown_element_exception_1.UnknownElementException(this.getInstanceNameByToken(token)); } if (options.each) { return instanceLinksForGivenToken; } const instanceLink = options.moduleId ? instanceLinksForGivenToken.find(item => item.moduleId === options.moduleId) : instanceLinksForGivenToken[instanceLinksForGivenToken.length - 1]; if (!instanceLink) { throw new unknown_element_exception_1.UnknownElementException(this.getInstanceNameByToken(token)); } return instanceLink; } initialize() { const modules = this.container.getModules(); modules.forEach(moduleRef => { const { providers, injectables, controllers } = moduleRef; providers.forEach((wrapper, token) => this.addLink(wrapper, token, moduleRef, 'providers')); injectables.forEach((wrapper, token) => this.addLink(wrapper, token, moduleRef, 'injectables')); controllers.forEach((wrapper, token) => this.addLink(wrapper, token, moduleRef, 'controllers')); }); } addLink(wrapper, token, moduleRef, collectionName) { const instanceLink = { moduleId: moduleRef.id, wrapperRef: wrapper, collection: moduleRef[collectionName], token, }; const existingLinks = this.instanceLinks.get(token); if (!existingLinks) { this.instanceLinks.set(token, [instanceLink]); } else { existingLinks.push(instanceLink); } } getInstanceNameByToken(token) { return (0, shared_utils_1.isFunction)(token) ? token === null || token === void 0 ? void 0 : token.name : token; } } exports.InstanceLinksHost = InstanceLinksHost;