Files
sure/app/models/lunchflow_account.rb
soky srm ba266986d4 FIX pull fresh accounts from API (#385)
* FIX pull fresh accounts from API

* FIX in memory accouts
2025-11-28 20:42:57 +01:00

62 lines
1.9 KiB
Ruby

class LunchflowAccount < ApplicationRecord
include CurrencyNormalizable
belongs_to :lunchflow_item
# New association through account_providers
has_one :account_provider, as: :provider, dependent: :destroy
has_one :account, through: :account_provider, source: :account
has_one :linked_account, through: :account_provider, source: :account
validates :name, :currency, presence: true
# Helper to get account using account_providers system
def current_account
account
end
def upsert_lunchflow_snapshot!(account_snapshot)
# Convert to symbol keys or handle both string and symbol keys
snapshot = account_snapshot.with_indifferent_access
# Map Lunchflow field names to our field names
# Lunchflow API returns: { id, name, institution_name, institution_logo, provider, currency, status }
# Build display name: "Institution Name - Account Name" if institution is present
display_name = if snapshot[:institution_name].present?
"#{snapshot[:institution_name]} - #{snapshot[:name]}"
else
snapshot[:name]
end
assign_attributes(
current_balance: nil, # Balance not provided by accounts endpoint
currency: parse_currency(snapshot[:currency]) || "USD",
name: display_name,
account_id: snapshot[:id].to_s,
account_status: snapshot[:status],
provider: snapshot[:provider],
institution_metadata: {
name: snapshot[:institution_name],
logo: snapshot[:institution_logo]
}.compact,
raw_payload: account_snapshot
)
save!
end
def upsert_lunchflow_transactions_snapshot!(transactions_snapshot)
assign_attributes(
raw_transactions_payload: transactions_snapshot
)
save!
end
private
def log_invalid_currency(currency_value)
Rails.logger.warn("Invalid currency code '#{currency_value}' for LunchFlow account #{id}, defaulting to USD")
end
end