123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- /*
- Copyright 2021 The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package spec3
- import (
- "encoding/json"
- "github.com/go-openapi/swag"
- "k8s.io/kube-openapi/pkg/internal"
- jsonv2 "k8s.io/kube-openapi/pkg/internal/third_party/go-json-experiment/json"
- "k8s.io/kube-openapi/pkg/validation/spec"
- )
- // Parameter a struct that describes a single operation parameter, more at https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#parameterObject
- //
- // Note that this struct is actually a thin wrapper around ParameterProps to make it referable and extensible
- type Parameter struct {
- spec.Refable
- ParameterProps
- spec.VendorExtensible
- }
- // MarshalJSON is a custom marshal function that knows how to encode Parameter as JSON
- func (p *Parameter) MarshalJSON() ([]byte, error) {
- if internal.UseOptimizedJSONMarshalingV3 {
- return internal.DeterministicMarshal(p)
- }
- b1, err := json.Marshal(p.Refable)
- if err != nil {
- return nil, err
- }
- b2, err := json.Marshal(p.ParameterProps)
- if err != nil {
- return nil, err
- }
- b3, err := json.Marshal(p.VendorExtensible)
- if err != nil {
- return nil, err
- }
- return swag.ConcatJSON(b1, b2, b3), nil
- }
- func (p *Parameter) MarshalNextJSON(opts jsonv2.MarshalOptions, enc *jsonv2.Encoder) error {
- var x struct {
- Ref string `json:"$ref,omitempty"`
- ParameterProps parameterPropsOmitZero `json:",inline"`
- spec.Extensions
- }
- x.Ref = p.Refable.Ref.String()
- x.Extensions = internal.SanitizeExtensions(p.Extensions)
- x.ParameterProps = parameterPropsOmitZero(p.ParameterProps)
- return opts.MarshalNext(enc, x)
- }
- func (p *Parameter) UnmarshalJSON(data []byte) error {
- if internal.UseOptimizedJSONUnmarshalingV3 {
- return jsonv2.Unmarshal(data, p)
- }
- if err := json.Unmarshal(data, &p.Refable); err != nil {
- return err
- }
- if err := json.Unmarshal(data, &p.ParameterProps); err != nil {
- return err
- }
- if err := json.Unmarshal(data, &p.VendorExtensible); err != nil {
- return err
- }
- return nil
- }
- func (p *Parameter) UnmarshalNextJSON(opts jsonv2.UnmarshalOptions, dec *jsonv2.Decoder) error {
- var x struct {
- spec.Extensions
- ParameterProps
- }
- if err := opts.UnmarshalNext(dec, &x); err != nil {
- return err
- }
- if err := internal.JSONRefFromMap(&p.Ref.Ref, x.Extensions); err != nil {
- return err
- }
- p.Extensions = internal.SanitizeExtensions(x.Extensions)
- p.ParameterProps = x.ParameterProps
- return nil
- }
- // ParameterProps a struct that describes a single operation parameter, more at https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#parameterObject
- type ParameterProps struct {
- // Name holds the name of the parameter
- Name string `json:"name,omitempty"`
- // In holds the location of the parameter
- In string `json:"in,omitempty"`
- // Description holds a brief description of the parameter
- Description string `json:"description,omitempty"`
- // Required determines whether this parameter is mandatory
- Required bool `json:"required,omitempty"`
- // Deprecated declares this operation to be deprecated
- Deprecated bool `json:"deprecated,omitempty"`
- // AllowEmptyValue sets the ability to pass empty-valued parameters
- AllowEmptyValue bool `json:"allowEmptyValue,omitempty"`
- // Style describes how the parameter value will be serialized depending on the type of the parameter value
- Style string `json:"style,omitempty"`
- // Explode when true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map
- Explode bool `json:"explode,omitempty"`
- // AllowReserved determines whether the parameter value SHOULD allow reserved characters, as defined by RFC3986
- AllowReserved bool `json:"allowReserved,omitempty"`
- // Schema holds the schema defining the type used for the parameter
- Schema *spec.Schema `json:"schema,omitempty"`
- // Content holds a map containing the representations for the parameter
- Content map[string]*MediaType `json:"content,omitempty"`
- // Example of the parameter's potential value
- Example interface{} `json:"example,omitempty"`
- // Examples of the parameter's potential value. Each example SHOULD contain a value in the correct format as specified in the parameter encoding
- Examples map[string]*Example `json:"examples,omitempty"`
- }
- type parameterPropsOmitZero struct {
- Name string `json:"name,omitempty"`
- In string `json:"in,omitempty"`
- Description string `json:"description,omitempty"`
- Required bool `json:"required,omitzero"`
- Deprecated bool `json:"deprecated,omitzero"`
- AllowEmptyValue bool `json:"allowEmptyValue,omitzero"`
- Style string `json:"style,omitempty"`
- Explode bool `json:"explode,omitzero"`
- AllowReserved bool `json:"allowReserved,omitzero"`
- Schema *spec.Schema `json:"schema,omitzero"`
- Content map[string]*MediaType `json:"content,omitempty"`
- Example interface{} `json:"example,omitempty"`
- Examples map[string]*Example `json:"examples,omitempty"`
- }
|