39185-vm/backend/src/db/api/reviews.js
2026-03-13 23:48:24 +00:00

635 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 ReviewsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const reviews = await db.reviews.create(
{
id: data.id || undefined,
reviewer_name: data.reviewer_name
||
null
,
rating: data.rating
||
null
,
review_text: data.review_text
||
null
,
reviewed_at: data.reviewed_at
||
null
,
sentiment: data.sentiment
||
null
,
reply_status: data.reply_status
||
null
,
reply_text: data.reply_text
||
null
,
replied_at: data.replied_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await reviews.setGbp_profile( data.gbp_profile || null, {
transaction,
});
await reviews.setOrganizations( data.organizations || null, {
transaction,
});
return reviews;
}
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 reviewsData = data.map((item, index) => ({
id: item.id || undefined,
reviewer_name: item.reviewer_name
||
null
,
rating: item.rating
||
null
,
review_text: item.review_text
||
null
,
reviewed_at: item.reviewed_at
||
null
,
sentiment: item.sentiment
||
null
,
reply_status: item.reply_status
||
null
,
reply_text: item.reply_text
||
null
,
replied_at: item.replied_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const reviews = await db.reviews.bulkCreate(reviewsData, { transaction });
// For each item created, replace relation files
return reviews;
}
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 reviews = await db.reviews.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.reviewer_name !== undefined) updatePayload.reviewer_name = data.reviewer_name;
if (data.rating !== undefined) updatePayload.rating = data.rating;
if (data.review_text !== undefined) updatePayload.review_text = data.review_text;
if (data.reviewed_at !== undefined) updatePayload.reviewed_at = data.reviewed_at;
if (data.sentiment !== undefined) updatePayload.sentiment = data.sentiment;
if (data.reply_status !== undefined) updatePayload.reply_status = data.reply_status;
if (data.reply_text !== undefined) updatePayload.reply_text = data.reply_text;
if (data.replied_at !== undefined) updatePayload.replied_at = data.replied_at;
updatePayload.updatedById = currentUser.id;
await reviews.update(updatePayload, {transaction});
if (data.gbp_profile !== undefined) {
await reviews.setGbp_profile(
data.gbp_profile,
{ transaction }
);
}
if (data.organizations !== undefined) {
await reviews.setOrganizations(
data.organizations,
{ transaction }
);
}
return reviews;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const reviews = await db.reviews.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of reviews) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of reviews) {
await record.destroy({transaction});
}
});
return reviews;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const reviews = await db.reviews.findByPk(id, options);
await reviews.update({
deletedBy: currentUser.id
}, {
transaction,
});
await reviews.destroy({
transaction
});
return reviews;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const reviews = await db.reviews.findOne(
{ where },
{ transaction },
);
if (!reviews) {
return reviews;
}
const output = reviews.get({plain: true});
output.gbp_profile = await reviews.getGbp_profile({
transaction
});
output.organizations = await reviews.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.gbp_profiles,
as: 'gbp_profile',
where: filter.gbp_profile ? {
[Op.or]: [
{ id: { [Op.in]: filter.gbp_profile.split('|').map(term => Utils.uuid(term)) } },
{
google_business_profile_url: {
[Op.or]: filter.gbp_profile.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.reviewer_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'reviews',
'reviewer_name',
filter.reviewer_name,
),
};
}
if (filter.review_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'reviews',
'review_text',
filter.review_text,
),
};
}
if (filter.reply_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'reviews',
'reply_text',
filter.reply_text,
),
};
}
if (filter.ratingRange) {
const [start, end] = filter.ratingRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
rating: {
...where.rating,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
rating: {
...where.rating,
[Op.lte]: end,
},
};
}
}
if (filter.reviewed_atRange) {
const [start, end] = filter.reviewed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reviewed_at: {
...where.reviewed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reviewed_at: {
...where.reviewed_at,
[Op.lte]: end,
},
};
}
}
if (filter.replied_atRange) {
const [start, end] = filter.replied_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
replied_at: {
...where.replied_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
replied_at: {
...where.replied_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.sentiment) {
where = {
...where,
sentiment: filter.sentiment,
};
}
if (filter.reply_status) {
where = {
...where,
reply_status: filter.reply_status,
};
}
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.reviews.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(
'reviews',
'reviewer_name',
query,
),
],
};
}
const records = await db.reviews.findAll({
attributes: [ 'id', 'reviewer_name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['reviewer_name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.reviewer_name,
}));
}
};