-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.go
216 lines (165 loc) · 5.77 KB
/
run.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
/*
Copyright © 2021 NAME HERE <EMAIL ADDRESS>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"io/ioutil"
"fmt"
"strings"
"bytes"
"html"
"strconv"
"path/filepath"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/sergi/go-diff/diffmatchpatch"
)
var repo string
// runCmd represents the run command
var runCmd = &cobra.Command{
Use: "run",
Short: "Compare production config with qa config",
Long: `Compare production config with qa config by specifying the name of application to compare
For example:
prodConfigChecker run acm-bpay-api
prodConfigChecker run acm-bpay-api --repo <absolute path to your config repo>`,
Run: func(cmd *cobra.Command, args []string) {
colorBlue := "\033[34m"
colorReset := "\033[0m"
fmt.Println(string(colorBlue), "app name to check : " + args[0])
appName := args[0]
var configRepoPath string
if len(repo) > 0 {
configRepoPath = repo
} else {
configRepoPath = viper.GetString("configRepoPath")
}
files, err := ioutil.ReadDir(configRepoPath + "/production/" + appName)
if err != nil {
panic(err)
}
diffArray := make([]ConfigDiffItem, 0)
for _, f := range files {
if strings.HasPrefix(f.Name(), ".") {
continue
}
var item ConfigDiffItem
prod, err := ioutil.ReadFile(configRepoPath + "/production/" + appName + "/" + f.Name())
if err != nil{
panic(err)
}
qa, err2 := ioutil.ReadFile(configRepoPath + "/qa/" + appName + "/" + f.Name())
if err2 != nil{
panic(err2)
}
qaFileString := string(qa[:])
prodFileString := string(prod[:])
dmp := diffmatchpatch.New()
diffs := dmp.DiffMain(qaFileString, prodFileString, false)
if len(diffs) == 1 {
// skip the file for no diff case
continue
}
fmt.Println(string(colorBlue), "=====================================")
fmt.Println(string(colorBlue), f.Name() + " config files diff : ", string(colorReset))
fmt.Println(dmp.DiffPrettyText(diffs))
fileExtension := filepath.Ext(f.Name())
shouldFixTab := fileExtension == ".yml" || fileExtension == ".yaml"
item.fileName = f.Name()
item.diffLeft = DiffPrettyHtmlLeft(diffs, shouldFixTab)
item.diffRight = DiffPrettyHtmlRight(diffs, shouldFixTab)
diffArray = append(diffArray, item)
}
outputFileName := writeHtmlFile(diffArray, appName)
fmt.Println(string(colorBlue), "=====================================")
fmt.Println("HTML output file : " + outputFileName)
},
}
func init() {
rootCmd.AddCommand(runCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// runCmd.PersistentFlags().String("foo", "", "A help for foo")
rootCmd.PersistentFlags().StringVar(&repo, "repo", "", "Absolute path to your config repo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// runCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}
func writeHtmlFile(diffArray []ConfigDiffItem, appName string) string {
var sb strings.Builder
sb.WriteString("<h2>" + appName + " - config diff report 📋</h2>")
sb.WriteString("<div> number of diff files : " + strconv.Itoa(len(diffArray)) + "</div>")
sb.WriteString("<hr>");
for _, htmlDiff := range diffArray {
sb.WriteString("<div style=\"overflow: auto;\">")
sb.WriteString("<h3>" + htmlDiff.fileName + " : </h3><br>")
sb.WriteString("<div style=\"float: left;width: 48%; border-right: 2px solid #808080;\">")
sb.WriteString("<b> QA</b><br><br>")
sb.WriteString(htmlDiff.diffLeft)
sb.WriteString("</div>")
sb.WriteString("<div style=\"float: left;width: 50%; margin-left: 1em;\">");
sb.WriteString("<b> PROD</b><br><br>")
sb.WriteString(htmlDiff.diffRight)
sb.WriteString("</div>")
sb.WriteString("</div>")
sb.WriteString("<hr>")
}
outputFileName := appName + "_config_diff.html"
ioutil.WriteFile(outputFileName, []byte(sb.String()), 0644)
return outputFileName
}
type ConfigDiffItem struct {
fileName string
diffLeft string
diffRight string
}
func DiffPrettyHtmlLeft(diffs []diffmatchpatch.Diff, doFixTab bool) string {
var buff bytes.Buffer
for _, diff := range diffs {
text := strings.Replace(html.EscapeString(diff.Text), "\n", "<br>", -1)
if doFixTab {
text = strings.Replace(text, " ", " ", -1)
}
switch diff.Type {
case diffmatchpatch.DiffDelete:
_, _ = buff.WriteString("<del style=\"background:#ffb5b5;\">")
_, _ = buff.WriteString(text)
_, _ = buff.WriteString("</del>")
case diffmatchpatch.DiffEqual:
_, _ = buff.WriteString("<span>")
_, _ = buff.WriteString(text)
_, _ = buff.WriteString("</span>")
}
}
return buff.String()
}
func DiffPrettyHtmlRight(diffs []diffmatchpatch.Diff, doFixTab bool) string {
var buff bytes.Buffer
for _, diff := range diffs {
text := strings.Replace(html.EscapeString(diff.Text), "\n", "<br>", -1)
if doFixTab {
text = strings.Replace(text, " ", " ", -1)
}
switch diff.Type {
case diffmatchpatch.DiffInsert:
_, _ = buff.WriteString("<span style=\"background:#d1ffd1;\">")
_, _ = buff.WriteString(text)
_, _ = buff.WriteString("</span>")
case diffmatchpatch.DiffEqual:
_, _ = buff.WriteString("<span>")
_, _ = buff.WriteString(text)
_, _ = buff.WriteString("</span>")
}
}
return buff.String()
}