mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
* Slight enhance of Coinbase tests Continual enhance of Coinbase tests The revamp continues Oh jeez the Orderbook part's unfinished don't look Coinbase revamp, Orderbook still unfinished * Coinbase revamp; CreateReport is still WIP * More coinbase improvements; onto sandbox testing * Coinbase revamp continues * Coinbase revamp continues * Coinbasepro revamp is ceaseless * Coinbase revamp, starting on advanced trade API * Coinbase Advanced Trade Starts in Ernest V3 done, onto V2 Coinbase revamp nears completion Coinbase revamp nears completion Test commit should fail Coinbase revamp nears completion * Coinbase revamp stage wrapper * Coinbase wrapper coherence continues * Coinbase wrapper continues writhing * Coinbase wrapper & codebase cleanup * Coinbase updates & wrap progress * More Coinbase wrapper progress * Wrapper is wrapped, kinda * Test & type checking * Coinbase REST revamp finished * Post-merge fix * WS revamp begins * WS Main Revamp Done? * CB websocket tidying up * Coinbase WS wrapperupperer * Coinbase revamp done?? * Linter progress * Continued lint cleanup * Further lint cleanup * Increased lint coverage * Does this fix all sloppy reassigns & shadowing? * Undoing retry policy change * Documentation regeneration * Coinbase code improvements * Providing warning about known issue * Updating an error to new format * Making gocritic happy * Review adherence * Endpoints moved to V3 & nil pointer fixes * Removing seemingly superfluous constant * Glorious improvements * Removing unused error * Partial public endpoint addition * Slight improvements * Wrapper improvements; still a few errors left in other packages * A lil Coinbase progress * Json cleaning * Lint appeasement * Config repair * Config fix (real) * Little fix * New public endpoint incorporation * Additional fixes * Improvements & Appeasements * LineSaver * Additional fixes * Another fix * Fixing picked nits * Quick fixies * Lil fixes * Subscriptions: Add List.Enabled * CoinbasePro: Add subscription templating * fixup! CoinbasePro: Add subscription templating * fixup! CoinbasePro: Add subscription templating * Comment fix * Subsequent fixes * Issues hopefully fixed * Lint fix * Glorious fixes * Json formatting * ShazNits * (L/N)i(n/)t * Adding a test * Tiny test improvement * Template patch testing * Fixes * Further shaznits * Lint nit * JWT move and other fixes * Small nits * Shaznit, singular * Post-merge fix * Post-merge fixes * Typo fix * Some glorious nits * Required changes * Stop going * Alias attempt * Alias fix & test cleanup * Test fix * GetDepositAddress logic improvement * Status update: Fixed * Lint fix * Happy birthday to PR 1480 * Cleanups * Necessary nit corrections * Fixing sillybug * As per request * Programming progress * Order fixes * Further fixies * Test fix * Pre-merge fixes * More shaznits * Context * Sonic error handling * Import fix * Better Sonic error handling * Perfect Sonic error handling? * F purge * Coinbase improvements * API Update Conformity * Coinbase continuation * Coinbase order improvements * Coinbase order improvements * CreateOrderConfig improvements * Managing API updates * Coinbase API update progression * jwt rename * Comment link fix * Coinbase v2 cleanup * Post-merge fixes * Review fixes * GK's suggestions * Linter fix * Minor gbjk fixes * Nit fixes * Merge fix * Lint fixes * Coinbase rename stage 1 * Coinbase rename stage 2 * Coinbase rename stage 3 * Coinbase rename stage 4 * Coinbase rename final fix * Coinbase: PoC on converting to request structs * Applying requested changes * Many review fixes, handled * Thrashed by nits * More minor modifications * The last nit!? --------- Co-authored-by: Gareth Kirwan <gbjkirwan@gmail.com>
131 lines
3.3 KiB
Go
131 lines
3.3 KiB
Go
package engine
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"slices"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/thrasher-corp/gocryptotrader/currency"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/deposit"
|
|
)
|
|
|
|
// vars related to the deposit address helpers
|
|
var (
|
|
ErrDepositAddressStoreIsNil = errors.New("deposit address store is nil")
|
|
ErrDepositAddressNotFound = errors.New("deposit address does not exist")
|
|
errDepositAddressChainNotFound = errors.New("deposit address for specified chain not found")
|
|
errNoDepositAddressesRetrieved = errors.New("no deposit addresses retrieved")
|
|
)
|
|
|
|
// DepositAddressManager manages the exchange deposit address store
|
|
type DepositAddressManager struct {
|
|
m sync.RWMutex
|
|
store map[string]ExchangeDepositAddresses
|
|
}
|
|
|
|
// ExchangeDepositAddresses is a map of currencies to their deposit addresses
|
|
type ExchangeDepositAddresses map[string][]deposit.Address
|
|
|
|
// IsSynced returns whether or not the deposit address store has synced its data
|
|
func (m *DepositAddressManager) IsSynced() bool {
|
|
if m.store == nil {
|
|
return false
|
|
}
|
|
m.m.RLock()
|
|
defer m.m.RUnlock()
|
|
return len(m.store) > 0
|
|
}
|
|
|
|
// SetupDepositAddressManager returns a DepositAddressManager
|
|
func SetupDepositAddressManager() *DepositAddressManager {
|
|
return &DepositAddressManager{
|
|
store: make(map[string]ExchangeDepositAddresses),
|
|
}
|
|
}
|
|
|
|
// GetDepositAddressByExchangeAndCurrency returns a deposit address for the specified exchange and cryptocurrency
|
|
// if it exists
|
|
func (m *DepositAddressManager) GetDepositAddressByExchangeAndCurrency(exchName, chain string, currencyItem currency.Code) (deposit.Address, error) {
|
|
m.m.RLock()
|
|
defer m.m.RUnlock()
|
|
|
|
if len(m.store) == 0 {
|
|
return deposit.Address{}, ErrDepositAddressStoreIsNil
|
|
}
|
|
|
|
r, ok := m.store[strings.ToUpper(exchName)]
|
|
if !ok {
|
|
return deposit.Address{}, ErrExchangeNotFound
|
|
}
|
|
|
|
addr, ok := r[strings.ToUpper(currencyItem.String())]
|
|
if !ok {
|
|
return deposit.Address{}, ErrDepositAddressNotFound
|
|
}
|
|
|
|
if len(addr) == 0 {
|
|
return deposit.Address{}, errNoDepositAddressesRetrieved
|
|
}
|
|
|
|
if chain != "" {
|
|
for x := range addr {
|
|
if strings.EqualFold(addr[x].Chain, chain) {
|
|
return addr[x], nil
|
|
}
|
|
}
|
|
return deposit.Address{}, errDepositAddressChainNotFound
|
|
}
|
|
|
|
for x := range addr {
|
|
if strings.EqualFold(addr[x].Chain, currencyItem.String()) {
|
|
return addr[x], nil
|
|
}
|
|
}
|
|
return addr[0], nil
|
|
}
|
|
|
|
// GetDepositAddressesByExchange returns a list of cryptocurrency addresses for the specified
|
|
// exchange if they exist
|
|
func (m *DepositAddressManager) GetDepositAddressesByExchange(exchName string) (ExchangeDepositAddresses, error) {
|
|
m.m.RLock()
|
|
defer m.m.RUnlock()
|
|
|
|
if len(m.store) == 0 {
|
|
return nil, ErrDepositAddressStoreIsNil
|
|
}
|
|
|
|
r, ok := m.store[strings.ToUpper(exchName)]
|
|
if !ok {
|
|
return nil, ErrDepositAddressNotFound
|
|
}
|
|
|
|
cpy := make(ExchangeDepositAddresses, len(r))
|
|
for k, v := range r {
|
|
cpy[k] = slices.Clone(v)
|
|
}
|
|
return cpy, nil
|
|
}
|
|
|
|
// Sync synchronises all deposit addresses
|
|
func (m *DepositAddressManager) Sync(addresses map[string]ExchangeDepositAddresses) error {
|
|
if m == nil {
|
|
return fmt.Errorf("deposit address manager %w", ErrNilSubsystem)
|
|
}
|
|
m.m.Lock()
|
|
defer m.m.Unlock()
|
|
if m.store == nil {
|
|
return ErrDepositAddressStoreIsNil
|
|
}
|
|
|
|
for k, v := range addresses {
|
|
r := make(ExchangeDepositAddresses)
|
|
for w, x := range v {
|
|
r[strings.ToUpper(w)] = x
|
|
}
|
|
m.store[strings.ToUpper(k)] = r
|
|
}
|
|
return nil
|
|
}
|