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 BlogsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const blogs = await db.blogs.create( { id: data.id || undefined, title: data.title || null, content: data.content || null, published_date: data.published_date || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); return blogs; } 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 blogsData = data.map((item, index) => ({ id: item.id || undefined, title: item.title || null, content: item.content || null, published_date: item.published_date || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const blogs = await db.blogs.bulkCreate(blogsData, { transaction }); // For each item created, replace relation files return blogs; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const blogs = await db.blogs.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.title !== undefined) updatePayload.title = data.title; if (data.content !== undefined) updatePayload.content = data.content; if (data.published_date !== undefined) updatePayload.published_date = data.published_date; updatePayload.updatedById = currentUser.id; await blogs.update(updatePayload, { transaction }); return blogs; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const blogs = await db.blogs.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of blogs) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of blogs) { await record.destroy({ transaction }); } }); return blogs; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const blogs = await db.blogs.findByPk(id, options); await blogs.update( { deletedBy: currentUser.id, }, { transaction, }, ); await blogs.destroy({ transaction, }); return blogs; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const blogs = await db.blogs.findOne({ where }, { transaction }); if (!blogs) { return blogs; } const output = blogs.get({ plain: true }); 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 = []; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike('blogs', 'title', filter.title), }; } if (filter.content) { where = { ...where, [Op.and]: Utils.ilike('blogs', 'content', filter.content), }; } if (filter.published_dateRange) { const [start, end] = filter.published_dateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, published_date: { ...where.published_date, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, published_date: { ...where.published_date, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } 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.blogs.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('blogs', 'title', query), ], }; } const records = await db.blogs.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, })); } };