516 lines
12 KiB
JavaScript
516 lines
12 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 ContactsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const contacts = await db.contacts.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
full_name: data.full_name
|
|
||
|
|
null
|
|
,
|
|
|
|
email: data.email
|
|
||
|
|
null
|
|
,
|
|
|
|
phone: data.phone
|
|
||
|
|
null
|
|
,
|
|
|
|
company: data.company
|
|
||
|
|
null
|
|
,
|
|
|
|
job_title: data.job_title
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await contacts.setSite( data.site || null, {
|
|
transaction,
|
|
});
|
|
|
|
await contacts.setLead_source( data.lead_source || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return 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 contactsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
full_name: item.full_name
|
|
||
|
|
null
|
|
,
|
|
|
|
email: item.email
|
|
||
|
|
null
|
|
,
|
|
|
|
phone: item.phone
|
|
||
|
|
null
|
|
,
|
|
|
|
company: item.company
|
|
||
|
|
null
|
|
,
|
|
|
|
job_title: item.job_title
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const contacts = await db.contacts.bulkCreate(contactsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return contacts;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const contacts = await db.contacts.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.full_name !== undefined) updatePayload.full_name = data.full_name;
|
|
|
|
|
|
if (data.email !== undefined) updatePayload.email = data.email;
|
|
|
|
|
|
if (data.phone !== undefined) updatePayload.phone = data.phone;
|
|
|
|
|
|
if (data.company !== undefined) updatePayload.company = data.company;
|
|
|
|
|
|
if (data.job_title !== undefined) updatePayload.job_title = data.job_title;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await contacts.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.site !== undefined) {
|
|
await contacts.setSite(
|
|
|
|
data.site,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.lead_source !== undefined) {
|
|
await contacts.setLead_source(
|
|
|
|
data.lead_source,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return contacts;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const contacts = await db.contacts.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of contacts) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of contacts) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return contacts;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const contacts = await db.contacts.findByPk(id, options);
|
|
|
|
await contacts.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await contacts.destroy({
|
|
transaction
|
|
});
|
|
|
|
return contacts;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const contacts = await db.contacts.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!contacts) {
|
|
return contacts;
|
|
}
|
|
|
|
const output = contacts.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.inquiries_contact = await contacts.getInquiries_contact({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.site = await contacts.getSite({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.lead_source = await contacts.getLead_source({
|
|
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.sites,
|
|
as: 'site',
|
|
|
|
where: filter.site ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.site.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
site_name: {
|
|
[Op.or]: filter.site.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.lead_sources,
|
|
as: 'lead_source',
|
|
|
|
where: filter.lead_source ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.lead_source.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
source_name: {
|
|
[Op.or]: filter.lead_source.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.full_name) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'full_name',
|
|
filter.full_name,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.email) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'email',
|
|
filter.email,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.phone) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'phone',
|
|
filter.phone,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.company) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'company',
|
|
filter.company,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.job_title) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'job_title',
|
|
filter.job_title,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.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(
|
|
'contacts',
|
|
'full_name',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.contacts.findAll({
|
|
attributes: [ 'id', 'full_name' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['full_name', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.full_name,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|