-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathoption.go
153 lines (128 loc) · 5.37 KB
/
option.go
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
// Copyright 2023-2024 Buf Technologies, Inc.
//
// 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 protovalidate
import (
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/reflect/protoreflect"
"google.golang.org/protobuf/reflect/protoregistry"
)
// A ValidatorOption modifies the default configuration of a Validator. See the
// individual options for their defaults and affects on the fallibility of
// configuring a Validator.
type ValidatorOption interface {
applyToValidator(cfg *config)
}
// WithMessages allows warming up the Validator with messages that are
// expected to be validated. Messages included transitively (i.e., fields with
// message values) are automatically handled.
func WithMessages(messages ...proto.Message) ValidatorOption {
desc := make([]protoreflect.MessageDescriptor, len(messages))
for i, msg := range messages {
desc[i] = msg.ProtoReflect().Descriptor()
}
return WithMessageDescriptors(desc...)
}
// WithMessageDescriptors allows warming up the Validator with message
// descriptors that are expected to be validated. Messages included transitively
// (i.e., fields with message values) are automatically handled.
func WithMessageDescriptors(descriptors ...protoreflect.MessageDescriptor) ValidatorOption {
return &messageDescriptorsOption{descriptors}
}
// WithDisableLazy prevents the Validator from lazily building validation logic
// for a message it has not encountered before. Disabling lazy logic
// additionally eliminates any internal locking as the validator becomes
// read-only.
//
// Note: All expected messages must be provided by WithMessages or
// WithMessageDescriptors during initialization.
func WithDisableLazy() ValidatorOption {
return &disableLazyOption{}
}
// WithExtensionTypeResolver specifies a resolver to use when reparsing unknown
// extension types. When dealing with dynamic file descriptor sets, passing this
// option will allow extensions to be resolved using a custom resolver.
//
// To ignore unknown extension fields, use the [WithAllowUnknownFields] option.
// Note that this may result in messages being treated as valid even though not
// all constraints are being applied.
func WithExtensionTypeResolver(extensionTypeResolver protoregistry.ExtensionTypeResolver) ValidatorOption {
return &extensionTypeResolverOption{extensionTypeResolver}
}
// WithAllowUnknownFields specifies if the presence of unknown field constraints
// should cause compilation to fail with an error. When set to false, an unknown
// field will simply be ignored, which will cause constraints to silently not be
// applied. This condition may occur if a predefined constraint definition isn't
// present in the extension type resolver, or when passing dynamic messages with
// standard constraints defined in a newer version of protovalidate. The default
// value is false, to prevent silently-incorrect validation from occurring.
func WithAllowUnknownFields() ValidatorOption {
return &allowUnknownFieldsOption{}
}
// A ValidationOption specifies per-validation configuration. See the individual
// options for their defaults and effects.
type ValidationOption interface {
applyToValidation(cfg *validationConfig)
}
// WithFilter specifies a filter to use for this validation. A filter can
// control which fields are evaluated by the validator.
func WithFilter(filter Filter) ValidationOption {
return &filterOption{filter}
}
// Option implements both [ValidatorOption] and [ValidationOption], so it can be
// applied both to validator instances as well as individual validations.
type Option interface {
ValidatorOption
ValidationOption
}
// WithFailFast specifies whether validation should fail on the first constraint
// violation encountered or if all violations should be accumulated. By default,
// all violations are accumulated.
func WithFailFast() Option {
return &failFastOption{}
}
type messageDescriptorsOption struct {
descriptors []protoreflect.MessageDescriptor
}
func (o *messageDescriptorsOption) applyToValidator(cfg *config) {
cfg.desc = append(cfg.desc, o.descriptors...)
}
type disableLazyOption struct{}
func (o *disableLazyOption) applyToValidator(cfg *config) {
cfg.disableLazy = true
}
type extensionTypeResolverOption struct {
extensionTypeResolver protoregistry.ExtensionTypeResolver
}
func (o *extensionTypeResolverOption) applyToValidator(cfg *config) {
cfg.extensionTypeResolver = o.extensionTypeResolver
}
type allowUnknownFieldsOption struct{}
func (o *allowUnknownFieldsOption) applyToValidator(cfg *config) {
cfg.allowUnknownFields = true
}
type filterOption struct{ filter Filter }
func (o *filterOption) applyToValidation(cfg *validationConfig) {
if o.filter == nil {
cfg.filter = nopFilter{}
} else {
cfg.filter = o.filter
}
}
type failFastOption struct{}
func (o *failFastOption) applyToValidator(cfg *config) {
cfg.failFast = true
}
func (o *failFastOption) applyToValidation(cfg *validationConfig) {
cfg.failFast = true
}