2019-01-20 11:27:35 +00:00
|
|
|
// Package zoneee implements a DNS provider for solving the DNS-01 challenge through zone.ee.
|
2019-03-11 16:56:48 +00:00
|
|
|
package zoneee
|
2019-01-20 11:27:35 +00:00
|
|
|
|
|
|
|
import (
|
2023-05-05 07:49:38 +00:00
|
|
|
"context"
|
2019-01-20 11:27:35 +00:00
|
|
|
"errors"
|
|
|
|
"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"
|
2023-05-05 07:49:38 +00:00
|
|
|
"github.com/go-acme/lego/v4/providers/dns/zoneee/internal"
|
2019-01-20 11:27:35 +00:00
|
|
|
)
|
|
|
|
|
2020-03-11 22:51:10 +00:00
|
|
|
// Environment variables names.
|
|
|
|
const (
|
|
|
|
envNamespace = "ZONEEE_"
|
|
|
|
|
|
|
|
EnvEndpoint = envNamespace + "ENDPOINT"
|
|
|
|
EnvAPIUser = envNamespace + "API_USER"
|
|
|
|
EnvAPIKey = envNamespace + "API_KEY"
|
|
|
|
|
|
|
|
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.
|
2019-01-20 11:27:35 +00:00
|
|
|
type Config struct {
|
|
|
|
Endpoint *url.URL
|
|
|
|
Username string
|
|
|
|
APIKey string
|
|
|
|
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-01-20 11:27:35 +00:00
|
|
|
func NewDefaultConfig() *Config {
|
2023-05-05 07:49:38 +00:00
|
|
|
endpoint, _ := url.Parse(internal.DefaultEndpoint)
|
2019-01-20 11:27:35 +00:00
|
|
|
|
|
|
|
return &Config{
|
|
|
|
Endpoint: endpoint,
|
|
|
|
// zone.ee can take up to 5min to propagate according to the support
|
2020-03-11 22:51:10 +00:00
|
|
|
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 5*time.Minute),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 5*time.Second),
|
2019-01-20 11:27:35 +00:00
|
|
|
HTTPClient: &http.Client{
|
2020-03-11 22:51:10 +00:00
|
|
|
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
|
2019-01-20 11:27:35 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// DNSProvider implements the challenge.Provider interface.
|
2019-01-20 11:27:35 +00:00
|
|
|
type DNSProvider struct {
|
|
|
|
config *Config
|
2023-05-05 07:49:38 +00:00
|
|
|
client *internal.Client
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2020-03-11 22:51:10 +00:00
|
|
|
values, err := env.Get(EnvAPIUser, EnvAPIKey)
|
2019-01-20 11:27:35 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, fmt.Errorf("zoneee: %w", err)
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
rawEndpoint := env.GetOrDefaultString(EnvEndpoint, internal.DefaultEndpoint)
|
2019-01-20 11:27:35 +00:00
|
|
|
endpoint, err := url.Parse(rawEndpoint)
|
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, fmt.Errorf("zoneee: %w", err)
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
config := NewDefaultConfig()
|
2020-03-11 22:51:10 +00:00
|
|
|
config.Username = values[EnvAPIUser]
|
|
|
|
config.APIKey = values[EnvAPIKey]
|
2019-01-20 11:27:35 +00:00
|
|
|
config.Endpoint = endpoint
|
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for Zone.ee.
|
2019-01-20 11:27:35 +00:00
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("zoneee: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Username == "" {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, errors.New("zoneee: credentials missing: username")
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.APIKey == "" {
|
2020-02-27 18:14:46 +00:00
|
|
|
return nil, errors.New("zoneee: credentials missing: API key")
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.Endpoint == nil {
|
|
|
|
return nil, errors.New("zoneee: the endpoint is missing")
|
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
client := internal.NewClient(config.Username, config.APIKey)
|
|
|
|
|
|
|
|
if config.HTTPClient != nil {
|
|
|
|
client.HTTPClient = config.HTTPClient
|
|
|
|
}
|
|
|
|
if config.Endpoint != nil {
|
|
|
|
client.BaseURL = config.Endpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{config: config, client: client}, nil
|
2019-01-20 11:27:35 +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.
|
2019-01-20 11:27:35 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
2023-03-07 08:39:05 +00:00
|
|
|
info := dns01.GetChallengeInfo(domain, keyAuth)
|
2019-01-20 11:27:35 +00:00
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
record := internal.TXTRecord{
|
2023-03-07 08:39:05 +00:00
|
|
|
Name: dns01.UnFqdn(info.EffectiveFQDN),
|
|
|
|
Destination: info.Value,
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(info.EffectiveFQDN)
|
2020-02-08 10:38:57 +00:00
|
|
|
if err != nil {
|
2023-05-05 07:49:38 +00:00
|
|
|
return fmt.Errorf("zoneee: could not find zone for domain %q (%s): %w", domain, info.EffectiveFQDN, err)
|
2020-02-08 10:38:57 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
authZone = dns01.UnFqdn(authZone)
|
|
|
|
|
|
|
|
_, err = d.client.AddTxtRecord(context.Background(), authZone, record)
|
2019-01-20 11:27:35 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("zoneee: %w", err)
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-05-08 17:35:25 +00:00
|
|
|
// CleanUp removes the TXT record previously created.
|
2019-01-20 11:27:35 +00:00
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
2023-03-07 08:39:05 +00:00
|
|
|
info := dns01.GetChallengeInfo(domain, keyAuth)
|
2019-01-20 11:27:35 +00:00
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(info.EffectiveFQDN)
|
2020-02-08 10:38:57 +00:00
|
|
|
if err != nil {
|
2023-05-05 07:49:38 +00:00
|
|
|
return fmt.Errorf("zoneee: could not find zone for domain %q (%s): %w", domain, info.EffectiveFQDN, err)
|
2020-02-08 10:38:57 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
authZone = dns01.UnFqdn(authZone)
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
records, err := d.client.GetTxtRecords(ctx, authZone)
|
2019-01-20 11:27:35 +00:00
|
|
|
if err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("zoneee: %w", err)
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var id string
|
|
|
|
for _, record := range records {
|
2023-03-07 08:39:05 +00:00
|
|
|
if record.Destination == info.Value {
|
2019-01-20 11:27:35 +00:00
|
|
|
id = record.ID
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if id == "" {
|
2023-03-07 08:39:05 +00:00
|
|
|
return fmt.Errorf("zoneee: txt record does not exist for %s", info.Value)
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 07:49:38 +00:00
|
|
|
if err = d.client.RemoveTxtRecord(ctx, authZone, id); err != nil {
|
2020-02-27 18:14:46 +00:00
|
|
|
return fmt.Errorf("zoneee: %w", err)
|
2019-01-20 11:27:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|