29876/backend/src/db/api/accounts.js
2025-03-14 09:22:53 +00:00

426 lines
10 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 AccountsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const accounts = await db.accounts.create(
{
id: data.id || undefined,
name: data.name || null,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await accounts.setOrganisations(data.organisations || null, {
transaction,
});
await accounts.setContacts(data.contacts || [], {
transaction,
});
await accounts.setOpportunities(data.opportunities || [], {
transaction,
});
return accounts;
}
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 accountsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name || null,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const accounts = await db.accounts.bulkCreate(accountsData, {
transaction,
});
// For each item created, replace relation files
return accounts;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const accounts = await db.accounts.findByPk(id, {}, { transaction });
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
updatePayload.updatedById = currentUser.id;
await accounts.update(updatePayload, { transaction });
if (data.organisations !== undefined) {
await accounts.setOrganisations(
data.organisations,
{ transaction },
);
}
if (data.contacts !== undefined) {
await accounts.setContacts(data.contacts, { transaction });
}
if (data.opportunities !== undefined) {
await accounts.setOpportunities(data.opportunities, { transaction });
}
return accounts;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const accounts = await db.accounts.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of accounts) {
await record.update({ deletedBy: currentUser.id }, { transaction });
}
for (const record of accounts) {
await record.destroy({ transaction });
}
});
return accounts;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const accounts = await db.accounts.findByPk(id, options);
await accounts.update(
{
deletedBy: currentUser.id,
},
{
transaction,
},
);
await accounts.destroy({
transaction,
});
return accounts;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const accounts = await db.accounts.findOne({ where }, { transaction });
if (!accounts) {
return accounts;
}
const output = accounts.get({ plain: true });
output.contacts_account = await accounts.getContacts_account({
transaction,
});
output.leads_converted_to_account =
await accounts.getLeads_converted_to_account({
transaction,
});
output.opportunities_account = await accounts.getOpportunities_account({
transaction,
});
output.contacts = await accounts.getContacts({
transaction,
});
output.opportunities = await accounts.getOpportunities({
transaction,
});
output.organisations = await accounts.getOrganisations({
transaction,
});
return output;
}
static async findAll(filter, globalAccess, options) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userOrganisations = (user && user.Organisations?.id) || null;
if (userOrganisations) {
if (options?.currentUser?.OrganisationsId) {
where.OrganisationsId = options.currentUser.OrganisationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.organisations,
as: 'organisations',
where: filter.organisations
? {
[Op.or]: [
{
id: {
[Op.in]: filter.organisations
.split('|')
.map((term) => Utils.uuid(term)),
},
},
{
name: {
[Op.or]: filter.organisations
.split('|')
.map((term) => ({ [Op.iLike]: `%${term}%` })),
},
},
],
}
: {},
},
{
model: db.contacts,
as: 'contacts',
},
{
model: db.opportunities,
as: 'opportunities',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike('accounts', 'name', filter.name),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true',
};
}
if (filter.contacts) {
const searchTerms = filter.contacts.split('|');
include = [
{
model: db.contacts,
as: 'contacts_filter',
required: searchTerms.length > 0,
where:
searchTerms.length > 0
? {
[Op.or]: [
{
id: {
[Op.in]: searchTerms.map((term) => Utils.uuid(term)),
},
},
{
first_name: {
[Op.or]: searchTerms.map((term) => ({
[Op.iLike]: `%${term}%`,
})),
},
},
],
}
: undefined,
},
...include,
];
}
if (filter.opportunities) {
const searchTerms = filter.opportunities.split('|');
include = [
{
model: db.opportunities,
as: 'opportunities_filter',
required: searchTerms.length > 0,
where:
searchTerms.length > 0
? {
[Op.or]: [
{
id: {
[Op.in]: searchTerms.map((term) => Utils.uuid(term)),
},
},
{
name: {
[Op.or]: searchTerms.map((term) => ({
[Op.iLike]: `%${term}%`,
})),
},
},
],
}
: undefined,
},
...include,
];
}
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,
},
};
}
}
}
if (globalAccess) {
delete where.OrganisationsId;
}
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.accounts.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,
globalAccess,
organizationId,
) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike('accounts', 'name', query),
],
};
}
const records = await db.accounts.findAll({
attributes: ['id', 'name'],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};