UNPKG

@golemio/pid

Version:
45 lines 2.83 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.RefreshGtfsStopsCacheTask = void 0; const ropid_gtfs_1 = require("../../.."); const RopidGtfsContainerToken_1 = require("../../../ioc/RopidGtfsContainerToken"); const integration_engine_1 = require("@golemio/core/dist/integration-engine"); const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe"); const constants_1 = require("../constants"); const GtfsStopsRedisRepository_1 = require("./data-access/cache/GtfsStopsRedisRepository"); let RefreshGtfsStopsCacheTask = class RefreshGtfsStopsCacheTask extends integration_engine_1.AbstractEmptyTask { constructor(gtfsStopsRedisRepository, gtfsStopCisModel) { super(constants_1.TIMETABLE_WORKER_NAME); this.gtfsStopsRedisRepository = gtfsStopsRedisRepository; this.gtfsStopCisModel = gtfsStopCisModel; this.queueName = "refreshGtfsStopsCache"; this.queueTtl = 59 * 60 * 1000; // 59 minutes this.gtfsStopRepository = new ropid_gtfs_1.RopidGTFSStopsModel(); } async execute() { const cisStops = await this.gtfsStopCisModel.getAll(); const gtfsStops = await this.gtfsStopRepository.getStopsForCache(); await this.gtfsStopsRedisRepository.refreshData(cisStops, gtfsStops); } }; exports.RefreshGtfsStopsCacheTask = RefreshGtfsStopsCacheTask; exports.RefreshGtfsStopsCacheTask = RefreshGtfsStopsCacheTask = __decorate([ (0, tsyringe_1.injectable)(), __param(0, (0, tsyringe_1.inject)(RopidGtfsContainerToken_1.RopidGtfsContainerToken.GtfsStopsRedisRepository)), __param(1, (0, tsyringe_1.inject)(RopidGtfsContainerToken_1.RopidGtfsContainerToken.RopidGTFSCisStopsModel)), __metadata("design:paramtypes", [GtfsStopsRedisRepository_1.GtfsStopsRedisRepository, ropid_gtfs_1.RopidGTFSCisStopsModel]) ], RefreshGtfsStopsCacheTask); //# sourceMappingURL=RefreshGtfsStopsCacheTask.js.map