40243-vm/backend/src/db/api/game_payments.js
2026-06-10 17:31:19 +00:00

631 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 Game_paymentsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const game_payments = await db.game_payments.create(
{
id: data.id || undefined,
fee_amount: data.fee_amount
||
null
,
payment_status: data.payment_status
||
null
,
payment_method: data.payment_method
||
null
,
stripe_payment_reference: data.stripe_payment_reference
||
null
,
paid_at: data.paid_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await game_payments.setGame( data.game || null, {
transaction,
});
await game_payments.setPlayer( data.player || null, {
transaction,
});
await game_payments.setGuest( data.guest || null, {
transaction,
});
await game_payments.setOrganizations( data.organizations || null, {
transaction,
});
return game_payments;
}
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 game_paymentsData = data.map((item, index) => ({
id: item.id || undefined,
fee_amount: item.fee_amount
||
null
,
payment_status: item.payment_status
||
null
,
payment_method: item.payment_method
||
null
,
stripe_payment_reference: item.stripe_payment_reference
||
null
,
paid_at: item.paid_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const game_payments = await db.game_payments.bulkCreate(game_paymentsData, { transaction });
// For each item created, replace relation files
return game_payments;
}
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 game_payments = await db.game_payments.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.fee_amount !== undefined) updatePayload.fee_amount = data.fee_amount;
if (data.payment_status !== undefined) updatePayload.payment_status = data.payment_status;
if (data.payment_method !== undefined) updatePayload.payment_method = data.payment_method;
if (data.stripe_payment_reference !== undefined) updatePayload.stripe_payment_reference = data.stripe_payment_reference;
if (data.paid_at !== undefined) updatePayload.paid_at = data.paid_at;
updatePayload.updatedById = currentUser.id;
await game_payments.update(updatePayload, {transaction});
if (data.game !== undefined) {
await game_payments.setGame(
data.game,
{ transaction }
);
}
if (data.player !== undefined) {
await game_payments.setPlayer(
data.player,
{ transaction }
);
}
if (data.guest !== undefined) {
await game_payments.setGuest(
data.guest,
{ transaction }
);
}
if (data.organizations !== undefined) {
await game_payments.setOrganizations(
data.organizations,
{ transaction }
);
}
return game_payments;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const game_payments = await db.game_payments.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of game_payments) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of game_payments) {
await record.destroy({transaction});
}
});
return game_payments;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const game_payments = await db.game_payments.findByPk(id, options);
await game_payments.update({
deletedBy: currentUser.id
}, {
transaction,
});
await game_payments.destroy({
transaction
});
return game_payments;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const game_payments = await db.game_payments.findOne(
{ where },
{ transaction },
);
if (!game_payments) {
return game_payments;
}
const output = game_payments.get({plain: true});
output.game = await game_payments.getGame({
transaction
});
output.player = await game_payments.getPlayer({
transaction
});
output.guest = await game_payments.getGuest({
transaction
});
output.organizations = await game_payments.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.games,
as: 'game',
where: filter.game ? {
[Op.or]: [
{ id: { [Op.in]: filter.game.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.game.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.players,
as: 'player',
where: filter.player ? {
[Op.or]: [
{ id: { [Op.in]: filter.player.split('|').map(term => Utils.uuid(term)) } },
{
display_name: {
[Op.or]: filter.player.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.game_guests,
as: 'guest',
where: filter.guest ? {
[Op.or]: [
{ id: { [Op.in]: filter.guest.split('|').map(term => Utils.uuid(term)) } },
{
nickname: {
[Op.or]: filter.guest.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.stripe_payment_reference) {
where = {
...where,
[Op.and]: Utils.ilike(
'game_payments',
'stripe_payment_reference',
filter.stripe_payment_reference,
),
};
}
if (filter.fee_amountRange) {
const [start, end] = filter.fee_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
fee_amount: {
...where.fee_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
fee_amount: {
...where.fee_amount,
[Op.lte]: end,
},
};
}
}
if (filter.paid_atRange) {
const [start, end] = filter.paid_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
paid_at: {
...where.paid_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
paid_at: {
...where.paid_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.payment_status) {
where = {
...where,
payment_status: filter.payment_status,
};
}
if (filter.payment_method) {
where = {
...where,
payment_method: filter.payment_method,
};
}
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.game_payments.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(
'game_payments',
'stripe_payment_reference',
query,
),
],
};
}
const records = await db.game_payments.findAll({
attributes: [ 'id', 'stripe_payment_reference' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['stripe_payment_reference', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.stripe_payment_reference,
}));
}
};