mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 04:20:11 +00:00
176 lines
5.6 KiB
Go
176 lines
5.6 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v3
|
|
|
|
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"
|
|
)
|
|
|
|
// OAuthFlows represents a low-level OpenAPI 3+ OAuthFlows object.
|
|
// - https://spec.openapis.org/oas/v3.1.0#oauth-flows-object
|
|
type OAuthFlows struct {
|
|
Implicit low.NodeReference[*OAuthFlow]
|
|
Password low.NodeReference[*OAuthFlow]
|
|
ClientCredentials low.NodeReference[*OAuthFlow]
|
|
AuthorizationCode low.NodeReference[*OAuthFlow]
|
|
Extensions *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]]
|
|
KeyNode *yaml.Node
|
|
RootNode *yaml.Node
|
|
*low.Reference
|
|
low.NodeMap
|
|
}
|
|
|
|
// GetExtensions returns all OAuthFlows extensions and satisfies the low.HasExtensions interface.
|
|
func (o *OAuthFlows) GetExtensions() *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]] {
|
|
return o.Extensions
|
|
}
|
|
|
|
// FindExtension will attempt to locate an extension with the supplied name.
|
|
func (o *OAuthFlows) FindExtension(ext string) *low.ValueReference[*yaml.Node] {
|
|
return low.FindItemInOrderedMap(ext, o.Extensions)
|
|
}
|
|
|
|
// GetRootNode returns the root yaml node of the OAuthFlows object.
|
|
func (o *OAuthFlows) GetRootNode() *yaml.Node {
|
|
return o.RootNode
|
|
}
|
|
|
|
// GetKeyNode returns the key yaml node of the OAuthFlows object.
|
|
func (o *OAuthFlows) GetKeyNode() *yaml.Node {
|
|
return o.KeyNode
|
|
}
|
|
|
|
// Build will extract extensions and all OAuthFlow types from the supplied node.
|
|
func (o *OAuthFlows) Build(ctx context.Context, keyNode, root *yaml.Node, idx *index.SpecIndex) error {
|
|
o.KeyNode = keyNode
|
|
root = utils.NodeAlias(root)
|
|
o.RootNode = root
|
|
utils.CheckForMergeNodes(root)
|
|
o.Reference = new(low.Reference)
|
|
o.Nodes = low.ExtractNodes(ctx, root)
|
|
o.Extensions = low.ExtractExtensions(root)
|
|
|
|
v, vErr := low.ExtractObject[*OAuthFlow](ctx, ImplicitLabel, root, idx)
|
|
if vErr != nil {
|
|
return vErr
|
|
}
|
|
o.Implicit = v
|
|
|
|
v, vErr = low.ExtractObject[*OAuthFlow](ctx, PasswordLabel, root, idx)
|
|
if vErr != nil {
|
|
return vErr
|
|
}
|
|
o.Password = v
|
|
|
|
v, vErr = low.ExtractObject[*OAuthFlow](ctx, ClientCredentialsLabel, root, idx)
|
|
if vErr != nil {
|
|
return vErr
|
|
}
|
|
o.ClientCredentials = v
|
|
|
|
v, vErr = low.ExtractObject[*OAuthFlow](ctx, AuthorizationCodeLabel, root, idx)
|
|
if vErr != nil {
|
|
return vErr
|
|
}
|
|
o.AuthorizationCode = v
|
|
return nil
|
|
}
|
|
|
|
// Hash will return a consistent SHA256 Hash of the OAuthFlow object
|
|
func (o *OAuthFlows) Hash() [32]byte {
|
|
var f []string
|
|
if !o.Implicit.IsEmpty() {
|
|
f = append(f, low.GenerateHashString(o.Implicit.Value))
|
|
}
|
|
if !o.Password.IsEmpty() {
|
|
f = append(f, low.GenerateHashString(o.Password.Value))
|
|
}
|
|
if !o.ClientCredentials.IsEmpty() {
|
|
f = append(f, low.GenerateHashString(o.ClientCredentials.Value))
|
|
}
|
|
if !o.AuthorizationCode.IsEmpty() {
|
|
f = append(f, low.GenerateHashString(o.AuthorizationCode.Value))
|
|
}
|
|
f = append(f, low.HashExtensions(o.Extensions)...)
|
|
return sha256.Sum256([]byte(strings.Join(f, "|")))
|
|
}
|
|
|
|
// OAuthFlow represents a low-level OpenAPI 3+ OAuthFlow object.
|
|
// - https://spec.openapis.org/oas/v3.1.0#oauth-flow-object
|
|
type OAuthFlow struct {
|
|
AuthorizationUrl low.NodeReference[string]
|
|
TokenUrl low.NodeReference[string]
|
|
RefreshUrl low.NodeReference[string]
|
|
Scopes low.NodeReference[*orderedmap.Map[low.KeyReference[string], low.ValueReference[string]]]
|
|
Extensions *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]]
|
|
RootNode *yaml.Node
|
|
*low.Reference
|
|
low.NodeMap
|
|
}
|
|
|
|
// GetExtensions returns all OAuthFlow extensions and satisfies the low.HasExtensions interface.
|
|
func (o *OAuthFlow) GetExtensions() *orderedmap.Map[low.KeyReference[string], low.ValueReference[*yaml.Node]] {
|
|
return o.Extensions
|
|
}
|
|
|
|
// FindScope attempts to locate a scope using a specified name.
|
|
func (o *OAuthFlow) FindScope(scope string) *low.ValueReference[string] {
|
|
return low.FindItemInOrderedMap[string](scope, o.Scopes.Value)
|
|
}
|
|
|
|
// FindExtension attempts to locate an extension with a specified key
|
|
func (o *OAuthFlow) FindExtension(ext string) *low.ValueReference[*yaml.Node] {
|
|
return low.FindItemInOrderedMap(ext, o.Extensions)
|
|
}
|
|
|
|
// GetRootNode returns the root yaml node of the OAuthFlow object.
|
|
func (o *OAuthFlow) GetRootNode() *yaml.Node {
|
|
return o.RootNode
|
|
}
|
|
|
|
// Build will extract extensions from the node.
|
|
func (o *OAuthFlow) Build(ctx context.Context, _, root *yaml.Node, idx *index.SpecIndex) error {
|
|
o.Reference = new(low.Reference)
|
|
o.Nodes = low.ExtractNodes(ctx, root)
|
|
o.Extensions = low.ExtractExtensions(root)
|
|
low.ExtractExtensionNodes(ctx, o.Extensions, o.Nodes)
|
|
|
|
if o.Scopes.Value != nil && o.Scopes.Value.Len() > 0 {
|
|
for fk := o.Scopes.Value.First(); fk != nil; fk = fk.Next() {
|
|
o.Nodes.Store(fk.Key().KeyNode.Line, fk.Key().KeyNode)
|
|
}
|
|
}
|
|
|
|
o.RootNode = root
|
|
return nil
|
|
}
|
|
|
|
// Hash will return a consistent SHA256 Hash of the OAuthFlow object
|
|
func (o *OAuthFlow) Hash() [32]byte {
|
|
var f []string
|
|
if !o.AuthorizationUrl.IsEmpty() {
|
|
f = append(f, o.AuthorizationUrl.Value)
|
|
}
|
|
if !o.TokenUrl.IsEmpty() {
|
|
f = append(f, o.TokenUrl.Value)
|
|
}
|
|
if !o.RefreshUrl.IsEmpty() {
|
|
f = append(f, o.RefreshUrl.Value)
|
|
}
|
|
for pair := orderedmap.First(orderedmap.SortAlpha(o.Scopes.Value)); pair != nil; pair = pair.Next() {
|
|
f = append(f, fmt.Sprintf("%s-%s", pair.Key().Value, sha256.Sum256([]byte(fmt.Sprint(pair.Value().Value)))))
|
|
}
|
|
f = append(f, low.HashExtensions(o.Extensions)...)
|
|
return sha256.Sum256([]byte(strings.Join(f, "|")))
|
|
}
|