2022-11-15 01:25:01 +00:00
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
|
|
|
"github.com/pterodactyl/wings/environment"
|
|
|
|
"github.com/pterodactyl/wings/router/middleware"
|
|
|
|
"github.com/pterodactyl/wings/server"
|
|
|
|
"github.com/pterodactyl/wings/server/installer"
|
|
|
|
"github.com/pterodactyl/wings/server/transfer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Data passed over to initiate a server transfer.
|
|
|
|
type serverTransferRequest struct {
|
|
|
|
URL string `binding:"required" json:"url"`
|
|
|
|
Token string `binding:"required" json:"token"`
|
|
|
|
Server installer.ServerDetails `json:"server"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// postServerTransfer handles the start of a transfer for a server.
|
|
|
|
func postServerTransfer(c *gin.Context) {
|
|
|
|
var data serverTransferRequest
|
|
|
|
if err := c.BindJSON(&data); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s := ExtractServer(c)
|
|
|
|
|
|
|
|
// Check if the server is already being transferred.
|
|
|
|
// There will be another endpoint for resetting this value either by deleting the
|
|
|
|
// server, or by canceling the transfer.
|
|
|
|
if s.IsTransferring() {
|
|
|
|
c.AbortWithStatusJSON(http.StatusConflict, gin.H{
|
|
|
|
"error": "A transfer is already in progress for this server.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
manager := middleware.ExtractManager(c)
|
|
|
|
|
|
|
|
notifyPanelOfFailure := func() {
|
|
|
|
if err := manager.Client().SetTransferStatus(context.Background(), s.ID(), false); err != nil {
|
|
|
|
s.Log().WithField("subsystem", "transfer").
|
|
|
|
WithField("status", false).
|
|
|
|
WithError(err).
|
|
|
|
Error("failed to set transfer status")
|
|
|
|
}
|
|
|
|
|
|
|
|
s.Events().Publish(server.TransferStatusEvent, "failure")
|
|
|
|
s.SetTransferring(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Block the server from starting while we are transferring it.
|
|
|
|
s.SetTransferring(true)
|
|
|
|
|
|
|
|
// Ensure the server is offline. Sometimes a "No such container" error gets through
|
|
|
|
// which means the server is already stopped. We can ignore that.
|
|
|
|
if s.Environment.State() != environment.ProcessOfflineState {
|
|
|
|
if err := s.Environment.WaitForStop(
|
|
|
|
s.Context(),
|
2023-01-24 19:34:05 +00:00
|
|
|
time.Second*15,
|
2022-11-15 01:25:01 +00:00
|
|
|
false,
|
|
|
|
); err != nil && !strings.Contains(strings.ToLower(err.Error()), "no such container") {
|
2023-01-24 19:34:05 +00:00
|
|
|
s.SetTransferring(false)
|
2022-11-15 01:25:01 +00:00
|
|
|
s.Log().WithError(err).Error("failed to stop server for transfer")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new transfer instance for this server.
|
|
|
|
trnsfr := transfer.New(context.Background(), s)
|
|
|
|
transfer.Outgoing().Add(trnsfr)
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer transfer.Outgoing().Remove(trnsfr)
|
|
|
|
|
|
|
|
if _, err := trnsfr.PushArchiveToTarget(data.URL, data.Token); err != nil {
|
|
|
|
notifyPanelOfFailure()
|
|
|
|
|
|
|
|
if err == context.Canceled {
|
|
|
|
trnsfr.Log().Debug("canceled")
|
|
|
|
trnsfr.SendMessage("Canceled.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
trnsfr.Log().WithError(err).Error("failed to push archive to target")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DO NOT NOTIFY THE PANEL OF SUCCESS HERE. The only node that should send
|
|
|
|
// a success status is the destination node. When we send a failure status,
|
|
|
|
// the panel will automatically cancel the transfer and attempt to reset
|
|
|
|
// the server state on the destination node, we just need to make sure
|
|
|
|
// we clean up our statuses for failure.
|
|
|
|
|
|
|
|
trnsfr.Log().Debug("transfer complete")
|
|
|
|
}()
|
|
|
|
|
|
|
|
c.Status(http.StatusAccepted)
|
|
|
|
}
|
|
|
|
|
|
|
|
// deleteServerTransfer cancels an outgoing transfer for a server.
|
|
|
|
func deleteServerTransfer(c *gin.Context) {
|
|
|
|
s := ExtractServer(c)
|
|
|
|
|
|
|
|
if !s.IsTransferring() {
|
|
|
|
c.AbortWithStatusJSON(http.StatusConflict, gin.H{
|
|
|
|
"error": "Server is not currently being transferred.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
trnsfr := transfer.Outgoing().Get(s.ID())
|
|
|
|
if trnsfr == nil {
|
|
|
|
c.AbortWithStatusJSON(http.StatusConflict, gin.H{
|
|
|
|
"error": "Server is not currently being transferred.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
trnsfr.Cancel()
|
|
|
|
|
|
|
|
c.Status(http.StatusAccepted)
|
|
|
|
}
|