2020-11-05 03:00:51 +00:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-23 08:39:48 +00:00
|
|
|
"errors"
|
2020-11-05 03:00:51 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
2021-03-13 12:49:51 +00:00
|
|
|
var ErrNotImplemented = errors.New("not implemented")
|
|
|
|
var ErrExchangeRewardServiceNotImplemented = errors.New("exchange does not implement ExchangeRewardService interface")
|
2021-02-23 08:39:48 +00:00
|
|
|
|
2020-11-05 03:00:51 +00:00
|
|
|
type SyncService struct {
|
2021-03-14 03:04:56 +00:00
|
|
|
TradeService *TradeService
|
|
|
|
OrderService *OrderService
|
|
|
|
RewardService *RewardService
|
|
|
|
WithdrawService *WithdrawService
|
|
|
|
DepositService *DepositService
|
2020-11-05 03:00:51 +00:00
|
|
|
}
|
2021-02-19 02:26:13 +00:00
|
|
|
|
|
|
|
// SyncSessionSymbols syncs the trades from the given exchange session
|
2021-02-19 02:42:24 +00:00
|
|
|
func (s *SyncService) SyncSessionSymbols(ctx context.Context, exchange types.Exchange, startTime time.Time, symbols ...string) error {
|
2021-02-19 02:26:13 +00:00
|
|
|
for _, symbol := range symbols {
|
2021-03-14 03:04:56 +00:00
|
|
|
if err := s.TradeService.Sync(ctx, exchange, symbol); err != nil {
|
2021-02-19 02:26:13 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-14 03:04:56 +00:00
|
|
|
if err := s.OrderService.Sync(ctx, exchange, symbol, startTime); err != nil {
|
2021-02-19 02:26:13 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-03-14 03:04:56 +00:00
|
|
|
}
|
2021-02-23 08:39:48 +00:00
|
|
|
|
2021-03-14 02:44:02 +00:00
|
|
|
if err := s.DepositService.Sync(ctx, exchange); err != nil {
|
|
|
|
if err != ErrNotImplemented {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.WithdrawService.Sync(ctx, exchange); err != nil {
|
|
|
|
if err != ErrNotImplemented {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-14 03:04:56 +00:00
|
|
|
if err := s.RewardService.Sync(ctx, exchange); err != nil {
|
2021-03-13 12:49:51 +00:00
|
|
|
if err != ErrExchangeRewardServiceNotImplemented {
|
2021-02-23 08:39:48 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-02-19 02:26:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|