Ivan Ka 564d5353b8
refactor(provider): introduce factory with uniform New consturctor (#6276)
* refactor(controller): move provider construction to provider/factory package

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* refactor(controller): move provider construction to provider/factory package

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* refactor(provider): introduce factory package with per-provider New constructors

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* refactor(provider): introduce factory package with per-provider New constructors

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* refactor(provider): introduce factory package with per-provider New constructors

* refactor(provider): introduce factory package with per-provider New constructors

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

* refactor(provider): introduce factory package with per-provider New constructors

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>

---------

Signed-off-by: ivan katliarchuk <ivan.katliarchuk@gmail.com>
2026-03-16 13:29:37 +05:30

145 lines
3.5 KiB
Go

/*
Copyright 2022 The Kubernetes 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 plural
import (
"context"
"fmt"
"os"
log "github.com/sirupsen/logrus"
"sigs.k8s.io/external-dns/pkg/apis/externaldns"
"sigs.k8s.io/external-dns/endpoint"
"sigs.k8s.io/external-dns/plan"
"sigs.k8s.io/external-dns/provider"
)
const (
CreateAction = "c"
DeleteAction = "d"
)
type PluralProvider struct {
provider.BaseProvider
Client Client
}
type RecordChange struct {
Action string
Record *DnsRecord
}
// New creates a Plural provider from the given configuration.
func New(_ context.Context, cfg *externaldns.Config, _ *endpoint.DomainFilter) (provider.Provider, error) {
return newProvider(cfg.PluralCluster, cfg.PluralProvider)
}
func newProvider(cluster, provider string) (*PluralProvider, error) {
token := os.Getenv("PLURAL_ACCESS_TOKEN")
if token == "" {
return nil, fmt.Errorf("no plural access token provided, you must set the PLURAL_ACCESS_TOKEN env var")
}
config := &Config{
Token: token,
Endpoint: os.Getenv("PLURAL_ENDPOINT"),
Cluster: cluster,
Provider: provider,
}
cl, err := NewClient(config)
if err != nil {
return nil, err
}
return &PluralProvider{
Client: cl,
}, nil
}
func (p *PluralProvider) Records(_ context.Context) ([]*endpoint.Endpoint, error) {
records, err := p.Client.DnsRecords()
if err != nil {
return nil, err
}
endpoints := make([]*endpoint.Endpoint, len(records))
for i, record := range records {
endpoints[i] = endpoint.NewEndpoint(record.Name, record.Type, record.Records...)
}
return endpoints, nil
}
func (p *PluralProvider) AdjustEndpoints(endpoints []*endpoint.Endpoint) ([]*endpoint.Endpoint, error) {
return endpoints, nil
}
func (p *PluralProvider) ApplyChanges(_ context.Context, diffs *plan.Changes) error {
var changes []*RecordChange
for _, ep := range diffs.Create {
changes = append(changes, makeChange(CreateAction, ep.Targets, ep))
}
for _, desired := range diffs.UpdateNew {
changes = append(changes, makeChange(CreateAction, desired.Targets, desired))
}
for _, deleted := range diffs.Delete {
changes = append(changes, makeChange(DeleteAction, []string{}, deleted))
}
return p.applyChanges(changes)
}
func makeChange(change string, target []string, endpoint *endpoint.Endpoint) *RecordChange {
return &RecordChange{
Action: change,
Record: &DnsRecord{
Name: endpoint.DNSName,
Type: endpoint.RecordType,
Records: target,
},
}
}
func (p *PluralProvider) applyChanges(changes []*RecordChange) error {
for _, change := range changes {
logFields := log.Fields{
"name": change.Record.Name,
"type": change.Record.Type,
"action": change.Action,
}
log.WithFields(logFields).Info("Changing record.")
if change.Action == CreateAction {
_, err := p.Client.CreateRecord(change.Record)
if err != nil {
return err
}
}
if change.Action == DeleteAction {
if err := p.Client.DeleteRecord(change.Record.Name, change.Record.Type); err != nil {
return err
}
}
}
return nil
}