@golemio/pid
Version:
Golemio PID Module
124 lines • 6.26 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.JISInfotextsRepository = void 0;
const const_1 = require("../../../schema-definitions/const");
const JISInfotextsModel_1 = require("../../../schema-definitions/jis/models/JISInfotextsModel");
const AbstractValidatableRepository_1 = require("@golemio/core/dist/helpers/data-access/postgres/repositories/AbstractValidatableRepository");
const CoreToken_1 = require("@golemio/core/dist/helpers/ioc/CoreToken");
const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors");
const golemio_validator_1 = require("@golemio/core/dist/shared/golemio-validator");
const sequelize_1 = require("@golemio/core/dist/shared/sequelize");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
let JISInfotextsRepository = exports.JISInfotextsRepository = class JISInfotextsRepository extends AbstractValidatableRepository_1.AbstractValidatableRepository {
constructor(connector, logger) {
super(connector, logger);
this.logger = logger;
this.schema = const_1.PG_SCHEMA;
this.tableName = JISInfotextsModel_1.JISInfotextsModel.tableName;
this.validator = new golemio_validator_1.JSONSchemaValidator("JISInfotextsRepository", JISInfotextsModel_1.JISInfotextsModel.jsonSchema);
this.sequelizeModel = connector
.getConnection()
.define(this.tableName, JISInfotextsModel_1.JISInfotextsModel.attributeModel, { schema: this.schema });
}
/**
* Delete all items last updated before a given date and time (where their `updated_at` is less than the given limit)
*
* @param dateTime The `updated_at` limit, where all items last updated before this limit shall be deleted
* @param options Options for the operation
* @returns The number of deleted items
*/
async deleteAllLastUpdatedBefore(dateTime, options) {
try {
return await this.sequelizeModel.destroy({
where: {
updated_at: { [sequelize_1.Op.lt]: dateTime },
},
transaction: options?.transaction,
});
}
catch (err) {
throw new golemio_errors_1.GeneralError("Error in deleteAllLastUpdatedBefore", this.constructor.name, err);
}
}
/**
* Refresh all data from VYMI and delete old data
*
* @param data The data to be upserted
* @param options Options for the operation
*/
async refreshData(data, options) {
try {
const currentInfotexts = await this.sequelizeModel.findAll({ transaction: options?.transaction });
const currentInfotextsMap = new Map();
for (const infotext of currentInfotexts) {
currentInfotextsMap.set(infotext.id, infotext);
}
const toBeUpserted = [];
for (const infotext of data) {
const info = currentInfotextsMap.get(infotext.id);
if (!info || info.updated_at <= infotext.updated_timestamp) {
toBeUpserted.push(infotext);
}
currentInfotextsMap.delete(infotext.id);
}
const toBeDeleted = [];
for (const { id } of currentInfotextsMap.values()) {
toBeDeleted.push(id);
}
const [upserted] = await Promise.all([
this.sequelizeModel.bulkCreate(toBeUpserted, {
updateOnDuplicate: this.getUpdateAttributes(),
transaction: options?.transaction,
}),
this.sequelizeModel.destroy({
where: {
id: { [sequelize_1.Op.in]: toBeDeleted },
},
transaction: options?.transaction,
}),
]);
return upserted;
}
catch (err) {
if (err instanceof sequelize_1.ValidationError && err.errors?.length > 0) {
const mappedErrors = err.errors.map((e) => `${e.message} (${e.value})`).join(", ");
throw new golemio_errors_1.ValidationError(`Validation error in upsertAll: ${mappedErrors}`, this.constructor.name, err, undefined, "pid");
}
throw new golemio_errors_1.GeneralError("Error in upsertAll", this.constructor.name, err);
}
}
getUpdateAttributes() {
return Object.keys(JISInfotextsModel_1.JISInfotextsModel.attributeModel).filter((attribute) => !["created_at"].includes(attribute));
}
/**
* @param options
* @returns The number of deleted items
*/
async deleteAll(options) {
try {
return await this.sequelizeModel.destroy({ where: {}, transaction: options?.transaction });
}
catch (err) {
throw new golemio_errors_1.GeneralError("Error in deleteAll", this.constructor.name, err);
}
}
};
exports.JISInfotextsRepository = JISInfotextsRepository = __decorate([
(0, tsyringe_1.injectable)(),
__param(0, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.PostgresConnector)),
__param(1, (0, tsyringe_1.inject)(CoreToken_1.CoreToken.Logger)),
__metadata("design:paramtypes", [Object, Object])
], JISInfotextsRepository);
//# sourceMappingURL=JISInfotextsRepository.js.map