538 lines
13 KiB
JavaScript
538 lines
13 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 Navigation_itemsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const navigation_items = await db.navigation_items.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
label: data.label
|
|
||
|
|
null
|
|
,
|
|
|
|
url: data.url
|
|
||
|
|
null
|
|
,
|
|
|
|
target: data.target
|
|
||
|
|
null
|
|
,
|
|
|
|
sort_order: data.sort_order
|
|
||
|
|
null
|
|
,
|
|
|
|
is_active: data.is_active
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
visibility: data.visibility
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await navigation_items.setPage( data.page || null, {
|
|
transaction,
|
|
});
|
|
|
|
await navigation_items.setParent_item( data.parent_item || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return navigation_items;
|
|
}
|
|
|
|
|
|
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 navigation_itemsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
label: item.label
|
|
||
|
|
null
|
|
,
|
|
|
|
url: item.url
|
|
||
|
|
null
|
|
,
|
|
|
|
target: item.target
|
|
||
|
|
null
|
|
,
|
|
|
|
sort_order: item.sort_order
|
|
||
|
|
null
|
|
,
|
|
|
|
is_active: item.is_active
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
visibility: item.visibility
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const navigation_items = await db.navigation_items.bulkCreate(navigation_itemsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return navigation_items;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const navigation_items = await db.navigation_items.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.label !== undefined) updatePayload.label = data.label;
|
|
|
|
|
|
if (data.url !== undefined) updatePayload.url = data.url;
|
|
|
|
|
|
if (data.target !== undefined) updatePayload.target = data.target;
|
|
|
|
|
|
if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order;
|
|
|
|
|
|
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
|
|
|
|
|
|
if (data.visibility !== undefined) updatePayload.visibility = data.visibility;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await navigation_items.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.page !== undefined) {
|
|
await navigation_items.setPage(
|
|
|
|
data.page,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.parent_item !== undefined) {
|
|
await navigation_items.setParent_item(
|
|
|
|
data.parent_item,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return navigation_items;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const navigation_items = await db.navigation_items.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of navigation_items) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of navigation_items) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return navigation_items;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const navigation_items = await db.navigation_items.findByPk(id, options);
|
|
|
|
await navigation_items.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await navigation_items.destroy({
|
|
transaction
|
|
});
|
|
|
|
return navigation_items;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const navigation_items = await db.navigation_items.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!navigation_items) {
|
|
return navigation_items;
|
|
}
|
|
|
|
const output = navigation_items.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.page = await navigation_items.getPage({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.parent_item = await navigation_items.getParent_item({
|
|
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.pages,
|
|
as: 'page',
|
|
|
|
where: filter.page ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.page.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
title: {
|
|
[Op.or]: filter.page.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.navigation_items,
|
|
as: 'parent_item',
|
|
|
|
where: filter.parent_item ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.parent_item.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
label: {
|
|
[Op.or]: filter.parent_item.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.label) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'navigation_items',
|
|
'label',
|
|
filter.label,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.url) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'navigation_items',
|
|
'url',
|
|
filter.url,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.target) {
|
|
where = {
|
|
...where,
|
|
target: filter.target,
|
|
};
|
|
}
|
|
|
|
if (filter.is_active) {
|
|
where = {
|
|
...where,
|
|
is_active: filter.is_active,
|
|
};
|
|
}
|
|
|
|
if (filter.visibility) {
|
|
where = {
|
|
...where,
|
|
visibility: filter.visibility,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.navigation_items.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(
|
|
'navigation_items',
|
|
'label',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.navigation_items.findAll({
|
|
attributes: [ 'id', 'label' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['label', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.label,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|