94 lines
2.6 KiB
Go
94 lines
2.6 KiB
Go
/*
|
|
Copyright 2021 The Dapr 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 kubernetes
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"strconv"
|
|
"text/template"
|
|
|
|
"github.com/dapr/components-contrib/nameresolution"
|
|
"github.com/dapr/kit/config"
|
|
"github.com/dapr/kit/logger"
|
|
)
|
|
|
|
const (
|
|
DefaultClusterDomain = "cluster.local"
|
|
ClusterDomainKey = "clusterDomain"
|
|
TemplateKey = "template"
|
|
)
|
|
|
|
func executeTemplateWithResolveRequest(tmpl *template.Template, req nameresolution.ResolveRequest) (string, error) {
|
|
var addr bytes.Buffer
|
|
if err := tmpl.Execute(&addr, req); err != nil {
|
|
return "", err
|
|
}
|
|
return addr.String(), nil
|
|
}
|
|
|
|
type resolver struct {
|
|
logger logger.Logger
|
|
clusterDomain string
|
|
tmpl *template.Template
|
|
}
|
|
|
|
// NewResolver creates Kubernetes name resolver.
|
|
func NewResolver(logger logger.Logger) nameresolution.Resolver {
|
|
return &resolver{
|
|
logger: logger,
|
|
clusterDomain: DefaultClusterDomain,
|
|
tmpl: nil,
|
|
}
|
|
}
|
|
|
|
// Init initializes Kubernetes name resolver.
|
|
func (k *resolver) Init(ctx context.Context, metadata nameresolution.Metadata) error {
|
|
configInterface, err := config.Normalize(metadata.Configuration)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if cfg, ok := configInterface.(map[string]interface{}); ok {
|
|
clusterDomainAny := cfg[ClusterDomainKey]
|
|
tmplStrAny := cfg[TemplateKey]
|
|
|
|
if clusterDomainAny != nil {
|
|
clusterDomain, _ := clusterDomainAny.(string)
|
|
if clusterDomain != "" {
|
|
k.clusterDomain = clusterDomain
|
|
}
|
|
}
|
|
|
|
if tmplStrAny != nil {
|
|
tmplStr, _ := tmplStrAny.(string)
|
|
if tmplStr != "" {
|
|
k.tmpl = template.Must(template.New("kubernetes-template").Parse(tmplStr))
|
|
k.logger.Debugf("using custom template %s", tmplStr)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ResolveID resolves name to address in Kubernetes.
|
|
func (k *resolver) ResolveID(ctx context.Context, req nameresolution.ResolveRequest) (string, error) {
|
|
if k.tmpl != nil {
|
|
return executeTemplateWithResolveRequest(k.tmpl, req)
|
|
}
|
|
// Dapr requires this formatting for Kubernetes services
|
|
return req.ID + "-dapr." + req.Namespace + ".svc." + k.clusterDomain + ":" + strconv.Itoa(req.Port), nil
|
|
}
|