-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
255 lines (211 loc) · 5.46 KB
/
main.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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
package main
import (
"fmt"
"sort"
"strings"
"github.com/docopt/docopt-go"
"github.com/kovetskiy/lorg"
"github.com/reconquest/karma-go"
)
var (
version = "[manual build]"
usage = "bitbucket-external-hook " + version + `
Usage:
bitbucket-external-hook [options] list -b <bitbucket-uri> -p <project> [-r <repo>]
bitbucket-external-hook [options] print -b <bitbucket-uri> -p <project> [-r <repo>] <hook>
bitbucket-external-hook [options] enable -b <bitbucket-uri> -p <project> [-r <repo>] <hook>
bitbucket-external-hook [options] disable -b <bitbucket-uri> -p <project> [-r <repo>] <hook>
bitbucket-external-hook [options] inherit -b <bitbucket-uri> -p <project> [-r <repo>] <hook>
bitbucket-external-hook [options] set -b <bitbucket-uri> -p <project> [-r <repo>] <hook> [-e <path>] [-s] [<param>...]
bitbucket-external-hook count -b <bitbucket-uri> [--debug] [<hook>]
bitbucket-external-hook -h | --help
bitbucket-external-hook --version
Options:
-b <bitbucket-uri> URI to Bitbucket, can include auth info.
-p <project> Project key.
-r <repository> Repository key, optional.
<hook> Hook key (Java thing).
-o --only-enabled Show only enabled hooks.
-c --only-configured Show only configured hooks.
-e --executable <path> Path to hook executable.
-s --safepath Look for <path> in safe directory (bitbucket home).
<param> Add param to hook, can be specified multiple times.
--version Show version.
--debug Enable debug messages.
-h --help Show this screen.
`
)
type (
Options struct {
BitbucketURI string `docopt:"-b"`
Project string `docopt:"-p"`
Repository string `docopt:"-r"`
Hook string `docopt:"<hook>"`
List bool
OnlyEnabled bool
OnlyConfigured bool
Print bool
Enable bool
Disable bool
Inherit bool
Set bool
Executable string
SafePath bool `docopt:"--safepath"`
Params []string `docopt:"<param>"`
Count bool
Debug bool
}
)
func main() {
args, err := docopt.ParseArgs(usage, nil, version)
if err != nil {
panic(err)
}
var opts Options
err = args.Bind(&opts)
if err != nil {
log.Fatal(err)
}
if opts.Debug {
log.SetLevel(lorg.LevelDebug)
}
remote, err := GetRemote(opts)
if err != nil {
log.Fatalf(err, "unable to parse URI")
}
api := NewAPI(remote)
switch {
case opts.List:
err = handleList(api, opts)
case opts.Print:
err = handlePrint(api, opts)
case opts.Enable:
err = handleEnable(api, opts)
case opts.Disable:
err = handleDisable(api, opts)
case opts.Inherit:
err = handleInherit(api, opts)
case opts.Set:
err = handleSet(api, opts)
case opts.Count:
err = handleCount(api, opts)
}
if err != nil {
log.Fatal(err)
}
}
func handleSet(api *API, opts Options) error {
settings := &HookSettings{
Exe: opts.Executable,
SafePath: opts.SafePath,
Params: strings.Join(opts.Params, "\r\n"),
}
err := api.SetHookSettings(opts.Project, opts.Repository, opts.Hook, settings)
if err != nil {
return karma.Format(
err,
"unable to set hook settings",
)
}
printHookSettings(settings)
return nil
}
func handleEnable(api *API, opts Options) error {
err := api.EnableHook(opts.Project, opts.Repository, opts.Hook)
if err != nil {
return karma.Format(
err,
"unable to enable hook",
)
}
return nil
}
func handleDisable(api *API, opts Options) error {
err := api.DisableHook(opts.Project, opts.Repository, opts.Hook)
if err != nil {
return karma.Format(
err,
"unable to enable hook",
)
}
return nil
}
func handleInherit(api *API, opts Options) error {
err := api.InheritHook(opts.Project, opts.Repository, opts.Hook)
if err != nil {
return karma.Format(
err,
"unable to enable hook",
)
}
return nil
}
func handlePrint(api *API, opts Options) error {
hook, err := api.GetHook(opts.Project, opts.Repository, opts.Hook)
if err != nil {
return karma.Format(
err,
"unable to get hook",
)
}
printHook(hook)
if !hook.Configured && !hook.Enabled {
return nil
}
settings, err := api.GetHookSettings(opts.Project, opts.Repository, opts.Hook)
if err != nil {
return karma.Format(
err,
"unable to get hook settings",
)
}
fmt.Println()
printHookSettings(settings)
return nil
}
func handleList(api *API, opts Options) error {
hooks, err := api.GetHooks(opts.Project, opts.Repository)
if err != nil {
return karma.Format(
err,
"unable to get hooks",
)
}
sort.SliceStable(hooks, func(i, j int) bool {
return hooks[i].Details.Key < hooks[j].Details.Key
})
id := 0
for _, hook := range hooks {
if opts.OnlyEnabled && !hook.Enabled {
continue
}
if opts.OnlyConfigured && !hook.Configured {
continue
}
if id > 0 {
fmt.Println()
}
id++
printHook(hook)
}
return nil
}
func printHook(hook *Hook) {
fmt.Printf("Key: %v\n", hook.Details.Key)
fmt.Printf("Name: %v\n", hook.Details.Name)
fmt.Printf("Type: %v\n", hook.Details.Type)
fmt.Printf("Version: %v\n", hook.Details.Version)
fmt.Printf("Scope: %v\n", hook.Scope.Type)
fmt.Printf("Configured: %v\n", hook.Configured)
fmt.Printf("Enabled: %v\n", hook.Enabled)
}
func printHookSettings(settings *HookSettings) {
fmt.Printf("Executable: %v\n", settings.Exe)
fmt.Printf("SafePath: %v\n", settings.SafePath)
paramsPrefix := "Params: "
fmt.Printf(
"%v%v\n",
paramsPrefix,
strings.ReplaceAll(settings.Params, "\n", "\n"+strings.Repeat(" ", len(paramsPrefix))),
)
}