lego/providers/dns/easydns/easydns.go

235 lines
5.9 KiB
Go
Raw Normal View History

2019-04-29 00:03:04 +00:00
// Package easydns implements a DNS provider for solving the DNS-01 challenge using EasyDNS API.
package easydns
import (
2023-05-05 07:49:38 +00:00
"context"
2019-04-29 00:03:04 +00:00
"errors"
"fmt"
"net/http"
"net/url"
"strconv"
"strings"
"sync"
"time"
2020-09-02 01:20:01 +00:00
"github.com/go-acme/lego/v4/challenge/dns01"
"github.com/go-acme/lego/v4/platform/config/env"
2023-05-05 07:49:38 +00:00
"github.com/go-acme/lego/v4/providers/dns/easydns/internal"
2019-04-29 00:03:04 +00:00
)
// Environment variables names.
const (
envNamespace = "EASYDNS_"
EnvEndpoint = envNamespace + "ENDPOINT"
EnvToken = envNamespace + "TOKEN"
EnvKey = envNamespace + "KEY"
EnvTTL = envNamespace + "TTL"
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT"
EnvSequenceInterval = envNamespace + "SEQUENCE_INTERVAL"
)
2020-05-08 17:35:25 +00:00
// Config is used to configure the creation of the DNSProvider.
2019-04-29 00:03:04 +00:00
type Config struct {
Endpoint *url.URL
Token string
Key string
TTL int
HTTPClient *http.Client
PropagationTimeout time.Duration
PollingInterval time.Duration
SequenceInterval time.Duration
}
2020-05-08 17:35:25 +00:00
// NewDefaultConfig returns a default configuration for the DNSProvider.
2019-04-29 00:03:04 +00:00
func NewDefaultConfig() *Config {
return &Config{
TTL: env.GetOrDefaultInt(EnvTTL, dns01.DefaultTTL),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, dns01.DefaultPropagationTimeout),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, dns01.DefaultPollingInterval),
SequenceInterval: env.GetOrDefaultSecond(EnvSequenceInterval, dns01.DefaultPropagationTimeout),
2019-04-29 00:03:04 +00:00
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
2019-04-29 00:03:04 +00:00
},
}
}
2020-05-08 17:35:25 +00:00
// DNSProvider implements the challenge.Provider interface.
2019-04-29 00:03:04 +00:00
type DNSProvider struct {
2023-05-05 07:49:38 +00:00
config *Config
client *internal.Client
2019-04-29 00:03:04 +00:00
recordIDs map[string]string
recordIDsMu sync.Mutex
}
// NewDNSProvider returns a DNSProvider instance.
func NewDNSProvider() (*DNSProvider, error) {
config := NewDefaultConfig()
2023-05-05 07:49:38 +00:00
endpoint, err := url.Parse(env.GetOrDefaultString(EnvEndpoint, internal.DefaultBaseURL))
2019-04-29 00:03:04 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return nil, fmt.Errorf("easydns: %w", err)
2019-04-29 00:03:04 +00:00
}
config.Endpoint = endpoint
values, err := env.Get(EnvToken, EnvKey)
2019-04-29 00:03:04 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return nil, fmt.Errorf("easydns: %w", err)
2019-04-29 00:03:04 +00:00
}
config.Token = values[EnvToken]
config.Key = values[EnvKey]
2019-04-29 00:03:04 +00:00
return NewDNSProviderConfig(config)
}
2019-08-20 16:40:41 +00:00
// NewDNSProviderConfig return a DNSProvider instance configured for EasyDNS.
2019-04-29 00:03:04 +00:00
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("easydns: the configuration of the DNS provider is nil")
}
if config.Token == "" {
return nil, errors.New("easydns: the API token is missing")
}
if config.Key == "" {
return nil, errors.New("easydns: the API key is missing")
}
2023-05-05 07:49:38 +00:00
client := internal.NewClient(config.Token, config.Key)
if config.HTTPClient != nil {
client.HTTPClient = config.HTTPClient
}
if config.Endpoint != nil {
client.BaseURL = config.Endpoint
}
return &DNSProvider{config: config, client: client, recordIDs: map[string]string{}}, nil
2019-04-29 00:03:04 +00:00
}
2020-05-08 17:35:25 +00:00
// Present creates a TXT record to fulfill the dns-01 challenge.
2019-04-29 00:03:04 +00:00
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
2024-03-03 14:41:55 +00:00
ctx := context.Background()
info := dns01.GetChallengeInfo(domain, keyAuth)
2019-04-29 00:03:04 +00:00
2024-03-03 14:41:55 +00:00
authZone, err := d.findZone(ctx, dns01.UnFqdn(info.EffectiveFQDN))
if err != nil {
return fmt.Errorf("easydns: %w", err)
}
if authZone == "" {
return fmt.Errorf("easydns: could not find zone for domain %q", domain)
}
subDomain, err := dns01.ExtractSubDomain(info.EffectiveFQDN, authZone)
if err != nil {
return fmt.Errorf("easydns: %w", err)
}
2023-05-05 07:49:38 +00:00
record := internal.ZoneRecord{
2024-03-03 14:41:55 +00:00
Domain: authZone,
Host: subDomain,
2023-05-05 07:49:38 +00:00
Type: "TXT",
Rdata: info.Value,
TTL: strconv.Itoa(d.config.TTL),
Priority: "0",
2019-04-29 00:03:04 +00:00
}
2024-03-03 14:41:55 +00:00
recordID, err := d.client.AddRecord(ctx, dns01.UnFqdn(authZone), record)
2019-04-29 00:03:04 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("easydns: error adding zone record: %w", err)
2019-04-29 00:03:04 +00:00
}
key := getMapKey(info.EffectiveFQDN, info.Value)
2019-04-29 00:03:04 +00:00
d.recordIDsMu.Lock()
d.recordIDs[key] = recordID
d.recordIDsMu.Unlock()
return nil
}
2020-05-08 17:35:25 +00:00
// CleanUp removes the TXT record matching the specified parameters.
2019-04-29 00:03:04 +00:00
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
2024-03-03 14:41:55 +00:00
ctx := context.Background()
info := dns01.GetChallengeInfo(domain, keyAuth)
2019-04-29 00:03:04 +00:00
key := getMapKey(info.EffectiveFQDN, info.Value)
2023-05-05 07:49:38 +00:00
d.recordIDsMu.Lock()
2019-04-29 00:03:04 +00:00
recordID, exists := d.recordIDs[key]
2023-05-05 07:49:38 +00:00
d.recordIDsMu.Unlock()
2019-04-29 00:03:04 +00:00
if !exists {
return nil
}
2024-03-03 14:41:55 +00:00
authZone, err := d.findZone(ctx, dns01.UnFqdn(info.EffectiveFQDN))
if err != nil {
return fmt.Errorf("easydns: %w", err)
}
2023-05-05 07:49:38 +00:00
2024-03-03 14:41:55 +00:00
if authZone == "" {
return fmt.Errorf("easydns: could not find zone for domain %q", domain)
}
err = d.client.DeleteRecord(ctx, dns01.UnFqdn(authZone), recordID)
2019-04-29 00:03:04 +00:00
d.recordIDsMu.Lock()
defer delete(d.recordIDs, key)
d.recordIDsMu.Unlock()
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("easydns: %w", err)
2019-04-29 00:03:04 +00:00
}
return nil
}
// Timeout returns the timeout and interval to use when checking for DNS propagation.
// Adjusting here to cope with spikes in propagation times.
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
return d.config.PropagationTimeout, d.config.PollingInterval
}
// Sequential All DNS challenges for this provider will be resolved sequentially.
// Returns the interval between each iteration.
func (d *DNSProvider) Sequential() time.Duration {
return d.config.SequenceInterval
}
func getMapKey(fqdn, value string) string {
return fqdn + "|" + value
}
2024-03-03 14:41:55 +00:00
func (d *DNSProvider) findZone(ctx context.Context, domain string) (string, error) {
var errAll error
for {
i := strings.Index(domain, ".")
if i == -1 {
break
}
_, err := d.client.ListZones(ctx, domain)
if err == nil {
return domain, nil
}
errAll = errors.Join(errAll, err)
domain = domain[i+1:]
}
return "", errAll
}