490 lines
11 KiB
JavaScript
490 lines
11 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 JobsDBApi {
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const jobs = await db.jobs.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
title: data.title || null,
|
|
scheduled_date: data.scheduled_date || null,
|
|
completion_date: data.completion_date || null,
|
|
status: data.status || null,
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
await jobs.setClient(data.client || null, {
|
|
transaction,
|
|
});
|
|
|
|
await jobs.setAssigned_to(data.assigned_to || null, {
|
|
transaction,
|
|
});
|
|
|
|
await jobs.setCompanies(data.companies || null, {
|
|
transaction,
|
|
});
|
|
|
|
return jobs;
|
|
}
|
|
|
|
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 jobsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
title: item.title || null,
|
|
scheduled_date: item.scheduled_date || null,
|
|
completion_date: item.completion_date || null,
|
|
status: item.status || null,
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const jobs = await db.jobs.bulkCreate(jobsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
return jobs;
|
|
}
|
|
|
|
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 jobs = await db.jobs.findByPk(id, {}, { transaction });
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.title !== undefined) updatePayload.title = data.title;
|
|
|
|
if (data.scheduled_date !== undefined)
|
|
updatePayload.scheduled_date = data.scheduled_date;
|
|
|
|
if (data.completion_date !== undefined)
|
|
updatePayload.completion_date = data.completion_date;
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await jobs.update(updatePayload, { transaction });
|
|
|
|
if (data.client !== undefined) {
|
|
await jobs.setClient(
|
|
data.client,
|
|
|
|
{ transaction },
|
|
);
|
|
}
|
|
|
|
if (data.assigned_to !== undefined) {
|
|
await jobs.setAssigned_to(
|
|
data.assigned_to,
|
|
|
|
{ transaction },
|
|
);
|
|
}
|
|
|
|
if (data.companies !== undefined) {
|
|
await jobs.setCompanies(
|
|
data.companies,
|
|
|
|
{ transaction },
|
|
);
|
|
}
|
|
|
|
return jobs;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const jobs = await db.jobs.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of jobs) {
|
|
await record.update({ deletedBy: currentUser.id }, { transaction });
|
|
}
|
|
for (const record of jobs) {
|
|
await record.destroy({ transaction });
|
|
}
|
|
});
|
|
|
|
return jobs;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const jobs = await db.jobs.findByPk(id, options);
|
|
|
|
await jobs.update(
|
|
{
|
|
deletedBy: currentUser.id,
|
|
},
|
|
{
|
|
transaction,
|
|
},
|
|
);
|
|
|
|
await jobs.destroy({
|
|
transaction,
|
|
});
|
|
|
|
return jobs;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const jobs = await db.jobs.findOne({ where }, { transaction });
|
|
|
|
if (!jobs) {
|
|
return jobs;
|
|
}
|
|
|
|
const output = jobs.get({ plain: true });
|
|
|
|
output.contracts_job = await jobs.getContracts_job({
|
|
transaction,
|
|
});
|
|
|
|
output.invoices_job = await jobs.getInvoices_job({
|
|
transaction,
|
|
});
|
|
|
|
output.questionnaires_job = await jobs.getQuestionnaires_job({
|
|
transaction,
|
|
});
|
|
|
|
output.quotes_job = await jobs.getQuotes_job({
|
|
transaction,
|
|
});
|
|
|
|
output.client = await jobs.getClient({
|
|
transaction,
|
|
});
|
|
|
|
output.assigned_to = await jobs.getAssigned_to({
|
|
transaction,
|
|
});
|
|
|
|
output.companies = await jobs.getCompanies({
|
|
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 userCompanies = (user && user.companies?.id) || null;
|
|
|
|
if (userCompanies) {
|
|
if (options?.currentUser?.companiesId) {
|
|
where.companiesId = options.currentUser.companiesId;
|
|
}
|
|
}
|
|
|
|
offset = currentPage * limit;
|
|
|
|
const orderBy = null;
|
|
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
let include = [
|
|
{
|
|
model: db.clients,
|
|
as: 'client',
|
|
|
|
where: filter.client
|
|
? {
|
|
[Op.or]: [
|
|
{
|
|
id: {
|
|
[Op.in]: filter.client
|
|
.split('|')
|
|
.map((term) => Utils.uuid(term)),
|
|
},
|
|
},
|
|
{
|
|
first_name: {
|
|
[Op.or]: filter.client
|
|
.split('|')
|
|
.map((term) => ({ [Op.iLike]: `%${term}%` })),
|
|
},
|
|
},
|
|
],
|
|
}
|
|
: {},
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'assigned_to',
|
|
|
|
where: filter.assigned_to
|
|
? {
|
|
[Op.or]: [
|
|
{
|
|
id: {
|
|
[Op.in]: filter.assigned_to
|
|
.split('|')
|
|
.map((term) => Utils.uuid(term)),
|
|
},
|
|
},
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.assigned_to
|
|
.split('|')
|
|
.map((term) => ({ [Op.iLike]: `%${term}%` })),
|
|
},
|
|
},
|
|
],
|
|
}
|
|
: {},
|
|
},
|
|
|
|
{
|
|
model: db.companies,
|
|
as: 'companies',
|
|
},
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
if (filter.title) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike('jobs', 'title', filter.title),
|
|
};
|
|
}
|
|
|
|
if (filter.calendarStart && filter.calendarEnd) {
|
|
where = {
|
|
...where,
|
|
[Op.or]: [
|
|
{
|
|
scheduled_date: {
|
|
[Op.between]: [filter.calendarStart, filter.calendarEnd],
|
|
},
|
|
},
|
|
{
|
|
completion_date: {
|
|
[Op.between]: [filter.calendarStart, filter.calendarEnd],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
}
|
|
|
|
if (filter.scheduled_dateRange) {
|
|
const [start, end] = filter.scheduled_dateRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
scheduled_date: {
|
|
...where.scheduled_date,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
scheduled_date: {
|
|
...where.scheduled_date,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.completion_dateRange) {
|
|
const [start, end] = filter.completion_dateRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
completion_date: {
|
|
...where.completion_date,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
completion_date: {
|
|
...where.completion_date,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true',
|
|
};
|
|
}
|
|
|
|
if (filter.status) {
|
|
where = {
|
|
...where,
|
|
status: filter.status,
|
|
};
|
|
}
|
|
|
|
if (filter.companies) {
|
|
const listItems = filter.companies.split('|').map((item) => {
|
|
return Utils.uuid(item);
|
|
});
|
|
|
|
where = {
|
|
...where,
|
|
companiesId: { [Op.or]: listItems },
|
|
};
|
|
}
|
|
|
|
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.companiesId;
|
|
}
|
|
|
|
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.jobs.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('jobs', 'title', query),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.jobs.findAll({
|
|
attributes: ['id', 'title'],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['title', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.title,
|
|
}));
|
|
}
|
|
};
|