-
Notifications
You must be signed in to change notification settings - Fork 1
/
djob.go
78 lines (67 loc) · 1.76 KB
/
djob.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
/*
* Copyright (c) 2017. Harrison Zhu <wcg6121@gmail.com>
* This file is part of djob <https://github.com/HZ89/djob>.
*
* djob is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* djob is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with djob. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"fmt"
"os"
"github.com/HZ89/djob/cmd"
"github.com/mitchellh/cli"
)
// VERSION global version
const VERSION = "0.3.0"
func main() {
args := os.Args[1:]
for _, arg := range args {
if arg == "-v" || arg == "--version" {
newArgs := make([]string, len(args)+1)
newArgs[0] = "version"
copy(newArgs[1:], args)
args = newArgs
break
}
}
c := cli.NewCLI("djob", VERSION)
c.Args = args
c.HelpFunc = cli.BasicHelpFunc("djob")
ui := &cli.BasicUi{Writer: os.Stdout}
c.Commands = map[string]cli.CommandFactory{
"version": func() (cli.Command, error) {
return &cmd.VersionCmd{
Version: VERSION,
Ui: ui,
}, nil
},
"generate": func() (cli.Command, error) {
return &cmd.KeygenCmd{
Ui: ui,
}, nil
},
"agent": func() (cli.Command, error) {
return &cmd.AgentCmd{
Ui: ui,
Version: VERSION,
}, nil
},
}
exitStatus, err := c.Run()
if err != nil {
fmt.Fprintf(os.Stderr, "Error executing CLI: %s\n", err.Error())
os.Exit(1)
}
os.Exit(exitStatus)
}