2026-02-09 17:42:55 +00:00

584 lines
14 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 SitesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const sites = await db.sites.create(
{
id: data.id || undefined,
label: data.label
||
null
,
address_line1: data.address_line1
||
null
,
address_line2: data.address_line2
||
null
,
postal_code: data.postal_code
||
null
,
city: data.city
||
null
,
access_notes: data.access_notes
||
null
,
is_primary: data.is_primary
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await sites.setCustomer( data.customer || null, {
transaction,
});
await sites.setOrganizations( data.organizations || null, {
transaction,
});
return sites;
}
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 sitesData = data.map((item, index) => ({
id: item.id || undefined,
label: item.label
||
null
,
address_line1: item.address_line1
||
null
,
address_line2: item.address_line2
||
null
,
postal_code: item.postal_code
||
null
,
city: item.city
||
null
,
access_notes: item.access_notes
||
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 sites = await db.sites.bulkCreate(sitesData, { transaction });
// For each item created, replace relation files
return sites;
}
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 sites = await db.sites.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.label !== undefined) updatePayload.label = data.label;
if (data.address_line1 !== undefined) updatePayload.address_line1 = data.address_line1;
if (data.address_line2 !== undefined) updatePayload.address_line2 = data.address_line2;
if (data.postal_code !== undefined) updatePayload.postal_code = data.postal_code;
if (data.city !== undefined) updatePayload.city = data.city;
if (data.access_notes !== undefined) updatePayload.access_notes = data.access_notes;
if (data.is_primary !== undefined) updatePayload.is_primary = data.is_primary;
updatePayload.updatedById = currentUser.id;
await sites.update(updatePayload, {transaction});
if (data.customer !== undefined) {
await sites.setCustomer(
data.customer,
{ transaction }
);
}
if (data.organizations !== undefined) {
await sites.setOrganizations(
data.organizations,
{ transaction }
);
}
return sites;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const sites = await db.sites.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of sites) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of sites) {
await record.destroy({transaction});
}
});
return sites;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const sites = await db.sites.findByPk(id, options);
await sites.update({
deletedBy: currentUser.id
}, {
transaction,
});
await sites.destroy({
transaction
});
return sites;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const sites = await db.sites.findOne(
{ where },
{ transaction },
);
if (!sites) {
return sites;
}
const output = sites.get({plain: true});
output.projects_site = await sites.getProjects_site({
transaction
});
output.customer = await sites.getCustomer({
transaction
});
output.organizations = await sites.getOrganizations({
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 userOrganizations = (user && user.organizations?.id) || null;
if (userOrganizations) {
if (options?.currentUser?.organizationsId) {
where.organizationsId = options.currentUser.organizationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.customers,
as: 'customer',
where: filter.customer ? {
[Op.or]: [
{ id: { [Op.in]: filter.customer.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.customer.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.label) {
where = {
...where,
[Op.and]: Utils.ilike(
'sites',
'label',
filter.label,
),
};
}
if (filter.address_line1) {
where = {
...where,
[Op.and]: Utils.ilike(
'sites',
'address_line1',
filter.address_line1,
),
};
}
if (filter.address_line2) {
where = {
...where,
[Op.and]: Utils.ilike(
'sites',
'address_line2',
filter.address_line2,
),
};
}
if (filter.postal_code) {
where = {
...where,
[Op.and]: Utils.ilike(
'sites',
'postal_code',
filter.postal_code,
),
};
}
if (filter.city) {
where = {
...where,
[Op.and]: Utils.ilike(
'sites',
'city',
filter.city,
),
};
}
if (filter.access_notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'sites',
'access_notes',
filter.access_notes,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.is_primary) {
where = {
...where,
is_primary: filter.is_primary,
};
}
if (filter.organizations) {
const listItems = filter.organizations.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationsId: {[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.organizationsId;
}
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.sites.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(
'sites',
'label',
query,
),
],
};
}
const records = await db.sites.findAll({
attributes: [ 'id', 'label' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['label', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.label,
}));
}
};