2020-05-06 23:27:35 +00:00
|
|
|
// Package desec implements a DNS provider for solving the DNS-01 challenge using deSEC DNS.
|
|
|
|
package desec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"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"
|
2020-08-26 09:25:59 +00:00
|
|
|
"github.com/nrdcg/desec"
|
2020-05-06 23:27:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Environment variables names.
|
|
|
|
const (
|
|
|
|
envNamespace = "DESEC_"
|
|
|
|
|
|
|
|
EnvToken = envNamespace + "TOKEN"
|
|
|
|
|
|
|
|
EnvTTL = envNamespace + "TTL"
|
|
|
|
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
|
|
|
|
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
|
|
|
|
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Config is used to configure the creation of the DNSProvider.
|
|
|
|
type Config struct {
|
|
|
|
Token string
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
TTL int
|
|
|
|
HTTPClient *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider.
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
|
|
|
TTL: env.GetOrDefaultInt(EnvTTL, 300),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, dns01.DefaultPollingInterval),
|
|
|
|
HTTPClient: &http.Client{
|
|
|
|
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// DNSProvider implements the challenge.Provider interface.
|
2020-05-06 23:27:35 +00:00
|
|
|
type DNSProvider struct {
|
|
|
|
config *Config
|
2020-08-26 09:25:59 +00:00
|
|
|
client *desec.Client
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for deSEC.
|
|
|
|
// Credentials must be passed in the environment variable: DESEC_TOKEN.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
|
|
|
values, err := env.Get(EnvToken)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("desec: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.Token = values[EnvToken]
|
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for deSEC.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("desec: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Token == "" {
|
|
|
|
return nil, errors.New("desec: incomplete credentials, missing token")
|
|
|
|
}
|
|
|
|
|
2020-08-26 09:25:59 +00:00
|
|
|
opts := desec.NewDefaultClientOptions()
|
2020-05-06 23:27:35 +00:00
|
|
|
if config.HTTPClient != nil {
|
2020-08-26 09:25:59 +00:00
|
|
|
opts.HTTPClient = config.HTTPClient
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
2020-08-26 09:25:59 +00:00
|
|
|
client := desec.New(config.Token, opts)
|
|
|
|
|
2020-05-06 23:27:35 +00:00
|
|
|
return &DNSProvider{config: config, client: client}, 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a TXT record using the specified parameters.
|
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
quotedValue := fmt.Sprintf(`"%s"`, value)
|
|
|
|
|
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("desec: could not find zone for domain %q and fqdn %q : %w", domain, fqdn, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
recordName := getRecordName(fqdn, authZone)
|
|
|
|
|
2020-05-16 18:15:23 +00:00
|
|
|
domainName := dns01.UnFqdn(authZone)
|
2020-05-06 23:27:35 +00:00
|
|
|
|
2020-08-26 09:25:59 +00:00
|
|
|
rrSet, err := d.client.Records.Get(domainName, recordName, "TXT")
|
2020-05-06 23:27:35 +00:00
|
|
|
if err != nil {
|
2020-08-26 09:25:59 +00:00
|
|
|
var nf *desec.NotFound
|
2020-05-06 23:27:35 +00:00
|
|
|
if !errors.As(err, &nf) {
|
2020-05-16 18:15:23 +00:00
|
|
|
return fmt.Errorf("desec: failed to get records: domainName=%s, recordName=%s: %w", domainName, recordName, err)
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Not found case -> create
|
2020-08-26 09:25:59 +00:00
|
|
|
_, err = d.client.Records.Create(desec.RRSet{
|
2020-05-16 18:15:23 +00:00
|
|
|
Domain: domainName,
|
2020-05-06 23:27:35 +00:00
|
|
|
SubName: recordName,
|
|
|
|
Type: "TXT",
|
|
|
|
Records: []string{quotedValue},
|
|
|
|
TTL: d.config.TTL,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2020-05-16 18:15:23 +00:00
|
|
|
return fmt.Errorf("desec: failed to create records: domainName=%s, recordName=%s: %w", domainName, recordName, err)
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// update
|
|
|
|
records := append(rrSet.Records, quotedValue)
|
|
|
|
|
2020-08-26 09:25:59 +00:00
|
|
|
_, err = d.client.Records.Update(domainName, recordName, "TXT", desec.RRSet{Records: records})
|
2020-05-06 23:27:35 +00:00
|
|
|
if err != nil {
|
2020-05-16 18:15:23 +00:00
|
|
|
return fmt.Errorf("desec: failed to update records: domainName=%s, recordName=%s: %w", domainName, recordName, err)
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the TXT record matching the specified parameters.
|
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
|
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("desec: could not find zone for domain %q and fqdn %q : %w", domain, fqdn, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
recordName := getRecordName(fqdn, authZone)
|
|
|
|
|
2020-05-16 18:15:23 +00:00
|
|
|
domainName := dns01.UnFqdn(authZone)
|
|
|
|
|
2020-08-26 09:25:59 +00:00
|
|
|
rrSet, err := d.client.Records.Get(domainName, recordName, "TXT")
|
2020-05-06 23:27:35 +00:00
|
|
|
if err != nil {
|
2020-05-16 18:15:23 +00:00
|
|
|
return fmt.Errorf("desec: failed to get records: domainName=%s, recordName=%s: %w", domainName, recordName, err)
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
records := make([]string, 0)
|
|
|
|
for _, record := range rrSet.Records {
|
|
|
|
if record != fmt.Sprintf(`"%s"`, value) {
|
|
|
|
records = append(records, record)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-26 09:25:59 +00:00
|
|
|
_, err = d.client.Records.Update(domainName, recordName, "TXT", desec.RRSet{Records: records})
|
2020-05-06 23:27:35 +00:00
|
|
|
if err != nil {
|
2020-05-16 18:15:23 +00:00
|
|
|
return fmt.Errorf("desec: failed to update records: domainName=%s, recordName=%s: %w", domainName, recordName, err)
|
2020-05-06 23:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getRecordName(fqdn, authZone string) string {
|
|
|
|
return fqdn[0 : len(fqdn)-len(authZone)-1]
|
|
|
|
}
|