mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 04:20:11 +00:00
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package base
|
|
|
|
import (
|
|
"context"
|
|
"crypto/sha256"
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"gopkg.in/yaml.v3"
|
|
"strings"
|
|
)
|
|
|
|
// Contact represents a low-level representation of the Contact definitions found at
|
|
//
|
|
// v2 - https://swagger.io/specification/v2/#contactObject
|
|
// v3 - https://spec.openapis.org/oas/v3.1.0#contact-object
|
|
type Contact struct {
|
|
Name low.NodeReference[string]
|
|
URL low.NodeReference[string]
|
|
Email low.NodeReference[string]
|
|
KeyNode *yaml.Node
|
|
RootNode *yaml.Node
|
|
*low.Reference
|
|
low.NodeMap
|
|
}
|
|
|
|
func (c *Contact) Build(ctx context.Context, keyNode, root *yaml.Node, _ *index.SpecIndex) error {
|
|
c.KeyNode = keyNode
|
|
c.RootNode = root
|
|
c.Reference = new(low.Reference)
|
|
c.Nodes = low.ExtractNodes(ctx, root)
|
|
return nil
|
|
}
|
|
|
|
// GetRootNode will return the root yaml node of the Contact object
|
|
func (c *Contact) GetRootNode() *yaml.Node {
|
|
return c.RootNode
|
|
}
|
|
|
|
// GetKeyNode will return the key yaml node of the Contact object
|
|
func (c *Contact) GetKeyNode() *yaml.Node {
|
|
return c.KeyNode
|
|
}
|
|
|
|
// Hash will return a consistent SHA256 Hash of the Contact object
|
|
func (c *Contact) Hash() [32]byte {
|
|
var f []string
|
|
if !c.Name.IsEmpty() {
|
|
f = append(f, c.Name.Value)
|
|
}
|
|
if !c.URL.IsEmpty() {
|
|
f = append(f, c.URL.Value)
|
|
}
|
|
if !c.Email.IsEmpty() {
|
|
f = append(f, c.Email.Value)
|
|
}
|
|
return sha256.Sum256([]byte(strings.Join(f, "|")))
|
|
}
|