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 ArtifactsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const artifacts = await db.artifacts.create( { id: data.id || undefined, name: data.name || null, description: data.description || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await artifacts.setMuseum(data.museum || null, { transaction, }); await artifacts.setArchaeological_site(data.archaeological_site || null, { transaction, }); await artifacts.setOrganizations(data.organizations || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.artifacts.getTableName(), belongsToColumn: 'photos', belongsToId: artifacts.id, }, data.photos, options, ); return artifacts; } 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 artifactsData = data.map((item, index) => ({ id: item.id || undefined, name: item.name || null, description: item.description || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const artifacts = await db.artifacts.bulkCreate(artifactsData, { transaction, }); // For each item created, replace relation files for (let i = 0; i < artifacts.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.artifacts.getTableName(), belongsToColumn: 'photos', belongsToId: artifacts[i].id, }, data[i].photos, options, ); } return artifacts; } 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 artifacts = await db.artifacts.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.name !== undefined) updatePayload.name = data.name; if (data.description !== undefined) updatePayload.description = data.description; updatePayload.updatedById = currentUser.id; await artifacts.update(updatePayload, { transaction }); if (data.museum !== undefined) { await artifacts.setMuseum( data.museum, { transaction }, ); } if (data.archaeological_site !== undefined) { await artifacts.setArchaeological_site( data.archaeological_site, { transaction }, ); } if (data.organizations !== undefined) { await artifacts.setOrganizations( data.organizations, { transaction }, ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.artifacts.getTableName(), belongsToColumn: 'photos', belongsToId: artifacts.id, }, data.photos, options, ); return artifacts; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const artifacts = await db.artifacts.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of artifacts) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of artifacts) { await record.destroy({ transaction }); } }); return artifacts; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const artifacts = await db.artifacts.findByPk(id, options); await artifacts.update( { deletedBy: currentUser.id, }, { transaction, }, ); await artifacts.destroy({ transaction, }); return artifacts; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const artifacts = await db.artifacts.findOne({ where }, { transaction }); if (!artifacts) { return artifacts; } const output = artifacts.get({ plain: true }); output.museum = await artifacts.getMuseum({ transaction, }); output.archaeological_site = await artifacts.getArchaeological_site({ transaction, }); output.photos = await artifacts.getPhotos({ transaction, }); output.organizations = await artifacts.getOrganizations({ 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 userOrganizations = (user && user.organizations?.id) || null; if (userOrganizations) { if (options?.currentUser?.organizationsId) { where.organizationsId = options.currentUser.organizationsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.museums, as: 'museum', where: filter.museum ? { [Op.or]: [ { id: { [Op.in]: filter.museum .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.museum .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.archaeological_sites, as: 'archaeological_site', where: filter.archaeological_site ? { [Op.or]: [ { id: { [Op.in]: filter.archaeological_site .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.archaeological_site .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.organizations, as: 'organizations', }, { model: db.file, as: 'photos', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike('artifacts', 'name', filter.name), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike('artifacts', 'description', filter.description), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.organizations) { const listItems = filter.organizations.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, organizationsId: { [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.organizationsId; } 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.artifacts.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('artifacts', 'name', query), ], }; } const records = await db.artifacts.findAll({ attributes: ['id', 'name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.name, })); } };