UNPKG

@golemio/pid

Version:
43 lines 2.97 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; Object.defineProperty(exports, "__esModule", { value: true }); exports.GtfsTripScopeHandlerFactory = void 0; const OgModuleToken_1 = require("../../../ioc/OgModuleToken"); const DetailedTripScopeEnum_1 = require("../../../routers/v2/helpers/DetailedTripScopeEnum"); const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors"); const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe"); let GtfsTripScopeHandlerFactory = exports.GtfsTripScopeHandlerFactory = class GtfsTripScopeHandlerFactory { constructor(infoTripScopeHandler, stopTimesTripScopeHandler, shapeTripScopeHandler, vehicleDescriptorTripScopeHandler) { this.dictionary = new Map(); this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.Info, infoTripScopeHandler); this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.StopTimes, stopTimesTripScopeHandler); this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.Shapes, shapeTripScopeHandler); this.dictionary.set(DetailedTripScopeEnum_1.DetailedTripScope.VehicleDescriptor, vehicleDescriptorTripScopeHandler); } getStrategy(scope) { if (this.dictionary.has(scope)) { return this.dictionary.get(scope); } throw new golemio_errors_1.GeneralError("Unknown GTFS trip scope strategy", this.constructor.name, undefined, 500); } }; exports.GtfsTripScopeHandlerFactory = GtfsTripScopeHandlerFactory = __decorate([ (0, tsyringe_1.injectable)(), __param(0, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.InfoGtfsTripScopeHandler)), __param(1, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.StopTimesGtfsTripScopeHandler)), __param(2, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.ShapesGtfsTripScopeHandler)), __param(3, (0, tsyringe_1.inject)(OgModuleToken_1.OgModuleToken.VehicleDescriptorGtfsTripScopeHandler)), __metadata("design:paramtypes", [Object, Object, Object, Object]) ], GtfsTripScopeHandlerFactory); //# sourceMappingURL=GtfsTripScopeHandlerFactory.js.map