33167/backend/src/db/api/valuations.js
2025-08-01 18:41:57 +00:00

304 lines
8.4 KiB
JavaScript

const db = require('../models');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class ValuationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const valuations = await db.valuations.create(
{
id: data.id || undefined,
estimated_value: data.estimated_value
||
null
,
report: data.report
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return valuations;
}
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 valuationsData = data.map((item, index) => ({
id: item.id || undefined,
estimated_value: item.estimated_value
||
null
,
report: item.report
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const valuations = await db.valuations.bulkCreate(valuationsData, { transaction });
return valuations;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const valuations = await db.valuations.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.estimated_value !== undefined) updatePayload.estimated_value = data.estimated_value;
if (data.report !== undefined) updatePayload.report = data.report;
updatePayload.updatedById = currentUser.id;
await valuations.update(updatePayload, {transaction});
return valuations;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const valuations = await db.valuations.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of valuations) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of valuations) {
await record.destroy({transaction});
}
});
return valuations;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const valuations = await db.valuations.findByPk(id, options);
await valuations.update({
deletedBy: currentUser.id
}, {
transaction,
});
await valuations.destroy({
transaction
});
return valuations;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const valuations = await db.valuations.findOne(
{ where },
{ transaction },
);
if (!valuations) {
return valuations;
}
const output = valuations.get({plain: true});
return output;
}
static async findAll(filter, options) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.report) {
where = {
...where,
[Op.and]: Utils.ilike(
'valuations',
'report',
filter.report,
),
};
}
if (filter.estimated_valueRange) {
const [start, end] = filter.estimated_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
estimated_value: {
...where.estimated_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
estimated_value: {
...where.estimated_value,
[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.valuations.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(
'valuations',
'estimated_value',
query,
),
],
};
}
const records = await db.valuations.findAll({
attributes: [ 'id', 'estimated_value' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['estimated_value', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.estimated_value,
}));
}
};