537 lines
13 KiB
JavaScript
537 lines
13 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,
|
|
|
|
contact_label: data.contact_label
|
|
||
|
|
null
|
|
,
|
|
|
|
contact_phone_number: data.contact_phone_number
|
|
||
|
|
null
|
|
,
|
|
|
|
contact_email: data.contact_email
|
|
||
|
|
null
|
|
,
|
|
|
|
source: data.source
|
|
||
|
|
null
|
|
,
|
|
|
|
is_favorite: data.is_favorite
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
is_muted: data.is_muted
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await contacts.setOwner_user( data.owner_user || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.contacts.getTableName(),
|
|
belongsToColumn: 'contact_photo',
|
|
belongsToId: contacts.id,
|
|
},
|
|
data.contact_photo,
|
|
options,
|
|
);
|
|
|
|
|
|
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,
|
|
|
|
contact_label: item.contact_label
|
|
||
|
|
null
|
|
,
|
|
|
|
contact_phone_number: item.contact_phone_number
|
|
||
|
|
null
|
|
,
|
|
|
|
contact_email: item.contact_email
|
|
||
|
|
null
|
|
,
|
|
|
|
source: item.source
|
|
||
|
|
null
|
|
,
|
|
|
|
is_favorite: item.is_favorite
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
is_muted: item.is_muted
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
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
|
|
|
|
for (let i = 0; i < contacts.length; i++) {
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.contacts.getTableName(),
|
|
belongsToColumn: 'contact_photo',
|
|
belongsToId: contacts[i].id,
|
|
},
|
|
data[i].contact_photo,
|
|
options,
|
|
);
|
|
}
|
|
|
|
|
|
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.contact_label !== undefined) updatePayload.contact_label = data.contact_label;
|
|
|
|
|
|
if (data.contact_phone_number !== undefined) updatePayload.contact_phone_number = data.contact_phone_number;
|
|
|
|
|
|
if (data.contact_email !== undefined) updatePayload.contact_email = data.contact_email;
|
|
|
|
|
|
if (data.source !== undefined) updatePayload.source = data.source;
|
|
|
|
|
|
if (data.is_favorite !== undefined) updatePayload.is_favorite = data.is_favorite;
|
|
|
|
|
|
if (data.is_muted !== undefined) updatePayload.is_muted = data.is_muted;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await contacts.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.owner_user !== undefined) {
|
|
await contacts.setOwner_user(
|
|
|
|
data.owner_user,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.contacts.getTableName(),
|
|
belongsToColumn: 'contact_photo',
|
|
belongsToId: contacts.id,
|
|
},
|
|
data.contact_photo,
|
|
options,
|
|
);
|
|
|
|
|
|
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.owner_user = await contacts.getOwner_user({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.contact_photo = await contacts.getContact_photo({
|
|
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: 'owner_user',
|
|
|
|
where: filter.owner_user ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.owner_user.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.owner_user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
model: db.file,
|
|
as: 'contact_photo',
|
|
},
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.contact_label) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'contact_label',
|
|
filter.contact_label,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.contact_phone_number) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'contact_phone_number',
|
|
filter.contact_phone_number,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.contact_email) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'contacts',
|
|
'contact_email',
|
|
filter.contact_email,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.source) {
|
|
where = {
|
|
...where,
|
|
source: filter.source,
|
|
};
|
|
}
|
|
|
|
if (filter.is_favorite) {
|
|
where = {
|
|
...where,
|
|
is_favorite: filter.is_favorite,
|
|
};
|
|
}
|
|
|
|
if (filter.is_muted) {
|
|
where = {
|
|
...where,
|
|
is_muted: filter.is_muted,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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',
|
|
'contact_label',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.contacts.findAll({
|
|
attributes: [ 'id', 'contact_label' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['contact_label', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.contact_label,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|