Skip to content

Commit

Permalink
merging vocab_plugin from gizzon
Browse files Browse the repository at this point in the history
  • Loading branch information
timburks committed Jun 3, 2020
1 parent dc944c7 commit e775a79
Show file tree
Hide file tree
Showing 10 changed files with 483 additions and 248 deletions.
97 changes: 0 additions & 97 deletions apps/vocabulary/main.go

This file was deleted.

89 changes: 0 additions & 89 deletions apps/vocabulary/v3Processor.go

This file was deleted.

14 changes: 7 additions & 7 deletions metrics/vocabulary.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion metrics/vocabulary.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ message Vocabulary{
repeated WordCount schemas = 1;
repeated WordCount properties = 2;
repeated WordCount operations = 3;
repeated WordCount paramaters = 4;
repeated WordCount parameters = 4;

}
91 changes: 91 additions & 0 deletions plugins/gnostic-vocabulary/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
// 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"
"os"
"path/filepath"

"github.com/golang/protobuf/proto"
metrics "github.com/googleapis/gnostic/metrics"
openapiv2 "github.com/googleapis/gnostic/openapiv2"
openapiv3 "github.com/googleapis/gnostic/openapiv3"
plugins "github.com/googleapis/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 = processDocumentV2(documentv2)
}
case "openapi.v3.Document":
documentv3 := &openapiv3.Document{}
err = proto.Unmarshal(model.Value, documentv3)
if err == nil {
// Analyze the API document.
vocab = processDocumentV3(documentv3)
}
}
}

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()
}
Loading

0 comments on commit e775a79

Please sign in to comment.