This repository has been archived by the owner on Oct 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.go
73 lines (61 loc) · 1.57 KB
/
cli.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
package main
import (
"fmt"
"os"
"github.com/someone-stole-my-name/nativify/command"
"github.com/mitchellh/cli"
)
func Run(args []string) int {
// Meta-option for executables.
// It defines output color and its stdout/stderr stream.
meta := &command.Meta{
Ui: &cli.ColoredUi{
InfoColor: cli.UiColorBlue,
ErrorColor: cli.UiColorRed,
Ui: &cli.BasicUi{
Writer: os.Stdout,
ErrorWriter: os.Stderr,
Reader: os.Stdin,
},
}}
return RunCustom(args, Commands(meta))
}
func RunCustom(args []string, commands map[string]cli.CommandFactory) int {
// Get the command line args. We shortcut "--version" and "-v" to
// just show the version.
for _, arg := range args {
if arg == "-v" || arg == "-version" || arg == "--version" {
newArgs := make([]string, len(args)+1)
newArgs[0] = "version"
copy(newArgs[1:], args)
args = newArgs
break
}
}
if len(args) > 1 && args[0] == "add" {
newArgs := make([]string, 4)
newArgs[0] = args[0]
for i, arg := range args {
if arg == "-n" || arg == "-name" || arg == "--name" {
newArgs[1] = args[i+1]
} else if arg == "-u" || arg == "-url" || arg == "--url" {
newArgs[2] = args[i+1]
} else if arg == "-i" || arg == "-icon" || arg == "--icon" {
newArgs[3] = args[i+1]
}
}
args = newArgs
}
cli := &cli.CLI{
Args: args,
Commands: commands,
Version: Version,
HelpFunc: cli.BasicHelpFunc(Name),
HelpWriter: os.Stdout,
}
exitCode, err := cli.Run()
if err != nil {
fmt.Fprintf(os.Stderr, "Failed to execute: %s\n", err.Error())
}
return exitCode
}