39411-vm/backend/src/db/api/usage_events.js
2026-03-31 02:44:10 +00:00

660 lines
16 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 Usage_eventsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const usage_events = await db.usage_events.create(
{
id: data.id || undefined,
event_type: data.event_type
||
null
,
input_tokens: data.input_tokens
||
null
,
output_tokens: data.output_tokens
||
null
,
cost: data.cost
||
null
,
ip_address: data.ip_address
||
null
,
user_agent: data.user_agent
||
null
,
occurred_at: data.occurred_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await usage_events.setUser( data.user || null, {
transaction,
});
await usage_events.setChat_session( data.chat_session || null, {
transaction,
});
await usage_events.setChat_message( data.chat_message || null, {
transaction,
});
return usage_events;
}
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 usage_eventsData = data.map((item, index) => ({
id: item.id || undefined,
event_type: item.event_type
||
null
,
input_tokens: item.input_tokens
||
null
,
output_tokens: item.output_tokens
||
null
,
cost: item.cost
||
null
,
ip_address: item.ip_address
||
null
,
user_agent: item.user_agent
||
null
,
occurred_at: item.occurred_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const usage_events = await db.usage_events.bulkCreate(usage_eventsData, { transaction });
// For each item created, replace relation files
return usage_events;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const usage_events = await db.usage_events.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.event_type !== undefined) updatePayload.event_type = data.event_type;
if (data.input_tokens !== undefined) updatePayload.input_tokens = data.input_tokens;
if (data.output_tokens !== undefined) updatePayload.output_tokens = data.output_tokens;
if (data.cost !== undefined) updatePayload.cost = data.cost;
if (data.ip_address !== undefined) updatePayload.ip_address = data.ip_address;
if (data.user_agent !== undefined) updatePayload.user_agent = data.user_agent;
if (data.occurred_at !== undefined) updatePayload.occurred_at = data.occurred_at;
updatePayload.updatedById = currentUser.id;
await usage_events.update(updatePayload, {transaction});
if (data.user !== undefined) {
await usage_events.setUser(
data.user,
{ transaction }
);
}
if (data.chat_session !== undefined) {
await usage_events.setChat_session(
data.chat_session,
{ transaction }
);
}
if (data.chat_message !== undefined) {
await usage_events.setChat_message(
data.chat_message,
{ transaction }
);
}
return usage_events;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const usage_events = await db.usage_events.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of usage_events) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of usage_events) {
await record.destroy({transaction});
}
});
return usage_events;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const usage_events = await db.usage_events.findByPk(id, options);
await usage_events.update({
deletedBy: currentUser.id
}, {
transaction,
});
await usage_events.destroy({
transaction
});
return usage_events;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const usage_events = await db.usage_events.findOne(
{ where },
{ transaction },
);
if (!usage_events) {
return usage_events;
}
const output = usage_events.get({plain: true});
output.user = await usage_events.getUser({
transaction
});
output.chat_session = await usage_events.getChat_session({
transaction
});
output.chat_message = await usage_events.getChat_message({
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: '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}%` }))
}
},
]
} : {},
},
{
model: db.chat_sessions,
as: 'chat_session',
where: filter.chat_session ? {
[Op.or]: [
{ id: { [Op.in]: filter.chat_session.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.chat_session.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.chat_messages,
as: 'chat_message',
where: filter.chat_message ? {
[Op.or]: [
{ id: { [Op.in]: filter.chat_message.split('|').map(term => Utils.uuid(term)) } },
{
content: {
[Op.or]: filter.chat_message.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.ip_address) {
where = {
...where,
[Op.and]: Utils.ilike(
'usage_events',
'ip_address',
filter.ip_address,
),
};
}
if (filter.user_agent) {
where = {
...where,
[Op.and]: Utils.ilike(
'usage_events',
'user_agent',
filter.user_agent,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
occurred_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
occurred_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.input_tokensRange) {
const [start, end] = filter.input_tokensRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
input_tokens: {
...where.input_tokens,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
input_tokens: {
...where.input_tokens,
[Op.lte]: end,
},
};
}
}
if (filter.output_tokensRange) {
const [start, end] = filter.output_tokensRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
output_tokens: {
...where.output_tokens,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
output_tokens: {
...where.output_tokens,
[Op.lte]: end,
},
};
}
}
if (filter.costRange) {
const [start, end] = filter.costRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
cost: {
...where.cost,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
cost: {
...where.cost,
[Op.lte]: end,
},
};
}
}
if (filter.occurred_atRange) {
const [start, end] = filter.occurred_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
occurred_at: {
...where.occurred_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
occurred_at: {
...where.occurred_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.event_type) {
where = {
...where,
event_type: filter.event_type,
};
}
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.usage_events.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(
'usage_events',
'event_type',
query,
),
],
};
}
const records = await db.usage_events.findAll({
attributes: [ 'id', 'event_type' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['event_type', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.event_type,
}));
}
};