mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* Initial enable banking implementation * Handle multiple connections * Amount fixes * Account type mapping * Add option to skip accounts * Update schema.rb * Transaction fixes * Provider fixes * FIX account identifier * FIX support unlinking * UI style fixes * FIX safe redirect and brakeman issue * FIX - pagination max fix - wrap crud in transaction logic * FIX api uid access - The Enable Banking API expects the UUID (uid from the API response) to fetch balances/transactions, not the identification_hash * FIX add new connection * FIX erb code * Alert/notice box overflow protection * Give alert/notification boxes room to grow (3 lines max) * Add "Enable Banking (beta)" to `/settings/bank_sync` * Make Enable Banking section collapsible like all others * Add callback hint to error message --------- Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
63 lines
2.4 KiB
Ruby
63 lines
2.4 KiB
Ruby
class EnableBankingItem::Syncer
|
|
attr_reader :enable_banking_item
|
|
|
|
def initialize(enable_banking_item)
|
|
@enable_banking_item = enable_banking_item
|
|
end
|
|
|
|
def perform_sync(sync)
|
|
# Check if session is valid before syncing
|
|
unless enable_banking_item.session_valid?
|
|
sync.update!(status_text: "Session expired - re-authorization required") if sync.respond_to?(:status_text)
|
|
enable_banking_item.update!(status: :requires_update)
|
|
raise StandardError.new("Enable Banking session has expired. Please re-authorize.")
|
|
end
|
|
|
|
# Phase 1: Import data from Enable Banking API
|
|
sync.update!(status_text: "Importing accounts from Enable Banking...") if sync.respond_to?(:status_text)
|
|
import_result = enable_banking_item.import_latest_enable_banking_data
|
|
|
|
# Phase 2: Check account setup status and collect sync statistics
|
|
sync.update!(status_text: "Checking account configuration...") if sync.respond_to?(:status_text)
|
|
total_accounts = enable_banking_item.enable_banking_accounts.count
|
|
|
|
linked_accounts = enable_banking_item.enable_banking_accounts.joins(:account_provider).joins(:account).merge(Account.visible)
|
|
unlinked_accounts = enable_banking_item.enable_banking_accounts.left_joins(:account_provider).where(account_providers: { id: nil })
|
|
|
|
sync_stats = {
|
|
total_accounts: total_accounts,
|
|
linked_accounts: linked_accounts.count,
|
|
unlinked_accounts: unlinked_accounts.count
|
|
}
|
|
|
|
if unlinked_accounts.any?
|
|
enable_banking_item.update!(pending_account_setup: true)
|
|
sync.update!(status_text: "#{unlinked_accounts.count} accounts need setup...") if sync.respond_to?(:status_text)
|
|
else
|
|
enable_banking_item.update!(pending_account_setup: false)
|
|
end
|
|
|
|
# Phase 3: Process transactions for linked accounts only
|
|
if linked_accounts.any?
|
|
sync.update!(status_text: "Processing transactions...") if sync.respond_to?(:status_text)
|
|
enable_banking_item.process_accounts
|
|
|
|
# Phase 4: Schedule balance calculations for linked accounts
|
|
sync.update!(status_text: "Calculating balances...") if sync.respond_to?(:status_text)
|
|
enable_banking_item.schedule_account_syncs(
|
|
parent_sync: sync,
|
|
window_start_date: sync.window_start_date,
|
|
window_end_date: sync.window_end_date
|
|
)
|
|
end
|
|
|
|
if sync.respond_to?(:sync_stats)
|
|
sync.update!(sync_stats: sync_stats)
|
|
end
|
|
end
|
|
|
|
def perform_post_sync
|
|
# no-op
|
|
end
|
|
end
|