-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathany.go
More file actions
65 lines (50 loc) · 1.83 KB
/
any.go
File metadata and controls
65 lines (50 loc) · 1.83 KB
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
// Copyright IBM Corp. 2022, 2026
// SPDX-License-Identifier: MPL-2.0
package stringvalidator
import (
"context"
"fmt"
"strings"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
)
// Any returns a validator which ensures that any configured attribute value
// passes at least one of the given validators.
//
// To prevent practitioner confusion should non-passing validators have
// conflicting logic, only warnings from the passing validator are returned.
// Use AnyWithAllWarnings() to return warnings from non-passing validators
// as well.
func Any(validators ...validator.String) validator.String {
return anyValidator{
validators: validators,
}
}
var _ validator.String = anyValidator{}
// anyValidator implements the validator.
type anyValidator struct {
validators []validator.String
}
// Description describes the validation in plain text formatting.
func (v anyValidator) Description(ctx context.Context) string {
var descriptions []string
for _, subValidator := range v.validators {
descriptions = append(descriptions, subValidator.Description(ctx))
}
return fmt.Sprintf("Value must satisfy at least one of the validations: %s", strings.Join(descriptions, " + "))
}
// MarkdownDescription describes the validation in Markdown formatting.
func (v anyValidator) MarkdownDescription(ctx context.Context) string {
return v.Description(ctx)
}
// ValidateString performs the validation.
func (v anyValidator) ValidateString(ctx context.Context, req validator.StringRequest, resp *validator.StringResponse) {
for _, subValidator := range v.validators {
validateResp := &validator.StringResponse{}
subValidator.ValidateString(ctx, req, validateResp)
if !validateResp.Diagnostics.HasError() {
resp.Diagnostics = validateResp.Diagnostics
return
}
resp.Diagnostics.Append(validateResp.Diagnostics...)
}
}