38691-vm/backend/src/db/api/chat_messages.js
2026-02-22 17:34:06 +00:00

599 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 Chat_messagesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const chat_messages = await db.chat_messages.create(
{
id: data.id || undefined,
platform: data.platform
||
null
,
platform_message_identifier: data.platform_message_identifier
||
null
,
sender_user_name: data.sender_user_name
||
null
,
sender_display_name: data.sender_display_name
||
null
,
sender_is_bot: data.sender_is_bot
||
false
,
sender_is_subscriber: data.sender_is_subscriber
||
false
,
sender_is_moderator: data.sender_is_moderator
||
false
,
sender_is_vip: data.sender_is_vip
||
false
,
message_text: data.message_text
||
null
,
sent_at: data.sent_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await chat_messages.setStreamer_profile( data.streamer_profile || null, {
transaction,
});
return chat_messages;
}
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 chat_messagesData = data.map((item, index) => ({
id: item.id || undefined,
platform: item.platform
||
null
,
platform_message_identifier: item.platform_message_identifier
||
null
,
sender_user_name: item.sender_user_name
||
null
,
sender_display_name: item.sender_display_name
||
null
,
sender_is_bot: item.sender_is_bot
||
false
,
sender_is_subscriber: item.sender_is_subscriber
||
false
,
sender_is_moderator: item.sender_is_moderator
||
false
,
sender_is_vip: item.sender_is_vip
||
false
,
message_text: item.message_text
||
null
,
sent_at: item.sent_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const chat_messages = await db.chat_messages.bulkCreate(chat_messagesData, { transaction });
// For each item created, replace relation files
return chat_messages;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const chat_messages = await db.chat_messages.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.platform !== undefined) updatePayload.platform = data.platform;
if (data.platform_message_identifier !== undefined) updatePayload.platform_message_identifier = data.platform_message_identifier;
if (data.sender_user_name !== undefined) updatePayload.sender_user_name = data.sender_user_name;
if (data.sender_display_name !== undefined) updatePayload.sender_display_name = data.sender_display_name;
if (data.sender_is_bot !== undefined) updatePayload.sender_is_bot = data.sender_is_bot;
if (data.sender_is_subscriber !== undefined) updatePayload.sender_is_subscriber = data.sender_is_subscriber;
if (data.sender_is_moderator !== undefined) updatePayload.sender_is_moderator = data.sender_is_moderator;
if (data.sender_is_vip !== undefined) updatePayload.sender_is_vip = data.sender_is_vip;
if (data.message_text !== undefined) updatePayload.message_text = data.message_text;
if (data.sent_at !== undefined) updatePayload.sent_at = data.sent_at;
updatePayload.updatedById = currentUser.id;
await chat_messages.update(updatePayload, {transaction});
if (data.streamer_profile !== undefined) {
await chat_messages.setStreamer_profile(
data.streamer_profile,
{ transaction }
);
}
return chat_messages;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const chat_messages = await db.chat_messages.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of chat_messages) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of chat_messages) {
await record.destroy({transaction});
}
});
return chat_messages;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const chat_messages = await db.chat_messages.findByPk(id, options);
await chat_messages.update({
deletedBy: currentUser.id
}, {
transaction,
});
await chat_messages.destroy({
transaction
});
return chat_messages;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const chat_messages = await db.chat_messages.findOne(
{ where },
{ transaction },
);
if (!chat_messages) {
return chat_messages;
}
const output = chat_messages.get({plain: true});
output.tts_jobs_chat_message = await chat_messages.getTts_jobs_chat_message({
transaction
});
output.streamer_profile = await chat_messages.getStreamer_profile({
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.streamer_profiles,
as: 'streamer_profile',
where: filter.streamer_profile ? {
[Op.or]: [
{ id: { [Op.in]: filter.streamer_profile.split('|').map(term => Utils.uuid(term)) } },
{
channel_name: {
[Op.or]: filter.streamer_profile.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.platform_message_identifier) {
where = {
...where,
[Op.and]: Utils.ilike(
'chat_messages',
'platform_message_identifier',
filter.platform_message_identifier,
),
};
}
if (filter.sender_user_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'chat_messages',
'sender_user_name',
filter.sender_user_name,
),
};
}
if (filter.sender_display_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'chat_messages',
'sender_display_name',
filter.sender_display_name,
),
};
}
if (filter.message_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'chat_messages',
'message_text',
filter.message_text,
),
};
}
if (filter.sent_atRange) {
const [start, end] = filter.sent_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.platform) {
where = {
...where,
platform: filter.platform,
};
}
if (filter.sender_is_bot) {
where = {
...where,
sender_is_bot: filter.sender_is_bot,
};
}
if (filter.sender_is_subscriber) {
where = {
...where,
sender_is_subscriber: filter.sender_is_subscriber,
};
}
if (filter.sender_is_moderator) {
where = {
...where,
sender_is_moderator: filter.sender_is_moderator,
};
}
if (filter.sender_is_vip) {
where = {
...where,
sender_is_vip: filter.sender_is_vip,
};
}
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.chat_messages.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(
'chat_messages',
'sender_display_name',
query,
),
],
};
}
const records = await db.chat_messages.findAll({
attributes: [ 'id', 'sender_display_name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['sender_display_name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.sender_display_name,
}));
}
};