mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-15 07:26:49 +00:00
* state: Add management system (init) * linter: fix * engine: gofmt * gct: after merge fixup * documentation: add * rpc: implement services for testing * gctcli: gofmt state_management.go * documentation: reinstate lost information * state: Add pair check to determine trading operation * exchanges: add interface for specific state scoped subsystem functionality * engine/order_man: reduce code footprint using new method * RPC: implement pair trading request and change exported name to something specific to state * engine: add tests * engine: Add to withdraw manager * documentation: reinstate soxipy in contrib. list * engine: const fake name * Glorious: NITERINOS * merge: fix issues * engine: csm incorporate service name into log output * engine: fix linter issues * gct: fix tests * currencystate: remove management type * rpc: fix tests * backtester: fix tests * Update engine/currency_state_manager.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * Update engine/currency_state_manager.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * Update exchanges/currencystate/currency_state.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * Update exchanges/alert/alert.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * Update exchanges/alert/alert.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * glorious: nits * config: integrate with config and remove flag delay adjustment * gctcli: fix issues after name changes * engine: gofmt manager file * Update engine/rpcserver.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * engine: Add enable/disable manager functions, add default popoulation for potential assets * linter: fix * engine/test: bump subsystem count * Update engine/currency_state_manager.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * Update exchanges/bithumb/bithumb.go Co-authored-by: Scott <gloriousCode@users.noreply.github.com> * glorious: nits addressed * alert: fix commenting for its generalized purpose * glorious: nits * engine: use standard string in log output * bitfinex: apply patch, thanks @thrasher- * bitfinex: fix spelling * engine/currencystate: Add logs/fix logs Co-authored-by: Scott <gloriousCode@users.noreply.github.com>
152 lines
4.2 KiB
Go
152 lines
4.2 KiB
Go
package engine
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
dbwithdraw "github.com/thrasher-corp/gocryptotrader/database/repository/withdraw"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/asset"
|
|
"github.com/thrasher-corp/gocryptotrader/exchanges/currencystate"
|
|
"github.com/thrasher-corp/gocryptotrader/log"
|
|
"github.com/thrasher-corp/gocryptotrader/portfolio/withdraw"
|
|
)
|
|
|
|
// SetupWithdrawManager creates a new withdraw manager
|
|
func SetupWithdrawManager(em iExchangeManager, pm iPortfolioManager, isDryRun bool) (*WithdrawManager, error) {
|
|
if em == nil {
|
|
return nil, errors.New("nil manager")
|
|
}
|
|
return &WithdrawManager{
|
|
exchangeManager: em,
|
|
portfolioManager: pm,
|
|
isDryRun: isDryRun,
|
|
}, nil
|
|
}
|
|
|
|
// SubmitWithdrawal performs validation and submits a new withdraw request to
|
|
// exchange
|
|
func (m *WithdrawManager) SubmitWithdrawal(ctx context.Context, req *withdraw.Request) (*withdraw.Response, error) {
|
|
if m == nil {
|
|
return nil, ErrNilSubsystem
|
|
}
|
|
if req == nil {
|
|
return nil, withdraw.ErrRequestCannotBeNil
|
|
}
|
|
|
|
exch, err := m.exchangeManager.GetExchangeByName(req.Exchange)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resp := &withdraw.Response{
|
|
Exchange: withdraw.ExchangeResponse{
|
|
Name: req.Exchange,
|
|
},
|
|
RequestDetails: *req,
|
|
}
|
|
|
|
// Determines if the currency can be withdrawn from the exchange
|
|
errF := exch.CanWithdraw(req.Currency, asset.Spot)
|
|
if errF != nil && !errors.Is(errF, currencystate.ErrCurrencyStateNotFound) { // Suppress not found error
|
|
return nil, errF
|
|
}
|
|
|
|
if m.isDryRun {
|
|
log.Warnln(log.Global, "Dry run enabled, no withdrawal request will be submitted or have an event created")
|
|
resp.ID = withdraw.DryRunID
|
|
resp.Exchange.Status = "dryrun"
|
|
resp.Exchange.ID = withdraw.DryRunID.String()
|
|
} else {
|
|
var ret *withdraw.ExchangeResponse
|
|
if req.Type == withdraw.Crypto {
|
|
if !m.portfolioManager.IsWhiteListed(req.Crypto.Address) {
|
|
return nil, withdraw.ErrStrAddressNotWhiteListed
|
|
}
|
|
if !m.portfolioManager.IsExchangeSupported(req.Exchange, req.Crypto.Address) {
|
|
return nil, withdraw.ErrStrExchangeNotSupportedByAddress
|
|
}
|
|
}
|
|
if req.Type == withdraw.Fiat {
|
|
ret, err = exch.WithdrawFiatFunds(ctx, req)
|
|
if err != nil {
|
|
resp.Exchange.Status = err.Error()
|
|
} else {
|
|
resp.Exchange.Status = ret.Status
|
|
resp.Exchange.ID = ret.ID
|
|
}
|
|
} else if req.Type == withdraw.Crypto {
|
|
ret, err = exch.WithdrawCryptocurrencyFunds(ctx, req)
|
|
if err != nil {
|
|
resp.Exchange.Status = err.Error()
|
|
} else {
|
|
resp.Exchange.Status = ret.Status
|
|
resp.Exchange.ID = ret.ID
|
|
}
|
|
}
|
|
}
|
|
if err == nil {
|
|
withdraw.Cache.Add(resp.ID, resp)
|
|
}
|
|
dbwithdraw.Event(resp)
|
|
return resp, err
|
|
}
|
|
|
|
// WithdrawalEventByID returns a withdrawal request by ID
|
|
func (m *WithdrawManager) WithdrawalEventByID(id string) (*withdraw.Response, error) {
|
|
if m == nil {
|
|
return nil, ErrNilSubsystem
|
|
}
|
|
v := withdraw.Cache.Get(id)
|
|
if v != nil {
|
|
return v.(*withdraw.Response), nil
|
|
}
|
|
|
|
l, err := dbwithdraw.GetEventByUUID(id)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%w %v", ErrWithdrawRequestNotFound, id)
|
|
}
|
|
withdraw.Cache.Add(id, l)
|
|
return l, nil
|
|
}
|
|
|
|
// WithdrawalEventByExchange returns a withdrawal request by ID
|
|
func (m *WithdrawManager) WithdrawalEventByExchange(exchange string, limit int) ([]*withdraw.Response, error) {
|
|
if m == nil {
|
|
return nil, ErrNilSubsystem
|
|
}
|
|
_, err := m.exchangeManager.GetExchangeByName(exchange)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return dbwithdraw.GetEventsByExchange(exchange, limit)
|
|
}
|
|
|
|
// WithdrawEventByDate returns a withdrawal request by ID
|
|
func (m *WithdrawManager) WithdrawEventByDate(exchange string, start, end time.Time, limit int) ([]*withdraw.Response, error) {
|
|
if m == nil {
|
|
return nil, ErrNilSubsystem
|
|
}
|
|
_, err := m.exchangeManager.GetExchangeByName(exchange)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return dbwithdraw.GetEventsByDate(exchange, start, end, limit)
|
|
}
|
|
|
|
// WithdrawalEventByExchangeID returns a withdrawal request by Exchange ID
|
|
func (m *WithdrawManager) WithdrawalEventByExchangeID(exchange, id string) (*withdraw.Response, error) {
|
|
if m == nil {
|
|
return nil, ErrNilSubsystem
|
|
}
|
|
_, err := m.exchangeManager.GetExchangeByName(exchange)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return dbwithdraw.GetEventByExchangeID(exchange, id)
|
|
}
|