-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
239 lines (205 loc) · 5.68 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
//go:generate go-bindata -pkg main -o credits.go vendor/CREDITS
package main
import (
"flag"
"fmt"
"io"
"os"
"github.com/pkg/errors"
"github.com/yuuki/binrep/pkg/command"
"github.com/yuuki/binrep/pkg/config"
)
const (
defaultKeepReleases int = 5
)
var (
creditsText = string(MustAsset("vendor/CREDITS"))
)
// CLI is the command line object.
type CLI struct {
// outStream and errStream are the stdout and stderr
// to write message from the CLI.
outStream, errStream io.Writer
}
func main() {
cli := &CLI{outStream: os.Stdout, errStream: os.Stderr}
os.Exit(cli.Run(os.Args))
}
// Run invokes the CLI with the given arguments.
func (cli *CLI) Run(args []string) int {
if len(args) <= 1 {
fmt.Fprint(cli.errStream, helpText)
return 2
}
config.Load()
var err error
i := 1
ARG_LOOP:
for i < len(args) {
switch cmd := args[i]; cmd {
case "list":
err = cli.doList(args[i+1:])
break ARG_LOOP
case "show":
err = cli.doShow(args[i+1:])
break ARG_LOOP
case "push":
err = cli.doPush(args[i+1:])
break ARG_LOOP
case "pull":
err = cli.doPull(args[i+1:])
break ARG_LOOP
case "--version":
fmt.Fprintf(cli.errStream, "%s version %s, build %s, date %s \n", name, version, commit, date)
return 0
case "--credits":
fmt.Fprintln(cli.outStream, creditsText)
return 0
case "-h", "--help":
fmt.Fprint(cli.errStream, helpText)
return 0
case "-e", "--endpoint":
if len(args) <= i+1 {
fmt.Fprint(cli.errStream, "want --endpoint value")
fmt.Fprint(cli.errStream, helpText)
return 1
}
config.Config.BackendEndpoint = args[i+1]
i += 2
// No subcommand error
if len(args) <= i {
fmt.Fprint(cli.errStream, helpText)
return 1
}
default:
fmt.Fprintf(cli.errStream, "%s is undefined subcommand or option\n", cmd)
fmt.Fprint(cli.errStream, helpText)
return 1
}
}
if err != nil {
fmt.Fprintln(cli.errStream, err)
return 2
}
return 0
}
var helpText = `Usage: binrep [options]
The static binary repository manager.
Commands:
list show releases on remote repository
show show binary information.
push push binary.
pull pull binary.
Options:
--version print version
--help, -h print help
`
func validateConfig() error {
if config.Config.BackendEndpoint == "" {
return errors.New("BackendEndpoint required. Use --endpoint or BINREP_BACKEND_ENDPOINT")
}
return nil
}
func (cli *CLI) prepareFlags(help string) *flag.FlagSet {
flags := flag.NewFlagSet(name, flag.ContinueOnError)
flags.SetOutput(cli.errStream)
flags.Usage = func() {
fmt.Fprint(cli.errStream, help)
}
return flags
}
var listHelpText = `Usage: binrep list [options]
show releases on remote repository
Options:
`
func (cli *CLI) doList(args []string) error {
var param command.ListParam
flags := cli.prepareFlags(listHelpText)
if err := flags.Parse(args); err != nil {
return err
}
if len(flags.Args()) != 0 {
fmt.Fprint(cli.errStream, listHelpText)
return errors.Errorf("extra arguments")
}
if err := validateConfig(); err != nil {
return err
}
return command.List(¶m)
}
var showHelpText = `Usage: binrep show [options] <host>/<user>/<project>
show binary information.
Options:
--timestamp, -t binary timestamp
`
func (cli *CLI) doShow(args []string) error {
var param command.ShowParam
flags := cli.prepareFlags(showHelpText)
flags.StringVar(¶m.Timestamp, "t", "", "")
flags.StringVar(¶m.Timestamp, "timestamp", "", "")
if err := flags.Parse(args); err != nil {
return err
}
if len(flags.Args()) < 1 {
fmt.Fprint(cli.errStream, showHelpText)
return errors.Errorf("too few arguments")
}
if err := validateConfig(); err != nil {
return err
}
return command.Show(¶m, flags.Arg(0))
}
var pushHelpText = `Usage: binrep push [options] <host>/<user>/<project> /path/to/binary ...
push binary.
Options:
--timestamp, -t binary timestamp
--keep-releases, -k the number of releases that it keeps (default: 5)
--force, -f always push even if each checksum of binaries is the same with each one on remote storage (default: false)
`
func (cli *CLI) doPush(args []string) error {
var param command.PushParam
flags := cli.prepareFlags(pushHelpText)
flags.StringVar(¶m.Timestamp, "t", "", "")
flags.StringVar(¶m.Timestamp, "timestamp", "", "")
flags.IntVar(¶m.KeepReleases, "k", defaultKeepReleases, "")
flags.IntVar(¶m.KeepReleases, "keep-releases", defaultKeepReleases, "")
flags.BoolVar(¶m.Force, "f", false, "")
flags.BoolVar(¶m.Force, "force", false, "")
if err := flags.Parse(args); err != nil {
return err
}
argLen := len(flags.Args())
if argLen < 2 {
fmt.Fprint(cli.errStream, pushHelpText)
return errors.Errorf("too few arguments")
}
if err := validateConfig(); err != nil {
return err
}
return command.Push(¶m, flags.Arg(0), flags.Args()[1:argLen])
}
var pullHelpText = `Usage: binrep pull [options] <host>/<user>/<project> /path/to/binary
pull binary.
Options:
--timestamp, -t binary timestamp
--max-bandwidth, -bw max bandwidth for download binaries (Bytes/sec) eg. '1 MB', '1024 KB'
`
func (cli *CLI) doPull(args []string) error {
var param command.PullParam
flags := cli.prepareFlags(pullHelpText)
flags.StringVar(¶m.Timestamp, "t", "", "")
flags.StringVar(¶m.Timestamp, "timestamp", "", "")
flags.StringVar(¶m.MaxBandWidth, "bw", "", "")
flags.StringVar(¶m.MaxBandWidth, "max-bandwidth", "", "")
if err := flags.Parse(args); err != nil {
return err
}
if len(flags.Args()) != 2 {
fmt.Fprint(cli.errStream, pullHelpText)
return errors.Errorf("too few or many arguments")
}
if err := validateConfig(); err != nil {
return err
}
return command.Pull(¶m, flags.Arg(0), flags.Arg(1))
}