736 lines
18 KiB
JavaScript
736 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 Mastering_sessionsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const mastering_sessions = await db.mastering_sessions.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
lufs_measured: data.lufs_measured
|
|
||
|
|
null
|
|
,
|
|
|
|
true_peak_measured_db: data.true_peak_measured_db
|
|
||
|
|
null
|
|
,
|
|
|
|
started_at: data.started_at
|
|
||
|
|
null
|
|
,
|
|
|
|
finished_at: data.finished_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await mastering_sessions.setSong( data.song || null, {
|
|
transaction,
|
|
});
|
|
|
|
await mastering_sessions.setRequested_user( data.requested_user || null, {
|
|
transaction,
|
|
});
|
|
|
|
await mastering_sessions.setPreset( data.preset || null, {
|
|
transaction,
|
|
});
|
|
|
|
await mastering_sessions.setInput_mix_asset( data.input_mix_asset || null, {
|
|
transaction,
|
|
});
|
|
|
|
await mastering_sessions.setResult_master_asset( data.result_master_asset || null, {
|
|
transaction,
|
|
});
|
|
|
|
await mastering_sessions.setOrganizations( data.organizations || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return mastering_sessions;
|
|
}
|
|
|
|
|
|
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 mastering_sessionsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
status: item.status
|
|
||
|
|
null
|
|
,
|
|
|
|
lufs_measured: item.lufs_measured
|
|
||
|
|
null
|
|
,
|
|
|
|
true_peak_measured_db: item.true_peak_measured_db
|
|
||
|
|
null
|
|
,
|
|
|
|
started_at: item.started_at
|
|
||
|
|
null
|
|
,
|
|
|
|
finished_at: item.finished_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const mastering_sessions = await db.mastering_sessions.bulkCreate(mastering_sessionsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return mastering_sessions;
|
|
}
|
|
|
|
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 mastering_sessions = await db.mastering_sessions.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
|
|
if (data.lufs_measured !== undefined) updatePayload.lufs_measured = data.lufs_measured;
|
|
|
|
|
|
if (data.true_peak_measured_db !== undefined) updatePayload.true_peak_measured_db = data.true_peak_measured_db;
|
|
|
|
|
|
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
|
|
|
|
|
|
if (data.finished_at !== undefined) updatePayload.finished_at = data.finished_at;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await mastering_sessions.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.song !== undefined) {
|
|
await mastering_sessions.setSong(
|
|
|
|
data.song,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.requested_user !== undefined) {
|
|
await mastering_sessions.setRequested_user(
|
|
|
|
data.requested_user,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.preset !== undefined) {
|
|
await mastering_sessions.setPreset(
|
|
|
|
data.preset,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.input_mix_asset !== undefined) {
|
|
await mastering_sessions.setInput_mix_asset(
|
|
|
|
data.input_mix_asset,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.result_master_asset !== undefined) {
|
|
await mastering_sessions.setResult_master_asset(
|
|
|
|
data.result_master_asset,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.organizations !== undefined) {
|
|
await mastering_sessions.setOrganizations(
|
|
|
|
data.organizations,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return mastering_sessions;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const mastering_sessions = await db.mastering_sessions.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of mastering_sessions) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of mastering_sessions) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return mastering_sessions;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const mastering_sessions = await db.mastering_sessions.findByPk(id, options);
|
|
|
|
await mastering_sessions.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await mastering_sessions.destroy({
|
|
transaction
|
|
});
|
|
|
|
return mastering_sessions;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const mastering_sessions = await db.mastering_sessions.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!mastering_sessions) {
|
|
return mastering_sessions;
|
|
}
|
|
|
|
const output = mastering_sessions.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.song = await mastering_sessions.getSong({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.requested_user = await mastering_sessions.getRequested_user({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.preset = await mastering_sessions.getPreset({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.input_mix_asset = await mastering_sessions.getInput_mix_asset({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.result_master_asset = await mastering_sessions.getResult_master_asset({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.organizations = await mastering_sessions.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.songs,
|
|
as: 'song',
|
|
|
|
where: filter.song ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.song.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
title: {
|
|
[Op.or]: filter.song.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'requested_user',
|
|
|
|
where: filter.requested_user ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.requested_user.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.requested_user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.mastering_presets,
|
|
as: 'preset',
|
|
|
|
where: filter.preset ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.preset.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.preset.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.assets,
|
|
as: 'input_mix_asset',
|
|
|
|
where: filter.input_mix_asset ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.input_mix_asset.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.input_mix_asset.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.assets,
|
|
as: 'result_master_asset',
|
|
|
|
where: filter.result_master_asset ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.result_master_asset.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.result_master_asset.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.lufs_measuredRange) {
|
|
const [start, end] = filter.lufs_measuredRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
lufs_measured: {
|
|
...where.lufs_measured,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
lufs_measured: {
|
|
...where.lufs_measured,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.true_peak_measured_dbRange) {
|
|
const [start, end] = filter.true_peak_measured_dbRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
true_peak_measured_db: {
|
|
...where.true_peak_measured_db,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
true_peak_measured_db: {
|
|
...where.true_peak_measured_db,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.started_atRange) {
|
|
const [start, end] = filter.started_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
started_at: {
|
|
...where.started_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
started_at: {
|
|
...where.started_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.finished_atRange) {
|
|
const [start, end] = filter.finished_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
finished_at: {
|
|
...where.finished_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
finished_at: {
|
|
...where.finished_at,
|
|
[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.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.mastering_sessions.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(
|
|
'mastering_sessions',
|
|
'status',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.mastering_sessions.findAll({
|
|
attributes: [ 'id', 'status' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['status', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.status,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|