40295-vm/backend/src/db/api/menu_items.js
2026-06-20 11:02:12 +00:00

572 lines
14 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 Menu_itemsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const menu_items = await db.menu_items.create(
{
id: data.id || undefined,
title: data.title
||
null
,
origin_country: data.origin_country
||
null
,
weight: data.weight
||
null
,
price_aud: data.price_aud
||
null
,
description: data.description
||
null
,
preparation_steps: data.preparation_steps
||
null
,
sort_order: data.sort_order
||
null
,
is_active: data.is_active
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await menu_items.setCategory( data.category || null, {
transaction,
});
return menu_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 menu_itemsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
origin_country: item.origin_country
||
null
,
weight: item.weight
||
null
,
price_aud: item.price_aud
||
null
,
description: item.description
||
null
,
preparation_steps: item.preparation_steps
||
null
,
sort_order: item.sort_order
||
null
,
is_active: item.is_active
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const menu_items = await db.menu_items.bulkCreate(menu_itemsData, { transaction });
// For each item created, replace relation files
return menu_items;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const menu_items = await db.menu_items.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.origin_country !== undefined) updatePayload.origin_country = data.origin_country;
if (data.weight !== undefined) updatePayload.weight = data.weight;
if (data.price_aud !== undefined) updatePayload.price_aud = data.price_aud;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.preparation_steps !== undefined) updatePayload.preparation_steps = data.preparation_steps;
if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order;
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
updatePayload.updatedById = currentUser.id;
await menu_items.update(updatePayload, {transaction});
if (data.category !== undefined) {
await menu_items.setCategory(
data.category,
{ transaction }
);
}
return menu_items;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const menu_items = await db.menu_items.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of menu_items) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of menu_items) {
await record.destroy({transaction});
}
});
return menu_items;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const menu_items = await db.menu_items.findByPk(id, options);
await menu_items.update({
deletedBy: currentUser.id
}, {
transaction,
});
await menu_items.destroy({
transaction
});
return menu_items;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const menu_items = await db.menu_items.findOne(
{ where },
{ transaction },
);
if (!menu_items) {
return menu_items;
}
const output = menu_items.get({plain: true});
output.cart_items_menu_item = await menu_items.getCart_items_menu_item({
transaction
});
output.order_items_menu_item = await menu_items.getOrder_items_menu_item({
transaction
});
output.category = await menu_items.getCategory({
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.menu_categories,
as: 'category',
where: filter.category ? {
[Op.or]: [
{ id: { [Op.in]: filter.category.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.category.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'menu_items',
'title',
filter.title,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'menu_items',
'description',
filter.description,
),
};
}
if (filter.preparation_steps) {
where = {
...where,
[Op.and]: Utils.ilike(
'menu_items',
'preparation_steps',
filter.preparation_steps,
),
};
}
if (filter.price_audRange) {
const [start, end] = filter.price_audRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
price_aud: {
...where.price_aud,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
price_aud: {
...where.price_aud,
[Op.lte]: end,
},
};
}
}
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.origin_country) {
where = {
...where,
origin_country: filter.origin_country,
};
}
if (filter.weight) {
where = {
...where,
weight: filter.weight,
};
}
if (filter.is_active) {
where = {
...where,
is_active: filter.is_active,
};
}
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.menu_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(
'menu_items',
'title',
query,
),
],
};
}
const records = await db.menu_items.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,
}));
}
};