mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-07 20:47:45 +00:00
lookups are performed inline now. keeps things simpler, however it has a performance knock, so it's time to refine async building were possible.
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
Go
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
"github.com/pb33f/libopenapi/index"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
const (
|
|
HeadersLabel = "headers"
|
|
)
|
|
|
|
type Header struct {
|
|
Description low.NodeReference[string]
|
|
Required low.NodeReference[bool]
|
|
Deprecated low.NodeReference[bool]
|
|
AllowEmptyValue low.NodeReference[bool]
|
|
Style low.NodeReference[string]
|
|
Explode low.NodeReference[bool]
|
|
AllowReserved low.NodeReference[bool]
|
|
Schema low.NodeReference[*Schema]
|
|
Example low.NodeReference[any]
|
|
Examples map[low.KeyReference[string]]map[low.KeyReference[string]]low.ValueReference[*Example]
|
|
Content map[low.KeyReference[string]]map[low.KeyReference[string]]low.ValueReference[*MediaType]
|
|
Extensions map[low.KeyReference[string]]low.ValueReference[any]
|
|
}
|
|
|
|
func (h *Header) Build(root *yaml.Node, idx *index.SpecIndex) error {
|
|
h.Extensions = ExtractExtensions(root)
|
|
|
|
// handle examples if set.
|
|
exps, eErr := ExtractMap[*Example](ExamplesLabel, root, idx)
|
|
if eErr != nil {
|
|
return eErr
|
|
}
|
|
if exps != nil {
|
|
h.Examples = exps
|
|
}
|
|
|
|
// handle schema
|
|
sch, sErr := ExtractSchema(root, idx)
|
|
if sErr != nil {
|
|
return nil
|
|
}
|
|
if sch != nil {
|
|
h.Schema = *sch
|
|
}
|
|
|
|
// handle content, if set.
|
|
con, cErr := ExtractMap[*MediaType](ContentLabel, root, idx)
|
|
if cErr != nil {
|
|
return cErr
|
|
}
|
|
h.Content = con
|
|
|
|
return nil
|
|
}
|