forked from getkin/kin-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
refs.sh
executable file
·124 lines (109 loc) · 3.13 KB
/
refs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#!/bin/bash -eux
set -o pipefail
types=()
types+=("Callback")
types+=("Example")
types+=("Header")
types+=("Link")
types+=("Parameter")
types+=("RequestBody")
types+=("Response")
types+=("Schema")
types+=("SecurityScheme")
cat <<EOF
package openapi3
import (
"context"
"encoding/json"
"fmt"
"sort"
"github.com/go-openapi/jsonpointer"
"github.com/perimeterx/marshmallow"
)
EOF
for type in "${types[@]}"; do
cat <<EOF
// ${type}Ref represents either a ${type} or a \$ref to a ${type}.
// When serializing and both fields are set, Ref is preferred over Value.
type ${type}Ref struct {
Ref string
Value *${type}
extra []string
}
var _ jsonpointer.JSONPointable = (*${type}Ref)(nil)
// MarshalYAML returns the YAML encoding of ${type}Ref.
func (x ${type}Ref) MarshalYAML() (interface{}, error) {
if ref := x.Ref; ref != "" {
return &Ref{Ref: ref}, nil
}
return x.Value, nil
}
// MarshalJSON returns the JSON encoding of ${type}Ref.
func (x ${type}Ref) MarshalJSON() ([]byte, error) {
if ref := x.Ref; ref != "" {
return json.Marshal(Ref{Ref: ref})
}
EOF
case $type in
# Callback) echo ' return x.Value.MarshalJSON()' ;; TODO: when https://github.com/getkin/kin-openapi/issues/687
Example) echo ' return x.Value.MarshalJSON()' ;;
Header) echo ' return x.Value.MarshalJSON()' ;;
Link) echo ' return x.Value.MarshalJSON()' ;;
Parameter) echo ' return x.Value.MarshalJSON()' ;;
RequestBody) echo ' return x.Value.MarshalJSON()' ;;
Response) echo ' return x.Value.MarshalJSON()' ;;
Schema) echo ' return x.Value.MarshalJSON()' ;;
SecurityScheme) echo ' return x.Value.MarshalJSON()' ;;
*) echo ' return json.Marshal(x.Value)'
esac
cat <<EOF
}
// UnmarshalJSON sets ${type}Ref to a copy of data.
func (x *${type}Ref) UnmarshalJSON(data []byte) error {
var refOnly Ref
if extra, err := marshmallow.Unmarshal(data, &refOnly, marshmallow.WithExcludeKnownFieldsFromMap(true)); err == nil && refOnly.Ref != "" {
x.Ref = refOnly.Ref
if len(extra) != 0 {
x.extra = make([]string, 0, len(extra))
for key := range extra {
x.extra = append(x.extra, key)
}
sort.Strings(x.extra)
}
return nil
}
return json.Unmarshal(data, &x.Value)
}
// Validate returns an error if ${type}Ref does not comply with the OpenAPI spec.
func (x *${type}Ref) Validate(ctx context.Context, opts ...ValidationOption) error {
ctx = WithValidationOptions(ctx, opts...)
if extra := x.extra; len(extra) != 0 {
extras := make([]string, 0, len(extra))
allowed := getValidationOptions(ctx).extraSiblingFieldsAllowed
if allowed == nil {
allowed = make(map[string]struct{}, 0)
}
for _, ex := range extra {
if _, ok := allowed[ex]; !ok {
extras = append(extras, ex)
}
}
if len(extras) != 0 {
return fmt.Errorf("extra sibling fields: %+v", extras)
}
}
if v := x.Value; v != nil {
return v.Validate(ctx)
}
return foundUnresolvedRef(x.Ref)
}
// JSONLookup implements https://pkg.go.dev/github.com/go-openapi/jsonpointer#JSONPointable
func (x *${type}Ref) JSONLookup(token string) (interface{}, error) {
if token == "\$ref" {
return x.Ref, nil
}
ptr, _, err := jsonpointer.GetForToken(x.Value, token)
return ptr, err
}
EOF
done