mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 04:20:11 +00:00
361 lines
12 KiB
Go
361 lines
12 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v3
|
|
|
|
import (
|
|
"context"
|
|
"crypto/sha256"
|
|
"fmt"
|
|
"reflect"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/pb33f/libopenapi/datamodel"
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/datamodel/low/base"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"github.com/pb33f/libopenapi/orderedmap"
|
|
"github.com/pb33f/libopenapi/utils"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
// Components represents a low-level OpenAPI 3+ Components Object, that is backed by a low-level one.
|
|
//
|
|
// Holds a set of reusable objects for different aspects of the OAS. All objects defined within the components object
|
|
// will have no effect on the API unless they are explicitly referenced from properties outside the components object.
|
|
// - https://spec.openapis.org/oas/v3.1.0#components-object
|
|
type Components struct {
|
|
Schemas low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*base.SchemaProxy]]]
|
|
Responses low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*Response]]]
|
|
Parameters low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*Parameter]]]
|
|
Examples low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*base.Example]]]
|
|
RequestBodies low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*RequestBody]]]
|
|
Headers low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*Header]]]
|
|
SecuritySchemes low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*SecurityScheme]]]
|
|
Links low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*Link]]]
|
|
Callbacks low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*Callback]]]
|
|
PathItems low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[*PathItem]]]
|
|
Extensions *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]]
|
|
KeyNode *yaml.Node
|
|
RootNode *yaml.Node
|
|
*low.Reference
|
|
low.NodeMap
|
|
}
|
|
|
|
type componentBuildResult[T any] struct {
|
|
key low.KeyReference[string]
|
|
value low.ValueReference[T]
|
|
}
|
|
|
|
type componentInput struct {
|
|
node *yaml.Node
|
|
currentLabel *yaml.Node
|
|
}
|
|
|
|
// GetExtensions returns all Components extensions and satisfies the low.HasExtensions interface.
|
|
func (co *Components) GetExtensions() *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]] {
|
|
return co.Extensions
|
|
}
|
|
|
|
// GetRootNode returns the root yaml node of the Components object
|
|
func (co *Components) GetRootNode() *yaml.Node {
|
|
return co.RootNode
|
|
}
|
|
|
|
// GetKeyNode returns the key yaml node of the Components object
|
|
func (co *Components) GetKeyNode() *yaml.Node {
|
|
return co.KeyNode
|
|
}
|
|
|
|
// Hash will return a consistent SHA256 Hash of the Encoding object
|
|
func (co *Components) Hash() [32]byte {
|
|
var f []string
|
|
generateHashForObjectMap(co.Schemas.Value, &f)
|
|
generateHashForObjectMap(co.Responses.Value, &f)
|
|
generateHashForObjectMap(co.Parameters.Value, &f)
|
|
generateHashForObjectMap(co.Examples.Value, &f)
|
|
generateHashForObjectMap(co.RequestBodies.Value, &f)
|
|
generateHashForObjectMap(co.Headers.Value, &f)
|
|
generateHashForObjectMap(co.SecuritySchemes.Value, &f)
|
|
generateHashForObjectMap(co.Links.Value, &f)
|
|
generateHashForObjectMap(co.Callbacks.Value, &f)
|
|
generateHashForObjectMap(co.PathItems.Value, &f)
|
|
f = append(f, low.HashExtensions(co.Extensions)...)
|
|
return sha256.Sum256([]byte(strings.Join(f, "|")))
|
|
}
|
|
|
|
func generateHashForObjectMap[T any](collection *orderedmap.Map[low.KeyReference[string], low.ValueReference[T]], hash *[]string) {
|
|
for pair := orderedmap.First(orderedmap.SortAlpha(collection)); pair != nil; pair = pair.Next() {
|
|
*hash = append(*hash, low.GenerateHashString(pair.Value().Value))
|
|
}
|
|
}
|
|
|
|
// FindExtension attempts to locate an extension with the supplied key
|
|
func (co *Components) FindExtension(ext string) *low.ValueReference[*yaml.Node] {
|
|
return low.FindItemInOrderedMap(ext, co.Extensions)
|
|
}
|
|
|
|
// FindSchema attempts to locate a SchemaProxy from 'schemas' with a specific name
|
|
func (co *Components) FindSchema(schema string) *low.ValueReference[*base.SchemaProxy] {
|
|
return low.FindItemInOrderedMap[*base.SchemaProxy](schema, co.Schemas.Value)
|
|
}
|
|
|
|
// FindResponse attempts to locate a Response from 'responses' with a specific name
|
|
func (co *Components) FindResponse(response string) *low.ValueReference[*Response] {
|
|
return low.FindItemInOrderedMap[*Response](response, co.Responses.Value)
|
|
}
|
|
|
|
// FindParameter attempts to locate a Parameter from 'parameters' with a specific name
|
|
func (co *Components) FindParameter(response string) *low.ValueReference[*Parameter] {
|
|
return low.FindItemInOrderedMap[*Parameter](response, co.Parameters.Value)
|
|
}
|
|
|
|
// FindSecurityScheme attempts to locate a SecurityScheme from 'securitySchemes' with a specific name
|
|
func (co *Components) FindSecurityScheme(sScheme string) *low.ValueReference[*SecurityScheme] {
|
|
return low.FindItemInOrderedMap[*SecurityScheme](sScheme, co.SecuritySchemes.Value)
|
|
}
|
|
|
|
// FindExample attempts tp
|
|
func (co *Components) FindExample(example string) *low.ValueReference[*base.Example] {
|
|
return low.FindItemInOrderedMap[*base.Example](example, co.Examples.Value)
|
|
}
|
|
|
|
func (co *Components) FindRequestBody(requestBody string) *low.ValueReference[*RequestBody] {
|
|
return low.FindItemInOrderedMap[*RequestBody](requestBody, co.RequestBodies.Value)
|
|
}
|
|
|
|
func (co *Components) FindHeader(header string) *low.ValueReference[*Header] {
|
|
return low.FindItemInOrderedMap[*Header](header, co.Headers.Value)
|
|
}
|
|
|
|
func (co *Components) FindLink(link string) *low.ValueReference[*Link] {
|
|
return low.FindItemInOrderedMap[*Link](link, co.Links.Value)
|
|
}
|
|
|
|
func (co *Components) FindPathItem(path string) *low.ValueReference[*PathItem] {
|
|
return low.FindItemInOrderedMap[*PathItem](path, co.PathItems.Value)
|
|
}
|
|
|
|
func (co *Components) FindCallback(callback string) *low.ValueReference[*Callback] {
|
|
return low.FindItemInOrderedMap[*Callback](callback, co.Callbacks.Value)
|
|
}
|
|
|
|
// Build converts root YAML node containing components to low level model.
|
|
// Process each component in parallel.
|
|
func (co *Components) Build(ctx context.Context, root *yaml.Node, idx *index.SpecIndex) error {
|
|
root = utils.NodeAlias(root)
|
|
utils.CheckForMergeNodes(root)
|
|
co.Reference = new(low.Reference)
|
|
co.Nodes = low.ExtractNodes(ctx, root)
|
|
co.Extensions = low.ExtractExtensions(root)
|
|
low.ExtractExtensionNodes(ctx, co.Extensions, co.Nodes)
|
|
co.RootNode = root
|
|
co.KeyNode = root
|
|
var reterr error
|
|
var ceMutex sync.Mutex
|
|
var wg sync.WaitGroup
|
|
wg.Add(10)
|
|
|
|
captureError := func(err error) {
|
|
ceMutex.Lock()
|
|
defer ceMutex.Unlock()
|
|
if err != nil {
|
|
reterr = err
|
|
}
|
|
}
|
|
|
|
go func() {
|
|
schemas, err := extractComponentValues[*base.SchemaProxy](ctx, SchemasLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Schemas = schemas
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
parameters, err := extractComponentValues[*Parameter](ctx, ParametersLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Parameters = parameters
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
responses, err := extractComponentValues[*Response](ctx, ResponsesLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Responses = responses
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
examples, err := extractComponentValues[*base.Example](ctx, base.ExamplesLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Examples = examples
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
requestBodies, err := extractComponentValues[*RequestBody](ctx, RequestBodiesLabel, root, idx, co)
|
|
captureError(err)
|
|
co.RequestBodies = requestBodies
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
headers, err := extractComponentValues[*Header](ctx, HeadersLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Headers = headers
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
securitySchemes, err := extractComponentValues[*SecurityScheme](ctx, SecuritySchemesLabel, root, idx, co)
|
|
captureError(err)
|
|
co.SecuritySchemes = securitySchemes
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
links, err := extractComponentValues[*Link](ctx, LinksLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Links = links
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
callbacks, err := extractComponentValues[*Callback](ctx, CallbacksLabel, root, idx, co)
|
|
captureError(err)
|
|
co.Callbacks = callbacks
|
|
wg.Done()
|
|
}()
|
|
go func() {
|
|
pathItems, err := extractComponentValues[*PathItem](ctx, PathItemsLabel, root, idx, co)
|
|
captureError(err)
|
|
co.PathItems = pathItems
|
|
wg.Done()
|
|
}()
|
|
|
|
wg.Wait()
|
|
return reterr
|
|
}
|
|
|
|
// extractComponentValues converts all the YAML nodes of a component type to
|
|
// low level model.
|
|
// Process each node in parallel.
|
|
func extractComponentValues[T low.Buildable[N], N any](ctx context.Context, label string, root *yaml.Node, idx *index.SpecIndex, co *Components) (low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[T]]], error) {
|
|
var emptyResult low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[T]]]
|
|
_, nodeLabel, nodeValue := utils.FindKeyNodeFullTop(label, root.Content)
|
|
if nodeValue == nil {
|
|
return emptyResult, nil
|
|
}
|
|
co.Nodes.Store(nodeLabel.Line, nodeLabel)
|
|
componentValues := orderedmap.New[low.KeyReference[string], low.ValueReference[T]]()
|
|
if utils.IsNodeArray(nodeValue) {
|
|
return emptyResult, fmt.Errorf("node is array, cannot be used in components: line %d, column %d", nodeValue.Line, nodeValue.Column)
|
|
}
|
|
|
|
in := make(chan componentInput)
|
|
out := make(chan componentBuildResult[T])
|
|
done := make(chan struct{})
|
|
var wg sync.WaitGroup
|
|
wg.Add(2) // input and output goroutines.
|
|
|
|
// Send input.
|
|
go func() {
|
|
defer func() {
|
|
close(in)
|
|
wg.Done()
|
|
}()
|
|
var currentLabel *yaml.Node
|
|
for i, node := range nodeValue.Content {
|
|
// always ignore extensions
|
|
if i%2 == 0 {
|
|
currentLabel = node
|
|
continue
|
|
}
|
|
// only check for lowercase extensions as 'X-' is still valid as a key (annoyingly).
|
|
if strings.HasPrefix(currentLabel.Value, "x-") {
|
|
continue
|
|
}
|
|
|
|
select {
|
|
case in <- componentInput{
|
|
node: node,
|
|
currentLabel: currentLabel,
|
|
}:
|
|
case <-done:
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
// Collect output.
|
|
go func() {
|
|
for result := range out {
|
|
componentValues.Set(result.key, result.value)
|
|
}
|
|
close(done)
|
|
wg.Done()
|
|
}()
|
|
|
|
// Translate.
|
|
translateFunc := func(value componentInput) (componentBuildResult[T], error) {
|
|
var n T = new(N)
|
|
currentLabel := value.currentLabel
|
|
node := value.node
|
|
|
|
// if this is a reference, extract it (although components with references is an antipattern)
|
|
// If you're building components as references... pls... stop, this code should not need to be here.
|
|
// TODO: check circular crazy on this. It may explode
|
|
var err error
|
|
nCtx := ctx
|
|
fIdx := idx
|
|
if h, rv, _ := utils.IsNodeRefValue(node); h && label != SchemasLabel {
|
|
node, fIdx, err, nCtx = low.LocateRefNodeWithContext(ctx, node, idx)
|
|
nCtx = context.WithValue(nCtx, "reference", rv)
|
|
}
|
|
if err != nil {
|
|
return componentBuildResult[T]{}, err
|
|
}
|
|
|
|
// build.
|
|
_ = low.BuildModel(node, n)
|
|
err = n.Build(nCtx, currentLabel, node, fIdx)
|
|
if err != nil {
|
|
return componentBuildResult[T]{}, err
|
|
}
|
|
|
|
nType := reflect.TypeOf(n)
|
|
nValue := reflect.ValueOf(n)
|
|
|
|
// Check if the type implements low.HasKeyNode
|
|
hasKeyNodeType := reflect.TypeOf((*low.HasKeyNode)(nil)).Elem()
|
|
if nType.Implements(hasKeyNodeType) {
|
|
r := nValue.Interface()
|
|
if h, ok := r.(low.HasKeyNode); ok {
|
|
if k, ko := r.(low.AddNodes); ko {
|
|
k.AddNode(h.GetKeyNode().Line, h.GetKeyNode())
|
|
}
|
|
}
|
|
|
|
}
|
|
return componentBuildResult[T]{
|
|
key: low.KeyReference[string]{
|
|
KeyNode: currentLabel,
|
|
Value: currentLabel.Value,
|
|
},
|
|
value: low.ValueReference[T]{
|
|
Value: n,
|
|
ValueNode: node,
|
|
},
|
|
}, nil
|
|
}
|
|
err := datamodel.TranslatePipeline[componentInput, componentBuildResult[T]](in, out, translateFunc)
|
|
wg.Wait()
|
|
if err != nil {
|
|
return emptyResult, err
|
|
}
|
|
|
|
//for rt := componentValues.First(); rt != nil; rt = rt.Next() {
|
|
//
|
|
//}
|
|
|
|
results := low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[T]]]{
|
|
KeyNode: nodeLabel,
|
|
ValueNode: nodeValue,
|
|
Value: componentValues,
|
|
}
|
|
return results, nil
|
|
}
|