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 MoviesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const movies = await db.movies.create( { id: data.id || undefined, title: data.title || null, synopsis: data.synopsis || null, year: data.year || null, video_url: data.video_url || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await movies.setGenres(data.genres || [], { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.movies.getTableName(), belongsToColumn: 'cover_image', belongsToId: movies.id, }, data.cover_image, options, ); return movies; } 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 moviesData = data.map((item, index) => ({ id: item.id || undefined, title: item.title || null, synopsis: item.synopsis || null, year: item.year || null, video_url: item.video_url || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const movies = await db.movies.bulkCreate(moviesData, { transaction }); // For each item created, replace relation files for (let i = 0; i < movies.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.movies.getTableName(), belongsToColumn: 'cover_image', belongsToId: movies[i].id, }, data[i].cover_image, options, ); } return movies; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const movies = await db.movies.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.title !== undefined) updatePayload.title = data.title; if (data.synopsis !== undefined) updatePayload.synopsis = data.synopsis; if (data.year !== undefined) updatePayload.year = data.year; if (data.video_url !== undefined) updatePayload.video_url = data.video_url; updatePayload.updatedById = currentUser.id; await movies.update(updatePayload, { transaction }); if (data.genres !== undefined) { await movies.setGenres(data.genres, { transaction }); } await FileDBApi.replaceRelationFiles( { belongsTo: db.movies.getTableName(), belongsToColumn: 'cover_image', belongsToId: movies.id, }, data.cover_image, options, ); return movies; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const movies = await db.movies.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of movies) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of movies) { await record.destroy({ transaction }); } }); return movies; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const movies = await db.movies.findByPk(id, options); await movies.update( { deletedBy: currentUser.id, }, { transaction, }, ); await movies.destroy({ transaction, }); return movies; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const movies = await db.movies.findOne({ where }, { transaction }); if (!movies) { return movies; } const output = movies.get({ plain: true }); output.reviews_movie = await movies.getReviews_movie({ transaction, }); output.cover_image = await movies.getCover_image({ transaction, }); output.genres = await movies.getGenres({ 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.genres, as: 'genres', required: false, }, { model: db.file, as: 'cover_image', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike('movies', 'title', filter.title), }; } if (filter.synopsis) { where = { ...where, [Op.and]: Utils.ilike('movies', 'synopsis', filter.synopsis), }; } if (filter.video_url) { where = { ...where, [Op.and]: Utils.ilike('movies', 'video_url', filter.video_url), }; } if (filter.yearRange) { const [start, end] = filter.yearRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, year: { ...where.year, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, year: { ...where.year, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.genres) { const searchTerms = filter.genres.split('|'); include = [ { model: db.genres, as: 'genres_filter', required: searchTerms.length > 0, where: searchTerms.length > 0 ? { [Op.or]: [ { id: { [Op.in]: searchTerms.map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: searchTerms.map((term) => ({ [Op.iLike]: `%${term}%`, })), }, }, ], } : undefined, }, ...include, ]; } 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.movies.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('movies', 'title', query), ], }; } const records = await db.movies.findAll({ attributes: ['id', 'title'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['title', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.title, })); } };