mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 04:20:11 +00:00
Also ran `gofmt` across the entire project. Things need cleaning up. Signed-off-by: Dave Shanley <dave@quobix.com>
93 lines
2.7 KiB
Go
93 lines
2.7 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v3
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"github.com/pb33f/libopenapi/utils"
|
|
"gopkg.in/yaml.v3"
|
|
"sort"
|
|
"strings"
|
|
)
|
|
|
|
// Server represents a low-level OpenAPI 3+ Server object.
|
|
// - https://spec.openapis.org/oas/v3.1.0#server-object
|
|
type Server struct {
|
|
URL low.NodeReference[string]
|
|
Description low.NodeReference[string]
|
|
Variables low.NodeReference[map[low.KeyReference[string]]low.ValueReference[*ServerVariable]]
|
|
Extensions map[low.KeyReference[string]]low.ValueReference[any]
|
|
*low.Reference
|
|
}
|
|
|
|
// GetExtensions returns all Paths extensions and satisfies the low.HasExtensions interface.
|
|
func (s *Server) GetExtensions() map[low.KeyReference[string]]low.ValueReference[any] {
|
|
return s.Extensions
|
|
}
|
|
|
|
// FindVariable attempts to locate a ServerVariable instance using the supplied key.
|
|
func (s *Server) FindVariable(serverVar string) *low.ValueReference[*ServerVariable] {
|
|
return low.FindItemInMap[*ServerVariable](serverVar, s.Variables.Value)
|
|
}
|
|
|
|
// Build will extract server variables from the supplied node.
|
|
func (s *Server) Build(root *yaml.Node, idx *index.SpecIndex) error {
|
|
s.Reference = new(low.Reference)
|
|
s.Extensions = low.ExtractExtensions(root)
|
|
kn, vars := utils.FindKeyNode(VariablesLabel, root.Content)
|
|
if vars == nil {
|
|
return nil
|
|
}
|
|
variablesMap := make(map[low.KeyReference[string]]low.ValueReference[*ServerVariable])
|
|
if utils.IsNodeMap(vars) {
|
|
var currentNode string
|
|
var keyNode *yaml.Node
|
|
for i, varNode := range vars.Content {
|
|
if i%2 == 0 {
|
|
currentNode = varNode.Value
|
|
keyNode = varNode
|
|
continue
|
|
}
|
|
variable := ServerVariable{}
|
|
variable.Reference = new(low.Reference)
|
|
_ = low.BuildModel(varNode, &variable)
|
|
variablesMap[low.KeyReference[string]{
|
|
Value: currentNode,
|
|
KeyNode: keyNode,
|
|
}] = low.ValueReference[*ServerVariable]{
|
|
ValueNode: varNode,
|
|
Value: &variable,
|
|
}
|
|
}
|
|
s.Variables = low.NodeReference[map[low.KeyReference[string]]low.ValueReference[*ServerVariable]]{
|
|
KeyNode: kn,
|
|
ValueNode: vars,
|
|
Value: variablesMap,
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Hash will return a consistent SHA256 Hash of the Server object
|
|
func (s *Server) Hash() [32]byte {
|
|
var f []string
|
|
keys := make([]string, len(s.Variables.Value))
|
|
z := 0
|
|
for k := range s.Variables.Value {
|
|
keys[z] = low.GenerateHashString(s.Variables.Value[k].Value)
|
|
z++
|
|
}
|
|
sort.Strings(keys)
|
|
f = append(f, keys...)
|
|
if !s.URL.IsEmpty() {
|
|
f = append(f, s.URL.Value)
|
|
}
|
|
if !s.Description.IsEmpty() {
|
|
f = append(f, s.Description.Value)
|
|
}
|
|
return sha256.Sum256([]byte(strings.Join(f, "|")))
|
|
}
|