github.com/hashicorp/nomad-openapi - "Nomad is an easy-to-use, flexible, and performant workload orchestrator that can deploy a mix of microservice, batch, containerized, and non-containerized applications. Nomad is easy to operate and scale and has native Consul and Vault integrations."
Custom content type for body of HTTP request/response
By default, the library parses a body of the HTTP request and response
if it has one of the following content types: "text/plain" or "application/json".
To support other content types you must register decoders for them:
funcmain() {
// ...// Register a body's decoder for content type "application/xml".
openapi3filter.RegisterBodyDecoder("application/xml", xmlBodyDecoder)
// Now you can validate HTTP request that contains a body with content type "application/xml".
requestValidationInput := &openapi3filter.RequestValidationInput{
Request: httpReq,
PathParams: pathParams,
Route: route,
}
if err := openapi3filter.ValidateRequest(ctx, requestValidationInput); err != nil {
panic(err)
}
// ...// And you can validate HTTP response that contains a body with content type "application/xml".if err := openapi3filter.ValidateResponse(ctx, responseValidationInput); err != nil {
panic(err)
}
}
funcxmlBodyDecoder(body io.Reader, h http.Header, schema *openapi3.SchemaRef, encFn openapi3filter.EncodingFn) (decoded interface{}, err error) {
// Decode body to a primitive, []interface{}, or map[string]interface{}.
}
Custom function to check uniqueness of array items
By default, the library checks unique items using the following predefined function:
funcisSliceOfUniqueItems(xs []interface{})bool {
s := len(xs)
m := make(map[string]struct{}, s)
for _, x := range xs {
key, _ := json.Marshal(&x)
m[string(key)] = struct{}{}
}
return s == len(m)
}
In the predefined function json.Marshal is used to generate a string that can
be used as a map key which is to check the uniqueness of an array
when the array items are objects or arrays. You can register
you own function according to your input data to get better performance:
funcmain() {
// ...// Register a customized function used to check uniqueness of array.
openapi3.RegisterArrayUniqueItemsChecker(arrayUniqueItemsChecker)
// ... other validate codes
}
funcarrayUniqueItemsChecker(items []interface{})bool {
// Check the uniqueness of the input slice
}
Custom function to change schema error messages
By default, the error message returned when validating a value includes the error reason, the schema, and the input value.
Passing the input value "secret" to this schema will produce the following error message:
string doesn't match the regular expression "[A-Z]"
Schema:
{
"pattern": "[A-Z]"
}
Value:
"secret"
Including the original value in the error message can be helpful for debugging, but it may not be appropriate for sensitive information such as secrets.
To disable the extra details in the schema error message, you can set the openapi3.SchemaErrorDetailsDisabled option to true:
This will shorten the error message to present only the reason:
string doesn't match the regular expression "[A-Z]"
For more fine-grained control over the error message, you can pass a custom openapi3filter.Options object to openapi3filter.RequestValidationInput that includes a openapi3filter.CustomSchemaErrorFunc.
This will change the schema validation errors to return only the Reason field, which is guaranteed to not include the original value.
CHANGELOG: Sub-v1 breaking API changes
v0.122.0
Paths field of openapi3.T is now a pointer
Responses field of openapi3.Operation is now a pointer
openapi3.Paths went from map[string]*PathItem to a struct with an Extensions field and methods: Set, Value, Len, Map, and New*.
openapi3.Callback went from map[string]*PathItem to a struct with an Extensions field and methods: Set, Value, Len, Map, and New*.
openapi3.Responses went from map[string]*ResponseRef to a struct with an Extensions field and methods: Set, Value, Len, Map, and New*.
(openapi3.Responses).Get(int) renamed to (*openapi3.Responses).Status(int)
v0.121.0
Introduce openapi3.RequestBodies (an alias on map[string]*openapi3.ResponseRef) and use it in place of openapi3.Responses for field openapi3.Components.Responses.
v0.116.0
Dropped openapi3filter.DefaultOptions. Use &openapi3filter.Options{} directly instead.
v0.113.0
The string format email has been removed by default. To use it please call openapi3.DefineStringFormat("email", openapi3.FormatOfStringForEmail).
Field openapi3.T.Components is now a pointer.
Fields openapi3.Schema.AdditionalProperties and openapi3.Schema.AdditionalPropertiesAllowed are replaced by openapi3.Schema.AdditionalProperties.Schema and openapi3.Schema.AdditionalProperties.Has respectively.
Type openapi3.ExtensionProps is now just map[string]interface{} and extensions are accessible through the Extensions field.
v0.112.0
(openapi3.ValidationOptions).ExamplesValidationDisabled has been unexported.
(openapi3.ValidationOptions).SchemaFormatValidationEnabled has been unexported.
(openapi3.ValidationOptions).SchemaPatternValidationDisabled has been unexported.
openapi3.SchemaFormatValidationDisabled has been removed in favour of an option openapi3.EnableSchemaFormatValidation() passed to openapi3.T.Validate. The default behaviour is also now to not validate formats, as the OpenAPI spec mentions the format is an open value.
v0.84.0
The prototype of openapi3gen.NewSchemaRefForValue changed:
It no longer returns a map but that is still accessible under the field (*Generator).SchemaRefs.
It now takes in an additional argument (basically doc.Components.Schemas) which gets written to so $ref cycles can be properly handled.
v0.61.0
Renamed openapi2.Swagger to openapi2.T.
Renamed openapi2conv.FromV3Swagger to openapi2conv.FromV3.
Renamed openapi2conv.ToV3Swagger to openapi2conv.ToV3.
Renamed openapi3.LoadSwaggerFromData to openapi3.LoadFromData.
Renamed openapi3.LoadSwaggerFromDataWithPath to openapi3.LoadFromDataWithPath.
Renamed openapi3.LoadSwaggerFromFile to openapi3.LoadFromFile.
Renamed openapi3.LoadSwaggerFromURI to openapi3.LoadFromURI.
Renamed openapi3.NewSwaggerLoader to openapi3.NewLoader.
Renamed openapi3.Swagger to openapi3.T.
Renamed openapi3.SwaggerLoader to openapi3.Loader.
Renamed openapi3filter.ValidationHandler.SwaggerFile to openapi3filter.ValidationHandler.File.
Renamed routers.Route.Swagger to routers.Route.Spec.
Type openapi3filter.RouteError moved to routers (so did ErrPathNotFound and ErrMethodNotAllowed which are now RouteErrors)
Routers' FindRoute(...) method now takes only one argument: *http.Request
getkin/kin-openapi/openapi3filter.Router moved to getkin/kin-openapi/routers/legacy
openapi3filter.NewRouter() and its related WithSwaggerFromFile(string), WithSwagger(*openapi3.Swagger), AddSwaggerFromFile(string) and AddSwagger(*openapi3.Swagger) are all replaced with a single <router package>.NewRouter(*openapi3.Swagger)
NOTE: the NewRouter(doc) call now requires that the user ensures doc is valid (doc.Validate() != nil). This used to be asserted.
v0.47.0
Field (*openapi3.SwaggerLoader).LoadSwaggerFromURIFunc of type func(*openapi3.SwaggerLoader, *url.URL) (*openapi3.Swagger, error) was removed after the addition of the field (*openapi3.SwaggerLoader).ReadFromURIFunc of type func(*openapi3.SwaggerLoader, *url.URL) ([]byte, error).
FAQs
Unknown package
Package last updated on 06 Apr 2024
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Socket is launching experimental protection for the Hugging Face ecosystem, scanning for malware and malicious payload injections inside model files to prevent silent AI supply chain attacks.
The Socket Threat Research Team uncovered a coordinated campaign that floods the Chrome Web Store with 131 rebranded clones of a WhatsApp Web automation extension to spam Brazilian users.