minio/cmd/update-main.go

288 lines
7.4 KiB
Go
Raw Normal View History

2015-10-18 00:03:46 +02:00
/*
* Minio Cloud Storage, (C) 2015 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cmd
2015-10-18 00:03:46 +02:00
import (
"bytes"
2015-10-18 00:03:46 +02:00
"errors"
2015-12-23 02:11:11 +01:00
"io/ioutil"
2015-10-18 00:03:46 +02:00
"net/http"
"os"
2015-10-18 00:03:46 +02:00
"runtime"
2015-12-23 02:11:11 +01:00
"strings"
2015-10-18 00:03:46 +02:00
"time"
"github.com/fatih/color"
"github.com/minio/cli"
"github.com/minio/mc/pkg/console"
2015-10-18 00:03:46 +02:00
)
// Check for new software updates.
var updateCmd = cli.Command{
Name: "update",
2015-11-26 06:06:29 +01:00
Usage: "Check for a new software update.",
2015-10-18 00:03:46 +02:00
Action: mainUpdate,
Flags: globalFlags,
2015-10-18 00:03:46 +02:00
CustomHelpTemplate: `Name:
minio {{.Name}} - {{.Usage}}
USAGE:
2015-11-26 06:06:29 +01:00
minio {{.Name}} [FLAGS]
2015-10-18 00:03:46 +02:00
2015-11-26 06:06:29 +01:00
FLAGS:
{{range .Flags}}{{.}}
{{end}}
2015-10-18 00:03:46 +02:00
EXAMPLES:
2015-11-26 06:06:29 +01:00
1. Check for any new official release.
$ minio {{.Name}}
2015-10-18 00:03:46 +02:00
`,
}
2015-11-26 06:06:29 +01:00
// update URL endpoints.
const (
minioUpdateStableURL = "https://dl.minio.io/server/minio/release"
2015-11-26 06:06:29 +01:00
)
// updateMessage container to hold update messages.
2015-10-18 00:03:46 +02:00
type updateMessage struct {
Update bool `json:"update"`
Download string `json:"downloadURL"`
NewerThan time.Duration `json:"newerThan"`
2015-10-18 00:03:46 +02:00
}
2015-11-26 06:06:29 +01:00
// String colorized update message.
2015-10-18 00:03:46 +02:00
func (u updateMessage) String() string {
2015-11-26 06:06:29 +01:00
if !u.Update {
updateMessage := color.New(color.FgGreen, color.Bold).SprintfFunc()
return updateMessage("You are already running the most recent version of minio.")
}
msg := colorizeUpdateMessage(u.Download, u.NewerThan)
2015-11-26 06:06:29 +01:00
return msg
2015-10-18 00:03:46 +02:00
}
func parseReleaseData(data string) (time.Time, error) {
2015-12-23 02:11:11 +01:00
releaseStr := strings.Fields(data)
if len(releaseStr) < 2 {
return time.Time{}, errors.New("Update data malformed")
2015-12-23 02:11:11 +01:00
}
releaseDate := releaseStr[1]
releaseDateSplits := strings.SplitN(releaseDate, ".", 3)
if len(releaseDateSplits) < 3 {
return time.Time{}, (errors.New("Update data malformed"))
2015-12-23 02:11:11 +01:00
}
if releaseDateSplits[0] != "minio" {
return time.Time{}, (errors.New("Update data malformed, missing minio tag"))
2015-12-23 02:11:11 +01:00
}
// "OFFICIAL" tag is still kept for backward compatibility.
// We should remove this for the next release.
if releaseDateSplits[1] != "RELEASE" && releaseDateSplits[1] != "OFFICIAL" {
return time.Time{}, (errors.New("Update data malformed, missing RELEASE tag"))
2015-12-23 02:11:11 +01:00
}
dateSplits := strings.SplitN(releaseDateSplits[2], "T", 2)
if len(dateSplits) < 2 {
return time.Time{}, (errors.New("Update data malformed, not in modified RFC3359 form"))
2015-12-23 02:11:11 +01:00
}
dateSplits[1] = strings.Replace(dateSplits[1], "-", ":", -1)
date := strings.Join(dateSplits, "T")
parsedDate, err := time.Parse(time.RFC3339, date)
if err != nil {
return time.Time{}, err
2015-12-23 02:11:11 +01:00
}
return parsedDate, nil
}
// User Agent should always following the below style.
// Please open an issue to discuss any new changes here.
//
// Minio (OS; ARCH) APP/VER APP/VER
var (
userAgentSuffix = "Minio/" + Version + " " + "Minio/" + ReleaseTag + " " + "Minio/" + CommitID
)
// Check if the operating system is a docker container.
func isDocker() bool {
cgroup, err := ioutil.ReadFile("/proc/self/cgroup")
if err != nil && !os.IsNotExist(err) {
errorIf(err, "Unable to read `cgroup` file.")
}
return bytes.Contains(cgroup, []byte("docker"))
}
// Check if the minio server binary was built with source.
func isSourceBuild() bool {
return Version == "DEVELOPMENT.GOGET"
}
// Fetch the current version of the Minio server binary.
func getCurrentMinioVersion() (current time.Time, err error) {
// For development builds we check for binary modTime
// to validate against latest minio server release.
if Version != "DEVELOPMENT.GOGET" {
// Parse current minio version into RFC3339.
current, err = time.Parse(time.RFC3339, Version)
if err != nil {
return time.Time{}, err
}
return current, nil
} // else {
// For all development builds through `go get`.
// fall back to looking for version of the build
// date of the binary itself.
var fi os.FileInfo
fi, err = os.Stat(os.Args[0])
if err != nil {
return time.Time{}, err
}
return fi.ModTime(), nil
}
2015-11-26 06:06:29 +01:00
// verify updates for releases.
func getReleaseUpdate(updateURL string, duration time.Duration) (updateMsg updateMessage, errMsg string, err error) {
// Construct a new update url.
2016-01-27 20:43:26 +01:00
newUpdateURLPrefix := updateURL + "/" + runtime.GOOS + "-" + runtime.GOARCH
newUpdateURL := newUpdateURLPrefix + "/minio.shasum"
// Get the downloadURL.
var downloadURL string
if isDocker() {
downloadURL = "docker pull minio/minio"
} else {
switch runtime.GOOS {
case "windows":
// For windows.
downloadURL = newUpdateURLPrefix + "/minio.exe"
default:
// For all other operating systems.
downloadURL = newUpdateURLPrefix + "/minio"
}
}
// Initialize update message.
updateMsg = updateMessage{
Download: downloadURL,
}
// Instantiate a new client with 3 sec timeout.
client := &http.Client{
Timeout: duration,
}
current, err := getCurrentMinioVersion()
if err != nil {
errMsg = "Unable to fetch the current version of Minio server."
return
}
// Initialize new request.
req, err := http.NewRequest("GET", newUpdateURL, nil)
if err != nil {
return
}
userAgentPrefix := func() string {
prefix := "Minio (" + runtime.GOOS + "; " + runtime.GOARCH
// if its a source build.
if isSourceBuild() {
if isDocker() {
prefix = prefix + "; " + "docker; source) "
} else {
prefix = prefix + "; " + "source) "
}
return prefix
} // else { not source.
if isDocker() {
prefix = prefix + "; " + "docker) "
} else {
prefix = prefix + ") "
}
return prefix
}()
// Set user agent.
req.Header.Set("User-Agent", userAgentPrefix+" "+userAgentSuffix)
// Fetch new update.
resp, err := client.Do(req)
if err != nil {
return
2015-10-18 00:03:46 +02:00
}
// Verify if we have a valid http response i.e http.StatusOK.
if resp != nil {
if resp.StatusCode != http.StatusOK {
errMsg = "Failed to retrieve update notice."
err = errors.New("http status : " + resp.Status)
return
}
}
// Read the response body.
updateBody, err := ioutil.ReadAll(resp.Body)
if err != nil {
errMsg = "Failed to retrieve update notice. Please try again later."
return
}
errMsg = "Failed to retrieve update notice. Please try again later. Please report this issue at https://github.com/minio/minio/issues"
2015-10-18 00:03:46 +02:00
// Parse the date if its valid.
latest, err := parseReleaseData(string(updateBody))
if err != nil {
return
}
2015-10-18 00:03:46 +02:00
// Verify if the date is not zero.
if latest.IsZero() {
err = errors.New("Release date cannot be zero. Please report this issue at https://github.com/minio/minio/issues")
return
2015-10-18 00:03:46 +02:00
}
// Is the update latest?.
2015-10-18 00:03:46 +02:00
if latest.After(current) {
2015-11-26 06:06:29 +01:00
updateMsg.Update = true
updateMsg.NewerThan = latest.Sub(current)
2015-10-18 00:03:46 +02:00
}
// Return update message.
return updateMsg, "", nil
2015-10-18 00:03:46 +02:00
}
2015-11-26 06:06:29 +01:00
// main entry point for update command.
2015-10-18 00:03:46 +02:00
func mainUpdate(ctx *cli.Context) {
// Set global variables after parsing passed arguments
setGlobalsFromContext(ctx)
// Initialization routine, such as config loading, enable logging, ..
minioInit()
if globalQuiet {
return
}
2015-11-26 06:06:29 +01:00
// Check for update.
var updateMsg updateMessage
var errMsg string
var err error
var secs = time.Second * 3
updateMsg, errMsg, err = getReleaseUpdate(minioUpdateStableURL, secs)
fatalIf(err, errMsg)
console.Println(updateMsg)
2015-10-18 00:03:46 +02:00
}