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 PostsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const posts = await db.posts.create( { id: data.id || undefined, title: data.title || null , slug: data.slug || null , excerpt: data.excerpt || null , content: data.content || null , status: data.status || null , published_at: data.published_at || null , updated_on: data.updated_on || null , views: data.views || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await posts.setAuthor( data.author || null, { transaction, }); await posts.setCategories(data.categories || [], { transaction, }); await posts.setTags(data.tags || [], { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.posts.getTableName(), belongsToColumn: 'featured_image', belongsToId: posts.id, }, data.featured_image, options, ); return posts; } 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 postsData = data.map((item, index) => ({ id: item.id || undefined, title: item.title || null , slug: item.slug || null , excerpt: item.excerpt || null , content: item.content || null , status: item.status || null , published_at: item.published_at || null , updated_on: item.updated_on || null , views: item.views || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const posts = await db.posts.bulkCreate(postsData, { transaction }); // For each item created, replace relation files for (let i = 0; i < posts.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.posts.getTableName(), belongsToColumn: 'featured_image', belongsToId: posts[i].id, }, data[i].featured_image, options, ); } return posts; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const posts = await db.posts.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.title !== undefined) updatePayload.title = data.title; if (data.slug !== undefined) updatePayload.slug = data.slug; if (data.excerpt !== undefined) updatePayload.excerpt = data.excerpt; if (data.content !== undefined) updatePayload.content = data.content; if (data.status !== undefined) updatePayload.status = data.status; if (data.published_at !== undefined) updatePayload.published_at = data.published_at; if (data.updated_on !== undefined) updatePayload.updated_on = data.updated_on; if (data.views !== undefined) updatePayload.views = data.views; updatePayload.updatedById = currentUser.id; await posts.update(updatePayload, {transaction}); if (data.author !== undefined) { await posts.setAuthor( data.author, { transaction } ); } if (data.categories !== undefined) { await posts.setCategories(data.categories, { transaction }); } if (data.tags !== undefined) { await posts.setTags(data.tags, { transaction }); } await FileDBApi.replaceRelationFiles( { belongsTo: db.posts.getTableName(), belongsToColumn: 'featured_image', belongsToId: posts.id, }, data.featured_image, options, ); return posts; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const posts = await db.posts.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of posts) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of posts) { await record.destroy({transaction}); } }); return posts; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const posts = await db.posts.findByPk(id, options); await posts.update({ deletedBy: currentUser.id }, { transaction, }); await posts.destroy({ transaction }); return posts; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const posts = await db.posts.findOne( { where }, { transaction }, ); if (!posts) { return posts; } const output = posts.get({plain: true}); output.comments_post = await posts.getComments_post({ transaction }); output.author = await posts.getAuthor({ transaction }); output.categories = await posts.getCategories({ transaction }); output.tags = await posts.getTags({ transaction }); output.featured_image = await posts.getFeatured_image({ 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: 'author', where: filter.author ? { [Op.or]: [ { id: { [Op.in]: filter.author.split('|').map(term => Utils.uuid(term)) } }, { firstName: { [Op.or]: filter.author.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.categories, as: 'categories', required: false, }, { model: db.tags, as: 'tags', required: false, }, { model: db.file, as: 'featured_image', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike( 'posts', 'title', filter.title, ), }; } if (filter.slug) { where = { ...where, [Op.and]: Utils.ilike( 'posts', 'slug', filter.slug, ), }; } if (filter.excerpt) { where = { ...where, [Op.and]: Utils.ilike( 'posts', 'excerpt', filter.excerpt, ), }; } if (filter.content) { where = { ...where, [Op.and]: Utils.ilike( 'posts', 'content', filter.content, ), }; } if (filter.published_atRange) { const [start, end] = filter.published_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, published_at: { ...where.published_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, published_at: { ...where.published_at, [Op.lte]: end, }, }; } } if (filter.updated_onRange) { const [start, end] = filter.updated_onRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, updated_on: { ...where.updated_on, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, updated_on: { ...where.updated_on, [Op.lte]: end, }, }; } } if (filter.viewsRange) { const [start, end] = filter.viewsRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, views: { ...where.views, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, views: { ...where.views, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.categories) { const searchTerms = filter.categories.split('|'); include = [ { model: db.categories, as: 'categories_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.tags) { const searchTerms = filter.tags.split('|'); include = [ { model: db.tags, as: 'tags_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.posts.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( 'posts', 'title', query, ), ], }; } const records = await db.posts.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, })); } };