29974/backend/src/db/api/rides.js
2025-03-17 16:32:28 +00:00

376 lines
8.7 KiB
JavaScript

const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class RidesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const rides = await db.rides.create(
{
id: data.id || undefined,
ride_date: data.ride_date || null,
fare: data.fare || null,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await rides.setUser(data.user || null, {
transaction,
});
await rides.setCity(data.city || null, {
transaction,
});
return rides;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const ridesData = data.map((item, index) => ({
id: item.id || undefined,
ride_date: item.ride_date || null,
fare: item.fare || null,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const rides = await db.rides.bulkCreate(ridesData, { transaction });
// For each item created, replace relation files
return rides;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const rides = await db.rides.findByPk(id, {}, { transaction });
const updatePayload = {};
if (data.ride_date !== undefined) updatePayload.ride_date = data.ride_date;
if (data.fare !== undefined) updatePayload.fare = data.fare;
updatePayload.updatedById = currentUser.id;
await rides.update(updatePayload, { transaction });
if (data.user !== undefined) {
await rides.setUser(
data.user,
{ transaction },
);
}
if (data.city !== undefined) {
await rides.setCity(
data.city,
{ transaction },
);
}
return rides;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const rides = await db.rides.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of rides) {
await record.update({ deletedBy: currentUser.id }, { transaction });
}
for (const record of rides) {
await record.destroy({ transaction });
}
});
return rides;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const rides = await db.rides.findByPk(id, options);
await rides.update(
{
deletedBy: currentUser.id,
},
{
transaction,
},
);
await rides.destroy({
transaction,
});
return rides;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const rides = await db.rides.findOne({ where }, { transaction });
if (!rides) {
return rides;
}
const output = rides.get({ plain: true });
output.user = await rides.getUser({
transaction,
});
output.city = await rides.getCity({
transaction,
});
return output;
}
static async findAll(filter, options) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user
? {
[Op.or]: [
{
id: {
[Op.in]: filter.user
.split('|')
.map((term) => Utils.uuid(term)),
},
},
{
firstName: {
[Op.or]: filter.user
.split('|')
.map((term) => ({ [Op.iLike]: `%${term}%` })),
},
},
],
}
: {},
},
{
model: db.cities,
as: 'city',
where: filter.city
? {
[Op.or]: [
{
id: {
[Op.in]: filter.city
.split('|')
.map((term) => Utils.uuid(term)),
},
},
{
name: {
[Op.or]: filter.city
.split('|')
.map((term) => ({ [Op.iLike]: `%${term}%` })),
},
},
],
}
: {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.ride_dateRange) {
const [start, end] = filter.ride_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
ride_date: {
...where.ride_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
ride_date: {
...where.ride_date,
[Op.lte]: end,
},
};
}
}
if (filter.fareRange) {
const [start, end] = filter.fareRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
fare: {
...where.fare,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
fare: {
...where.fare,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true',
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order:
filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log,
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.rides.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count,
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike('rides', 'ride_date', query),
],
};
}
const records = await db.rides.findAll({
attributes: ['id', 'ride_date'],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['ride_date', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.ride_date,
}));
}
};