mirror of
https://github.com/we-promise/sure.git
synced 2026-05-25 05:24:57 +00:00
* feat(providers): add Kraken exchange sync Adds family-scoped Kraken API-key connections, read-only balance and trade import, account setup/linking flows, provider status wiring, and focused test coverage. Closes #1758 * test(providers): avoid Kraken sample secret false positive * fix(providers): address Kraken review findings * fix(providers): address Kraken review cleanup * test(imports): stabilize transaction import ordering
154 lines
4.5 KiB
Ruby
154 lines
4.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class KrakenItem < ApplicationRecord
|
|
include Syncable, Provided, Unlinking, Encryptable
|
|
|
|
enum :status, { good: "good", requires_update: "requires_update" }, default: :good
|
|
|
|
if encryption_ready?
|
|
encrypts :api_key, deterministic: true
|
|
encrypts :api_secret
|
|
encrypts :raw_payload
|
|
end
|
|
|
|
validates :name, presence: true
|
|
validates :api_key, presence: true
|
|
validates :api_secret, presence: true
|
|
|
|
belongs_to :family
|
|
has_one_attached :logo, dependent: :purge_later
|
|
|
|
has_many :kraken_accounts, dependent: :destroy
|
|
has_many :accounts, through: :kraken_accounts
|
|
|
|
scope :active, -> { where(scheduled_for_deletion: false) }
|
|
scope :syncable, -> { active }
|
|
scope :ordered, -> { order(created_at: :desc) }
|
|
scope :needs_update, -> { where(status: :requires_update) }
|
|
scope :credentials_configured, -> { where.not(api_key: [ nil, "" ]).where.not(api_secret: nil) }
|
|
|
|
before_validation :strip_credentials
|
|
|
|
def destroy_later
|
|
update!(scheduled_for_deletion: true)
|
|
DestroyJob.perform_later(self)
|
|
end
|
|
|
|
def import_latest_kraken_data
|
|
provider = kraken_provider
|
|
raise StandardError, "Kraken credentials not configured" unless provider
|
|
|
|
KrakenItem::Importer.new(self, kraken_provider: provider).import
|
|
rescue StandardError => e
|
|
Rails.logger.error "KrakenItem #{id} - Failed to import: #{e.full_message}"
|
|
raise
|
|
end
|
|
|
|
def process_accounts
|
|
return [] if kraken_accounts.empty?
|
|
|
|
results = []
|
|
kraken_accounts.joins(:account).merge(Account.visible).each do |kraken_account|
|
|
begin
|
|
result = KrakenAccount::Processor.new(kraken_account).process
|
|
results << { kraken_account_id: kraken_account.id, success: true, result: result }
|
|
rescue StandardError => e
|
|
Rails.logger.error "KrakenItem #{id} - Failed to process account #{kraken_account.id}: #{e.full_message}"
|
|
results << { kraken_account_id: kraken_account.id, success: false, error: e.message }
|
|
end
|
|
end
|
|
|
|
results
|
|
end
|
|
|
|
def schedule_account_syncs(parent_sync: nil, window_start_date: nil, window_end_date: nil)
|
|
return [] if accounts.empty?
|
|
|
|
accounts.visible.map do |account|
|
|
account.sync_later(
|
|
parent_sync: parent_sync,
|
|
window_start_date: window_start_date,
|
|
window_end_date: window_end_date
|
|
)
|
|
{ account_id: account.id, success: true }
|
|
rescue StandardError => e
|
|
Rails.logger.error "KrakenItem #{id} - Failed to schedule sync for account #{account.id}: #{e.full_message}"
|
|
{ account_id: account.id, success: false, error: e.message }
|
|
end
|
|
end
|
|
|
|
def upsert_kraken_snapshot!(payload)
|
|
update!(raw_payload: payload)
|
|
end
|
|
|
|
def has_completed_initial_setup?
|
|
accounts.any?
|
|
end
|
|
|
|
def sync_status_summary
|
|
total = total_accounts_count
|
|
linked = linked_accounts_count
|
|
unlinked = unlinked_accounts_count
|
|
|
|
if total.zero?
|
|
I18n.t("kraken_items.kraken_item.sync_status.no_accounts")
|
|
elsif unlinked.zero?
|
|
I18n.t("kraken_items.kraken_item.sync_status.all_synced", count: linked)
|
|
else
|
|
I18n.t("kraken_items.kraken_item.sync_status.partial_sync", linked_count: linked, unlinked_count: unlinked)
|
|
end
|
|
end
|
|
|
|
def linked_accounts_count
|
|
kraken_accounts.joins(:account_provider).count
|
|
end
|
|
|
|
def unlinked_accounts_count
|
|
kraken_accounts.left_joins(:account_provider).where(account_providers: { id: nil }).count
|
|
end
|
|
|
|
def total_accounts_count
|
|
kraken_accounts.count
|
|
end
|
|
|
|
def stale_rate_accounts
|
|
kraken_accounts
|
|
.joins(:account)
|
|
.where(accounts: { status: "active" })
|
|
.where("kraken_accounts.extra -> 'kraken' ->> 'stale_rate' = 'true'")
|
|
end
|
|
|
|
def institution_display_name
|
|
institution_name.presence || institution_domain.presence || name
|
|
end
|
|
|
|
def credentials_configured?
|
|
api_key.to_s.strip.present? && api_secret.to_s.strip.present?
|
|
end
|
|
|
|
def next_nonce!
|
|
with_lock do
|
|
candidate = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
|
|
candidate = last_nonce.to_i + 1 if candidate <= last_nonce.to_i
|
|
update!(last_nonce: candidate)
|
|
candidate.to_s
|
|
end
|
|
end
|
|
|
|
def set_kraken_institution_defaults!
|
|
update!(
|
|
institution_name: "Kraken",
|
|
institution_domain: "kraken.com",
|
|
institution_url: "https://www.kraken.com",
|
|
institution_color: "#5841D8"
|
|
)
|
|
end
|
|
|
|
private
|
|
|
|
def strip_credentials
|
|
self.api_key = api_key.to_s.strip if api_key_changed? && !api_key.nil?
|
|
self.api_secret = api_secret.to_s.strip if api_secret_changed? && !api_secret.nil?
|
|
end
|
|
end
|