38435-vm/backend/src/db/api/social_links.js
2026-02-14 21:10:17 +00:00

469 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 Social_linksDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const social_links = await db.social_links.create(
{
id: data.id || undefined,
platform: data.platform
||
null
,
label: data.label
||
null
,
url: data.url
||
null
,
icon_name: data.icon_name
||
null
,
sort_order: data.sort_order
||
null
,
is_enabled: data.is_enabled
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return social_links;
}
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 social_linksData = data.map((item, index) => ({
id: item.id || undefined,
platform: item.platform
||
null
,
label: item.label
||
null
,
url: item.url
||
null
,
icon_name: item.icon_name
||
null
,
sort_order: item.sort_order
||
null
,
is_enabled: item.is_enabled
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const social_links = await db.social_links.bulkCreate(social_linksData, { transaction });
// For each item created, replace relation files
return social_links;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const social_links = await db.social_links.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.platform !== undefined) updatePayload.platform = data.platform;
if (data.label !== undefined) updatePayload.label = data.label;
if (data.url !== undefined) updatePayload.url = data.url;
if (data.icon_name !== undefined) updatePayload.icon_name = data.icon_name;
if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order;
if (data.is_enabled !== undefined) updatePayload.is_enabled = data.is_enabled;
updatePayload.updatedById = currentUser.id;
await social_links.update(updatePayload, {transaction});
return social_links;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const social_links = await db.social_links.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of social_links) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of social_links) {
await record.destroy({transaction});
}
});
return social_links;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const social_links = await db.social_links.findByPk(id, options);
await social_links.update({
deletedBy: currentUser.id
}, {
transaction,
});
await social_links.destroy({
transaction
});
return social_links;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const social_links = await db.social_links.findOne(
{ where },
{ transaction },
);
if (!social_links) {
return social_links;
}
const output = social_links.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.label) {
where = {
...where,
[Op.and]: Utils.ilike(
'social_links',
'label',
filter.label,
),
};
}
if (filter.url) {
where = {
...where,
[Op.and]: Utils.ilike(
'social_links',
'url',
filter.url,
),
};
}
if (filter.icon_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'social_links',
'icon_name',
filter.icon_name,
),
};
}
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.platform) {
where = {
...where,
platform: filter.platform,
};
}
if (filter.is_enabled) {
where = {
...where,
is_enabled: filter.is_enabled,
};
}
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.social_links.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(
'social_links',
'label',
query,
),
],
};
}
const records = await db.social_links.findAll({
attributes: [ 'id', 'label' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['label', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.label,
}));
}
};