505 lines
12 KiB
JavaScript
505 lines
12 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 CommentsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const comments = await db.comments.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
content: data.content
|
|
||
|
|
null
|
|
,
|
|
|
|
published_at: data.published_at
|
|
||
|
|
null
|
|
,
|
|
|
|
approved: data.approved
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await comments.setAuthor( data.author || null, {
|
|
transaction,
|
|
});
|
|
|
|
await comments.setPost( data.post || null, {
|
|
transaction,
|
|
});
|
|
|
|
await comments.setParent_comment( data.parent_comment || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return comments;
|
|
}
|
|
|
|
|
|
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 commentsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
content: item.content
|
|
||
|
|
null
|
|
,
|
|
|
|
published_at: item.published_at
|
|
||
|
|
null
|
|
,
|
|
|
|
approved: item.approved
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const comments = await db.comments.bulkCreate(commentsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return comments;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const comments = await db.comments.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.content !== undefined) updatePayload.content = data.content;
|
|
|
|
|
|
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
|
|
|
|
|
|
if (data.approved !== undefined) updatePayload.approved = data.approved;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await comments.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.author !== undefined) {
|
|
await comments.setAuthor(
|
|
|
|
data.author,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.post !== undefined) {
|
|
await comments.setPost(
|
|
|
|
data.post,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.parent_comment !== undefined) {
|
|
await comments.setParent_comment(
|
|
|
|
data.parent_comment,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return comments;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const comments = await db.comments.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of comments) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of comments) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return comments;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const comments = await db.comments.findByPk(id, options);
|
|
|
|
await comments.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await comments.destroy({
|
|
transaction
|
|
});
|
|
|
|
return comments;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const comments = await db.comments.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!comments) {
|
|
return comments;
|
|
}
|
|
|
|
const output = comments.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.author = await comments.getAuthor({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.post = await comments.getPost({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.parent_comment = await comments.getParent_comment({
|
|
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.posts,
|
|
as: 'post',
|
|
|
|
where: filter.post ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.post.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
title: {
|
|
[Op.or]: filter.post.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.comments,
|
|
as: 'parent_comment',
|
|
|
|
where: filter.parent_comment ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.parent_comment.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
content: {
|
|
[Op.or]: filter.parent_comment.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.content) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'comments',
|
|
'content',
|
|
filter.content,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.published_atRange) {
|
|
const [start, end] = filter.published_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
published_at: {
|
|
...where.published_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
published_at: {
|
|
...where.published_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.approved) {
|
|
where = {
|
|
...where,
|
|
approved: filter.approved,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.comments.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(
|
|
'comments',
|
|
'content',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.comments.findAll({
|
|
attributes: [ 'id', 'content' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['content', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.content,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|