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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
package repository
import (
"fmt"
"strconv"
"strings"
"time"
gogit "github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/format/config"
)
var _ Config = &goGitConfig{}
type goGitConfig struct {
repo *gogit.Repository
}
func newGoGitConfig(repo *gogit.Repository) *goGitConfig {
return &goGitConfig{repo: repo}
}
func (ggc *goGitConfig) StoreString(key, value string) error {
cfg, err := ggc.repo.Config()
if err != nil {
return err
}
split := strings.Split(key, ".")
switch {
case len(split) <= 1:
return fmt.Errorf("invalid key")
case len(split) == 2:
cfg.Raw.Section(split[0]).SetOption(split[1], value)
default:
section := split[0]
subsection := strings.Join(split[1:len(split)-2], ".")
option := split[len(split)-1]
cfg.Raw.Section(section).Subsection(subsection).SetOption(option, value)
}
return ggc.repo.SetConfig(cfg)
}
func (ggc *goGitConfig) StoreTimestamp(key string, value time.Time) error {
return ggc.StoreString(key, strconv.Itoa(int(value.Unix())))
}
func (ggc *goGitConfig) StoreBool(key string, value bool) error {
return ggc.StoreString(key, strconv.FormatBool(value))
}
func (ggc *goGitConfig) ReadAll(keyPrefix string) (map[string]string, error) {
cfg, err := ggc.repo.Config()
if err != nil {
return nil, err
}
split := strings.Split(keyPrefix, ".")
var opts config.Options
switch {
case len(split) < 1:
return nil, fmt.Errorf("invalid key prefix")
case len(split) == 1:
opts = cfg.Raw.Section(split[0]).Options
default:
section := split[0]
subsection := strings.Join(split[1:len(split)-1], ".")
opts = cfg.Raw.Section(section).Subsection(subsection).Options
}
if len(opts) == 0 {
return nil, fmt.Errorf("invalid section")
}
if keyPrefix[len(keyPrefix)-1:] != "." {
keyPrefix += "."
}
result := make(map[string]string, len(opts))
for _, opt := range opts {
result[keyPrefix+opt.Key] = opt.Value
}
return result, nil
}
func (ggc *goGitConfig) ReadBool(key string) (bool, error) {
val, err := ggc.ReadString(key)
if err != nil {
return false, err
}
return strconv.ParseBool(val)
}
func (ggc *goGitConfig) ReadString(key string) (string, error) {
cfg, err := ggc.repo.Config()
if err != nil {
return "", err
}
split := strings.Split(key, ".")
// TODO: return ErrNoConfigEntry and ErrMultipleConfigEntry
// Can use forked go-git: https://github.com/go-git/go-git/pull/112
switch {
case len(split) <= 1:
return "", fmt.Errorf("invalid key")
case len(split) == 2:
return cfg.Raw.Section(split[0]).Option(split[1]), nil
default:
section := split[0]
subsection := strings.Join(split[1:len(split)-2], ".")
option := split[len(split)-1]
return cfg.Raw.Section(section).Subsection(subsection).Option(option), nil
}
}
func (ggc *goGitConfig) ReadTimestamp(key string) (time.Time, error) {
value, err := ggc.ReadString(key)
if err != nil {
return time.Time{}, err
}
return ParseTimestamp(value)
}
func (ggc *goGitConfig) RemoveAll(keyPrefix string) error {
cfg, err := ggc.repo.Config()
if err != nil {
return err
}
split := strings.Split(keyPrefix, ".")
// missing in go-git
hasOption := func(options config.Options, key string) bool {
for _, option := range options {
if option.IsKey(key) {
return true
}
}
return false
}
switch {
case len(split) < 1:
return fmt.Errorf("invalid key prefix")
case len(split) == 1:
if len(cfg.Raw.Section(split[0]).Options) > 0 {
cfg.Raw.RemoveSection(split[0])
} else {
return fmt.Errorf("invalid key prefix")
}
default:
section := split[0]
rest := strings.Join(split[1:], ".")
if cfg.Raw.Section(section).HasSubsection(rest) {
cfg.Raw.RemoveSubsection(section, rest)
} else {
if hasOption(cfg.Raw.Section(section).Options, rest) {
cfg.Raw.Section(section).RemoveOption(rest)
} else {
return fmt.Errorf("invalid key prefix")
}
}
}
return ggc.repo.SetConfig(cfg)
}
|