38731-vm/backend/src/db/api/pricing_plans.js
2026-02-24 09:40:22 +00:00

562 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 Pricing_plansDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const pricing_plans = await db.pricing_plans.create(
{
id: data.id || undefined,
name: data.name
||
null
,
tagline: data.tagline
||
null
,
price_monthly: data.price_monthly
||
null
,
price_yearly: data.price_yearly
||
null
,
billing_model: data.billing_model
||
null
,
features: data.features
||
null
,
is_featured: data.is_featured
||
false
,
is_active: data.is_active
||
false
,
sort_order: data.sort_order
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return pricing_plans;
}
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 pricing_plansData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
tagline: item.tagline
||
null
,
price_monthly: item.price_monthly
||
null
,
price_yearly: item.price_yearly
||
null
,
billing_model: item.billing_model
||
null
,
features: item.features
||
null
,
is_featured: item.is_featured
||
false
,
is_active: item.is_active
||
false
,
sort_order: item.sort_order
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const pricing_plans = await db.pricing_plans.bulkCreate(pricing_plansData, { transaction });
// For each item created, replace relation files
return pricing_plans;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const pricing_plans = await db.pricing_plans.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.tagline !== undefined) updatePayload.tagline = data.tagline;
if (data.price_monthly !== undefined) updatePayload.price_monthly = data.price_monthly;
if (data.price_yearly !== undefined) updatePayload.price_yearly = data.price_yearly;
if (data.billing_model !== undefined) updatePayload.billing_model = data.billing_model;
if (data.features !== undefined) updatePayload.features = data.features;
if (data.is_featured !== undefined) updatePayload.is_featured = data.is_featured;
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order;
updatePayload.updatedById = currentUser.id;
await pricing_plans.update(updatePayload, {transaction});
return pricing_plans;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const pricing_plans = await db.pricing_plans.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of pricing_plans) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of pricing_plans) {
await record.destroy({transaction});
}
});
return pricing_plans;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const pricing_plans = await db.pricing_plans.findByPk(id, options);
await pricing_plans.update({
deletedBy: currentUser.id
}, {
transaction,
});
await pricing_plans.destroy({
transaction
});
return pricing_plans;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const pricing_plans = await db.pricing_plans.findOne(
{ where },
{ transaction },
);
if (!pricing_plans) {
return pricing_plans;
}
const output = pricing_plans.get({plain: true});
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 = [
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'pricing_plans',
'name',
filter.name,
),
};
}
if (filter.tagline) {
where = {
...where,
[Op.and]: Utils.ilike(
'pricing_plans',
'tagline',
filter.tagline,
),
};
}
if (filter.features) {
where = {
...where,
[Op.and]: Utils.ilike(
'pricing_plans',
'features',
filter.features,
),
};
}
if (filter.price_monthlyRange) {
const [start, end] = filter.price_monthlyRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
price_monthly: {
...where.price_monthly,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
price_monthly: {
...where.price_monthly,
[Op.lte]: end,
},
};
}
}
if (filter.price_yearlyRange) {
const [start, end] = filter.price_yearlyRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
price_yearly: {
...where.price_yearly,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
price_yearly: {
...where.price_yearly,
[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.billing_model) {
where = {
...where,
billing_model: filter.billing_model,
};
}
if (filter.is_featured) {
where = {
...where,
is_featured: filter.is_featured,
};
}
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.pricing_plans.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(
'pricing_plans',
'name',
query,
),
],
};
}
const records = await db.pricing_plans.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};