mirror of
https://github.com/slimtoolkit/slim.git
synced 2025-06-03 04:00:23 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) from 0.76.0 to 0.131.0. - [Release notes](https://github.com/getkin/kin-openapi/releases) - [Commits](https://github.com/getkin/kin-openapi/compare/v0.76.0...v0.131.0) --- updated-dependencies: - dependency-name: github.com/getkin/kin-openapi dependency-version: 0.131.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
131 lines
3.3 KiB
Go
131 lines
3.3 KiB
Go
package openapi3
|
|
|
|
import (
|
|
"context"
|
|
"sort"
|
|
"strings"
|
|
)
|
|
|
|
// Content is specified by OpenAPI/Swagger 3.0 standard.
|
|
type Content map[string]*MediaType
|
|
|
|
func NewContent() Content {
|
|
return make(map[string]*MediaType)
|
|
}
|
|
|
|
func NewContentWithSchema(schema *Schema, consumes []string) Content {
|
|
if len(consumes) == 0 {
|
|
return Content{
|
|
"*/*": NewMediaType().WithSchema(schema),
|
|
}
|
|
}
|
|
content := make(map[string]*MediaType, len(consumes))
|
|
for _, mediaType := range consumes {
|
|
content[mediaType] = NewMediaType().WithSchema(schema)
|
|
}
|
|
return content
|
|
}
|
|
|
|
func NewContentWithSchemaRef(schema *SchemaRef, consumes []string) Content {
|
|
if len(consumes) == 0 {
|
|
return Content{
|
|
"*/*": NewMediaType().WithSchemaRef(schema),
|
|
}
|
|
}
|
|
content := make(map[string]*MediaType, len(consumes))
|
|
for _, mediaType := range consumes {
|
|
content[mediaType] = NewMediaType().WithSchemaRef(schema)
|
|
}
|
|
return content
|
|
}
|
|
|
|
func NewContentWithJSONSchema(schema *Schema) Content {
|
|
return Content{
|
|
"application/json": NewMediaType().WithSchema(schema),
|
|
}
|
|
}
|
|
func NewContentWithJSONSchemaRef(schema *SchemaRef) Content {
|
|
return Content{
|
|
"application/json": NewMediaType().WithSchemaRef(schema),
|
|
}
|
|
}
|
|
|
|
func NewContentWithFormDataSchema(schema *Schema) Content {
|
|
return Content{
|
|
"multipart/form-data": NewMediaType().WithSchema(schema),
|
|
}
|
|
}
|
|
|
|
func NewContentWithFormDataSchemaRef(schema *SchemaRef) Content {
|
|
return Content{
|
|
"multipart/form-data": NewMediaType().WithSchemaRef(schema),
|
|
}
|
|
}
|
|
|
|
func (content Content) Get(mime string) *MediaType {
|
|
// If the mime is empty then short-circuit to the wildcard.
|
|
// We do this here so that we catch only the specific case of
|
|
// and empty mime rather than a present, but invalid, mime type.
|
|
if mime == "" {
|
|
return content["*/*"]
|
|
}
|
|
// Start by making the most specific match possible
|
|
// by using the mime type in full.
|
|
if v := content[mime]; v != nil {
|
|
return v
|
|
}
|
|
// If an exact match is not found then we strip all
|
|
// metadata from the mime type and only use the x/y
|
|
// portion.
|
|
i := strings.IndexByte(mime, ';')
|
|
if i < 0 {
|
|
// If there is no metadata then preserve the full mime type
|
|
// string for later wildcard searches.
|
|
i = len(mime)
|
|
}
|
|
mime = mime[:i]
|
|
if v := content[mime]; v != nil {
|
|
return v
|
|
}
|
|
// If the x/y pattern has no specific match then we
|
|
// try the x/* pattern.
|
|
i = strings.IndexByte(mime, '/')
|
|
if i < 0 {
|
|
// In the case that the given mime type is not valid because it is
|
|
// missing the subtype we return nil so that this does not accidentally
|
|
// resolve with the wildcard.
|
|
return nil
|
|
}
|
|
mime = mime[:i] + "/*"
|
|
if v := content[mime]; v != nil {
|
|
return v
|
|
}
|
|
// Finally, the most generic match of */* is returned
|
|
// as a catch-all.
|
|
return content["*/*"]
|
|
}
|
|
|
|
// Validate returns an error if Content does not comply with the OpenAPI spec.
|
|
func (content Content) Validate(ctx context.Context, opts ...ValidationOption) error {
|
|
ctx = WithValidationOptions(ctx, opts...)
|
|
|
|
keys := make([]string, 0, len(content))
|
|
for key := range content {
|
|
keys = append(keys, key)
|
|
}
|
|
sort.Strings(keys)
|
|
for _, k := range keys {
|
|
v := content[k]
|
|
if err := v.Validate(ctx); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UnmarshalJSON sets Content to a copy of data.
|
|
func (content *Content) UnmarshalJSON(data []byte) (err error) {
|
|
*content, _, err = unmarshalStringMapP[MediaType](data)
|
|
return
|
|
}
|