@golemio/pid
Version:
Golemio PID Module
99 lines • 5.47 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.JISInfotextsRopidGTFSStopsRepository = void 0;
const const_1 = require("../../../schema-definitions/const");
const JISInfotextsRopidGTFSStopsModel_1 = require("../../../schema-definitions/jis/models/JISInfotextsRopidGTFSStopsModel");
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 JISInfotextsRopidGTFSStopsRepository = exports.JISInfotextsRopidGTFSStopsRepository = class JISInfotextsRopidGTFSStopsRepository extends AbstractValidatableRepository_1.AbstractValidatableRepository {
constructor(connector, logger) {
super(connector, logger);
this.logger = logger;
this.schema = const_1.PG_SCHEMA;
this.tableName = JISInfotextsRopidGTFSStopsModel_1.JISInfotextsRopidGTFSStopsModel.tableName;
this.validator = new golemio_validator_1.JSONSchemaValidator("JISInfotextsRopidGTFSStopsRepository", JISInfotextsRopidGTFSStopsModel_1.JISInfotextsRopidGTFSStopsModel.jsonSchema);
this.sequelizeModel = connector
.getConnection()
.define(this.tableName, JISInfotextsRopidGTFSStopsModel_1.JISInfotextsRopidGTFSStopsModel.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);
}
}
/**
* Insert or update all given data. In case of an update, all attributes except for `created_at` shall be overwritten.
*
* @param data The data to be upserted
* @param options Options for the operation
* @returns The upserted items
*/
async upsertAll(data, options) {
try {
return await this.sequelizeModel.bulkCreate(data, {
updateOnDuplicate: this.getUpdateAttributes(),
transaction: options?.transaction,
});
}
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(JISInfotextsRopidGTFSStopsModel_1.JISInfotextsRopidGTFSStopsModel.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.JISInfotextsRopidGTFSStopsRepository = JISInfotextsRopidGTFSStopsRepository = __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])
], JISInfotextsRopidGTFSStopsRepository);
//# sourceMappingURL=JISInfotextsRopidGTFSStopsRepository.js.map