468 lines
11 KiB
JavaScript
468 lines
11 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 Cart_item_add_onsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const cart_item_add_ons = await db.cart_item_add_ons.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
quantity: data.quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
unit_price: data.unit_price
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await cart_item_add_ons.setCart_item( data.cart_item || null, {
|
|
transaction,
|
|
});
|
|
|
|
await cart_item_add_ons.setAdd_on( data.add_on || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return cart_item_add_ons;
|
|
}
|
|
|
|
|
|
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 cart_item_add_onsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
quantity: item.quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
unit_price: item.unit_price
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const cart_item_add_ons = await db.cart_item_add_ons.bulkCreate(cart_item_add_onsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return cart_item_add_ons;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const cart_item_add_ons = await db.cart_item_add_ons.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.quantity !== undefined) updatePayload.quantity = data.quantity;
|
|
|
|
|
|
if (data.unit_price !== undefined) updatePayload.unit_price = data.unit_price;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await cart_item_add_ons.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.cart_item !== undefined) {
|
|
await cart_item_add_ons.setCart_item(
|
|
|
|
data.cart_item,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.add_on !== undefined) {
|
|
await cart_item_add_ons.setAdd_on(
|
|
|
|
data.add_on,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return cart_item_add_ons;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const cart_item_add_ons = await db.cart_item_add_ons.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of cart_item_add_ons) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of cart_item_add_ons) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return cart_item_add_ons;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const cart_item_add_ons = await db.cart_item_add_ons.findByPk(id, options);
|
|
|
|
await cart_item_add_ons.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await cart_item_add_ons.destroy({
|
|
transaction
|
|
});
|
|
|
|
return cart_item_add_ons;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const cart_item_add_ons = await db.cart_item_add_ons.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!cart_item_add_ons) {
|
|
return cart_item_add_ons;
|
|
}
|
|
|
|
const output = cart_item_add_ons.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.cart_item = await cart_item_add_ons.getCart_item({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.add_on = await cart_item_add_ons.getAdd_on({
|
|
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.cart_items,
|
|
as: 'cart_item',
|
|
|
|
where: filter.cart_item ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.cart_item.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
multiplier: {
|
|
[Op.or]: filter.cart_item.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.game_add_ons,
|
|
as: 'add_on',
|
|
|
|
where: filter.add_on ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.add_on.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.add_on.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.quantityRange) {
|
|
const [start, end] = filter.quantityRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
quantity: {
|
|
...where.quantity,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
quantity: {
|
|
...where.quantity,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.unit_priceRange) {
|
|
const [start, end] = filter.unit_priceRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
unit_price: {
|
|
...where.unit_price,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
unit_price: {
|
|
...where.unit_price,
|
|
[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.cart_item_add_ons.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(
|
|
'cart_item_add_ons',
|
|
'quantity',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.cart_item_add_ons.findAll({
|
|
attributes: [ 'id', 'quantity' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['quantity', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.quantity,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|