2020-05-08 17:35:25 +00:00
|
|
|
// Package autodns implements a DNS provider for solving the DNS-01 challenge using auto DNS.
|
2019-11-01 10:20:34 +00:00
|
|
|
package autodns
|
|
|
|
|
|
|
|
import (
|
2020-02-27 18:14:46 +00:00
|
|
|
"errors"
|
2019-11-01 10:20:34 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"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"
|
2019-11-01 10:20:34 +00:00
|
|
|
)
|
|
|
|
|
2020-03-11 22:51:10 +00:00
|
|
|
// Environment variables names.
|
2019-11-01 10:20:34 +00:00
|
|
|
const (
|
2020-03-11 22:51:10 +00:00
|
|
|
envNamespace = "AUTODNS_"
|
|
|
|
|
|
|
|
EnvAPIUser = envNamespace + "API_USER"
|
|
|
|
EnvAPIPassword = envNamespace + "API_PASSWORD"
|
|
|
|
EnvAPIEndpoint = envNamespace + "ENDPOINT"
|
|
|
|
EnvAPIEndpointContext = envNamespace + "CONTEXT"
|
|
|
|
|
|
|
|
EnvTTL = envNamespace + "TTL"
|
|
|
|
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
|
|
|
|
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
|
|
|
|
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT"
|
2019-11-01 10:20:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultEndpointContext int = 4
|
|
|
|
defaultTTL int = 600
|
|
|
|
)
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// Config is used to configure the creation of the DNSProvider.
|
2019-11-01 10:20:34 +00:00
|
|
|
type Config struct {
|
|
|
|
Endpoint *url.URL
|
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
Context int
|
|
|
|
TTL int
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
HTTPClient *http.Client
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider.
|
2019-11-01 10:20:34 +00:00
|
|
|
func NewDefaultConfig() *Config {
|
2020-03-11 22:51:10 +00:00
|
|
|
endpoint, _ := url.Parse(env.GetOrDefaultString(EnvAPIEndpoint, defaultEndpoint))
|
2019-11-01 10:20:34 +00:00
|
|
|
|
|
|
|
return &Config{
|
|
|
|
Endpoint: endpoint,
|
2020-03-11 22:51:10 +00:00
|
|
|
Context: env.GetOrDefaultInt(EnvAPIEndpointContext, defaultEndpointContext),
|
|
|
|
TTL: env.GetOrDefaultInt(EnvTTL, defaultTTL),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 2*time.Minute),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 2*time.Second),
|
2019-11-01 10:20:34 +00:00
|
|
|
HTTPClient: &http.Client{
|
2020-03-11 22:51:10 +00:00
|
|
|
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
|
2019-11-01 10:20:34 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// DNSProvider implements the challenge.Provider interface.
|
2019-11-01 10:20:34 +00:00
|
|
|
type DNSProvider struct {
|
|
|
|
config *Config
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for autoDNS.
|
|
|
|
// Credentials must be passed in the environment variables.
|
2019-11-01 10:20:34 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2020-03-11 22:51:10 +00:00
|
|
|
values, err := env.Get(EnvAPIUser, EnvAPIPassword)
|
2019-11-01 10:20:34 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, fmt.Errorf("autodns: %w", err)
|
2019-11-01 10:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
config := NewDefaultConfig()
|
2020-03-11 22:51:10 +00:00
|
|
|
config.Username = values[EnvAPIUser]
|
|
|
|
config.Password = values[EnvAPIPassword]
|
2019-11-01 10:20:34 +00:00
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for autoDNS.
|
2019-11-01 10:20:34 +00:00
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, errors.New("autodns: config is nil")
|
2019-11-01 10:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.Username == "" {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, errors.New("autodns: missing user")
|
2019-11-01 10:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.Password == "" {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, errors.New("autodns: missing password")
|
2019-11-01 10:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{config: config}, nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a TXT record to fulfill the dns-01 challenge.
|
2019-11-01 10:20:34 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
|
|
|
|
records := []*ResourceRecord{{
|
|
|
|
Name: fqdn,
|
|
|
|
TTL: int64(d.config.TTL),
|
|
|
|
Type: "TXT",
|
|
|
|
Value: value,
|
|
|
|
}}
|
|
|
|
|
2022-11-25 17:12:21 +00:00
|
|
|
// TODO(ldez) replace domain by FQDN to follow CNAME.
|
2019-11-01 10:20:34 +00:00
|
|
|
_, err := d.addTxtRecord(domain, records)
|
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("autodns: %w", err)
|
2019-11-01 10:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// CleanUp removes the TXT record previously created.
|
2019-11-01 10:20:34 +00:00
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
|
|
|
|
records := []*ResourceRecord{{
|
|
|
|
Name: fqdn,
|
|
|
|
TTL: int64(d.config.TTL),
|
|
|
|
Type: "TXT",
|
|
|
|
Value: value,
|
|
|
|
}}
|
|
|
|
|
2022-11-25 17:12:21 +00:00
|
|
|
// TODO(ldez) replace domain by FQDN to follow CNAME.
|
2019-11-01 10:20:34 +00:00
|
|
|
if err := d.removeTXTRecord(domain, records); err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("autodns: %w", err)
|
2019-11-01 10:20:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|