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)
}
