blob: 4f0fc1bff2035d550267f538d15675889492d242 [file] [log] [blame]
// Copyright Istio Authors
//
// 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 serviceentry
import (
"fmt"
)
import (
"istio.io/api/networking/v1alpha3"
)
import (
"github.com/apache/dubbo-go-pixiu/pkg/config/analysis"
"github.com/apache/dubbo-go-pixiu/pkg/config/analysis/analyzers/util"
"github.com/apache/dubbo-go-pixiu/pkg/config/analysis/msg"
"github.com/apache/dubbo-go-pixiu/pkg/config/resource"
"github.com/apache/dubbo-go-pixiu/pkg/config/schema/collection"
"github.com/apache/dubbo-go-pixiu/pkg/config/schema/collections"
)
type ProtocolAdressesAnalyzer struct{}
var _ analysis.Analyzer = &ProtocolAdressesAnalyzer{}
func (serviceEntry *ProtocolAdressesAnalyzer) Metadata() analysis.Metadata {
return analysis.Metadata{
Name: "serviceentry.Analyzer",
Description: "Checks the validity of ServiceEntry",
Inputs: collection.Names{
collections.IstioNetworkingV1Alpha3Serviceentries.Name(),
},
}
}
func (serviceEntry *ProtocolAdressesAnalyzer) Analyze(context analysis.Context) {
context.ForEach(collections.IstioNetworkingV1Alpha3Serviceentries.Name(), func(resource *resource.Instance) bool {
serviceEntry.analyzeProtocolAddresses(resource, context)
return true
})
}
func (serviceEntry *ProtocolAdressesAnalyzer) analyzeProtocolAddresses(resource *resource.Instance, context analysis.Context) {
se := resource.Message.(*v1alpha3.ServiceEntry)
if se.Addresses == nil {
for index, port := range se.Ports {
if port.Protocol == "" || port.Protocol == "TCP" {
message := msg.NewServiceEntryAddressesRequired(resource)
if line, ok := util.ErrorLine(resource, fmt.Sprintf(util.ServiceEntryPort, index)); ok {
message.Line = line
}
context.Report(collections.IstioNetworkingV1Alpha3Serviceentries.Name(), message)
}
}
}
}