-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
132 lines (113 loc) · 3.09 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
package main
import (
"os"
"time"
"github.com/urfave/cli/v2"
"github.com/vnteamopen/config-template/actions"
)
const (
// Help template: cli.AppHelpTemplate
name = "Config template"
version = "1.0.0"
)
type FlagName string
const (
FlagOverwrite FlagName = "overwrite"
FlagOutputToScreen FlagName = "out-screen"
FlagCustomPattern FlagName = "custom"
)
var Flags = []cli.Flag{
&cli.BoolFlag{
Name: string(FlagOverwrite),
Usage: "-w",
Required: false,
Value: false,
Aliases: []string{"w"},
},
&cli.BoolFlag{
Name: string(FlagOutputToScreen),
Usage: "-out-screen",
Required: false,
Value: false,
},
&cli.StringSliceFlag{
Name: string(FlagCustomPattern),
Usage: "-c",
Required: false,
HasBeenSet: true,
Value: cli.NewStringSlice("{{", "}}"),
Aliases: []string{"c"},
},
}
func main() {
app := &cli.App{
Name: name,
Version: version,
Compiled: time.Now(),
Authors: []*cli.Author{&cli.Author{Name: "https://vnteamopen.com"}},
HelpName: "config-template",
Usage: "A tool to merge file's contents to a template. Embedded pattern is {{file \"\"}}",
UsageText: `config-template /path/to/input/file /path/to/output/file
config-template -c begin-pattern,end-pattern /path/to/input/file /path/to/output/file
config-template -w /path/to/input/file
config-template help`,
EnableBashCompletion: true,
Flags: Flags,
Action: Action,
}
app.Run(os.Args)
}
func Action(c *cli.Context) error {
c.App.Setup()
isOverwrite := c.Bool(string(FlagOverwrite))
isOutputToScreen := c.Bool(string(FlagOutputToScreen))
if valid := validArgs(c.NArg(), isOverwrite, isOutputToScreen); !valid {
cli.ShowAppHelp(c)
return cli.Exit("", 1)
}
templatePath, outputPaths := getPaths(c.Args(), isOverwrite)
pattern := c.StringSlice(string(FlagCustomPattern))
if valid := validPattern(pattern); !valid {
cli.ShowAppHelp(c)
return cli.Exit("Custom pattern must contain begin and end part", 1)
}
if err := actions.CharByCharMerge(actions.MergeRequest{
InputPath: templatePath,
ListOutputPath: outputPaths,
IsOutputToScreen: isOutputToScreen,
Pattern: pattern,
}); err != nil {
return cli.Exit(err.Error(), 1)
}
if isOverwrite {
if err := actions.OverwriteInput(templatePath); err != nil {
return cli.Exit(err.Error(), 1)
}
}
return cli.Exit("", 0)
}
func validArgs(totalArgs int, isOverwrite, isOutputToScreen bool) bool {
requiredArgs := 2
if isOverwrite || isOutputToScreen {
requiredArgs = 1
}
return totalArgs >= requiredArgs
}
func getPaths(args cli.Args, isOverwrite bool) (templatePath string, listOutputPath []string) {
templatePath = args.Get(0)
noOutputs := args.Len() - 1
listOutputPath = make([]string, 0, args.Len())
if isOverwrite {
listOutputPath = append(listOutputPath, actions.CreateTmpFile(templatePath))
}
for i := 0; i < noOutputs; i++ {
listOutputPath = append(listOutputPath, args.Get(i+1))
}
return templatePath, listOutputPath
}
func validPattern(pattern []string) bool {
if len(pattern) != 2 {
return false
}
return true
}