forked from google/gnostic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
104 lines (91 loc) · 3.06 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
// Copyright 2020 Google LLC. All Rights Reserved.
//
// 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 main
import (
"encoding/json"
"log"
"os"
"path/filepath"
"github.com/golang/protobuf/proto"
discovery_v1 "github.com/google/gnostic/discovery"
metrics "github.com/google/gnostic/metrics"
vocabulary "github.com/google/gnostic/metrics/vocabulary"
openapiv2 "github.com/google/gnostic/openapiv2"
openapiv3 "github.com/google/gnostic/openapiv3"
plugins "github.com/google/gnostic/plugins"
)
// Record an error, then serialize and return a response.
func sendAndExitIfError(err error, response *plugins.Response) {
if err != nil {
response.Errors = append(response.Errors, err.Error())
sendAndExit(response)
}
}
// Serialize and return a response.
func sendAndExit(response *plugins.Response) {
responseBytes, _ := proto.Marshal(response)
os.Stdout.Write(responseBytes)
os.Exit(0)
}
// This is the main function for the plugin.
func main() {
env, err := plugins.NewEnvironment()
env.RespondAndExitIfError(err)
var vocab *metrics.Vocabulary
for _, model := range env.Request.Models {
switch model.TypeUrl {
case "openapi.v2.Document":
documentv2 := &openapiv2.Document{}
err = proto.Unmarshal(model.Value, documentv2)
if err == nil {
// Analyze the API document.
vocab = vocabulary.NewVocabularyFromOpenAPIv2(documentv2)
}
case "openapi.v3.Document":
documentv3 := &openapiv3.Document{}
err = proto.Unmarshal(model.Value, documentv3)
if err == nil {
// Analyze the API document.
vocab = vocabulary.NewVocabularyFromOpenAPIv3(documentv3)
}
case "discovery.v1.Document":
discoveryDocument := &discovery_v1.Document{}
err = proto.Unmarshal(model.Value, discoveryDocument)
if err == nil {
// Analyze the API document.
vocab = vocabulary.NewVocabularyFromDiscovery(discoveryDocument)
}
default:
log.Printf("unsupported document type %s", model.TypeUrl)
}
}
if vocab != nil {
outputName1 := filepath.Join(
filepath.Dir(env.Request.SourceName), "vocabulary.json")
outputName2 := filepath.Join(
filepath.Dir(env.Request.SourceName), "vocabulary.pb")
file := &plugins.File{}
file.Name = outputName1
file.Data, err = json.MarshalIndent(vocab, "", " ")
env.RespondAndExitIfError(err)
file.Data = append(file.Data, []byte("\n")...)
env.Response.Files = append(env.Response.Files, file)
file2 := &plugins.File{}
file2.Name = outputName2
file2.Data, err = proto.Marshal(vocab)
env.RespondAndExitIfError(err)
env.Response.Files = append(env.Response.Files, file2)
}
env.RespondAndExit()
}