-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathroot.go
More file actions
73 lines (58 loc) · 1.63 KB
/
root.go
File metadata and controls
73 lines (58 loc) · 1.63 KB
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
64
65
66
67
68
69
70
71
72
73
package cmd
import (
"fmt"
"log"
"os"
"github.com/open-pomodoro/go-openpomodoro"
"github.com/open-pomodoro/openpomodoro-cli/format"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
// RootCmd represents the base command when called without any subcommands
var RootCmd = &cobra.Command{
Use: "pomodoro",
Short: "Pomodoro CLI",
Long: "A simple Pomodoro command-line client for the Open Pomodoro format",
}
var (
client *openpomodoro.Client
settings *openpomodoro.Settings
directoryFlag string
formatFlag string
waitFlag bool
)
func init() {
cobra.OnInitialize(initConfig)
RootCmd.PersistentFlags().StringVarP(
&directoryFlag, "directory", "", ``,
"directory to read/write Open Pomodoro data (default is ~/.pomodoro/)")
RootCmd.PersistentFlags().StringVarP(
&formatFlag, "format", "f", format.DefaultFormat,
"format to display Pomodoros in")
RootCmd.PersistentFlags().BoolVarP(
&waitFlag, "wait", "w", false,
"wait for the Pomodoro to end before exiting")
viper.AutomaticEnv()
RootCmd.PersistentPreRun = func(cmd *cobra.Command, args []string) {
var err error
client, err = openpomodoro.NewClient(directoryFlag)
if err != nil {
log.Fatalf("Could not create client: %v", err)
}
settings, err = client.Settings()
if err != nil {
log.Fatalf("Could not retrieve settings: %v", err)
}
}
}
func initConfig() {
viper.AutomaticEnv()
}
// Execute adds all child commands to the root command sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := RootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(-1)
}
}