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 StreaksDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const streaks = await db.streaks.create( { id: data.id || undefined, streak_type: data.streak_type || null , current_count: data.current_count || null , best_count: data.best_count || null , started_at: data.started_at || null , last_activity_at: data.last_activity_at || null , is_active: data.is_active || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await streaks.setUser( data.user || null, { transaction, }); return streaks; } 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 streaksData = data.map((item, index) => ({ id: item.id || undefined, streak_type: item.streak_type || null , current_count: item.current_count || null , best_count: item.best_count || null , started_at: item.started_at || null , last_activity_at: item.last_activity_at || null , is_active: item.is_active || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const streaks = await db.streaks.bulkCreate(streaksData, { transaction }); // For each item created, replace relation files return streaks; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const streaks = await db.streaks.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.streak_type !== undefined) updatePayload.streak_type = data.streak_type; if (data.current_count !== undefined) updatePayload.current_count = data.current_count; if (data.best_count !== undefined) updatePayload.best_count = data.best_count; if (data.started_at !== undefined) updatePayload.started_at = data.started_at; if (data.last_activity_at !== undefined) updatePayload.last_activity_at = data.last_activity_at; if (data.is_active !== undefined) updatePayload.is_active = data.is_active; updatePayload.updatedById = currentUser.id; await streaks.update(updatePayload, {transaction}); if (data.user !== undefined) { await streaks.setUser( data.user, { transaction } ); } return streaks; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const streaks = await db.streaks.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of streaks) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of streaks) { await record.destroy({transaction}); } }); return streaks; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const streaks = await db.streaks.findByPk(id, options); await streaks.update({ deletedBy: currentUser.id }, { transaction, }); await streaks.destroy({ transaction }); return streaks; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const streaks = await db.streaks.findOne( { where }, { transaction }, ); if (!streaks) { return streaks; } const output = streaks.get({plain: true}); output.user = await streaks.getUser({ 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}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.current_countRange) { const [start, end] = filter.current_countRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, current_count: { ...where.current_count, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, current_count: { ...where.current_count, [Op.lte]: end, }, }; } } if (filter.best_countRange) { const [start, end] = filter.best_countRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, best_count: { ...where.best_count, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, best_count: { ...where.best_count, [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.last_activity_atRange) { const [start, end] = filter.last_activity_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, last_activity_at: { ...where.last_activity_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, last_activity_at: { ...where.last_activity_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.streak_type) { where = { ...where, streak_type: filter.streak_type, }; } if (filter.is_active) { where = { ...where, is_active: filter.is_active, }; } 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.streaks.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( 'streaks', 'streak_type', query, ), ], }; } const records = await db.streaks.findAll({ attributes: [ 'id', 'streak_type' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['streak_type', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.streak_type, })); } };