@golemio/pid
Version:
Golemio PID Module
116 lines • 6.06 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);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TripScheduleRepository = void 0;
const const_1 = require("../../../../schema-definitions/const");
const ropid_gtfs_1 = require("../../../../schema-definitions/ropid-gtfs");
const helpers_1 = require("@golemio/core/dist/integration-engine/helpers");
const models_1 = require("@golemio/core/dist/integration-engine/models");
const golemio_validator_1 = require("@golemio/core/dist/shared/golemio-validator");
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
const SourceTableSuffixEnum_1 = require("../../helpers/SourceTableSuffixEnum");
let TripScheduleRepository = class TripScheduleRepository extends models_1.PostgresModel {
constructor() {
super("TripScheduleRepository", {
outputSequelizeAttributes: ropid_gtfs_1.RopidGTFS.tripSchedule.outputSequelizeAttributes,
pgTableName: ropid_gtfs_1.RopidGTFS.tripSchedule.pgTableName,
pgSchema: const_1.PG_SCHEMA,
savingType: "insertOnly",
attributesToRemove: ["id", "created_at", "updated_at"],
}, new golemio_validator_1.JSONSchemaValidator("TripScheduleRepositoryValidator", ropid_gtfs_1.RopidGTFS.tripSchedule.outputJsonSchema));
this.findAll = (options) => {
return this.sequelizeModel.findAll({ raw: true, ...options });
};
this.populate = async (sourceTableSuffix) => {
/* eslint-disable max-len */
const sql = `
SELECT
t0.origin_route_id,
t0.trip_id,
t0.service_id,
t0.run_number,
t0.date,
t0.route_id,
t0.route_type,
t0.route_short_name,
t0.is_regional,
t0.is_substitute_transport,
t0.is_night,
t0.trip_headsign,
t0.trip_short_name,
t0.block_id,
t0.exceptional,
t0.min_stop_time,
t0.max_stop_time,
gtfs_timestamp(t0.min_stop_time::varchar, t0.date) AS start_timestamp,
gtfs_timestamp(t0.max_stop_time::varchar, t0.date) AS end_timestamp,
t0.first_stop_id,
t0.last_stop_id,
right(t0.origin_route_id, -1) as origin_route_name,
t0.trip_number,
t0.route_licence_number,
t0.direction_id,
t0.shape_id
FROM (
SELECT
t1.route_id AS origin_route_id,
t1.trip_id,
t1.service_id,
t1.run_number,
t3.date,
t7.route_id,
t7.route_type,
t7.route_short_name,
t7.is_regional,
t7.is_substitute_transport,
t7.is_night,
t8.trip_headsign,
t8.trip_short_name,
t8.block_id,
t8.exceptional,
LEAST(t5.arrival_time::INTERVAL, t5.departure_time::INTERVAL) AS min_stop_time,
GREATEST(t6.arrival_time::INTERVAL, t6.departure_time::INTERVAL) AS max_stop_time,
t5.stop_id AS first_stop_id,
t6.stop_id AS last_stop_id,
t1.trip_number,
t1.route_licence_number,
t8.direction_id,
t8.shape_id
FROM "${const_1.PG_SCHEMA}".ropidgtfs_run_numbers${sourceTableSuffix} t1
INNER JOIN "${const_1.PG_SCHEMA}".ropidgtfs_precomputed_services_calendar_tmp t3 ON t1.service_id = t3.service_id
INNER JOIN "${const_1.PG_SCHEMA}".ropidgtfs_precomputed_minmax_stop_sequences_tmp t4 ON t1.trip_id = t4.trip_id
LEFT JOIN "${const_1.PG_SCHEMA}".ropidgtfs_trips${sourceTableSuffix} t8 ON t1.trip_id = t8.trip_id
LEFT JOIN "${const_1.PG_SCHEMA}".ropidgtfs_routes${sourceTableSuffix} t7 ON t8.route_id = t7.route_id
LEFT JOIN "${const_1.PG_SCHEMA}".ropidgtfs_stop_times${sourceTableSuffix} t5 ON t1.trip_id = t5.trip_id AND t5.stop_sequence = t4.min_stop_sequence
LEFT JOIN "${const_1.PG_SCHEMA}".ropidgtfs_stop_times${sourceTableSuffix} t6 ON t1.trip_id = t6.trip_id AND t6.stop_sequence = t4.max_stop_sequence
) t0;
`;
/* eslint-enable max-len */
try {
const tmpTable = ropid_gtfs_1.RopidGTFS.tripSchedule.pgTableName + SourceTableSuffixEnum_1.SourceTableSuffixEnum.Tmp;
await this.sequelizeModel.sequelize.query(`
SET LOCAL search_path TO ${const_1.PG_SCHEMA};
INSERT INTO "${tmpTable}" ${sql};
`);
}
catch (err) {
helpers_1.log.error(err);
throw err;
}
};
}
};
exports.TripScheduleRepository = TripScheduleRepository;
exports.TripScheduleRepository = TripScheduleRepository = __decorate([
(0, tsyringe_1.injectable)(),
__metadata("design:paramtypes", [])
], TripScheduleRepository);
//# sourceMappingURL=TripScheduleRepository.js.map