37901-vm/backend/src/db/api/projects.js
2026-01-28 12:05:02 +00:00

764 lines
19 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 ProjectsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const projects = await db.projects.create(
{
id: data.id || undefined,
title: data.title
||
null
,
summary: data.summary
||
null
,
problem: data.problem
||
null
,
solution: data.solution
||
null
,
result: data.result
||
null
,
start_date: data.start_date
||
null
,
end_date: data.end_date
||
null
,
client: data.client
||
null
,
location: data.location
||
null
,
highlight: data.highlight
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await projects.setRelated_services(data.related_services || [], {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'project_images',
belongsToId: projects.id,
},
data.project_images,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'before_images',
belongsToId: projects.id,
},
data.before_images,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'after_images',
belongsToId: projects.id,
},
data.after_images,
options,
);
return projects;
}
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 projectsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
summary: item.summary
||
null
,
problem: item.problem
||
null
,
solution: item.solution
||
null
,
result: item.result
||
null
,
start_date: item.start_date
||
null
,
end_date: item.end_date
||
null
,
client: item.client
||
null
,
location: item.location
||
null
,
highlight: item.highlight
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const projects = await db.projects.bulkCreate(projectsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < projects.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'project_images',
belongsToId: projects[i].id,
},
data[i].project_images,
options,
);
}
for (let i = 0; i < projects.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'before_images',
belongsToId: projects[i].id,
},
data[i].before_images,
options,
);
}
for (let i = 0; i < projects.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'after_images',
belongsToId: projects[i].id,
},
data[i].after_images,
options,
);
}
return projects;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const projects = await db.projects.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.summary !== undefined) updatePayload.summary = data.summary;
if (data.problem !== undefined) updatePayload.problem = data.problem;
if (data.solution !== undefined) updatePayload.solution = data.solution;
if (data.result !== undefined) updatePayload.result = data.result;
if (data.start_date !== undefined) updatePayload.start_date = data.start_date;
if (data.end_date !== undefined) updatePayload.end_date = data.end_date;
if (data.client !== undefined) updatePayload.client = data.client;
if (data.location !== undefined) updatePayload.location = data.location;
if (data.highlight !== undefined) updatePayload.highlight = data.highlight;
updatePayload.updatedById = currentUser.id;
await projects.update(updatePayload, {transaction});
if (data.related_services !== undefined) {
await projects.setRelated_services(data.related_services, { transaction });
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'project_images',
belongsToId: projects.id,
},
data.project_images,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'before_images',
belongsToId: projects.id,
},
data.before_images,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.projects.getTableName(),
belongsToColumn: 'after_images',
belongsToId: projects.id,
},
data.after_images,
options,
);
return projects;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const projects = await db.projects.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of projects) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of projects) {
await record.destroy({transaction});
}
});
return projects;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const projects = await db.projects.findByPk(id, options);
await projects.update({
deletedBy: currentUser.id
}, {
transaction,
});
await projects.destroy({
transaction
});
return projects;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const projects = await db.projects.findOne(
{ where },
{ transaction },
);
if (!projects) {
return projects;
}
const output = projects.get({plain: true});
output.related_services = await projects.getRelated_services({
transaction
});
output.project_images = await projects.getProject_images({
transaction
});
output.before_images = await projects.getBefore_images({
transaction
});
output.after_images = await projects.getAfter_images({
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.services,
as: 'related_services',
required: false,
},
{
model: db.file,
as: 'project_images',
},
{
model: db.file,
as: 'before_images',
},
{
model: db.file,
as: 'after_images',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'title',
filter.title,
),
};
}
if (filter.summary) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'summary',
filter.summary,
),
};
}
if (filter.problem) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'problem',
filter.problem,
),
};
}
if (filter.solution) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'solution',
filter.solution,
),
};
}
if (filter.result) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'result',
filter.result,
),
};
}
if (filter.client) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'client',
filter.client,
),
};
}
if (filter.location) {
where = {
...where,
[Op.and]: Utils.ilike(
'projects',
'location',
filter.location,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
start_date: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
end_date: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.start_dateRange) {
const [start, end] = filter.start_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
start_date: {
...where.start_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
start_date: {
...where.start_date,
[Op.lte]: end,
},
};
}
}
if (filter.end_dateRange) {
const [start, end] = filter.end_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
end_date: {
...where.end_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
end_date: {
...where.end_date,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.highlight) {
where = {
...where,
highlight: filter.highlight,
};
}
if (filter.related_services) {
const searchTerms = filter.related_services.split('|');
include = [
{
model: db.services,
as: 'related_services_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,
},
};
}
}
}
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.projects.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(
'projects',
'title',
query,
),
],
};
}
const records = await db.projects.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,
}));
}
};