641 lines
15 KiB
JavaScript
641 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 TickersDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const tickers = await db.tickers.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
symbol: data.symbol
|
|
||
|
|
null
|
|
,
|
|
|
|
name: data.name
|
|
||
|
|
null
|
|
,
|
|
|
|
asset_class: data.asset_class
|
|
||
|
|
null
|
|
,
|
|
|
|
exchange: data.exchange
|
|
||
|
|
null
|
|
,
|
|
|
|
currency: data.currency
|
|
||
|
|
null
|
|
,
|
|
|
|
country: data.country
|
|
||
|
|
null
|
|
,
|
|
|
|
sector: data.sector
|
|
||
|
|
null
|
|
,
|
|
|
|
industry: data.industry
|
|
||
|
|
null
|
|
,
|
|
|
|
is_active: data.is_active
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
last_refreshed_at: data.last_refreshed_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await tickers.setOrganizations( data.organizations || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return tickers;
|
|
}
|
|
|
|
|
|
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 tickersData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
symbol: item.symbol
|
|
||
|
|
null
|
|
,
|
|
|
|
name: item.name
|
|
||
|
|
null
|
|
,
|
|
|
|
asset_class: item.asset_class
|
|
||
|
|
null
|
|
,
|
|
|
|
exchange: item.exchange
|
|
||
|
|
null
|
|
,
|
|
|
|
currency: item.currency
|
|
||
|
|
null
|
|
,
|
|
|
|
country: item.country
|
|
||
|
|
null
|
|
,
|
|
|
|
sector: item.sector
|
|
||
|
|
null
|
|
,
|
|
|
|
industry: item.industry
|
|
||
|
|
null
|
|
,
|
|
|
|
is_active: item.is_active
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
last_refreshed_at: item.last_refreshed_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const tickers = await db.tickers.bulkCreate(tickersData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return tickers;
|
|
}
|
|
|
|
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 tickers = await db.tickers.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.symbol !== undefined) updatePayload.symbol = data.symbol;
|
|
|
|
|
|
if (data.name !== undefined) updatePayload.name = data.name;
|
|
|
|
|
|
if (data.asset_class !== undefined) updatePayload.asset_class = data.asset_class;
|
|
|
|
|
|
if (data.exchange !== undefined) updatePayload.exchange = data.exchange;
|
|
|
|
|
|
if (data.currency !== undefined) updatePayload.currency = data.currency;
|
|
|
|
|
|
if (data.country !== undefined) updatePayload.country = data.country;
|
|
|
|
|
|
if (data.sector !== undefined) updatePayload.sector = data.sector;
|
|
|
|
|
|
if (data.industry !== undefined) updatePayload.industry = data.industry;
|
|
|
|
|
|
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
|
|
|
|
|
|
if (data.last_refreshed_at !== undefined) updatePayload.last_refreshed_at = data.last_refreshed_at;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await tickers.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.organizations !== undefined) {
|
|
await tickers.setOrganizations(
|
|
|
|
data.organizations,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return tickers;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const tickers = await db.tickers.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of tickers) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of tickers) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return tickers;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const tickers = await db.tickers.findByPk(id, options);
|
|
|
|
await tickers.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await tickers.destroy({
|
|
transaction
|
|
});
|
|
|
|
return tickers;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const tickers = await db.tickers.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!tickers) {
|
|
return tickers;
|
|
}
|
|
|
|
const output = tickers.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.watchlist_items_ticker = await tickers.getWatchlist_items_ticker({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.transactions_ticker = await tickers.getTransactions_ticker({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.alerts_ticker = await tickers.getAlerts_ticker({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.news_articles_ticker = await tickers.getNews_articles_ticker({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.organizations = await tickers.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.organizations,
|
|
as: 'organizations',
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.symbol) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'symbol',
|
|
filter.symbol,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.name) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'name',
|
|
filter.name,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.exchange) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'exchange',
|
|
filter.exchange,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.currency) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'currency',
|
|
filter.currency,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.country) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'country',
|
|
filter.country,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.sector) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'sector',
|
|
filter.sector,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.industry) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'tickers',
|
|
'industry',
|
|
filter.industry,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.last_refreshed_atRange) {
|
|
const [start, end] = filter.last_refreshed_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
last_refreshed_at: {
|
|
...where.last_refreshed_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
last_refreshed_at: {
|
|
...where.last_refreshed_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.asset_class) {
|
|
where = {
|
|
...where,
|
|
asset_class: filter.asset_class,
|
|
};
|
|
}
|
|
|
|
if (filter.is_active) {
|
|
where = {
|
|
...where,
|
|
is_active: filter.is_active,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
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.tickers.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(
|
|
'tickers',
|
|
'symbol',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.tickers.findAll({
|
|
attributes: [ 'id', 'symbol' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['symbol', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.symbol,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|