616 lines
15 KiB
JavaScript
616 lines
15 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 Ledger_entriesDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const ledger_entries = await db.ledger_entries.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
entry_type: data.entry_type
|
|
||
|
|
null
|
|
,
|
|
|
|
amount: data.amount
|
|
||
|
|
null
|
|
,
|
|
|
|
description: data.description
|
|
||
|
|
null
|
|
,
|
|
|
|
posted_at: data.posted_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await ledger_entries.setUser( data.user || null, {
|
|
transaction,
|
|
});
|
|
|
|
await ledger_entries.setTask_completion( data.task_completion || null, {
|
|
transaction,
|
|
});
|
|
|
|
await ledger_entries.setWithdrawal_request( data.withdrawal_request || null, {
|
|
transaction,
|
|
});
|
|
|
|
await ledger_entries.setReferral( data.referral || null, {
|
|
transaction,
|
|
});
|
|
|
|
await ledger_entries.setPerformed_by_user( data.performed_by_user || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ledger_entries;
|
|
}
|
|
|
|
|
|
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 ledger_entriesData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
entry_type: item.entry_type
|
|
||
|
|
null
|
|
,
|
|
|
|
amount: item.amount
|
|
||
|
|
null
|
|
,
|
|
|
|
description: item.description
|
|
||
|
|
null
|
|
,
|
|
|
|
posted_at: item.posted_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const ledger_entries = await db.ledger_entries.bulkCreate(ledger_entriesData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return ledger_entries;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const ledger_entries = await db.ledger_entries.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.entry_type !== undefined) updatePayload.entry_type = data.entry_type;
|
|
|
|
|
|
if (data.amount !== undefined) updatePayload.amount = data.amount;
|
|
|
|
|
|
if (data.description !== undefined) updatePayload.description = data.description;
|
|
|
|
|
|
if (data.posted_at !== undefined) updatePayload.posted_at = data.posted_at;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await ledger_entries.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.user !== undefined) {
|
|
await ledger_entries.setUser(
|
|
|
|
data.user,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.task_completion !== undefined) {
|
|
await ledger_entries.setTask_completion(
|
|
|
|
data.task_completion,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.withdrawal_request !== undefined) {
|
|
await ledger_entries.setWithdrawal_request(
|
|
|
|
data.withdrawal_request,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.referral !== undefined) {
|
|
await ledger_entries.setReferral(
|
|
|
|
data.referral,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.performed_by_user !== undefined) {
|
|
await ledger_entries.setPerformed_by_user(
|
|
|
|
data.performed_by_user,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ledger_entries;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const ledger_entries = await db.ledger_entries.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of ledger_entries) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of ledger_entries) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return ledger_entries;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const ledger_entries = await db.ledger_entries.findByPk(id, options);
|
|
|
|
await ledger_entries.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await ledger_entries.destroy({
|
|
transaction
|
|
});
|
|
|
|
return ledger_entries;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const ledger_entries = await db.ledger_entries.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!ledger_entries) {
|
|
return ledger_entries;
|
|
}
|
|
|
|
const output = ledger_entries.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.user = await ledger_entries.getUser({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.task_completion = await ledger_entries.getTask_completion({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.withdrawal_request = await ledger_entries.getWithdrawal_request({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.referral = await ledger_entries.getReferral({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.performed_by_user = await ledger_entries.getPerformed_by_user({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
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 = [
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'user',
|
|
|
|
where: filter.user ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.task_completions,
|
|
as: 'task_completion',
|
|
|
|
where: filter.task_completion ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.task_completion.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
proof_note: {
|
|
[Op.or]: filter.task_completion.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.withdrawal_requests,
|
|
as: 'withdrawal_request',
|
|
|
|
where: filter.withdrawal_request ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.withdrawal_request.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
transaction_reference: {
|
|
[Op.or]: filter.withdrawal_request.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.referrals,
|
|
as: 'referral',
|
|
|
|
where: filter.referral ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.referral.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
status: {
|
|
[Op.or]: filter.referral.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'performed_by_user',
|
|
|
|
where: filter.performed_by_user ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.performed_by_user.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.performed_by_user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.description) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'ledger_entries',
|
|
'description',
|
|
filter.description,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.amountRange) {
|
|
const [start, end] = filter.amountRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
amount: {
|
|
...where.amount,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
amount: {
|
|
...where.amount,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.posted_atRange) {
|
|
const [start, end] = filter.posted_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
posted_at: {
|
|
...where.posted_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
posted_at: {
|
|
...where.posted_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.entry_type) {
|
|
where = {
|
|
...where,
|
|
entry_type: filter.entry_type,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.ledger_entries.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(
|
|
'ledger_entries',
|
|
'description',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.ledger_entries.findAll({
|
|
attributes: [ 'id', 'description' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['description', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.description,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|