38507-vm/backend/src/db/api/deal_contacts.js
2026-02-17 10:03:43 +00:00

432 lines
9.9 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 Deal_contactsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const deal_contacts = await db.deal_contacts.create(
{
id: data.id || undefined,
role: data.role
||
null
,
is_primary: data.is_primary
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await deal_contacts.setDeal( data.deal || null, {
transaction,
});
await deal_contacts.setContact( data.contact || null, {
transaction,
});
return deal_contacts;
}
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 deal_contactsData = data.map((item, index) => ({
id: item.id || undefined,
role: item.role
||
null
,
is_primary: item.is_primary
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const deal_contacts = await db.deal_contacts.bulkCreate(deal_contactsData, { transaction });
// For each item created, replace relation files
return deal_contacts;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const deal_contacts = await db.deal_contacts.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.role !== undefined) updatePayload.role = data.role;
if (data.is_primary !== undefined) updatePayload.is_primary = data.is_primary;
updatePayload.updatedById = currentUser.id;
await deal_contacts.update(updatePayload, {transaction});
if (data.deal !== undefined) {
await deal_contacts.setDeal(
data.deal,
{ transaction }
);
}
if (data.contact !== undefined) {
await deal_contacts.setContact(
data.contact,
{ transaction }
);
}
return deal_contacts;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const deal_contacts = await db.deal_contacts.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of deal_contacts) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of deal_contacts) {
await record.destroy({transaction});
}
});
return deal_contacts;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const deal_contacts = await db.deal_contacts.findByPk(id, options);
await deal_contacts.update({
deletedBy: currentUser.id
}, {
transaction,
});
await deal_contacts.destroy({
transaction
});
return deal_contacts;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const deal_contacts = await db.deal_contacts.findOne(
{ where },
{ transaction },
);
if (!deal_contacts) {
return deal_contacts;
}
const output = deal_contacts.get({plain: true});
output.deal = await deal_contacts.getDeal({
transaction
});
output.contact = await deal_contacts.getContact({
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.deals,
as: 'deal',
where: filter.deal ? {
[Op.or]: [
{ id: { [Op.in]: filter.deal.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.deal.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.contacts,
as: 'contact',
where: filter.contact ? {
[Op.or]: [
{ id: { [Op.in]: filter.contact.split('|').map(term => Utils.uuid(term)) } },
{
last_name: {
[Op.or]: filter.contact.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.role) {
where = {
...where,
role: filter.role,
};
}
if (filter.is_primary) {
where = {
...where,
is_primary: filter.is_primary,
};
}
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.deal_contacts.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(
'deal_contacts',
'role',
query,
),
],
};
}
const records = await db.deal_contacts.findAll({
attributes: [ 'id', 'role' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['role', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.role,
}));
}
};