2024-07-10 11:22:59 -04:00
|
|
|
class Account::Sync < ApplicationRecord
|
|
|
|
belongs_to :account
|
|
|
|
|
|
|
|
enum :status, { pending: "pending", syncing: "syncing", completed: "completed", failed: "failed" }
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def for(account, start_date: nil)
|
|
|
|
create! account: account, start_date: start_date
|
|
|
|
end
|
|
|
|
|
|
|
|
def latest
|
|
|
|
order(created_at: :desc).first
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
start!
|
|
|
|
|
|
|
|
sync_balances
|
2024-07-16 09:26:49 -04:00
|
|
|
sync_holdings
|
2024-07-10 11:22:59 -04:00
|
|
|
|
|
|
|
complete!
|
|
|
|
rescue StandardError => error
|
|
|
|
fail! error
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def sync_balances
|
|
|
|
syncer = Account::Balance::Syncer.new(account, start_date: start_date)
|
|
|
|
|
|
|
|
syncer.run
|
|
|
|
|
|
|
|
append_warnings(syncer.warnings)
|
|
|
|
end
|
|
|
|
|
2024-07-16 09:26:49 -04:00
|
|
|
def sync_holdings
|
|
|
|
syncer = Account::Holding::Syncer.new(account, start_date: start_date)
|
|
|
|
|
|
|
|
syncer.run
|
|
|
|
|
|
|
|
append_warnings(syncer.warnings)
|
|
|
|
end
|
|
|
|
|
2024-07-10 11:22:59 -04:00
|
|
|
def append_warnings(new_warnings)
|
|
|
|
update! warnings: warnings + new_warnings
|
|
|
|
end
|
|
|
|
|
|
|
|
def start!
|
|
|
|
update! status: "syncing", last_ran_at: Time.now
|
2024-07-18 14:39:38 -04:00
|
|
|
broadcast_start
|
2024-07-10 11:22:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def complete!
|
|
|
|
update! status: "completed"
|
2024-07-18 14:39:38 -04:00
|
|
|
broadcast_result type: "notice", message: "Sync complete"
|
2024-07-10 11:22:59 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def fail!(error)
|
|
|
|
update! status: "failed", error: error.message
|
2024-07-18 14:39:38 -04:00
|
|
|
broadcast_result type: "alert", message: error.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def broadcast_start
|
|
|
|
broadcast_append_to(
|
|
|
|
[ account.family, :notifications ],
|
|
|
|
target: "notification-tray",
|
|
|
|
partial: "shared/notification",
|
|
|
|
locals: { id: id, type: "processing", message: "Syncing account balances" }
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def broadcast_result(type:, message:)
|
|
|
|
broadcast_remove_to account.family, :notifications, target: id # Remove persistent syncing notification
|
|
|
|
broadcast_append_to(
|
|
|
|
[ account.family, :notifications ],
|
|
|
|
target: "notification-tray",
|
|
|
|
partial: "shared/notification",
|
|
|
|
locals: { type: type, message: message }
|
|
|
|
)
|
2024-07-25 16:46:04 -04:00
|
|
|
account.family.broadcast_refresh
|
2024-07-10 11:22:59 -04:00
|
|
|
end
|
|
|
|
end
|