forked from kevin-hanselman/dud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
141 lines (127 loc) · 2.91 KB
/
config.go
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package cmd
import (
"fmt"
"os"
"strings"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
var (
validFields = []string{"cache", "remote"}
targetUserConfig bool
)
func init() {
configCmd := &cobra.Command{
Use: "config {get|set}",
Short: "Print or modify fields in the config file",
Long: "Config prints or modifies fields in the config file",
}
configCmd.AddCommand(
&cobra.Command{
Use: "get <config_field>",
Short: "Get the value of a field in the config file",
Long: "Get the value of a field in the config file",
ValidArgs: validFields,
Args: cobra.ExactValidArgs(1),
Run: func(cmd *cobra.Command, args []string) {
rootDir, err := cdToProjectRoot()
if err != nil {
fatal(err)
}
if err := lockProject(rootDir); err != nil {
fatal(err)
}
if err := readConfig(rootDir); err != nil {
fatal(err)
}
logger.Info.Println(viper.Get(args[0]))
},
},
)
setCmd := &cobra.Command{
Use: "set <config_field> <new_value>",
Short: "Set the value of a field in the config file",
Long: "Set the value of a field in the config file",
ValidArgs: validFields,
Args: func(cmd *cobra.Command, args []string) error {
if len(args) != 2 {
return fmt.Errorf("expected two arguments, got %d", len(args))
}
for _, field := range validFields {
if args[0] == field {
return nil
}
}
return fmt.Errorf(
"invalid argument; expected one of [%s]",
strings.Join(validFields, ", "),
)
},
Run: func(cmd *cobra.Command, args []string) {
var err error
if targetUserConfig {
_, err = readUserConfig()
} else {
var rootDir string
rootDir, err = cdToProjectRoot()
if err != nil {
fatal(err)
}
if err := lockProject(rootDir); err != nil {
fatal(err)
}
_, err = readProjectConfig(rootDir)
}
if err != nil && !os.IsNotExist(err) {
fatal(err)
}
viper.Set(args[0], args[1])
if err := viper.WriteConfig(); err != nil {
fatal(err)
}
},
}
setCmd.Flags().BoolVarP(
&targetUserConfig,
"user",
"u",
false,
"target the user-level config file",
)
configCmd.AddCommand(setCmd)
pathCmd := &cobra.Command{
Use: "path",
Short: "Print the config file path",
Long: "Print the config file path",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
var (
configPath string
err error
)
if targetUserConfig {
configPath, err = readUserConfig()
} else {
var rootDir string
rootDir, err = cdToProjectRoot()
if err != nil {
fatal(err)
}
configPath, err = readProjectConfig(rootDir)
}
if err != nil && !os.IsNotExist(err) {
fatal(err)
}
fmt.Println(configPath)
},
}
pathCmd.Flags().BoolVarP(
&targetUserConfig,
"user",
"u",
false,
"target the user-level config file",
)
configCmd.AddCommand(pathCmd)
rootCmd.AddCommand(configCmd)
}