@golemio/pid
Version:
Golemio PID Module
65 lines • 4 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.SaveMetroRunsToDBTask = void 0;
const queueprocessors_1 = require("@golemio/core/dist/integration-engine/queueprocessors");
const workers_1 = require("@golemio/core/dist/integration-engine/workers");
const MetroRunsMessagesRepository_1 = require("../data-access/MetroRunsMessagesRepository");
const MetroRunsSchema_1 = require("../schema/MetroRunsSchema");
const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors");
const Di_1 = require("../../../ioc/Di");
const VPContainerToken_1 = require("../../../ioc/VPContainerToken");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
const constants_1 = require("../constants");
const TimestampValidator_1 = require("../helpers/TimestampValidator");
const CoreToken_1 = require("@golemio/core/dist/helpers/ioc/CoreToken");
let SaveMetroRunsToDBTask = exports.SaveMetroRunsToDBTask = class SaveMetroRunsToDBTask extends workers_1.AbstractTask {
constructor(timestampValidator, logger) {
super(constants_1.WORKER_NAME);
this.timestampValidator = timestampValidator;
this.logger = logger;
this.queueName = "saveMetroRunsToDB";
this.queueTtl = 3 * 60 * 1000; // 3 minutes
this.schema = MetroRunsSchema_1.MetroRunsValidationSchema;
this.messagesTransformation = Di_1.VPContainer.resolve(VPContainerToken_1.VPContainerToken.MetroRunsMessagesTransformation);
this.messagesRepository = new MetroRunsMessagesRepository_1.MetroRunsMessagesRepository();
}
async execute(data, msgProperties) {
const timestamp = msgProperties?.timestamp;
if (!timestamp) {
throw new golemio_errors_1.GeneralError(`Missing metro run message timestamp: ${JSON.stringify(data)}`, this.constructor.name);
}
if (!this.timestampValidator.isTimestampValid(timestamp, data.m.$.tm)) {
this.logger.error(new golemio_errors_1.GeneralError(`Message timestamp 'tm' of value ${data.m.$.tm} is not valid ` +
`for line ${data.m.$.linka}, gvd ${data.m.$.gvd}`, this.constructor.name, undefined, undefined, "pid"));
return Promise.resolve();
}
const messages = await this.messagesTransformation.transform({ data });
if (messages.length === 0) {
return;
}
await this.messagesRepository.bulkSave(messages);
await queueprocessors_1.QueueManager.sendMessageToExchange(this.queuePrefix, "processMetroRunMessages", {
routeName: data.m.$.linka,
messages,
}, { timestamp: msgProperties?.timestamp });
}
};
exports.SaveMetroRunsToDBTask = SaveMetroRunsToDBTask = __decorate([
(0, tsyringe_1.injectable)(),
__param(0, (0, tsyringe_1.inject)(VPContainerToken_1.VPContainerToken.TimestampValidator)),
__param(1, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.Logger)),
__metadata("design:paramtypes", [TimestampValidator_1.TimestampValidator, Object])
], SaveMetroRunsToDBTask);
//# sourceMappingURL=SaveMetroRunsToDBTask.js.map