version.go 2.56 KB
Newer Older
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
1 2 3
package main

import (
4 5 6 7 8
	"encoding/json"
	"fmt"
	"net/http"
	"os"

9
	semver "github.com/coreos/go-semver/semver"
10
	"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/commander"
Juan Batiz-Benet's avatar
refmt  
Juan Batiz-Benet committed
11
	u "github.com/jbenet/go-ipfs/util"
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
12 13
)

Juan Batiz-Benet's avatar
go lint  
Juan Batiz-Benet committed
14
// The IPFS version.
15
const (
16
	Version                   = "0.1.0"
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
	EndpointURLLatestReleases = "https://api.github.com/repos/jbenet/go-ipfs/tags"
	VersionErrorShort         = `Warning: You are running version %s of go-ipfs. The latest version is %s.`
	VersionErrorLong          = `
	Warning: You are running version %s of go-ipfs. The latest version is %s.
	Since this is alpha software, it is strongly recommended you update.

	You can update go-ipfs by running

	    ipfs version update

	You can silence this message by running

	    ipfs config update.check ignore

	`
)
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
33 34

var cmdIpfsVersion = &commander.Command{
Juan Batiz-Benet's avatar
refmt  
Juan Batiz-Benet committed
35 36 37
	UsageLine: "version",
	Short:     "Show ipfs version information.",
	Long: `ipfs version - Show ipfs version information.
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
38 39 40

    Returns the current version of ipfs and exits.
  `,
Juan Batiz-Benet's avatar
refmt  
Juan Batiz-Benet committed
41
	Run: versionCmd,
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
42 43
}

44 45
var currentVersion *semver.Version

Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
46
func init() {
47 48 49 50 51 52
	var err error
	currentVersion, err = semver.NewVersion(Version)
	if err != nil {
		fmt.Printf("The const Version literal in version.go needs to be in semver format: %s \n", Version)
		os.Exit(1)
	}
Juan Batiz-Benet's avatar
refmt  
Juan Batiz-Benet committed
53
	cmdIpfsVersion.Flag.Bool("number", false, "show only the number")
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
54 55 56
}

func versionCmd(c *commander.Command, _ []string) error {
Juan Batiz-Benet's avatar
refmt  
Juan Batiz-Benet committed
57 58 59 60 61 62
	number := c.Flag.Lookup("number").Value.Get().(bool)
	if !number {
		u.POut("ipfs version ")
	}
	u.POut("%s\n", Version)
	return nil
Juan Batiz-Benet's avatar
version  
Juan Batiz-Benet committed
63
}
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

func checkForUpdates() error {
	resp, err := http.Get(EndpointURLLatestReleases)
	if err != nil {
		// can't reach the endpoint, coud be firewall, or no internet connection or something else
		// will just silently move on
		return nil
	}
	var body interface{}
	_ = json.NewDecoder(resp.Body).Decode(&body)
	releases, ok := body.([]interface{})
	if !ok {
		// the response body does not seem to meet specified Github API format
		// https://developer.github.com/v3/repos/#list-tags
		// will just silently move on
		return nil
	}
	for _, r := range releases {
		release, ok := r.(map[string]interface{})
		if !ok {
			continue
		}
		tagName, ok := release["name"].(string)
		if !ok {
			continue
		}
		if len(tagName) > 0 && tagName[0] == 'v' {
			// both 'v0.1.0' and '0.1.0' semver tagname conventions can be encountered
			tagName = tagName[1:]
		}
		releaseVersion, err := semver.NewVersion(tagName)
		if err != nil {
			continue
		}
		if currentVersion.LessThan(*releaseVersion) {
			return fmt.Errorf(VersionErrorLong, Version, tagName)
		}
	}
	return nil
}