Skip to content
Snippets Groups Projects
cmd.go 890 B
Newer Older
steeve.chailloux's avatar
steeve.chailloux committed
package cmd

import (
Florent Aide's avatar
Florent Aide committed
	"fmt"
	"os"
steeve.chailloux's avatar
steeve.chailloux committed

	"github.com/orus-io/go-flags"
Florent Aide's avatar
Florent Aide committed

Florent Aide's avatar
Florent Aide committed
	beaver "orus.io/orus-io/beaver/lib"
	"orus.io/orus-io/beaver/lib/logging"
steeve.chailloux's avatar
steeve.chailloux committed
)

var (
	Version   = beaver.Version()
	CommitSha = beaver.CommitSha()
	BuildDate = beaver.BuildDate()
steeve.chailloux's avatar
steeve.chailloux committed
)

var (
	Logger         = logging.DefaultLogger(os.Stdout)
	LoggingOptions = logging.MustOptions(logging.NewOptions(&Logger, os.Stdout))
steeve.chailloux's avatar
steeve.chailloux committed

	parser = flags.NewNamedParser("beaver", flags.HelpFlag|flags.PassDoubleDash)
)

func Run() int {
	if _, err := parser.Parse(); err != nil {
		code := 1
		if fe, ok := err.(*flags.Error); ok { // nolint:errorlint
steeve.chailloux's avatar
steeve.chailloux committed
			if fe.Type == flags.ErrHelp {
				code = 0
				// this error actually contains a help message for the user
				// so we print it on the console
				fmt.Println(err)
			} else {
				Logger.Error().Msg(err.Error())
			}
		} else {
			Logger.Err(err).Msg("")
		}
		return code
	}
	return 0
}