-
Notifications
You must be signed in to change notification settings - Fork 0
/
validator.go
89 lines (73 loc) · 2.78 KB
/
validator.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
package logging
import (
"fmt"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/norman/types/convert"
loggingconfig "github.com/rancher/rancher/pkg/controllers/user/logging/config"
"github.com/rancher/rancher/pkg/controllers/user/logging/generator"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
)
func ClusterLoggingValidator(resquest *types.APIContext, schema *types.Schema, data map[string]interface{}) error {
var spec v3.ClusterLoggingSpec
if err := convert.ToObj(data, &spec); err != nil {
return httperror.NewAPIError(httperror.InvalidBodyContent, fmt.Sprintf("%v", err))
}
return validate(loggingconfig.ClusterLevel, "cluster", spec.LoggingTargets, spec.OutputTags)
}
func ProjectLoggingValidator(resquest *types.APIContext, schema *types.Schema, data map[string]interface{}) error {
var spec v3.ProjectLoggingSpec
if err := convert.ToObj(data, &spec); err != nil {
return httperror.NewAPIError(httperror.InvalidBodyContent, fmt.Sprintf("%v", err))
}
return validate(loggingconfig.ProjectLevel, spec.ProjectName, spec.LoggingTargets, spec.OutputTags)
}
func validate(level, containerLogSourceTag string, loggingTargets v3.LoggingTargets, outputTags map[string]string) error {
if loggingTargets.KafkaConfig != nil {
if err := validateKafka(loggingTargets.KafkaConfig); err != nil {
return err
}
}
wrapTarget, err := generator.NewLoggingTargetTemplateWrap(loggingTargets)
if err != nil {
return err
}
if wrapTarget == nil {
return nil
}
loggingCommomFileds := v3.LoggingCommonField{
OutputTags: outputTags,
}
if loggingTargets.FluentForwarderConfig != nil && wrapTarget.EnableShareKey {
wrapTarget.EnableShareKey = false //skip generate precan configure included ruby code
}
var wrap interface{}
if level == loggingconfig.ProjectLevel {
wrap = generator.ProjectLoggingTemplateWrap{
ContainerLogSourceTag: containerLogSourceTag,
LoggingTargetTemplateWrap: *wrapTarget,
LoggingCommonField: loggingCommomFileds,
}
} else {
wrap = generator.ClusterLoggingTemplateWrap{
ContainerLogSourceTag: containerLogSourceTag,
LoggingTargetTemplateWrap: *wrapTarget,
LoggingCommonField: loggingCommomFileds,
}
}
if loggingTargets.SyslogConfig != nil && loggingTargets.SyslogConfig.Token != "" {
if err = generator.ValidateSyslogToken(wrap); err != nil {
return err
}
}
if err = generator.ValidateCustomTags(wrap); err != nil {
return err
}
return generator.ValidateCustomTarget(wrap)
}
func validateKafka(kafkaConfig *v3.KafkaConfig) error {
if kafkaConfig.SaslType == "plain" && kafkaConfig.ClientCert == "" && kafkaConfig.ClientKey == "" {
return httperror.NewAPIError(httperror.InvalidBodyContent, "Plain SASL authentication requires SSL is configured")
}
return nil
}