38937-vm/backend/src/db/api/venues.js
2026-03-02 18:12:07 +00:00

767 lines
18 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 VenuesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const venues = await db.venues.create(
{
id: data.id || undefined,
name: data.name
||
null
,
phone: data.phone
||
null
,
email: data.email
||
null
,
address_line: data.address_line
||
null
,
city: data.city
||
null
,
state: data.state
||
null
,
postal_code: data.postal_code
||
null
,
latitude: data.latitude
||
null
,
longitude: data.longitude
||
null
,
timezone: data.timezone
||
null
,
status: data.status
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await venues.setOrganization(currentUser.organization.id || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.venues.getTableName(),
belongsToColumn: 'photos',
belongsToId: venues.id,
},
data.photos,
options,
);
return venues;
}
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 venuesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
phone: item.phone
||
null
,
email: item.email
||
null
,
address_line: item.address_line
||
null
,
city: item.city
||
null
,
state: item.state
||
null
,
postal_code: item.postal_code
||
null
,
latitude: item.latitude
||
null
,
longitude: item.longitude
||
null
,
timezone: item.timezone
||
null
,
status: item.status
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const venues = await db.venues.bulkCreate(venuesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < venues.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.venues.getTableName(),
belongsToColumn: 'photos',
belongsToId: venues[i].id,
},
data[i].photos,
options,
);
}
return venues;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const venues = await db.venues.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.phone !== undefined) updatePayload.phone = data.phone;
if (data.email !== undefined) updatePayload.email = data.email;
if (data.address_line !== undefined) updatePayload.address_line = data.address_line;
if (data.city !== undefined) updatePayload.city = data.city;
if (data.state !== undefined) updatePayload.state = data.state;
if (data.postal_code !== undefined) updatePayload.postal_code = data.postal_code;
if (data.latitude !== undefined) updatePayload.latitude = data.latitude;
if (data.longitude !== undefined) updatePayload.longitude = data.longitude;
if (data.timezone !== undefined) updatePayload.timezone = data.timezone;
if (data.status !== undefined) updatePayload.status = data.status;
updatePayload.updatedById = currentUser.id;
await venues.update(updatePayload, {transaction});
if (data.organization !== undefined) {
await venues.setOrganization(
(globalAccess ? data.organization : currentUser.organization.id),
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.venues.getTableName(),
belongsToColumn: 'photos',
belongsToId: venues.id,
},
data.photos,
options,
);
return venues;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const venues = await db.venues.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of venues) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of venues) {
await record.destroy({transaction});
}
});
return venues;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const venues = await db.venues.findByPk(id, options);
await venues.update({
deletedBy: currentUser.id
}, {
transaction,
});
await venues.destroy({
transaction
});
return venues;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const venues = await db.venues.findOne(
{ where },
{ transaction },
);
if (!venues) {
return venues;
}
const output = venues.get({plain: true});
output.courts_venue = await venues.getCourts_venue({
transaction
});
output.customers_venue = await venues.getCustomers_venue({
transaction
});
output.bookings_venue = await venues.getBookings_venue({
transaction
});
output.price_rules_venue = await venues.getPrice_rules_venue({
transaction
});
output.pos_tabs_venue = await venues.getPos_tabs_venue({
transaction
});
output.products_venue = await venues.getProducts_venue({
transaction
});
output.product_categories_venue = await venues.getProduct_categories_venue({
transaction
});
output.inventory_locations_venue = await venues.getInventory_locations_venue({
transaction
});
output.stock_movements_venue = await venues.getStock_movements_venue({
transaction
});
output.cash_sessions_venue = await venues.getCash_sessions_venue({
transaction
});
output.payments_venue = await venues.getPayments_venue({
transaction
});
output.invoices_venue = await venues.getInvoices_venue({
transaction
});
output.discount_coupons_venue = await venues.getDiscount_coupons_venue({
transaction
});
output.notifications_venue = await venues.getNotifications_venue({
transaction
});
output.audit_logs_venue = await venues.getAudit_logs_venue({
transaction
});
output.organization = await venues.getOrganization({
transaction
});
output.photos = await venues.getPhotos({
transaction
});
return output;
}
static async findAll(
filter,
globalAccess, options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userOrganizations = (user && user.organizations?.id) || null;
if (userOrganizations) {
if (options?.currentUser?.organizationsId) {
where.organizationsId = options.currentUser.organizationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.organizations,
as: 'organization',
},
{
model: db.file,
as: 'photos',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'name',
filter.name,
),
};
}
if (filter.phone) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'phone',
filter.phone,
),
};
}
if (filter.email) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'email',
filter.email,
),
};
}
if (filter.address_line) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'address_line',
filter.address_line,
),
};
}
if (filter.city) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'city',
filter.city,
),
};
}
if (filter.state) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'state',
filter.state,
),
};
}
if (filter.postal_code) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'postal_code',
filter.postal_code,
),
};
}
if (filter.timezone) {
where = {
...where,
[Op.and]: Utils.ilike(
'venues',
'timezone',
filter.timezone,
),
};
}
if (filter.latitudeRange) {
const [start, end] = filter.latitudeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
latitude: {
...where.latitude,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
latitude: {
...where.latitude,
[Op.lte]: end,
},
};
}
}
if (filter.longitudeRange) {
const [start, end] = filter.longitudeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
longitude: {
...where.longitude,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
longitude: {
...where.longitude,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.organization) {
const listItems = filter.organization.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationId: {[Op.or]: listItems}
};
}
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,
},
};
}
}
}
if (globalAccess) {
delete where.organizationsId;
}
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.venues.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, globalAccess, organizationId,) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'venues',
'name',
query,
),
],
};
}
const records = await db.venues.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,
}));
}
};