-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgenerate.go
347 lines (268 loc) · 7.65 KB
/
generate.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
package main
import (
"encoding/json"
"fmt"
"io/fs"
"log"
"os"
"os/exec"
"path/filepath"
"strings"
"github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/v7/config"
)
var files = []string{"README.md", "docs", ".swagger-codegen"}
var filesToKeep = []string{"docs/DecryptionKey.md", "docs/SealedResults.md", "docs/Webhook.md"}
var pathPrefix = "sdk"
func main() {
moveFilesToKeepToTmpDir()
handlePotentialMajorRelease()
bumpConfigVersion()
generateSwagger()
moveFiles()
fixFingerPrintApiMdFile()
fixErrorCodemodel()
fixSearchEventsDocsDuplicatedParam()
moveFilesToKeepFromTmpDir()
formatCode()
}
func ensureTmpDir(paths ...string) {
fullPath := fmt.Sprintf("tmp/%s", strings.Join(paths, "/"))
if _, err := os.Stat(fullPath); os.IsNotExist(err) {
err := os.Mkdir(fullPath, 0755)
if err != nil {
log.Fatal(err)
}
}
}
func moveFilesToKeepToTmpDir() {
ensureTmpDir()
ensureTmpDir("docs")
for _, file := range filesToKeep {
filePath := fmt.Sprintf("%s", file)
newFilePath := fmt.Sprintf("tmp/%s", file)
err := os.Rename(filePath, newFilePath)
if err != nil {
log.Fatal(err)
}
}
}
func moveFilesToKeepFromTmpDir() {
for _, file := range filesToKeep {
filePath := fmt.Sprintf("./tmp/%s", file)
newFilePath := fmt.Sprintf("%s", file)
err := os.Rename(filePath, newFilePath)
if err != nil {
log.Fatal(err)
}
}
}
func getModuleVersion() string {
cmd := exec.Command("go", "mod", "edit", "-json")
output, err := cmd.Output()
if err != nil {
log.Fatal(err)
}
var module struct {
Module struct {
Path string
}
}
if err := json.Unmarshal(output, &module); err != nil {
log.Fatal(err)
}
parts := strings.Split(module.Module.Path, "/")
version := parts[len(parts)-1]
// Return version without "v" prefix
return version[1:]
}
func getVersion() string {
var version string
envVersion := os.Getenv("VERSION")
if envVersion != "" {
version = envVersion
} else {
configFile := config.ReadConfig("./config.json")
version = configFile.PackageVersion
}
return version
}
func replaceMajorVersionMentions(newMajor string, oldMajor string) {
newMajor = fmt.Sprintf("github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/v%s", newMajor)
oldMajor = fmt.Sprintf("github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/v%s", oldMajor)
log.Println("Replacing major version mentions in files", oldMajor, "->", newMajor)
err := filepath.Walk(".", func(path string, info fs.FileInfo, err error) error {
if info.IsDir() || strings.Contains(path, ".git") || strings.Contains(path, "node_modules") {
log.Printf("Skipping %s", path)
return nil
}
fileContents, err := os.ReadFile(path)
if err != nil {
return err
}
log.Printf("Processing %s", path)
newContents := strings.ReplaceAll(string(fileContents), oldMajor, newMajor)
err = os.WriteFile(path, []byte(newContents), 0644)
if err != nil {
return err
}
return nil
})
if err != nil {
log.Fatal(err)
}
}
func handlePotentialMajorRelease() {
version := getVersion()
newMajorVersion := strings.Split(version, ".")[0]
moduleVersion := getModuleVersion()
if newMajorVersion != moduleVersion {
log.Println("Major update detected, bumping version usage in all files")
replaceMajorVersionMentions(newMajorVersion, moduleVersion)
}
}
func bumpConfigVersion() {
version := getVersion()
configFile := config.ReadConfig("./config.json")
if configFile.PackageVersion == version {
log.Println("Version is up to date")
return
}
configFile.PackageVersion = version
configContents, err := json.MarshalIndent(configFile, "", " ")
if err != nil {
log.Fatal(err)
}
if err = os.WriteFile("./config.json", configContents, 0644); err != nil {
log.Fatal(err)
}
}
func removeFileOrDirIfExists(path string) {
if stat, err := os.Stat(path); err == nil {
var err error
if stat.IsDir() {
err = os.RemoveAll(path)
} else {
err = os.Remove(path)
}
if err != nil {
log.Fatal(err)
}
}
}
func cleanupOldFiles() {
for _, filePath := range files {
removeFileOrDirIfExists(filePath)
}
}
func moveFiles() {
cleanupOldFiles()
for _, file := range files {
filePath := fmt.Sprintf("%s/%s", pathPrefix, file)
newFilePath := fmt.Sprintf("./%s", file)
err := os.Rename(filePath, newFilePath)
if err != nil {
log.Fatal(err)
}
}
}
func generateSwagger() {
cmd := exec.Command(
"java",
"-jar",
"./bin/swagger-codegen-cli.jar",
"generate",
"-t",
"./template",
"-l",
"go",
"-i",
"res/fingerprint-server-api.yaml",
"-o",
"./sdk",
"-c",
"config.json")
out, cmdErr := cmd.Output()
if cmdErr != nil {
log.Fatal(cmdErr)
}
fmt.Println(string(out))
}
// fixErrorCodemodel fixes a bug in the generated model_error_code.go file.
// The TOOMANYREQUESTS error code has a wrong name, it is generated as 429TOOMANYREQUESTS_ instead of TOOMANYREQUESTS429 ErrorCode.
// This function reads the file, replaces the wrong name with the correct one and saves the changes.
func fixErrorCodemodel() {
path := "sdk/model_error_code.go"
contents, err := os.ReadFile(path)
if err != nil {
log.Fatal(err)
}
contents = []byte(strings.Replace(string(contents), "429TOOMANYREQUESTS_ ErrorCode", "TOOMANYREQUESTS429 ErrorCode", -1))
err = os.WriteFile(path, contents, 0644)
if err != nil {
log.Fatal(err)
}
}
// fixSearchEventsDocsDuplicatedParam fixes invalid docs for EventsSearch method, where FingerprintApiSearchEventsOpts references were duplicated in both Required and Optional params section
func fixSearchEventsDocsDuplicatedParam() {
phraseToRemove := "**optional** | ***FingerprintApiSearchEventsOpts** | optional parameters | nil if no parameters"
filePath := "docs/FingerprintApi.md"
fileContents, err := os.ReadFile(filePath)
if err != nil {
log.Fatal(err)
}
fileContentsArray := strings.Split(string(fileContents), "\n")
var fileContentsArrayResult []string
seenFirstLine := false
for _, line := range fileContentsArray {
if strings.Contains(line, phraseToRemove) {
if !seenFirstLine {
// Skip replacement the first time we see the phraseToRemove, because in this case we want to keep it
seenFirstLine = true
} else {
line = strings.Replace(line, phraseToRemove, "", -1)
if line == "" {
continue
}
}
}
fileContentsArrayResult = append(fileContentsArrayResult, line)
}
err = os.WriteFile(filePath, []byte(strings.Join(fileContentsArrayResult, "\n")), 0644)
if err != nil {
log.Fatal(err)
}
}
// fixFingerPrintApiMdFile fixes a bug with generated file in "docs/FingerprintApi.md" which contains invalid title generated by swagger
func fixFingerPrintApiMdFile() {
token := "{{classname}}"
target := "FingerprintApi"
targetsToRemove := []string{"**optional** | ***FingerprintApiGetVisitsOpts** | optional parameters | nil if no parameters"}
filePath := "docs/FingerprintApi.md"
fileContents, err := os.ReadFile(filePath)
if err != nil {
log.Fatal(err)
}
fileContents = []byte(strings.Replace(string(fileContents), token, target, -1))
fileContentsArray := strings.Split(string(fileContents), "\n")
var fileContentsArrayResult []string
// Fixes markdown table for optional parameters, by default swagger-codegen applies new line there which breaks the table.
for _, line := range fileContentsArray {
for _, targetToRemove := range targetsToRemove {
if line != targetToRemove {
fileContentsArrayResult = append(fileContentsArrayResult, strings.Replace(line, targetToRemove, "", -1))
}
}
}
err = os.WriteFile(filePath, []byte(strings.Join(fileContentsArrayResult, "\n")), 0644)
if err != nil {
log.Fatal(err)
}
}
func formatCode() {
cmd := exec.Command("go", "fmt")
cmd.Dir = "./sdk"
_, err := cmd.Output()
if err != nil {
log.Fatal(err)
}
}