mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-06 12:37:49 +00:00
57 lines
2.1 KiB
Go
57 lines
2.1 KiB
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/high"
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
lowv3 "github.com/pb33f/libopenapi/datamodel/low/v3"
|
|
"github.com/pb33f/libopenapi/orderedmap"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
// OAuthFlow represents a high-level OpenAPI 3+ OAuthFlow object that is backed by a low-level one.
|
|
// - https://spec.openapis.org/oas/v3.1.0#oauth-flow-object
|
|
type OAuthFlow struct {
|
|
AuthorizationUrl string `json:"authorizationUrl,omitempty" yaml:"authorizationUrl,omitempty"`
|
|
TokenUrl string `json:"tokenUrl,omitempty" yaml:"tokenUrl,omitempty"`
|
|
RefreshUrl string `json:"refreshUrl,omitempty" yaml:"refreshUrl,omitempty"`
|
|
Scopes *orderedmap.Map[string, string] `json:"scopes,renderZero" yaml:"scopes,renderZero"`
|
|
Extensions *orderedmap.Map[string, *yaml.Node] `json:"-" yaml:"-"`
|
|
low *lowv3.OAuthFlow
|
|
}
|
|
|
|
// NewOAuthFlow creates a new high-level OAuthFlow instance from a low-level one.
|
|
func NewOAuthFlow(flow *lowv3.OAuthFlow) *OAuthFlow {
|
|
o := new(OAuthFlow)
|
|
o.low = flow
|
|
o.TokenUrl = flow.TokenUrl.Value
|
|
o.AuthorizationUrl = flow.AuthorizationUrl.Value
|
|
o.RefreshUrl = flow.RefreshUrl.Value
|
|
o.Scopes = low.FromReferenceMap(flow.Scopes.Value)
|
|
o.Extensions = high.ExtractExtensions(flow.Extensions)
|
|
return o
|
|
}
|
|
|
|
// GoLow returns the low-level OAuthFlow instance used to create the high-level one.
|
|
func (o *OAuthFlow) GoLow() *lowv3.OAuthFlow {
|
|
return o.low
|
|
}
|
|
|
|
// GoLowUntyped will return the low-level Discriminator instance that was used to create the high-level one, with no type
|
|
func (o *OAuthFlow) GoLowUntyped() any {
|
|
return o.low
|
|
}
|
|
|
|
// Render will return a YAML representation of the OAuthFlow object as a byte slice.
|
|
func (o *OAuthFlow) Render() ([]byte, error) {
|
|
return yaml.Marshal(o)
|
|
}
|
|
|
|
// MarshalYAML will create a ready to render YAML representation of the OAuthFlow object.
|
|
func (o *OAuthFlow) MarshalYAML() (interface{}, error) {
|
|
nb := high.NewNodeBuilder(o, o.low)
|
|
return nb.Render(), nil
|
|
}
|