724 lines
18 KiB
JavaScript
724 lines
18 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,
|
|
|
|
input_mode: data.input_mode
|
|
||
|
|
null
|
|
,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
started_at: data.started_at
|
|
||
|
|
null
|
|
,
|
|
|
|
ended_at: data.ended_at
|
|
||
|
|
null
|
|
,
|
|
|
|
final_score: data.final_score
|
|
||
|
|
null
|
|
,
|
|
|
|
grade: data.grade
|
|
||
|
|
null
|
|
,
|
|
|
|
max_combo: data.max_combo
|
|
||
|
|
null
|
|
,
|
|
|
|
accuracy_percent: data.accuracy_percent
|
|
||
|
|
null
|
|
,
|
|
|
|
calories_estimate: data.calories_estimate
|
|
||
|
|
null
|
|
,
|
|
|
|
device_info: data.device_info
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await game_sessions.setPlayer( data.player || null, {
|
|
transaction,
|
|
});
|
|
|
|
await game_sessions.setRoutine( data.routine || 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,
|
|
|
|
input_mode: item.input_mode
|
|
||
|
|
null
|
|
,
|
|
|
|
status: item.status
|
|
||
|
|
null
|
|
,
|
|
|
|
started_at: item.started_at
|
|
||
|
|
null
|
|
,
|
|
|
|
ended_at: item.ended_at
|
|
||
|
|
null
|
|
,
|
|
|
|
final_score: item.final_score
|
|
||
|
|
null
|
|
,
|
|
|
|
grade: item.grade
|
|
||
|
|
null
|
|
,
|
|
|
|
max_combo: item.max_combo
|
|
||
|
|
null
|
|
,
|
|
|
|
accuracy_percent: item.accuracy_percent
|
|
||
|
|
null
|
|
,
|
|
|
|
calories_estimate: item.calories_estimate
|
|
||
|
|
null
|
|
,
|
|
|
|
device_info: item.device_info
|
|
||
|
|
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.input_mode !== undefined) updatePayload.input_mode = data.input_mode;
|
|
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
|
|
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
|
|
|
|
|
|
if (data.ended_at !== undefined) updatePayload.ended_at = data.ended_at;
|
|
|
|
|
|
if (data.final_score !== undefined) updatePayload.final_score = data.final_score;
|
|
|
|
|
|
if (data.grade !== undefined) updatePayload.grade = data.grade;
|
|
|
|
|
|
if (data.max_combo !== undefined) updatePayload.max_combo = data.max_combo;
|
|
|
|
|
|
if (data.accuracy_percent !== undefined) updatePayload.accuracy_percent = data.accuracy_percent;
|
|
|
|
|
|
if (data.calories_estimate !== undefined) updatePayload.calories_estimate = data.calories_estimate;
|
|
|
|
|
|
if (data.device_info !== undefined) updatePayload.device_info = data.device_info;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await game_sessions.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.player !== undefined) {
|
|
await game_sessions.setPlayer(
|
|
|
|
data.player,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.routine !== undefined) {
|
|
await game_sessions.setRoutine(
|
|
|
|
data.routine,
|
|
|
|
{ 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.hit_events_session = await game_sessions.getHit_events_session({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.performance_feedbacks_session = await game_sessions.getPerformance_feedbacks_session({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.player = await game_sessions.getPlayer({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.routine = await game_sessions.getRoutine({
|
|
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}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.dance_routines,
|
|
as: 'routine',
|
|
|
|
where: filter.routine ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.routine.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.routine.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.device_info) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'game_sessions',
|
|
'device_info',
|
|
filter.device_info,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
if (filter.calendarStart && filter.calendarEnd) {
|
|
where = {
|
|
...where,
|
|
[Op.or]: [
|
|
{
|
|
started_at: {
|
|
[Op.between]: [filter.calendarStart, filter.calendarEnd],
|
|
},
|
|
},
|
|
{
|
|
ended_at: {
|
|
[Op.between]: [filter.calendarStart, filter.calendarEnd],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
}
|
|
|
|
|
|
|
|
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.final_scoreRange) {
|
|
const [start, end] = filter.final_scoreRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
final_score: {
|
|
...where.final_score,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
final_score: {
|
|
...where.final_score,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.max_comboRange) {
|
|
const [start, end] = filter.max_comboRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
max_combo: {
|
|
...where.max_combo,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
max_combo: {
|
|
...where.max_combo,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.accuracy_percentRange) {
|
|
const [start, end] = filter.accuracy_percentRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
accuracy_percent: {
|
|
...where.accuracy_percent,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
accuracy_percent: {
|
|
...where.accuracy_percent,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.calories_estimateRange) {
|
|
const [start, end] = filter.calories_estimateRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
calories_estimate: {
|
|
...where.calories_estimate,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
calories_estimate: {
|
|
...where.calories_estimate,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.input_mode) {
|
|
where = {
|
|
...where,
|
|
input_mode: filter.input_mode,
|
|
};
|
|
}
|
|
|
|
if (filter.status) {
|
|
where = {
|
|
...where,
|
|
status: filter.status,
|
|
};
|
|
}
|
|
|
|
if (filter.grade) {
|
|
where = {
|
|
...where,
|
|
grade: filter.grade,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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',
|
|
'device_info',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.game_sessions.findAll({
|
|
attributes: [ 'id', 'device_info' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['device_info', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.device_info,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|