ooni-probe-cli/internal/cli/root/root.go

58 lines
1.3 KiB
Go
Raw Normal View History

package root
import (
"github.com/alecthomas/kingpin"
2018-02-12 16:45:13 +01:00
"github.com/apex/log"
ooni "github.com/openobservatory/gooni"
"github.com/openobservatory/gooni/internal/log/handlers/batch"
"github.com/openobservatory/gooni/internal/log/handlers/cli"
2018-02-12 16:45:13 +01:00
"github.com/prometheus/common/version"
)
// Cmd is the root command
var Cmd = kingpin.New("ooni", "")
// Command is syntax sugar for defining sub-commands
var Command = Cmd.Command
2018-02-12 16:45:13 +01:00
// Init should be called by all subcommand that care to have a ooni.OONI instance
2018-03-23 12:10:14 +01:00
var Init func() (*ooni.Context, error)
2018-02-12 16:45:13 +01:00
func init() {
2018-02-12 16:45:13 +01:00
configPath := Cmd.Flag("config", "Set a custom config file path").Short('c').String()
isVerbose := Cmd.Flag("verbose", "Enable verbose log output.").Short('v').Bool()
isBatch := Cmd.Flag("batch", "Enable batch command line usage.").Bool()
2018-02-12 16:45:13 +01:00
Cmd.PreAction(func(ctx *kingpin.ParseContext) error {
if *isBatch {
log.SetHandler(batch.Default)
} else {
log.SetHandler(cli.Default)
}
if *isVerbose {
2018-02-12 16:45:13 +01:00
log.SetLevel(log.DebugLevel)
log.Debugf("ooni version %s", version.Version)
}
2018-03-23 12:10:14 +01:00
Init = func() (*ooni.Context, error) {
2018-02-12 16:45:13 +01:00
var err error
2018-03-23 12:10:14 +01:00
homePath, err := ooni.GetOONIHome()
if err != nil {
2018-03-23 12:10:14 +01:00
return nil, err
}
2018-03-23 12:10:14 +01:00
ctx := ooni.NewContext(*configPath, homePath)
err = ctx.Init()
if err != nil {
2018-03-23 12:10:14 +01:00
return nil, err
}
2018-03-23 12:10:14 +01:00
return ctx, nil
2018-02-12 16:45:13 +01:00
}
return nil
})
}