lego/providers/dns/godaddy/godaddy.go

202 lines
5.6 KiB
Go
Raw Normal View History

// Package godaddy implements a DNS provider for solving the DNS-01 challenge using godaddy DNS.
2019-03-11 16:56:48 +00:00
package godaddy
import (
2023-05-05 07:49:38 +00:00
"context"
"errors"
"fmt"
"net/http"
"time"
2018-05-30 17:53:04 +00:00
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"
"github.com/go-acme/lego/v4/providers/dns/godaddy/internal"
)
const minTTL = 600
// Environment variables names.
const (
envNamespace = "GODADDY_"
EnvAPIKey = envNamespace + "API_KEY"
EnvAPISecret = envNamespace + "API_SECRET"
EnvTTL = envNamespace + "TTL"
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT"
)
2020-05-08 17:35:25 +00:00
// Config is used to configure the creation of the DNSProvider.
type Config struct {
APIKey string
APISecret string
PropagationTimeout time.Duration
PollingInterval time.Duration
TTL int
HTTPClient *http.Client
}
2020-05-08 17:35:25 +00:00
// NewDefaultConfig returns a default configuration for the DNSProvider.
func NewDefaultConfig() *Config {
return &Config{
TTL: env.GetOrDefaultInt(EnvTTL, minTTL),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 120*time.Second),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 2*time.Second),
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
},
}
}
2020-05-08 17:35:25 +00:00
// DNSProvider implements the challenge.Provider interface.
type DNSProvider struct {
config *Config
client *internal.Client
}
// NewDNSProvider returns a DNSProvider instance configured for godaddy.
// Credentials must be passed in the environment variables:
// GODADDY_API_KEY and GODADDY_API_SECRET.
func NewDNSProvider() (*DNSProvider, error) {
values, err := env.Get(EnvAPIKey, EnvAPISecret)
if err != nil {
2020-02-27 18:14:46 +00:00
return nil, fmt.Errorf("godaddy: %w", err)
}
config := NewDefaultConfig()
config.APIKey = values[EnvAPIKey]
config.APISecret = values[EnvAPISecret]
return NewDNSProviderConfig(config)
}
// NewDNSProviderConfig return a DNSProvider instance configured for godaddy.
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("godaddy: the configuration of the DNS provider is nil")
}
if config.APIKey == "" || config.APISecret == "" {
2020-02-27 18:14:46 +00:00
return nil, errors.New("godaddy: credentials missing")
}
if config.TTL < minTTL {
return nil, fmt.Errorf("godaddy: invalid TTL, TTL (%d) must be greater than %d", config.TTL, minTTL)
}
client := internal.NewClient(config.APIKey, config.APISecret)
if config.HTTPClient != nil {
client.HTTPClient = config.HTTPClient
}
return &DNSProvider{config: config, client: client}, nil
}
2023-06-30 18:42:28 +00:00
// 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
}
2020-05-08 17:35:25 +00:00
// Present creates a TXT record to fulfill the dns-01 challenge.
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
info := dns01.GetChallengeInfo(domain, keyAuth)
2020-04-17 20:38:13 +00:00
2023-05-05 07:49:38 +00:00
authZone, err := dns01.FindZoneByFqdn(info.EffectiveFQDN)
if err != nil {
2023-05-05 07:49:38 +00:00
return fmt.Errorf("godaddy: could not find zone for domain %q (%s): %w", domain, info.EffectiveFQDN, err)
}
2023-05-05 07:49:38 +00:00
authZone = dns01.UnFqdn(authZone)
subDomain, err := dns01.ExtractSubDomain(info.EffectiveFQDN, authZone)
if err != nil {
return fmt.Errorf("godaddy: %w", err)
}
2020-04-17 20:38:13 +00:00
2023-05-05 07:49:38 +00:00
ctx := context.Background()
records, err := d.client.GetRecords(ctx, authZone, "TXT", subDomain)
2020-04-17 20:38:13 +00:00
if err != nil {
return fmt.Errorf("godaddy: failed to get TXT records: %w", err)
}
var newRecords []internal.DNSRecord
2020-04-17 20:38:13 +00:00
for _, record := range records {
if record.Data != "" {
newRecords = append(newRecords, record)
}
}
record := internal.DNSRecord{
2020-04-17 20:38:13 +00:00
Type: "TXT",
Name: subDomain,
Data: info.Value,
2020-04-17 20:38:13 +00:00
TTL: d.config.TTL,
}
newRecords = append(newRecords, record)
2023-05-05 07:49:38 +00:00
err = d.client.UpdateTxtRecords(ctx, newRecords, authZone, subDomain)
2020-04-17 20:38:13 +00:00
if err != nil {
return fmt.Errorf("godaddy: failed to add TXT record: %w", err)
}
2020-04-17 20:38:13 +00:00
return nil
}
2020-05-08 17:35:25 +00:00
// CleanUp removes the record matching the specified parameters.
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
info := dns01.GetChallengeInfo(domain, keyAuth)
2020-04-17 20:38:13 +00:00
2023-05-05 07:49:38 +00:00
authZone, err := dns01.FindZoneByFqdn(info.EffectiveFQDN)
if err != nil {
2023-05-05 07:49:38 +00:00
return fmt.Errorf("godaddy: could not find zone for domain %q (%s): %w", domain, info.EffectiveFQDN, err)
}
2023-05-05 07:49:38 +00:00
authZone = dns01.UnFqdn(authZone)
subDomain, err := dns01.ExtractSubDomain(info.EffectiveFQDN, authZone)
if err != nil {
return fmt.Errorf("godaddy: %w", err)
}
2020-04-17 20:38:13 +00:00
2023-05-05 07:49:38 +00:00
ctx := context.Background()
records, err := d.client.GetRecords(ctx, authZone, "TXT", subDomain)
2020-04-17 20:38:13 +00:00
if err != nil {
return fmt.Errorf("godaddy: failed to get TXT records: %w", err)
}
2020-04-17 20:38:13 +00:00
if len(records) == 0 {
return nil
}
2023-05-05 07:49:38 +00:00
allTxtRecords, err := d.client.GetRecords(ctx, authZone, "TXT", "")
2020-04-17 20:38:13 +00:00
if err != nil {
return fmt.Errorf("godaddy: failed to get all TXT records: %w", err)
}
var recordsKeep []internal.DNSRecord
2020-04-17 20:38:13 +00:00
for _, record := range allTxtRecords {
if record.Data != info.Value && record.Data != "" {
2020-04-17 20:38:13 +00:00
recordsKeep = append(recordsKeep, record)
}
}
// GoDaddy API don't provide a way to delete a record, an "empty" record must be added.
if len(recordsKeep) == 0 {
emptyRecord := internal.DNSRecord{Name: "empty", Data: ""}
2020-04-17 20:38:13 +00:00
recordsKeep = append(recordsKeep, emptyRecord)
}
2023-05-05 07:49:38 +00:00
err = d.client.UpdateTxtRecords(ctx, recordsKeep, authZone, "")
2020-04-17 20:38:13 +00:00
if err != nil {
return fmt.Errorf("godaddy: failed to remove TXT record: %w", err)
}
2020-04-17 20:38:13 +00:00
return nil
}