Tweaks to server transfer logging
This commit is contained in:
parent
ecb15a224a
commit
e936f22419
|
@ -95,47 +95,51 @@ func postServerArchive(c *gin.Context) {
|
||||||
|
|
||||||
go func(s *server.Server) {
|
go func(s *server.Server) {
|
||||||
r := api.New()
|
r := api.New()
|
||||||
|
l := log.WithField("server", s.Id())
|
||||||
|
|
||||||
// Attempt to get an archive of the server. This **WILL NOT** modify the source files of a server,
|
// Attempt to get an archive of the server. This **WILL NOT** modify the source files of a server,
|
||||||
// this process is 100% safe and will not corrupt a server's files if it fails.
|
// this process is 100% safe and will not corrupt a server's files if it fails.
|
||||||
if err := s.Archiver.Archive(); err != nil {
|
if err := s.Archiver.Archive(); err != nil {
|
||||||
s.Log().WithField("error", err).Error("failed to get archive for server")
|
l.WithField("error", err).Error("failed to get transfer archive for server")
|
||||||
|
|
||||||
if err := r.SendArchiveStatus(s.Id(), false); err != nil {
|
if err := r.SendArchiveStatus(s.Id(), false); err != nil {
|
||||||
if !api.IsRequestError(err) {
|
if !api.IsRequestError(err) {
|
||||||
s.Log().WithField("error", err).Error("failed to notify panel of failed archive status")
|
l.WithField("error", err).Error("failed to notify panel of failed archive status")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
s.Log().WithField("error", err.Error()).Error("panel returned an error when notifying it of a failed archive status")
|
l.WithField("error", err.Error()).Error("panel returned an error when notifying it of a failed archive status")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
s.Log().Info("successfully notified panel of failed archive status")
|
l.Info("successfully notified panel of failed archive status")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
s.Log().Debug("successfully created server archive, notifying panel")
|
l.Info("successfully created server transfer archive, notifying panel..")
|
||||||
|
|
||||||
if err := r.SendArchiveStatus(s.Id(), true); err != nil {
|
if err := r.SendArchiveStatus(s.Id(), true); err != nil {
|
||||||
if !api.IsRequestError(err) {
|
if !api.IsRequestError(err) {
|
||||||
s.Log().WithField("error", err).Error("failed to notify panel of successful archive status")
|
l.WithField("error", err).Error("failed to notify panel of successful archive status")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
s.Log().WithField("error", err.Error()).Error("panel returned an error when notifying it of a successful archive status")
|
l.WithField("error", err.Error()).Error("panel returned an error when notifying it of a successful archive status")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
s.Log().Info("successfully notified panel of successful archive status")
|
l.Info("successfully notified panel of successful transfer archive status")
|
||||||
}(s)
|
}(s)
|
||||||
|
|
||||||
c.Status(http.StatusAccepted)
|
c.Status(http.StatusAccepted)
|
||||||
}
|
}
|
||||||
|
|
||||||
func postTransfer(c *gin.Context) {
|
func postTransfer(c *gin.Context) {
|
||||||
buf := bytes.Buffer{}
|
var buf bytes.Buffer
|
||||||
buf.ReadFrom(c.Request.Body)
|
if _, err := buf.ReadFrom(c.Request.Body); err != nil {
|
||||||
|
c.AbortWithStatus(http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
go func(data []byte) {
|
go func(data []byte) {
|
||||||
serverID, _ := jsonparser.GetString(data, "server_id")
|
serverID, _ := jsonparser.GetString(data, "server_id")
|
||||||
|
@ -143,6 +147,7 @@ func postTransfer(c *gin.Context) {
|
||||||
token, _ := jsonparser.GetString(data, "token")
|
token, _ := jsonparser.GetString(data, "token")
|
||||||
|
|
||||||
l := log.WithField("server", serverID)
|
l := log.WithField("server", serverID)
|
||||||
|
l.Info("incoming transfer for server")
|
||||||
// Create an http client with no timeout.
|
// Create an http client with no timeout.
|
||||||
client := &http.Client{Timeout: 0}
|
client := &http.Client{Timeout: 0}
|
||||||
|
|
||||||
|
@ -176,6 +181,7 @@ func postTransfer(c *gin.Context) {
|
||||||
// Add the authorization header.
|
// Add the authorization header.
|
||||||
req.Header.Set("Authorization", token)
|
req.Header.Set("Authorization", token)
|
||||||
|
|
||||||
|
l.Info("requesting archive for server transfer..")
|
||||||
// Execute the http request.
|
// Execute the http request.
|
||||||
res, err := client.Do(req)
|
res, err := client.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -205,11 +211,9 @@ func postTransfer(c *gin.Context) {
|
||||||
l.WithField("error", err).Error("failed to stat archive file")
|
l.WithField("error", err).Error("failed to stat archive file")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else if err := os.Remove(archivePath); err != nil {
|
||||||
if err := os.Remove(archivePath); err != nil {
|
l.WithField("error", err).Warn("failed to remove old archive file")
|
||||||
l.WithField("error", err).Warn("failed to remove old archive file")
|
return
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create the file.
|
// Create the file.
|
||||||
|
@ -219,6 +223,7 @@ func postTransfer(c *gin.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
l.Info("writing transfer archive to disk..")
|
||||||
// Copy the file.
|
// Copy the file.
|
||||||
buf := make([]byte, 1024*4)
|
buf := make([]byte, 1024*4)
|
||||||
_, err = io.CopyBuffer(file, res.Body, buf)
|
_, err = io.CopyBuffer(file, res.Body, buf)
|
||||||
|
@ -232,6 +237,7 @@ func postTransfer(c *gin.Context) {
|
||||||
l.WithField("error", err).Error("failed to close archive file")
|
l.WithField("error", err).Error("failed to close archive file")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
l.Info("finished writing transfer archive to disk")
|
||||||
|
|
||||||
// Whenever the transfer fails or succeeds, delete the temporary transfer archive.
|
// Whenever the transfer fails or succeeds, delete the temporary transfer archive.
|
||||||
defer func() {
|
defer func() {
|
||||||
|
@ -246,7 +252,7 @@ func postTransfer(c *gin.Context) {
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
l.Debug("server archive downloaded, computing checksum...")
|
l.Info("server transfer archive downloaded, computing checksum...")
|
||||||
|
|
||||||
// Open the archive file for computing a checksum.
|
// Open the archive file for computing a checksum.
|
||||||
file, err = os.Open(archivePath)
|
file, err = os.Open(archivePath)
|
||||||
|
@ -263,9 +269,12 @@ func postTransfer(c *gin.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
checksum := hex.EncodeToString(hash.Sum(nil))
|
||||||
|
l.WithField("checksum", checksum).Info("computed checksum of transfer archive")
|
||||||
|
|
||||||
// Verify the two checksums.
|
// Verify the two checksums.
|
||||||
if hex.EncodeToString(hash.Sum(nil)) != res.Header.Get("X-Checksum") {
|
if checksum != res.Header.Get("X-Checksum") {
|
||||||
l.Error("checksum verification failed for archive")
|
l.WithField("source_checksum", res.Header.Get("X-Checksum")).Error("checksum verification failed for archive")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -275,7 +284,7 @@ func postTransfer(c *gin.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
l.Info("server archive transfer was successful")
|
l.Info("server archive transfer checksums have been validated, creating server environment..")
|
||||||
|
|
||||||
// Get the server data from the request.
|
// Get the server data from the request.
|
||||||
serverData, t, _, _ := jsonparser.Get(data, "server")
|
serverData, t, _, _ := jsonparser.Get(data, "server")
|
||||||
|
@ -300,7 +309,8 @@ func postTransfer(c *gin.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Un-archive the archive, that sounds weird..
|
l.Info("server environment configured, extracting transfer archive..")
|
||||||
|
// Extract the transfer archive.
|
||||||
if err := archiver.NewTarGz().Unarchive(archivePath, i.Server().Filesystem().Path()); err != nil {
|
if err := archiver.NewTarGz().Unarchive(archivePath, i.Server().Filesystem().Path()); err != nil {
|
||||||
l.WithField("error", err).Error("failed to extract server archive")
|
l.WithField("error", err).Error("failed to extract server archive")
|
||||||
return
|
return
|
||||||
|
@ -313,6 +323,8 @@ func postTransfer(c *gin.Context) {
|
||||||
// hiccup or the fix of whatever error causing the success request to fail.
|
// hiccup or the fix of whatever error causing the success request to fail.
|
||||||
hasError = false
|
hasError = false
|
||||||
|
|
||||||
|
l.Info("server transfer archive has been extracted, notifying panel..")
|
||||||
|
|
||||||
// Notify the panel that the transfer succeeded.
|
// Notify the panel that the transfer succeeded.
|
||||||
err = api.New().SendTransferSuccess(serverID)
|
err = api.New().SendTransferSuccess(serverID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user