-
Notifications
You must be signed in to change notification settings - Fork 66
/
handler.go
114 lines (97 loc) · 4.09 KB
/
handler.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* Copyright 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
*
* 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
*
*/
package dnsentry
import (
"github.com/gardener/controller-manager-library/pkg/controllermanager/controller"
"github.com/gardener/controller-manager-library/pkg/logger"
"github.com/gardener/controller-manager-library/pkg/resources"
"github.com/gardener/controller-manager-library/pkg/utils"
"github.com/gardener/external-dns-management/pkg/dns/source"
api "github.com/gardener/external-dns-management/pkg/apis/dns/v1alpha1"
)
type DNSEntrySource struct {
source.DefaultDNSSource
resources resources.Resources
}
type updateOriginalFeedback struct {
resources resources.Resources
isDNSEntry bool
objectName resources.ObjectName
chain source.DNSFeedback
}
func NewDNSEntrySource(c controller.Interface) (source.DNSSource, error) {
return &DNSEntrySource{DefaultDNSSource: source.NewDefaultDNSSource(nil), resources: c.GetMainCluster().Resources()}, nil
}
func (this *DNSEntrySource) CreateDNSFeedback(obj resources.Object) source.DNSFeedback {
eventFeedback := source.NewEventFeedback(obj, this.GetEvents(obj.ClusterKey()))
return &updateOriginalFeedback{
resources: this.resources,
isDNSEntry: obj.GroupKind().Kind == api.DNSEntryKind,
objectName: obj.ClusterKey().ObjectName(),
chain: eventFeedback,
}
}
func (this *DNSEntrySource) GetDNSInfo(logger logger.LogContext, obj resources.Object, current *source.DNSCurrentState) (*source.DNSInfo, error) {
data := obj.Data().(*api.DNSEntry)
info := &source.DNSInfo{
Names: utils.NewStringSet(data.Spec.DNSName),
Targets: utils.NewStringSetByArray(data.Spec.Targets),
Text: utils.NewStringSetByArray(data.Spec.Text),
OrigRef: data.Spec.Reference,
TTL: data.Spec.TTL,
Interval: data.Spec.CNameLookupInterval,
}
return info, nil
}
func (f *updateOriginalFeedback) Succeeded(logger logger.LogContext) {
f.chain.Succeeded(logger)
}
func (f *updateOriginalFeedback) Pending(logger logger.LogContext, dnsname string, msg string, state *source.DNSState) {
f.setStatus(logger, "Pending", msg, state)
f.chain.Pending(logger, dnsname, msg, state)
}
func (f *updateOriginalFeedback) Ready(logger logger.LogContext, dnsname string, msg string, state *source.DNSState) {
f.setStatus(logger, "Ready", msg, state)
f.chain.Ready(logger, dnsname, msg, state)
}
func (f *updateOriginalFeedback) Invalid(logger logger.LogContext, dnsname string, err error, state *source.DNSState) {
f.setStatus(logger, "Invalid", err.Error(), state)
f.chain.Invalid(logger, dnsname, err, state)
}
func (f *updateOriginalFeedback) Failed(logger logger.LogContext, dnsname string, err error, state *source.DNSState) {
f.setStatus(logger, "Error", err.Error(), state)
f.chain.Failed(logger, dnsname, err, state)
}
func (f *updateOriginalFeedback) Deleted(logger logger.LogContext, dnsname string, msg string, state *source.DNSState) {
f.chain.Deleted(logger, dnsname, msg, state)
}
func (f *updateOriginalFeedback) setStatus(logger logger.LogContext, state string, msg string, dnsState *source.DNSState) {
if dnsState == nil || !f.isDNSEntry {
return
}
obj, err := f.resources.GetObjectInto(f.objectName, &api.DNSEntry{})
if err != nil {
logger.Warnf("Cannot get object %s: %s", f.objectName, err)
return
}
data := obj.Data().(*api.DNSEntry)
data.Status = dnsState.DNSEntryStatus
data.Status.ObservedGeneration = data.GetGeneration()
err = obj.UpdateStatus()
if err != nil {
logger.Warnf("Cannot update status for object %s: %s", f.objectName, err)
}
}