37 Star 403 Fork 75

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
validator.go 2.78 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-06-12 13:38 . goimport linting changes
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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.5-rc4

搜索帮助