601 lines
14 KiB
JavaScript
601 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 SitesDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const sites = await db.sites.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
name: data.name
|
|
||
|
|
null
|
|
,
|
|
|
|
primary_domain: data.primary_domain
|
|
||
|
|
null
|
|
,
|
|
|
|
base_url: data.base_url
|
|
||
|
|
null
|
|
,
|
|
|
|
default_locale: data.default_locale
|
|
||
|
|
null
|
|
,
|
|
|
|
is_live: data.is_live
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
launched_at: data.launched_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await sites.setOwner( data.owner || null, {
|
|
transaction,
|
|
});
|
|
|
|
await sites.setOrganizations( data.organizations || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return sites;
|
|
}
|
|
|
|
|
|
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 sitesData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
name: item.name
|
|
||
|
|
null
|
|
,
|
|
|
|
primary_domain: item.primary_domain
|
|
||
|
|
null
|
|
,
|
|
|
|
base_url: item.base_url
|
|
||
|
|
null
|
|
,
|
|
|
|
default_locale: item.default_locale
|
|
||
|
|
null
|
|
,
|
|
|
|
is_live: item.is_live
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
launched_at: item.launched_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const sites = await db.sites.bulkCreate(sitesData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return sites;
|
|
}
|
|
|
|
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 sites = await db.sites.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.name !== undefined) updatePayload.name = data.name;
|
|
|
|
|
|
if (data.primary_domain !== undefined) updatePayload.primary_domain = data.primary_domain;
|
|
|
|
|
|
if (data.base_url !== undefined) updatePayload.base_url = data.base_url;
|
|
|
|
|
|
if (data.default_locale !== undefined) updatePayload.default_locale = data.default_locale;
|
|
|
|
|
|
if (data.is_live !== undefined) updatePayload.is_live = data.is_live;
|
|
|
|
|
|
if (data.launched_at !== undefined) updatePayload.launched_at = data.launched_at;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await sites.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.owner !== undefined) {
|
|
await sites.setOwner(
|
|
|
|
data.owner,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.organizations !== undefined) {
|
|
await sites.setOrganizations(
|
|
|
|
data.organizations,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return sites;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const sites = await db.sites.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of sites) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of sites) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return sites;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const sites = await db.sites.findByPk(id, options);
|
|
|
|
await sites.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await sites.destroy({
|
|
transaction
|
|
});
|
|
|
|
return sites;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const sites = await db.sites.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!sites) {
|
|
return sites;
|
|
}
|
|
|
|
const output = sites.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.media_assets_site = await sites.getMedia_assets_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.pages_site = await sites.getPages_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.navigation_menus_site = await sites.getNavigation_menus_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.content_blocks_site = await sites.getContent_blocks_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.announcements_site = await sites.getAnnouncements_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.redirect_rules_site = await sites.getRedirect_rules_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.form_submissions_site = await sites.getForm_submissions_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.change_requests_site = await sites.getChange_requests_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.site_settings_site = await sites.getSite_settings_site({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.owner = await sites.getOwner({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.organizations = await sites.getOrganizations({
|
|
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.users,
|
|
as: 'owner',
|
|
|
|
where: filter.owner ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.owner.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.owner.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.organizations,
|
|
as: 'organizations',
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.name) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'sites',
|
|
'name',
|
|
filter.name,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.primary_domain) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'sites',
|
|
'primary_domain',
|
|
filter.primary_domain,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.base_url) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'sites',
|
|
'base_url',
|
|
filter.base_url,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.default_locale) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'sites',
|
|
'default_locale',
|
|
filter.default_locale,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.launched_atRange) {
|
|
const [start, end] = filter.launched_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
launched_at: {
|
|
...where.launched_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
launched_at: {
|
|
...where.launched_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.is_live) {
|
|
where = {
|
|
...where,
|
|
is_live: filter.is_live,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.organizations) {
|
|
const listItems = filter.organizations.split('|').map(item => {
|
|
return Utils.uuid(item)
|
|
});
|
|
|
|
where = {
|
|
...where,
|
|
organizationsId: {[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.sites.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(
|
|
'sites',
|
|
'name',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.sites.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,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|