@golemio/pid
Version:
Golemio PID Module
64 lines • 3.84 kB
JavaScript
;
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.PublicGtfsDepartureRepository = void 0;
const const_1 = require("../../../../schema-definitions/ropid-gtfs/redis/const");
const IoRedisConnector_1 = require("@golemio/core/dist/helpers/data-access/redis/IoRedisConnector");
const CoreToken_1 = require("@golemio/core/dist/helpers/ioc/CoreToken");
const ioc_1 = require("@golemio/core/dist/output-gateway/ioc");
const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
let PublicGtfsDepartureRepository = class PublicGtfsDepartureRepository {
constructor(redisConnector, log) {
this.redisConnector = redisConnector;
this.log = log;
}
async getPublicGtfsDepartureCache(stopIds, minutesAfter, timeFrom, limit) {
if (!this.redisConnector.isConnected()) {
await this.redisConnector.connect();
}
const allDepartures = await Promise.all(stopIds.map((stopId) => this.getAndParseDepartureCache(stopId, minutesAfter, timeFrom, limit)));
return allDepartures.flat();
}
async getAndParseDepartureCache(stopId, minutesAfter, timeFrom, limit) {
const connection = this.redisConnector.getConnection();
let departureCache;
const now = Date.now();
try {
departureCache = await connection.zrangebyscore(`${const_1.PUBLIC_DEPARTURE_NAMESPACE_PREFIX}:${stopId}`, Math.round((timeFrom?.getTime() ?? now) / 1000), Math.round((timeFrom?.getTime() ?? now) / 1000) + minutesAfter * 60, "LIMIT", 0, limit || 100 // max on v2 is 30, max on v4 SHOULD BE similar (usually 2x the board-rows)
);
}
catch (err) {
throw new golemio_errors_1.GeneralError(`${this.constructor.name}: Cannot get public departure cache from cache: ${err.message}`, this.constructor.name, err);
}
if (departureCache.length === 0) {
this.log.info(`${this.constructor.name}: Cannot find public departure cache for stop ${stopId} in cache`);
return [];
}
try {
return departureCache.map((cache) => JSON.parse(cache));
}
catch (err) {
throw new golemio_errors_1.GeneralError(`${this.constructor.name}: Cannot parse public departure cache: ${err.message}`, this.constructor.name, err);
}
}
};
exports.PublicGtfsDepartureRepository = PublicGtfsDepartureRepository;
exports.PublicGtfsDepartureRepository = PublicGtfsDepartureRepository = __decorate([
(0, tsyringe_1.injectable)(),
__param(0, (0, tsyringe_1.inject)(ioc_1.ContainerToken.RedisConnector)),
__param(1, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.Logger)),
__metadata("design:paramtypes", [IoRedisConnector_1.IoRedisConnector, Object])
], PublicGtfsDepartureRepository);
//# sourceMappingURL=PublicGtfsDepartureRepository.js.map