UNPKG

@golemio/parkings

Version:
53 lines 3.08 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.OsmOpeningHoursTransformation = void 0; const SourceEnum_1 = require("../../../helpers/constants/SourceEnum"); const MaxStayParser_1 = require("../../../helpers/osm/MaxStayParser"); const OpeningHoursParser_1 = require("../../../helpers/osm/OpeningHoursParser"); const ModuleContainerToken_1 = require("../../ioc/ModuleContainerToken"); const AbstractTransformation_1 = require("@golemio/core/dist/helpers/transformation/AbstractTransformation"); const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe"); let OsmOpeningHoursTransformation = exports.OsmOpeningHoursTransformation = class OsmOpeningHoursTransformation extends AbstractTransformation_1.AbstractTransformation { constructor(openingHoursParser) { super(); this.openingHoursParser = openingHoursParser; this.name = "OsmOpenHoursTransformation"; this.transformInternal = (element) => { const periods = this.openingHoursParser.parse(element.properties.opening_hours); const maxStay = MaxStayParser_1.MaxStayParser.parse(element.properties.maxstay); if (periods !== null) { for (const period of periods) { if (maxStay !== undefined) { period.maximum_duration = maxStay; } } } const transformed = { parking_id: `${SourceEnum_1.SourceEnum.OSM}-${element.properties.osm_id}`, source: SourceEnum_1.SourceEnum.OSM, valid_from: "1970-01-01T00:00:00.000Z", valid_to: null, periods_of_time: periods, }; return transformed; }; } }; exports.OsmOpeningHoursTransformation = OsmOpeningHoursTransformation = __decorate([ (0, tsyringe_1.injectable)(), __param(0, (0, tsyringe_1.inject)(ModuleContainerToken_1.ModuleContainerToken.OsmOpeningHoursParser)), __metadata("design:paramtypes", [OpeningHoursParser_1.OpeningHoursParser]) ], OsmOpeningHoursTransformation); //# sourceMappingURL=OsmOpeningHoursTransformation.js.map