aboutsummaryrefslogtreecommitdiffstats
path: root/commands/version.go
blob: 957cc65382bfca3d55524780e5f22f20d5da0ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package commands

import (
	"runtime"

	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/commands/execenv"
)

type versionOptions struct {
	number bool
	commit bool
	all    bool
}

func newVersionCommand(env *execenv.Env) *cobra.Command {
	options := versionOptions{}

	cmd := &cobra.Command{
		Use:   "version",
		Short: "Show git-bug version information",
		Run: func(cmd *cobra.Command, args []string) {
			runVersion(env, options, cmd.Root())
		},
	}

	flags := cmd.Flags()
	flags.SortFlags = false

	flags.BoolVarP(&options.number, "number", "n", false,
		"Only show the version number",
	)
	flags.BoolVarP(&options.commit, "commit", "c", false,
		"Only show the commit hash",
	)
	flags.BoolVarP(&options.all, "all", "a", false,
		"Show all version information",
	)

	return cmd
}

func runVersion(env *execenv.Env, opts versionOptions, root *cobra.Command) {
	if opts.all {
		env.Out.Printf("%s version: %s\n", execenv.RootCommandName, root.Version)
		env.Out.Printf("System version: %s/%s\n", runtime.GOARCH, runtime.GOOS)
		env.Out.Printf("Golang version: %s\n", runtime.Version())
		return
	}

	if opts.number {
		env.Out.Println(root.Version)
		return
	}

	if opts.commit {
		env.Out.Println(GitCommit)
		return
	}

	env.Out.Printf("%s version: %s\n", execenv.RootCommandName, root.Version)
}