38079-vm/backend/src/db/api/drafts.js
2026-02-02 02:35:06 +00:00

598 lines
15 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 DraftsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const drafts = await db.drafts.create(
{
id: data.id || undefined,
title: data.title
||
null
,
content: data.content
||
null
,
status: data.status
||
null
,
created_date: data.created_date
||
null
,
due_date: data.due_date
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await drafts.setAuthor( data.author || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.drafts.getTableName(),
belongsToColumn: 'attachments',
belongsToId: drafts.id,
},
data.attachments,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.drafts.getTableName(),
belongsToColumn: 'cover_image',
belongsToId: drafts.id,
},
data.cover_image,
options,
);
return drafts;
}
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 draftsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
content: item.content
||
null
,
status: item.status
||
null
,
created_date: item.created_date
||
null
,
due_date: item.due_date
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const drafts = await db.drafts.bulkCreate(draftsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < drafts.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.drafts.getTableName(),
belongsToColumn: 'attachments',
belongsToId: drafts[i].id,
},
data[i].attachments,
options,
);
}
for (let i = 0; i < drafts.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.drafts.getTableName(),
belongsToColumn: 'cover_image',
belongsToId: drafts[i].id,
},
data[i].cover_image,
options,
);
}
return drafts;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const drafts = await db.drafts.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.content !== undefined) updatePayload.content = data.content;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.created_date !== undefined) updatePayload.created_date = data.created_date;
if (data.due_date !== undefined) updatePayload.due_date = data.due_date;
updatePayload.updatedById = currentUser.id;
await drafts.update(updatePayload, {transaction});
if (data.author !== undefined) {
await drafts.setAuthor(
data.author,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.drafts.getTableName(),
belongsToColumn: 'attachments',
belongsToId: drafts.id,
},
data.attachments,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.drafts.getTableName(),
belongsToColumn: 'cover_image',
belongsToId: drafts.id,
},
data.cover_image,
options,
);
return drafts;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const drafts = await db.drafts.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of drafts) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of drafts) {
await record.destroy({transaction});
}
});
return drafts;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const drafts = await db.drafts.findByPk(id, options);
await drafts.update({
deletedBy: currentUser.id
}, {
transaction,
});
await drafts.destroy({
transaction
});
return drafts;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const drafts = await db.drafts.findOne(
{ where },
{ transaction },
);
if (!drafts) {
return drafts;
}
const output = drafts.get({plain: true});
output.messages_draft = await drafts.getMessages_draft({
transaction
});
output.suggestions_draft = await drafts.getSuggestions_draft({
transaction
});
output.author = await drafts.getAuthor({
transaction
});
output.attachments = await drafts.getAttachments({
transaction
});
output.cover_image = await drafts.getCover_image({
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: 'author',
where: filter.author ? {
[Op.or]: [
{ id: { [Op.in]: filter.author.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.author.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.file,
as: 'attachments',
},
{
model: db.file,
as: 'cover_image',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'drafts',
'title',
filter.title,
),
};
}
if (filter.content) {
where = {
...where,
[Op.and]: Utils.ilike(
'drafts',
'content',
filter.content,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
created_date: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
due_date: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.created_dateRange) {
const [start, end] = filter.created_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
created_date: {
...where.created_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
created_date: {
...where.created_date,
[Op.lte]: end,
},
};
}
}
if (filter.due_dateRange) {
const [start, end] = filter.due_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
due_date: {
...where.due_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
due_date: {
...where.due_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.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.drafts.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(
'drafts',
'title',
query,
),
],
};
}
const records = await db.drafts.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,
}));
}
};