38743-vm/backend/src/db/api/game_sessions.js
2026-02-24 17:57:27 +00:00

649 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 Game_sessionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const game_sessions = await db.game_sessions.create(
{
id: data.id || undefined,
status: data.status
||
null
,
current_level: data.current_level
||
null
,
max_level: data.max_level
||
null
,
total_score: data.total_score
||
null
,
total_attempts: data.total_attempts
||
null
,
started_at: data.started_at
||
null
,
ended_at: data.ended_at
||
null
,
seed: data.seed
||
null
,
client_fingerprint: data.client_fingerprint
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await game_sessions.setPlayer( data.player || null, {
transaction,
});
return game_sessions;
}
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_sessionsData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
current_level: item.current_level
||
null
,
max_level: item.max_level
||
null
,
total_score: item.total_score
||
null
,
total_attempts: item.total_attempts
||
null
,
started_at: item.started_at
||
null
,
ended_at: item.ended_at
||
null
,
seed: item.seed
||
null
,
client_fingerprint: item.client_fingerprint
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const game_sessions = await db.game_sessions.bulkCreate(game_sessionsData, { transaction });
// For each item created, replace relation files
return game_sessions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const game_sessions = await db.game_sessions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.current_level !== undefined) updatePayload.current_level = data.current_level;
if (data.max_level !== undefined) updatePayload.max_level = data.max_level;
if (data.total_score !== undefined) updatePayload.total_score = data.total_score;
if (data.total_attempts !== undefined) updatePayload.total_attempts = data.total_attempts;
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
if (data.ended_at !== undefined) updatePayload.ended_at = data.ended_at;
if (data.seed !== undefined) updatePayload.seed = data.seed;
if (data.client_fingerprint !== undefined) updatePayload.client_fingerprint = data.client_fingerprint;
updatePayload.updatedById = currentUser.id;
await game_sessions.update(updatePayload, {transaction});
if (data.player !== undefined) {
await game_sessions.setPlayer(
data.player,
{ transaction }
);
}
return game_sessions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const game_sessions = await db.game_sessions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of game_sessions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of game_sessions) {
await record.destroy({transaction});
}
});
return game_sessions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const game_sessions = await db.game_sessions.findByPk(id, options);
await game_sessions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await game_sessions.destroy({
transaction
});
return game_sessions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const game_sessions = await db.game_sessions.findOne(
{ where },
{ transaction },
);
if (!game_sessions) {
return game_sessions;
}
const output = game_sessions.get({plain: true});
output.session_rounds_game_session = await game_sessions.getSession_rounds_game_session({
transaction
});
output.leaderboard_entries_game_session = await game_sessions.getLeaderboard_entries_game_session({
transaction
});
output.player = await game_sessions.getPlayer({
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: 'player',
where: filter.player ? {
[Op.or]: [
{ id: { [Op.in]: filter.player.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.player.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.seed) {
where = {
...where,
[Op.and]: Utils.ilike(
'game_sessions',
'seed',
filter.seed,
),
};
}
if (filter.client_fingerprint) {
where = {
...where,
[Op.and]: Utils.ilike(
'game_sessions',
'client_fingerprint',
filter.client_fingerprint,
),
};
}
if (filter.current_levelRange) {
const [start, end] = filter.current_levelRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
current_level: {
...where.current_level,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
current_level: {
...where.current_level,
[Op.lte]: end,
},
};
}
}
if (filter.max_levelRange) {
const [start, end] = filter.max_levelRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
max_level: {
...where.max_level,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
max_level: {
...where.max_level,
[Op.lte]: end,
},
};
}
}
if (filter.total_scoreRange) {
const [start, end] = filter.total_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
total_score: {
...where.total_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
total_score: {
...where.total_score,
[Op.lte]: end,
},
};
}
}
if (filter.total_attemptsRange) {
const [start, end] = filter.total_attemptsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
total_attempts: {
...where.total_attempts,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
total_attempts: {
...where.total_attempts,
[Op.lte]: end,
},
};
}
}
if (filter.started_atRange) {
const [start, end] = filter.started_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
started_at: {
...where.started_at,
[Op.lte]: end,
},
};
}
}
if (filter.ended_atRange) {
const [start, end] = filter.ended_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
ended_at: {
...where.ended_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
ended_at: {
...where.ended_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
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.game_sessions.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(
'game_sessions',
'seed',
query,
),
],
};
}
const records = await db.game_sessions.findAll({
attributes: [ 'id', 'seed' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['seed', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.seed,
}));
}
};