431f55d53b
Change-Id: I1db757b64e61f185ba710bf669f2e62441b9ab71
75 lines
2.0 KiB
Go
75 lines
2.0 KiB
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/zeebo/errs"
|
|
"go.uber.org/zap"
|
|
|
|
"storj.io/private/version"
|
|
)
|
|
|
|
func update(ctx context.Context, serviceName, binaryLocation string, ver version.Process) error {
|
|
currentVersion, err := binaryVersion(binaryLocation)
|
|
if err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
|
|
zap.L().Info("Current binary version",
|
|
zap.String("Service", serviceName),
|
|
zap.String("Version", currentVersion.String()),
|
|
)
|
|
|
|
// should update
|
|
newVersion, reason, err := version.ShouldUpdateVersion(currentVersion, nodeID, ver)
|
|
if err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
if newVersion.IsZero() {
|
|
zap.L().Info(reason, zap.String("Service", serviceName))
|
|
return nil
|
|
}
|
|
|
|
newVersionPath := prependExtension(binaryLocation, newVersion.Version)
|
|
|
|
if err = downloadBinary(ctx, parseDownloadURL(newVersion.URL), newVersionPath); err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
|
|
downloadedVersion, err := binaryVersion(newVersionPath)
|
|
if err != nil {
|
|
return errs.Combine(errs.Wrap(err), os.Remove(newVersionPath))
|
|
}
|
|
|
|
newSemVer, err := newVersion.SemVer()
|
|
if err != nil {
|
|
return errs.Combine(err, os.Remove(newVersionPath))
|
|
}
|
|
|
|
if newSemVer.Compare(downloadedVersion) != 0 {
|
|
err := errs.New("invalid version downloaded: wants %s got %s", newVersion.Version, downloadedVersion)
|
|
return errs.Combine(err, os.Remove(newVersionPath))
|
|
}
|
|
|
|
var backupPath string
|
|
if serviceName == updaterServiceName {
|
|
// NB: don't include old version number for updater binary backup
|
|
backupPath = prependExtension(binaryLocation, "old")
|
|
} else {
|
|
backupPath = prependExtension(binaryLocation, "old."+currentVersion.String())
|
|
}
|
|
|
|
zap.L().Info("Restarting service.", zap.String("Service", serviceName))
|
|
|
|
if err = restartService(ctx, serviceName, binaryLocation, newVersionPath, backupPath); err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
|
|
zap.L().Info("Service restarted successfully.", zap.String("Service", serviceName))
|
|
return nil
|
|
}
|