2021-02-02 18:26:41 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2021-02-03 07:00:01 +00:00
|
|
|
"io/ioutil"
|
2021-02-06 08:38:00 +00:00
|
|
|
"math/rand"
|
2021-02-04 08:44:14 +00:00
|
|
|
"net"
|
2021-02-02 18:26:41 +00:00
|
|
|
"net/http"
|
2021-02-03 07:00:01 +00:00
|
|
|
"os"
|
2021-02-03 10:54:18 +00:00
|
|
|
"regexp"
|
2021-02-02 18:26:41 +00:00
|
|
|
"strconv"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gin-contrib/cors"
|
|
|
|
"github.com/gin-gonic/gin"
|
2021-02-03 09:27:18 +00:00
|
|
|
"github.com/joho/godotenv"
|
2021-02-02 18:26:41 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
2021-02-06 08:38:00 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2021-02-02 18:26:41 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/service"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
2021-02-04 05:48:21 +00:00
|
|
|
const DefaultBindAddress = "localhost:8080"
|
|
|
|
|
2021-02-04 05:29:43 +00:00
|
|
|
type Setup struct {
|
|
|
|
// Context is the trader context
|
|
|
|
Context context.Context
|
|
|
|
|
|
|
|
// Cancel is the trader context cancel function you want to cancel
|
|
|
|
Cancel context.CancelFunc
|
|
|
|
|
|
|
|
// Token is used for setup api authentication
|
|
|
|
Token string
|
2021-02-05 05:01:07 +00:00
|
|
|
|
|
|
|
BeforeRestart func()
|
2021-02-04 05:29:43 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 10:09:33 +00:00
|
|
|
type Server struct {
|
2021-02-04 05:48:21 +00:00
|
|
|
Config *bbgo.Config
|
|
|
|
Environ *bbgo.Environment
|
|
|
|
Trader *bbgo.Trader
|
|
|
|
Setup *Setup
|
|
|
|
OpenInBrowser bool
|
2021-02-04 06:44:48 +00:00
|
|
|
|
|
|
|
srv *http.Server
|
2021-02-03 10:09:33 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
func (s *Server) newEngine() *gin.Engine {
|
2021-02-02 18:26:41 +00:00
|
|
|
r := gin.Default()
|
|
|
|
r.Use(cors.New(cors.Config{
|
|
|
|
AllowOrigins: []string{"*"},
|
|
|
|
AllowHeaders: []string{"Origin", "Content-Type"},
|
|
|
|
ExposeHeaders: []string{"Content-Length"},
|
2021-02-04 05:23:05 +00:00
|
|
|
AllowMethods: []string{"GET", "POST", "PUT", "DELETE"},
|
2021-02-02 18:26:41 +00:00
|
|
|
AllowWebSockets: true,
|
|
|
|
AllowCredentials: true,
|
|
|
|
MaxAge: 12 * time.Hour,
|
|
|
|
}))
|
|
|
|
|
2021-02-04 06:00:41 +00:00
|
|
|
r.GET("/api/ping", s.ping)
|
2021-02-02 18:26:41 +00:00
|
|
|
|
2021-02-04 05:29:43 +00:00
|
|
|
if s.Setup != nil {
|
2021-02-04 05:56:36 +00:00
|
|
|
r.POST("/api/setup/test-db", s.setupTestDB)
|
|
|
|
r.POST("/api/setup/configure-db", s.setupConfigureDB)
|
2021-02-04 05:59:26 +00:00
|
|
|
r.POST("/api/setup/strategy/single/:id/session/:session", s.setupAddStrategy)
|
2021-02-04 06:00:41 +00:00
|
|
|
r.POST("/api/setup/save", s.setupSaveConfig)
|
|
|
|
r.POST("/api/setup/restart", s.setupRestart)
|
2021-02-02 18:26:41 +00:00
|
|
|
}
|
|
|
|
|
2021-02-20 03:54:48 +00:00
|
|
|
r.GET("/api/environment/syncing", func(c *gin.Context) {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"syncing": s.Environ.IsSyncing(),
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-02-20 03:56:39 +00:00
|
|
|
r.POST("/api/environment/sync", func(c *gin.Context) {
|
|
|
|
go func() {
|
2021-05-12 03:59:29 +00:00
|
|
|
if err := s.Environ.Sync(context.Background()); err != nil {
|
2021-02-20 03:56:39 +00:00
|
|
|
logrus.WithError(err).Error("sync error")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-02-02 18:26:41 +00:00
|
|
|
r.GET("/api/trades", func(c *gin.Context) {
|
2021-02-04 08:44:14 +00:00
|
|
|
if s.Environ.TradeService == nil {
|
2021-02-04 05:29:43 +00:00
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "database is not configured"})
|
2021-02-03 10:54:18 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-02 18:26:41 +00:00
|
|
|
exchange := c.Query("exchange")
|
|
|
|
symbol := c.Query("symbol")
|
|
|
|
gidStr := c.DefaultQuery("gid", "0")
|
|
|
|
lastGID, err := strconv.ParseInt(gidStr, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("last gid parse error")
|
|
|
|
c.Status(http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
trades, err := s.Environ.TradeService.Query(service.QueryTradesOptions{
|
2021-02-02 18:26:41 +00:00
|
|
|
Exchange: types.ExchangeName(exchange),
|
|
|
|
Symbol: symbol,
|
|
|
|
LastGID: lastGID,
|
|
|
|
Ordering: "DESC",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
c.Status(http.StatusBadRequest)
|
|
|
|
logrus.WithError(err).Error("order query error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"trades": trades,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
r.GET("/api/orders/closed", s.listClosedOrders)
|
|
|
|
r.GET("/api/trading-volume", s.tradingVolume)
|
2021-02-02 18:26:41 +00:00
|
|
|
|
|
|
|
r.POST("/api/sessions/test", func(c *gin.Context) {
|
2021-05-12 03:59:29 +00:00
|
|
|
var session bbgo.ExchangeSession
|
|
|
|
if err := c.BindJSON(&session); err != nil {
|
2021-02-02 18:26:41 +00:00
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-23 16:24:00 +00:00
|
|
|
err := bbgo.InitExchangeSession(session.ExchangeName.String(), &session, nil)
|
2021-02-02 18:26:41 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var anyErr error
|
2021-02-04 08:44:14 +00:00
|
|
|
_, openOrdersErr := session.Exchange.QueryOpenOrders(c, "BTCUSDT")
|
2021-02-02 18:26:41 +00:00
|
|
|
if openOrdersErr != nil {
|
|
|
|
anyErr = openOrdersErr
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
_, balanceErr := session.Exchange.QueryAccountBalances(c)
|
2021-02-02 18:26:41 +00:00
|
|
|
if balanceErr != nil {
|
|
|
|
anyErr = balanceErr
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": anyErr == nil,
|
|
|
|
"error": anyErr,
|
|
|
|
"balance": balanceErr == nil,
|
|
|
|
"openOrders": openOrdersErr == nil,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
r.GET("/api/sessions", func(c *gin.Context) {
|
2021-02-04 07:19:40 +00:00
|
|
|
var sessions []*bbgo.ExchangeSession
|
2021-02-04 08:44:14 +00:00
|
|
|
for _, session := range s.Environ.Sessions() {
|
2021-02-02 18:26:41 +00:00
|
|
|
sessions = append(sessions, session)
|
|
|
|
}
|
|
|
|
|
2021-02-04 07:19:40 +00:00
|
|
|
if len(sessions) == 0 {
|
|
|
|
c.JSON(http.StatusOK, gin.H{"sessions": []int{}})
|
|
|
|
}
|
|
|
|
|
2021-02-02 18:26:41 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{"sessions": sessions})
|
|
|
|
})
|
|
|
|
|
|
|
|
r.POST("/api/sessions", func(c *gin.Context) {
|
2021-05-12 03:59:29 +00:00
|
|
|
var session bbgo.ExchangeSession
|
|
|
|
if err := c.BindJSON(&session); err != nil {
|
2021-02-02 18:26:41 +00:00
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-23 16:24:00 +00:00
|
|
|
if err := bbgo.InitExchangeSession(session.ExchangeName.String(), &session, nil); err != nil {
|
2021-02-02 18:26:41 +00:00
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
if s.Config.Sessions == nil {
|
|
|
|
s.Config.Sessions = make(map[string]*bbgo.ExchangeSession)
|
2021-02-02 18:26:41 +00:00
|
|
|
}
|
2021-05-12 03:59:29 +00:00
|
|
|
s.Config.Sessions[session.Name] = &session
|
2021-02-02 18:26:41 +00:00
|
|
|
|
2021-05-12 03:59:29 +00:00
|
|
|
s.Environ.AddExchangeSession(session.Name, &session)
|
2021-02-02 18:26:41 +00:00
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
if err := session.Init(c, s.Environ); err != nil {
|
2021-02-02 18:26:41 +00:00
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
2021-02-02 18:26:41 +00:00
|
|
|
})
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
r.GET("/api/assets", s.listAssets)
|
|
|
|
r.GET("/api/sessions/:session", s.listSessions)
|
|
|
|
r.GET("/api/sessions/:session/trades", s.listSessionTrades)
|
|
|
|
r.GET("/api/sessions/:session/open-orders", s.listSessionOpenOrders)
|
|
|
|
r.GET("/api/sessions/:session/account", s.getSessionAccount)
|
|
|
|
r.GET("/api/sessions/:session/account/balances", s.getSessionAccountBalance)
|
2021-02-04 08:49:47 +00:00
|
|
|
r.GET("/api/sessions/:session/symbols", s.listSessionSymbols)
|
2021-02-02 18:26:41 +00:00
|
|
|
|
|
|
|
r.GET("/api/sessions/:session/pnl", func(c *gin.Context) {
|
|
|
|
c.JSON(200, gin.H{"message": "pong"})
|
|
|
|
})
|
|
|
|
|
|
|
|
r.GET("/api/sessions/:session/market/:symbol/open-orders", func(c *gin.Context) {
|
|
|
|
c.JSON(200, gin.H{"message": "pong"})
|
|
|
|
})
|
|
|
|
|
|
|
|
r.GET("/api/sessions/:session/market/:symbol/trades", func(c *gin.Context) {
|
|
|
|
c.JSON(200, gin.H{"message": "pong"})
|
|
|
|
})
|
|
|
|
|
|
|
|
r.GET("/api/sessions/:session/market/:symbol/pnl", func(c *gin.Context) {
|
|
|
|
c.JSON(200, gin.H{"message": "pong"})
|
|
|
|
})
|
|
|
|
|
2021-02-03 10:09:33 +00:00
|
|
|
r.GET("/api/strategies/single", s.listStrategies)
|
2021-02-15 08:21:08 +00:00
|
|
|
r.NoRoute(s.assetsHandler)
|
2021-02-04 08:44:14 +00:00
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:47:36 +00:00
|
|
|
func (s *Server) RunWithListener(ctx context.Context, l net.Listener) error {
|
2021-02-04 08:44:14 +00:00
|
|
|
r := s.newEngine()
|
2021-02-04 08:47:36 +00:00
|
|
|
bind := l.Addr().String()
|
|
|
|
|
2021-02-04 05:48:21 +00:00
|
|
|
if s.OpenInBrowser {
|
2021-02-04 08:47:36 +00:00
|
|
|
openBrowser(ctx, bind)
|
2021-02-04 08:44:14 +00:00
|
|
|
}
|
2021-02-04 05:48:21 +00:00
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
s.srv = newServer(r, bind)
|
2021-02-04 08:47:36 +00:00
|
|
|
return serve(s.srv, l)
|
2021-02-04 08:44:14 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 08:47:36 +00:00
|
|
|
func (s *Server) Run(ctx context.Context, bindArgs ...string) error {
|
|
|
|
r := s.newEngine()
|
|
|
|
bind := resolveBind(bindArgs)
|
|
|
|
if s.OpenInBrowser {
|
|
|
|
openBrowser(ctx, bind)
|
2021-02-04 06:44:48 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 08:47:36 +00:00
|
|
|
s.srv = newServer(r, bind)
|
|
|
|
return listenAndServe(s.srv)
|
2021-02-03 10:09:33 +00:00
|
|
|
}
|
2021-02-03 07:00:01 +00:00
|
|
|
|
2021-02-04 06:00:41 +00:00
|
|
|
func (s *Server) ping(c *gin.Context) {
|
|
|
|
c.JSON(http.StatusOK, gin.H{"message": "pong"})
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
func (s *Server) listClosedOrders(c *gin.Context) {
|
|
|
|
if s.Environ.OrderService == nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "database is not configured"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
exchange := c.Query("exchange")
|
|
|
|
symbol := c.Query("symbol")
|
|
|
|
gidStr := c.DefaultQuery("gid", "0")
|
|
|
|
|
|
|
|
lastGID, err := strconv.ParseInt(gidStr, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("last gid parse error")
|
|
|
|
c.Status(http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
orders, err := s.Environ.OrderService.Query(service.QueryOrdersOptions{
|
|
|
|
Exchange: types.ExchangeName(exchange),
|
|
|
|
Symbol: symbol,
|
|
|
|
LastGID: lastGID,
|
|
|
|
Ordering: "DESC",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
c.Status(http.StatusBadRequest)
|
|
|
|
logrus.WithError(err).Error("order query error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"orders": orders,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-03 10:09:33 +00:00
|
|
|
func (s *Server) listStrategies(c *gin.Context) {
|
|
|
|
var stashes []map[string]interface{}
|
2021-02-03 07:00:01 +00:00
|
|
|
|
2021-02-03 10:09:33 +00:00
|
|
|
for _, mount := range s.Config.ExchangeStrategies {
|
|
|
|
stash, err := mount.Map()
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
2021-02-03 07:00:01 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 10:09:33 +00:00
|
|
|
stash["strategy"] = mount.Strategy.ID()
|
2021-02-03 07:00:01 +00:00
|
|
|
|
2021-02-03 10:09:33 +00:00
|
|
|
stashes = append(stashes, stash)
|
|
|
|
}
|
2021-02-02 18:26:41 +00:00
|
|
|
|
2021-02-04 05:59:26 +00:00
|
|
|
if len(stashes) == 0 {
|
2021-02-03 10:09:33 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{"strategies": []int{}})
|
|
|
|
}
|
2021-02-04 05:59:26 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{"strategies": stashes})
|
2021-02-03 10:09:33 +00:00
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
func (s *Server) listSessions(c *gin.Context) {
|
|
|
|
sessionName := c.Param("session")
|
|
|
|
session, ok := s.Environ.Session(sessionName)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("session %s not found", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"session": session})
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:49:47 +00:00
|
|
|
func (s *Server) listSessionSymbols(c *gin.Context) {
|
|
|
|
sessionName := c.Param("session")
|
|
|
|
session, ok := s.Environ.Session(sessionName)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("session %s not found", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var symbols []string
|
|
|
|
for symbol := range session.Markets() {
|
|
|
|
symbols = append(symbols, symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"symbols": symbols})
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
func (s *Server) listSessionTrades(c *gin.Context) {
|
|
|
|
sessionName := c.Param("session")
|
|
|
|
session, ok := s.Environ.Session(sessionName)
|
2021-02-04 05:56:36 +00:00
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
if !ok {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("session %s not found", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"trades": session.Trades})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) getSessionAccount(c *gin.Context) {
|
|
|
|
sessionName := c.Param("session")
|
|
|
|
session, ok := s.Environ.Session(sessionName)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("session %s not found", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"account": session.Account})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) getSessionAccountBalance(c *gin.Context) {
|
|
|
|
sessionName := c.Param("session")
|
|
|
|
session, ok := s.Environ.Session(sessionName)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("session %s not found", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if session.Account == nil {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("the account of session %s is nil", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"balances": session.Account.Balances()})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) listSessionOpenOrders(c *gin.Context) {
|
|
|
|
sessionName := c.Param("session")
|
|
|
|
session, ok := s.Environ.Session(sessionName)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
c.JSON(http.StatusNotFound, gin.H{"error": fmt.Sprintf("session %s not found", sessionName)})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
marketOrders := make(map[string][]types.Order)
|
|
|
|
for symbol, orderStore := range session.OrderStores() {
|
|
|
|
marketOrders[symbol] = orderStore.Orders()
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"orders": marketOrders})
|
|
|
|
}
|
|
|
|
|
2021-02-06 08:38:00 +00:00
|
|
|
func genFakeAssets() types.AssetMap {
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
totalAssets := types.AssetMap{}
|
2021-02-06 08:38:00 +00:00
|
|
|
balances := types.BalanceMap{
|
|
|
|
"BTC": types.Balance{Currency: "BTC", Available: fixedpoint.NewFromFloat(10.0 * rand.Float64())},
|
|
|
|
"BCH": types.Balance{Currency: "BCH", Available: fixedpoint.NewFromFloat(0.01 * rand.Float64())},
|
|
|
|
"LTC": types.Balance{Currency: "LTC", Available: fixedpoint.NewFromFloat(200.0 * rand.Float64())},
|
|
|
|
"ETH": types.Balance{Currency: "ETH", Available: fixedpoint.NewFromFloat(50.0 * rand.Float64())},
|
|
|
|
"SAND": types.Balance{Currency: "SAND", Available: fixedpoint.NewFromFloat(11500.0 * rand.Float64())},
|
|
|
|
"BNB": types.Balance{Currency: "BNB", Available: fixedpoint.NewFromFloat(1000.0 * rand.Float64())},
|
|
|
|
"GRT": types.Balance{Currency: "GRT", Available: fixedpoint.NewFromFloat(1000.0 * rand.Float64())},
|
|
|
|
"MAX": types.Balance{Currency: "MAX", Available: fixedpoint.NewFromFloat(200000.0 * rand.Float64())},
|
|
|
|
"COMP": types.Balance{Currency: "COMP", Available: fixedpoint.NewFromFloat(100.0 * rand.Float64())},
|
|
|
|
}
|
|
|
|
assets := balances.Assets(map[string]float64{
|
|
|
|
"BTCUSDT": 38000.0,
|
|
|
|
"BCHUSDT": 478.0,
|
|
|
|
"LTCUSDT": 150.0,
|
|
|
|
"COMPUSDT": 450.0,
|
|
|
|
"ETHUSDT": 1700.0,
|
|
|
|
"BNBUSDT": 70.0,
|
|
|
|
"GRTUSDT": 0.89,
|
|
|
|
"DOTUSDT": 20.0,
|
|
|
|
"SANDUSDT": 0.13,
|
|
|
|
"MAXUSDT": 0.122,
|
|
|
|
})
|
|
|
|
for currency, asset := range assets {
|
|
|
|
totalAssets[currency] = asset
|
|
|
|
}
|
|
|
|
|
|
|
|
return totalAssets
|
|
|
|
}
|
2021-02-04 08:44:14 +00:00
|
|
|
|
2021-02-06 08:38:00 +00:00
|
|
|
func (s *Server) listAssets(c *gin.Context) {
|
|
|
|
if ok, err := strconv.ParseBool(os.Getenv("USE_FAKE_ASSETS")); err == nil && ok {
|
|
|
|
c.JSON(http.StatusOK, gin.H{"assets": genFakeAssets()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
totalAssets := types.AssetMap{}
|
2021-02-04 08:44:14 +00:00
|
|
|
for _, session := range s.Environ.Sessions() {
|
|
|
|
balances := session.Account.Balances()
|
|
|
|
|
|
|
|
if err := session.UpdatePrices(c); err != nil {
|
|
|
|
logrus.WithError(err).Error("price update failed")
|
|
|
|
c.Status(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
assets := balances.Assets(session.LastPrices())
|
|
|
|
|
|
|
|
for currency, asset := range assets {
|
|
|
|
totalAssets[currency] = asset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"assets": totalAssets})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) setupSaveConfig(c *gin.Context) {
|
|
|
|
if len(s.Config.Sessions) == 0 {
|
2021-02-04 05:56:36 +00:00
|
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "session is not configured"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
envVars, err := collectSessionEnvVars(s.Config.Sessions)
|
2021-02-04 05:56:36 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-06 01:48:05 +00:00
|
|
|
if s.Environ.DatabaseService != nil {
|
|
|
|
envVars["DB_DRIVER"] = s.Environ.DatabaseService.Driver
|
|
|
|
envVars["DB_DSN"] = s.Environ.DatabaseService.DSN
|
2021-02-04 05:56:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dotenvFile := ".env.local"
|
|
|
|
if err := moveFileToBackup(dotenvFile); err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := godotenv.Write(envVars, dotenvFile); err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
out, err := s.Config.YAML()
|
2021-02-04 05:56:36 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("config file")
|
|
|
|
fmt.Println("=================================================")
|
|
|
|
fmt.Println(string(out))
|
|
|
|
fmt.Println("=================================================")
|
|
|
|
|
|
|
|
filename := "bbgo.yaml"
|
|
|
|
if err := moveFileToBackup(filename); err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ioutil.WriteFile(filename, out, 0666); err != nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
|
|
}
|
|
|
|
|
2021-02-03 10:54:18 +00:00
|
|
|
var pageRoutePattern = regexp.MustCompile("/[a-z]+$")
|
|
|
|
|
2021-02-03 09:27:18 +00:00
|
|
|
func moveFileToBackup(filename string) error {
|
|
|
|
stat, err := os.Stat(filename)
|
|
|
|
|
|
|
|
if err == nil && stat != nil {
|
|
|
|
err := os.Rename(filename, filename+"."+time.Now().Format("20060102_150405_07_00"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:44:14 +00:00
|
|
|
func (s *Server) tradingVolume(c *gin.Context) {
|
|
|
|
if s.Environ.TradeService == nil {
|
|
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "database is not configured"})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
period := c.DefaultQuery("period", "day")
|
|
|
|
segment := c.DefaultQuery("segment", "exchange")
|
|
|
|
startTimeStr := c.Query("start-time")
|
|
|
|
|
|
|
|
var startTime time.Time
|
|
|
|
|
|
|
|
if startTimeStr != "" {
|
|
|
|
v, err := time.Parse(time.RFC3339, startTimeStr)
|
|
|
|
if err != nil {
|
|
|
|
c.Status(http.StatusBadRequest)
|
|
|
|
logrus.WithError(err).Error("start-time format incorrect")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
startTime = v
|
|
|
|
|
|
|
|
} else {
|
|
|
|
switch period {
|
|
|
|
case "day":
|
|
|
|
startTime = time.Now().AddDate(0, 0, -30)
|
|
|
|
|
|
|
|
case "month":
|
|
|
|
startTime = time.Now().AddDate(0, -6, 0)
|
|
|
|
|
|
|
|
case "year":
|
|
|
|
startTime = time.Now().AddDate(-2, 0, 0)
|
|
|
|
|
|
|
|
default:
|
|
|
|
startTime = time.Now().AddDate(0, 0, -7)
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rows, err := s.Environ.TradeService.QueryTradingVolume(startTime, service.TradingVolumeQueryOptions{
|
|
|
|
SegmentBy: segment,
|
|
|
|
GroupByPeriod: period,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("trading volume query error")
|
|
|
|
c.Status(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.JSON(http.StatusOK, gin.H{"tradingVolumes": rows})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-04 08:47:36 +00:00
|
|
|
func newServer(r http.Handler, bind string) *http.Server {
|
|
|
|
return &http.Server{
|
|
|
|
Addr: bind,
|
|
|
|
Handler: r,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func serve(srv *http.Server, l net.Listener) (err error) {
|
|
|
|
defer func() {
|
|
|
|
if err != nil && err != http.ErrServerClosed {
|
|
|
|
logrus.WithError(err).Error("unexpected http server error")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
err = srv.Serve(l)
|
|
|
|
if err != http.ErrServerClosed {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func listenAndServe(srv *http.Server) error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if err != nil && err != http.ErrServerClosed {
|
|
|
|
logrus.WithError(err).Error("unexpected http server error")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
err = srv.ListenAndServe()
|
|
|
|
if err != http.ErrServerClosed {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|