mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 12:37:49 +00:00
80 lines
2.3 KiB
Go
80 lines
2.3 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package base
|
|
|
|
import (
|
|
"context"
|
|
"crypto/sha256"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"github.com/pb33f/libopenapi/orderedmap"
|
|
"github.com/pb33f/libopenapi/utils"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
// Example represents a low-level Example object as defined by OpenAPI 3+
|
|
//
|
|
// v3 - https://spec.openapis.org/oas/v3.1.0#example-object
|
|
type Example struct {
|
|
Summary low.NodeReference[string]
|
|
Description low.NodeReference[string]
|
|
Value low.NodeReference[*yaml.Node]
|
|
ExternalValue low.NodeReference[string]
|
|
Extensions *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]]
|
|
*low.Reference
|
|
}
|
|
|
|
// FindExtension returns a ValueReference containing the extension value, if found.
|
|
func (ex *Example) FindExtension(ext string) *low.ValueReference[*yaml.Node] {
|
|
return low.FindItemInOrderedMap[*yaml.Node](ext, ex.Extensions)
|
|
}
|
|
|
|
// Hash will return a consistent SHA256 Hash of the Discriminator object
|
|
func (ex *Example) Hash() [32]byte {
|
|
var f []string
|
|
if ex.Summary.Value != "" {
|
|
f = append(f, ex.Summary.Value)
|
|
}
|
|
if ex.Description.Value != "" {
|
|
f = append(f, ex.Description.Value)
|
|
}
|
|
if ex.Value.Value != nil && !ex.Value.Value.IsZero() {
|
|
// this could be anything!
|
|
b, _ := yaml.Marshal(ex.Value.Value)
|
|
f = append(f, fmt.Sprintf("%x", sha256.Sum256(b)))
|
|
}
|
|
if ex.ExternalValue.Value != "" {
|
|
f = append(f, ex.ExternalValue.Value)
|
|
}
|
|
f = append(f, low.HashExtensions(ex.Extensions)...)
|
|
return sha256.Sum256([]byte(strings.Join(f, "|")))
|
|
}
|
|
|
|
// Build extracts extensions and example value
|
|
func (ex *Example) Build(_ context.Context, _, root *yaml.Node, _ *index.SpecIndex) error {
|
|
root = utils.NodeAlias(root)
|
|
utils.CheckForMergeNodes(root)
|
|
ex.Reference = new(low.Reference)
|
|
ex.Extensions = low.ExtractExtensions(root)
|
|
_, ln, vn := utils.FindKeyNodeFull(ValueLabel, root.Content)
|
|
|
|
if vn != nil {
|
|
ex.Value = low.NodeReference[*yaml.Node]{
|
|
Value: vn,
|
|
KeyNode: ln,
|
|
ValueNode: vn,
|
|
}
|
|
return nil
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetExtensions will return Example extensions to satisfy the HasExtensions interface.
|
|
func (ex *Example) GetExtensions() *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]] {
|
|
return ex.Extensions
|
|
}
|