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
|
package cli
import (
"fmt"
timr "codeberg.org/snonux/timr/internal"
"codeberg.org/snonux/timr/internal/config"
"github.com/spf13/cobra"
)
var loadedConfig = config.Default()
// Execute runs the root command.
func Execute() error {
return NewRootCmd().Execute()
}
// NewRootCmd creates the Cobra root command.
func NewRootCmd() *cobra.Command {
var configPath string
var showVersion bool
cmd := &cobra.Command{
Use: "timr",
Short: "Track time from your terminal",
SilenceUsage: true,
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
if showVersion {
return nil
}
cfg, err := config.Load(configPath)
if err != nil {
return fmt.Errorf("load config: %w", err)
}
loadedConfig = cfg
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
if showVersion {
_, err := fmt.Fprintln(cmd.OutOrStdout(), timr.Version)
return err
}
return cmd.Help()
},
}
cmd.Flags().BoolVar(&showVersion, "version", false, "Print version and exit")
cmd.PersistentFlags().StringVar(&configPath, "config", "", "Path to config file")
cmd.AddCommand(newTimerCmd())
cmd.AddCommand(newWorkCmd())
cmd.AddCommand(newTUICmd())
return cmd
}
// CurrentConfig returns the config loaded in PersistentPreRunE.
func CurrentConfig() config.Config {
return loadedConfig
}
|