38374-vm/backend/src/db/api/content_sections.js
2026-02-12 05:52:02 +00:00

624 lines
15 KiB
JavaScript

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 Content_sectionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const content_sections = await db.content_sections.create(
{
id: data.id || undefined,
title: data.title
||
null
,
section_type: data.section_type
||
null
,
slug: data.slug
||
null
,
summary: data.summary
||
null
,
content: data.content
||
null
,
sort_order: data.sort_order
||
null
,
is_published: data.is_published
||
false
,
published_at: data.published_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await content_sections.setAuthor( data.author || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.content_sections.getTableName(),
belongsToColumn: 'gallery',
belongsToId: content_sections.id,
},
data.gallery,
options,
);
return content_sections;
}
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 content_sectionsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
section_type: item.section_type
||
null
,
slug: item.slug
||
null
,
summary: item.summary
||
null
,
content: item.content
||
null
,
sort_order: item.sort_order
||
null
,
is_published: item.is_published
||
false
,
published_at: item.published_at
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const content_sections = await db.content_sections.bulkCreate(content_sectionsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < content_sections.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.content_sections.getTableName(),
belongsToColumn: 'gallery',
belongsToId: content_sections[i].id,
},
data[i].gallery,
options,
);
}
return content_sections;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const content_sections = await db.content_sections.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.section_type !== undefined) updatePayload.section_type = data.section_type;
if (data.slug !== undefined) updatePayload.slug = data.slug;
if (data.summary !== undefined) updatePayload.summary = data.summary;
if (data.content !== undefined) updatePayload.content = data.content;
if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order;
if (data.is_published !== undefined) updatePayload.is_published = data.is_published;
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
updatePayload.updatedById = currentUser.id;
await content_sections.update(updatePayload, {transaction});
if (data.author !== undefined) {
await content_sections.setAuthor(
data.author,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.content_sections.getTableName(),
belongsToColumn: 'gallery',
belongsToId: content_sections.id,
},
data.gallery,
options,
);
return content_sections;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const content_sections = await db.content_sections.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of content_sections) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of content_sections) {
await record.destroy({transaction});
}
});
return content_sections;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const content_sections = await db.content_sections.findByPk(id, options);
await content_sections.update({
deletedBy: currentUser.id
}, {
transaction,
});
await content_sections.destroy({
transaction
});
return content_sections;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const content_sections = await db.content_sections.findOne(
{ where },
{ transaction },
);
if (!content_sections) {
return content_sections;
}
const output = content_sections.get({plain: true});
output.articles_section = await content_sections.getArticles_section({
transaction
});
output.media_items_section = await content_sections.getMedia_items_section({
transaction
});
output.effects_section = await content_sections.getEffects_section({
transaction
});
output.resources_section = await content_sections.getResources_section({
transaction
});
output.faqs_section = await content_sections.getFaqs_section({
transaction
});
output.gallery = await content_sections.getGallery({
transaction
});
output.author = await content_sections.getAuthor({
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.file,
as: 'gallery',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'content_sections',
'title',
filter.title,
),
};
}
if (filter.slug) {
where = {
...where,
[Op.and]: Utils.ilike(
'content_sections',
'slug',
filter.slug,
),
};
}
if (filter.summary) {
where = {
...where,
[Op.and]: Utils.ilike(
'content_sections',
'summary',
filter.summary,
),
};
}
if (filter.content) {
where = {
...where,
[Op.and]: Utils.ilike(
'content_sections',
'content',
filter.content,
),
};
}
if (filter.sort_orderRange) {
const [start, end] = filter.sort_orderRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
sort_order: {
...where.sort_order,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
sort_order: {
...where.sort_order,
[Op.lte]: end,
},
};
}
}
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.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.section_type) {
where = {
...where,
section_type: filter.section_type,
};
}
if (filter.is_published) {
where = {
...where,
is_published: filter.is_published,
};
}
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.content_sections.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(
'content_sections',
'title',
query,
),
],
};
}
const records = await db.content_sections.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,
}));
}
};