k3s/vendor/github.com/go-openapi/validate/schema_option.go

55 lines
1.8 KiB
Go
Raw Normal View History

2019-09-27 21:51:53 +00:00
// Copyright 2015 go-swagger maintainers
2019-01-12 04:58:27 +00:00
//
// 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
//
2019-09-27 21:51:53 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2019-01-12 04:58:27 +00:00
//
// 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.
2019-09-27 21:51:53 +00:00
package validate
2019-01-12 04:58:27 +00:00
2019-12-12 01:27:03 +00:00
// SchemaValidatorOptions defines optional rules for schema validation
2019-09-27 21:51:53 +00:00
type SchemaValidatorOptions struct {
2019-12-12 01:27:03 +00:00
EnableObjectArrayTypeCheck bool
EnableArrayMustHaveItemsCheck bool
2019-01-12 04:58:27 +00:00
}
2019-12-12 01:27:03 +00:00
// Option sets optional rules for schema validation
2019-09-27 21:51:53 +00:00
type Option func(*SchemaValidatorOptions)
2019-12-12 01:27:03 +00:00
// EnableObjectArrayTypeCheck activates the swagger rule: an items must be in type: array
func EnableObjectArrayTypeCheck(enable bool) Option {
2019-09-27 21:51:53 +00:00
return func(svo *SchemaValidatorOptions) {
2019-12-12 01:27:03 +00:00
svo.EnableObjectArrayTypeCheck = enable
2019-01-12 04:58:27 +00:00
}
}
2019-12-12 01:27:03 +00:00
// EnableArrayMustHaveItemsCheck activates the swagger rule: an array must have items defined
func EnableArrayMustHaveItemsCheck(enable bool) Option {
return func(svo *SchemaValidatorOptions) {
svo.EnableArrayMustHaveItemsCheck = enable
}
}
// SwaggerSchema activates swagger schema validation rules
func SwaggerSchema(enable bool) Option {
return func(svo *SchemaValidatorOptions) {
svo.EnableObjectArrayTypeCheck = enable
svo.EnableArrayMustHaveItemsCheck = enable
}
}
// Options returns current options
2019-09-27 21:51:53 +00:00
func (svo SchemaValidatorOptions) Options() []Option {
return []Option{
2019-12-12 01:27:03 +00:00
EnableObjectArrayTypeCheck(svo.EnableObjectArrayTypeCheck),
EnableArrayMustHaveItemsCheck(svo.EnableArrayMustHaveItemsCheck),
2019-01-12 04:58:27 +00:00
}
}