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 Image_editsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const image_edits = await db.image_edits.create( { id: data.id || undefined, title: data.title || null, status: data.status || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await image_edits.setUser(data.user || null, { transaction, }); await image_edits.setTeam(data.team || null, { transaction, }); await image_edits.setCompanies(data.companies || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.image_edits.getTableName(), belongsToColumn: 'original_image', belongsToId: image_edits.id, }, data.original_image, options, ); await FileDBApi.replaceRelationFiles( { belongsTo: db.image_edits.getTableName(), belongsToColumn: 'edited_image', belongsToId: image_edits.id, }, data.edited_image, options, ); return image_edits; } 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 image_editsData = data.map((item, index) => ({ id: item.id || undefined, title: item.title || null, status: item.status || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const image_edits = await db.image_edits.bulkCreate(image_editsData, { transaction, }); // For each item created, replace relation files for (let i = 0; i < image_edits.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.image_edits.getTableName(), belongsToColumn: 'original_image', belongsToId: image_edits[i].id, }, data[i].original_image, options, ); } for (let i = 0; i < image_edits.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.image_edits.getTableName(), belongsToColumn: 'edited_image', belongsToId: image_edits[i].id, }, data[i].edited_image, options, ); } return image_edits; } 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 image_edits = await db.image_edits.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.title !== undefined) updatePayload.title = data.title; if (data.status !== undefined) updatePayload.status = data.status; updatePayload.updatedById = currentUser.id; await image_edits.update(updatePayload, { transaction }); if (data.user !== undefined) { await image_edits.setUser( data.user, { transaction }, ); } if (data.team !== undefined) { await image_edits.setTeam( data.team, { transaction }, ); } if (data.companies !== undefined) { await image_edits.setCompanies( data.companies, { transaction }, ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.image_edits.getTableName(), belongsToColumn: 'original_image', belongsToId: image_edits.id, }, data.original_image, options, ); await FileDBApi.replaceRelationFiles( { belongsTo: db.image_edits.getTableName(), belongsToColumn: 'edited_image', belongsToId: image_edits.id, }, data.edited_image, options, ); return image_edits; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const image_edits = await db.image_edits.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of image_edits) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of image_edits) { await record.destroy({ transaction }); } }); return image_edits; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const image_edits = await db.image_edits.findByPk(id, options); await image_edits.update( { deletedBy: currentUser.id, }, { transaction, }, ); await image_edits.destroy({ transaction, }); return image_edits; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const image_edits = await db.image_edits.findOne( { where }, { transaction }, ); if (!image_edits) { return image_edits; } const output = image_edits.get({ plain: true }); output.user = await image_edits.getUser({ transaction, }); output.team = await image_edits.getTeam({ transaction, }); output.original_image = await image_edits.getOriginal_image({ transaction, }); output.edited_image = await image_edits.getEdited_image({ transaction, }); output.companies = await image_edits.getCompanies({ 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 userCompanies = (user && user.companies?.id) || null; if (userCompanies) { if (options?.currentUser?.companiesId) { where.companiesId = options.currentUser.companiesId; } } 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}%` })), }, }, ], } : {}, }, { model: db.teams, as: 'team', where: filter.team ? { [Op.or]: [ { id: { [Op.in]: filter.team .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.team .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.companies, as: 'companies', }, { model: db.file, as: 'original_image', }, { model: db.file, as: 'edited_image', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike('image_edits', 'title', filter.title), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.companies) { const listItems = filter.companies.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, companiesId: { [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.companiesId; } 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.image_edits.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('image_edits', 'title', query), ], }; } const records = await db.image_edits.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, })); } };