mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
160 lines
3.5 KiB
Go
160 lines
3.5 KiB
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"os"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/jmoiron/sqlx"
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
|
)
|
|
|
|
func (s *Server) setupTestDB(c *gin.Context) {
|
|
payload := struct {
|
|
Driver string `json:"driver"`
|
|
DSN string `json:"dsn"`
|
|
}{}
|
|
|
|
if err := c.BindJSON(&payload); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing arguments"})
|
|
return
|
|
}
|
|
|
|
if len(payload.Driver) == 0 {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing driver parameter"})
|
|
return
|
|
}
|
|
|
|
if len(payload.DSN) == 0 {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing dsn parameter"})
|
|
return
|
|
}
|
|
|
|
db, err := sqlx.Connect(payload.Driver, payload.DSN)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
if err := db.Close(); err != nil {
|
|
logrus.WithError(err).Error("db connection close error")
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
func (s *Server) setupConfigureDB(c *gin.Context) {
|
|
payload := struct {
|
|
Driver string `json:"driver"`
|
|
DSN string `json:"dsn"`
|
|
}{}
|
|
|
|
if err := c.BindJSON(&payload); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing parameters"})
|
|
return
|
|
}
|
|
|
|
if len(payload.Driver) == 0 {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing driver parameter"})
|
|
return
|
|
}
|
|
|
|
if len(payload.DSN) == 0 {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing dsn parameter"})
|
|
return
|
|
}
|
|
|
|
if err := s.Environ.ConfigureDatabaseDriver(c, payload.Driver, payload.DSN); err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"success": true,
|
|
"driver": payload.Driver,
|
|
"dsn": payload.DSN,
|
|
})
|
|
}
|
|
|
|
func (s *Server) setupAddStrategy(c *gin.Context) {
|
|
sessionName := c.Param("session")
|
|
strategyID := c.Param("id")
|
|
|
|
_, ok := s.Environ.Session(sessionName)
|
|
if !ok {
|
|
c.JSON(http.StatusNotFound, "session not found")
|
|
return
|
|
}
|
|
|
|
var conf map[string]interface{}
|
|
|
|
if err := c.BindJSON(&conf); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"error": "missing arguments"})
|
|
return
|
|
}
|
|
|
|
strategy, err := bbgo.NewStrategyFromMap(strategyID, conf)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()})
|
|
return
|
|
}
|
|
|
|
mount := bbgo.ExchangeStrategyMount{
|
|
Mounts: []string{sessionName},
|
|
Strategy: strategy,
|
|
}
|
|
|
|
s.Config.ExchangeStrategies = append(s.Config.ExchangeStrategies, mount)
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|
|
|
|
func (s *Server) setupRestart(c *gin.Context) {
|
|
if s.srv == nil {
|
|
logrus.Error("nil srv")
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
logrus.Info("shutting down web server...")
|
|
|
|
// The context is used to inform the server it has 5 seconds to finish
|
|
// the request it is currently handling
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
|
|
if err := s.srv.Shutdown(ctx); err != nil {
|
|
logrus.WithError(err).Error("server forced to shutdown")
|
|
}
|
|
|
|
logrus.Info("server shutdown completed")
|
|
|
|
if s.Setup.BeforeRestart != nil {
|
|
s.Setup.BeforeRestart()
|
|
}
|
|
|
|
bin := os.Args[0]
|
|
args := os.Args[0:]
|
|
|
|
// filter out setup parameters
|
|
args = filterStrings(args, "--setup")
|
|
|
|
envVars := os.Environ()
|
|
|
|
logrus.Infof("exec %s %v", bin, args)
|
|
|
|
if err := syscall.Exec(bin, args, envVars); err != nil {
|
|
logrus.WithError(err).Errorf("failed to restart %s", bin)
|
|
}
|
|
|
|
s.Setup.Cancel()
|
|
}()
|
|
|
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
|
}
|