mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
* Enhance security information retrieval and handling - Add support for operating MIC codes in security info fetching - Update security uniqueness validation to handle unknown securities - Improve security creation and update logic in Plaid investment sync - Update combobox and view components to handle operating MIC codes - Add unknown flag for securities with incomplete information * Update schema.rb * Refactor the need for mic codes * Don't fetch prices unless a security has the necessary mic code * Deduplication * Lint * Update Securities and Plaid Investment Sync - Modify PlaidInvestmentSync to return plaid_security for USD cash - Add non-null constraint to Securities ticker column - Update Securities fixture to use exchange_operating_mic instead of exchange_mic --------- Signed-off-by: Josh Pigford <josh@joshpigford.com>
97 lines
3.3 KiB
Ruby
97 lines
3.3 KiB
Ruby
class PlaidInvestmentSync
|
|
attr_reader :plaid_account
|
|
|
|
def initialize(plaid_account)
|
|
@plaid_account = plaid_account
|
|
end
|
|
|
|
def sync!(transactions: [], holdings: [], securities: [])
|
|
@transactions = transactions
|
|
@holdings = holdings
|
|
@securities = securities
|
|
|
|
PlaidAccount.transaction do
|
|
sync_transactions!
|
|
sync_holdings!
|
|
end
|
|
end
|
|
|
|
private
|
|
attr_reader :transactions, :holdings, :securities
|
|
|
|
def sync_transactions!
|
|
transactions.each do |transaction|
|
|
security, plaid_security = get_security(transaction.security_id, securities)
|
|
|
|
next if security.nil? && plaid_security.nil?
|
|
|
|
if transaction.type == "cash" || plaid_security.ticker_symbol == "CUR:USD"
|
|
new_transaction = plaid_account.account.entries.find_or_create_by!(plaid_id: transaction.investment_transaction_id) do |t|
|
|
t.name = transaction.name
|
|
t.amount = transaction.amount
|
|
t.currency = transaction.iso_currency_code
|
|
t.date = transaction.date
|
|
t.entryable = Account::Transaction.new
|
|
end
|
|
else
|
|
new_transaction = plaid_account.account.entries.find_or_create_by!(plaid_id: transaction.investment_transaction_id) do |t|
|
|
t.name = transaction.name
|
|
t.amount = transaction.quantity * transaction.price
|
|
t.currency = transaction.iso_currency_code
|
|
t.date = transaction.date
|
|
t.entryable = Account::Trade.new(
|
|
security: security,
|
|
qty: transaction.quantity,
|
|
price: transaction.price,
|
|
currency: transaction.iso_currency_code
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
def sync_holdings!
|
|
# Update only the current day holdings. The account sync will populate historical values based on trades.
|
|
holdings.each do |holding|
|
|
internal_security, _plaid_security = get_security(holding.security_id, securities)
|
|
|
|
next if internal_security.nil?
|
|
|
|
existing_holding = plaid_account.account.holdings.find_or_initialize_by(
|
|
security: internal_security,
|
|
date: Date.current,
|
|
currency: holding.iso_currency_code
|
|
)
|
|
|
|
existing_holding.qty = holding.quantity
|
|
existing_holding.price = holding.institution_price
|
|
existing_holding.amount = holding.quantity * holding.institution_price
|
|
existing_holding.save!
|
|
end
|
|
end
|
|
|
|
def get_security(plaid_security_id, securities)
|
|
plaid_security = securities.find { |s| s.security_id == plaid_security_id }
|
|
|
|
return [ nil, nil ] if plaid_security.nil?
|
|
|
|
plaid_security = if plaid_security.ticker_symbol.present?
|
|
plaid_security
|
|
else
|
|
securities.find { |s| s.security_id == plaid_security.proxy_security_id }
|
|
end
|
|
|
|
return [ nil, nil ] if plaid_security.nil? || plaid_security.ticker_symbol.blank?
|
|
return [ nil, plaid_security ] if plaid_security.ticker_symbol == "CUR:USD" # internally, we do not consider cash a security and track it separately
|
|
|
|
operating_mic = plaid_security.market_identifier_code
|
|
|
|
# Find any matching security
|
|
security = Security.find_or_create_by!(
|
|
ticker: plaid_security.ticker_symbol,
|
|
exchange_operating_mic: operating_mic
|
|
)
|
|
|
|
[ security, plaid_security ]
|
|
end
|
|
end
|