server/service/grc/policy.go (33 lines of code) (raw):

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 grc include API of governance(grc is the abbreviation of governance) package grc import ( "fmt" "strings" "k8s.io/kube-openapi/pkg/validation/strfmt" "k8s.io/kube-openapi/pkg/validation/validate" "k8s.io/kube-openapi/pkg/validation/spec" "github.com/apache/servicecomb-service-center/pkg/log" ) type ValueType string var PolicyNames []string // policySchemas saves policy kind and schema var policySchemas = make(map[string]*spec.Schema) // RegisterPolicySchema register a contract of one kind of policy // this API is not thread safe, only use it during sc init func RegisterPolicySchema(kind string, schema *spec.Schema) { policySchemas[kind] = schema log.Info("register policy schema: " + kind) } // ValidatePolicySpec validates spec attributes func ValidatePolicySpec(kind string, spec interface{}) error { schema, ok := policySchemas[kind] if !ok { log.Warn(fmt.Sprintf("can not recognize policy %s", kind)) return fmt.Errorf("not support kind[%s] yet", kind) } validator := validate.NewSchemaValidator(schema, nil, kind, strfmt.Default) errs := validator.Validate(spec).Errors if len(errs) != 0 { var str []string for _, err := range errs { str = append(str, err.Error()) } return fmt.Errorf("illegal policy[%s] spec, msg: %s", kind, strings.Join(str, "; ")) } return nil }