-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
186 lines (160 loc) · 3.76 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
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
package main
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
"strings"
"github.com/pkg/errors"
diff "github.com/yudai/gojsondiff"
"github.com/yudai/gojsondiff/formatter"
"sigs.k8s.io/yaml"
)
type APISchema struct {
Openapi string `json:"openapi"`
Info Info `json:"info"`
Paths map[string]APIMethods `json:"paths"`
Components *Components `json:"components,omitempty"`
}
type Info struct {
Title string `json:"title"`
Version string `json:"version"`
}
type APIMethods map[string]APIMethod
type APIMethod struct {
Summary string `json:"summary"`
OperationId string `json:"operationId,omitempty"`
Tags []string `json:"tags,omitempty"`
RequestBody json.RawMessage `json:"requestBody,omitempty"`
Parameters []json.RawMessage `json:"parameters,omitempty"`
Responses json.RawMessage `json:"responses"`
}
type Components struct {
Schemas map[string]json.RawMessage `json:"schemas"`
}
func main() {
dir := "openapi"
err := checkParsing(dir)
if err != nil {
panic(err)
}
schema, err := combine(dir)
if err != nil {
panic(err)
}
data, err := yaml.Marshal(schema)
if err != nil {
panic(err)
}
err = os.WriteFile("api.yaml", data, 0644)
if err != nil {
panic(err)
}
}
func checkParsing(dir string) error {
entries, err := os.ReadDir(dir)
if err != nil {
return err
}
for _, entry := range entries {
if !entry.Type().IsRegular() {
continue
}
filename := filepath.Join(dir, entry.Name())
data, err := os.ReadFile(filename)
if err != nil {
return err
}
jsonOriginal, err := yaml.YAMLToJSON(data)
if err != nil {
return err
}
var original map[string]interface{}
err = json.Unmarshal(jsonOriginal, &original)
if err != nil {
return errors.Wrap(err, filename)
}
var schema APISchema
err = yaml.Unmarshal(data, &schema)
if err != nil {
return err
}
jsonParsed, err := json.Marshal(schema)
if err != nil {
return err
}
// Then, Check them
differ := diff.New()
d, err := differ.Compare(jsonOriginal, jsonParsed)
if err != nil {
return errors.Wrap(err, filename)
}
if d.Modified() {
config := formatter.AsciiFormatterConfig{
ShowArrayIndex: true,
Coloring: true,
}
f := formatter.NewAsciiFormatter(original, config)
result, err := f.Format(d)
if err != nil {
return errors.Wrap(err, filename)
}
fmt.Println(result)
return errors.Errorf("%s schema is not preserved", filename)
}
}
return nil
}
func combine(dir string) (*APISchema, error) {
entries, err := os.ReadDir(dir)
if err != nil {
return nil, err
}
combined := APISchema{
Openapi: "3.0.1",
Info: Info{
Title: "Apache JAMES Web Admin API",
Version: "3.8.0",
},
Paths: map[string]APIMethods{},
Components: &Components{
Schemas: map[string]json.RawMessage{},
},
}
for _, entry := range entries {
if !entry.Type().IsRegular() {
continue
}
filename := filepath.Join(dir, entry.Name())
data, err := os.ReadFile(filename)
if err != nil {
return nil, err
}
var schema APISchema
err = yaml.Unmarshal(data, &schema)
if err != nil {
return nil, err
}
for path, methods := range schema.Paths {
for method, schema := range methods {
tag, _, found := strings.Cut(entry.Name(), ".")
if found {
schema.Tags = []string{tag}
}
methods[method] = schema
}
schema.Paths[path] = methods
combined.Paths[path] = methods
}
if schema.Components != nil {
for msg, schema := range schema.Components.Schemas {
_, found := combined.Components.Schemas[msg]
if found {
return nil, errors.Errorf("duplicate message %s in file %s", msg, filename)
}
combined.Components.Schemas[msg] = schema
}
}
}
return &combined, nil
}