1
0
mirror of https://github.com/minio/mc.git synced 2025-11-12 01:02:26 +03:00
Files
mc/update-main.go

113 lines
3.0 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* Minio Client (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 main
import (
"encoding/json"
"net/http"
"runtime"
"time"
"github.com/minio/cli"
"github.com/minio/mc/pkg/console"
"github.com/minio/mc/pkg/probe"
)
// Updates container to hold updates json
type Updates struct {
BuildDate string
Platforms map[string]string
}
const (
mcUpdateURL = "https://dl.minio.io:9000/updates/updates.json"
)
// Help message.
var updateCmd = cli.Command{
Name: "update",
Usage: "Check for new software updates",
Action: runUpdateCmd,
CustomHelpTemplate: `Name:
mc {{.Name}} - {{.Usage}}
USAGE:
mc {{.Name}}{{if .Flags}} [ARGS...]{{end}}
EXAMPLES:
1. Check for new updates
$ mc update
`,
}
func doUpdateCheck() (string, *probe.Error) {
clnt, err := url2Client(mcUpdateURL)
if err != nil {
return "Unable to create client: " + mcUpdateURL, err.Trace()
}
data, _, err := clnt.GetObject(0, 0)
if err != nil {
return "Unable to read: " + mcUpdateURL, err.Trace()
}
current, _ := time.Parse(time.RFC3339Nano, Version)
if current.IsZero() {
message := `Version is empty, must be a custom build cannot update. Please download releases from
https://dl.minio.io:9000 for continuous updates`
return message, nil
}
var updates Updates
decoder := json.NewDecoder(data)
if err := decoder.Decode(&updates); err != nil {
return "Unable to parse update fields", probe.New(err)
}
latest, _ := time.Parse(http.TimeFormat, updates.BuildDate)
if latest.IsZero() {
return "No update available at this time", nil
}
mcUpdateURLParse := clnt.URL()
if latest.After(current) {
var updateString string
if runtime.GOOS == "windows" {
updateString = "mc.exe cp " + mcUpdateURLParse.Scheme + "://" + mcUpdateURLParse.Host + string(mcUpdateURLParse.Separator) + updates.Platforms[runtime.GOOS] + " .\\mc.exe"
} else {
updateString = "mc cp " + mcUpdateURLParse.Scheme + "://" + mcUpdateURLParse.Host + string(mcUpdateURLParse.Separator) + updates.Platforms[runtime.GOOS] + " ./mc"
}
msg, err := printUpdateNotify(updateString, "new", "old")
if err != nil {
return "", probe.New(err)
}
console.Println(msg)
return "", nil
}
return "You are already running the most recent version of mc", nil
}
// runUpdateCmd -
func runUpdateCmd(ctx *cli.Context) {
if ctx.Args().First() == "help" {
cli.ShowCommandHelpAndExit(ctx, "update", 1) // last argument is exit code
}
msg, err := doUpdateCheck()
Fatal(err)
// no msg do not print one
if msg != "" {
console.Infoln(msg)
}
}