38290-vm/backend/src/db/api/message_reactions.js
2026-02-08 14:35:52 +00:00

453 lines
11 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 Message_reactionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const message_reactions = await db.message_reactions.create(
{
id: data.id || undefined,
emoji: data.emoji
||
null
,
reacted_at: data.reacted_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await message_reactions.setMessage( data.message || null, {
transaction,
});
await message_reactions.setUser( data.user || null, {
transaction,
});
return message_reactions;
}
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 message_reactionsData = data.map((item, index) => ({
id: item.id || undefined,
emoji: item.emoji
||
null
,
reacted_at: item.reacted_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const message_reactions = await db.message_reactions.bulkCreate(message_reactionsData, { transaction });
// For each item created, replace relation files
return message_reactions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const message_reactions = await db.message_reactions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.emoji !== undefined) updatePayload.emoji = data.emoji;
if (data.reacted_at !== undefined) updatePayload.reacted_at = data.reacted_at;
updatePayload.updatedById = currentUser.id;
await message_reactions.update(updatePayload, {transaction});
if (data.message !== undefined) {
await message_reactions.setMessage(
data.message,
{ transaction }
);
}
if (data.user !== undefined) {
await message_reactions.setUser(
data.user,
{ transaction }
);
}
return message_reactions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const message_reactions = await db.message_reactions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of message_reactions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of message_reactions) {
await record.destroy({transaction});
}
});
return message_reactions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const message_reactions = await db.message_reactions.findByPk(id, options);
await message_reactions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await message_reactions.destroy({
transaction
});
return message_reactions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const message_reactions = await db.message_reactions.findOne(
{ where },
{ transaction },
);
if (!message_reactions) {
return message_reactions;
}
const output = message_reactions.get({plain: true});
output.message = await message_reactions.getMessage({
transaction
});
output.user = await message_reactions.getUser({
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.messages,
as: 'message',
where: filter.message ? {
[Op.or]: [
{ id: { [Op.in]: filter.message.split('|').map(term => Utils.uuid(term)) } },
{
message_key: {
[Op.or]: filter.message.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.emoji) {
where = {
...where,
[Op.and]: Utils.ilike(
'message_reactions',
'emoji',
filter.emoji,
),
};
}
if (filter.reacted_atRange) {
const [start, end] = filter.reacted_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
reacted_at: {
...where.reacted_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
reacted_at: {
...where.reacted_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
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.message_reactions.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(
'message_reactions',
'emoji',
query,
),
],
};
}
const records = await db.message_reactions.findAll({
attributes: [ 'id', 'emoji' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['emoji', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.emoji,
}));
}
};