forked from TrueCloudLab/lego
206 lines
5.2 KiB
Go
206 lines
5.2 KiB
Go
|
// Package bunny implements a DNS provider for solving the DNS-01 challenge using Bunny DNS.
|
||
|
package bunny
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/go-acme/lego/v4/challenge/dns01"
|
||
|
"github.com/go-acme/lego/v4/platform/config/env"
|
||
|
"github.com/simplesurance/bunny-go"
|
||
|
)
|
||
|
|
||
|
const minTTL = 60
|
||
|
|
||
|
// Environment variables names.
|
||
|
const (
|
||
|
envNamespace = "BUNNY_"
|
||
|
|
||
|
EnvAPIKey = envNamespace + "API_KEY"
|
||
|
|
||
|
EnvTTL = envNamespace + "TTL"
|
||
|
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
|
||
|
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
|
||
|
)
|
||
|
|
||
|
// Config is used to configure the creation of the DNSProvider.
|
||
|
type Config struct {
|
||
|
APIKey string
|
||
|
PropagationTimeout time.Duration
|
||
|
PollingInterval time.Duration
|
||
|
TTL int
|
||
|
}
|
||
|
|
||
|
// 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),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// DNSProvider implements the challenge.Provider interface.
|
||
|
type DNSProvider struct {
|
||
|
config *Config
|
||
|
client *bunny.Client
|
||
|
}
|
||
|
|
||
|
// NewDNSProvider returns a DNSProvider instance configured for bunny.
|
||
|
// Credentials must be passed in the environment variable: BUNNY_API_KEY.
|
||
|
func NewDNSProvider() (*DNSProvider, error) {
|
||
|
values, err := env.Get(EnvAPIKey)
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("bunny: %w", err)
|
||
|
}
|
||
|
|
||
|
config := NewDefaultConfig()
|
||
|
config.APIKey = values[EnvAPIKey]
|
||
|
|
||
|
return NewDNSProviderConfig(config)
|
||
|
}
|
||
|
|
||
|
// NewDNSProviderConfig return a DNSProvider instance configured for bunny.
|
||
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
||
|
if config == nil {
|
||
|
return nil, errors.New("bunny: the configuration of the DNS provider is nil")
|
||
|
}
|
||
|
|
||
|
if config.APIKey == "" {
|
||
|
return nil, errors.New("bunny: credentials missing")
|
||
|
}
|
||
|
|
||
|
if config.TTL < minTTL {
|
||
|
return nil, fmt.Errorf("bunny: invalid TTL, TTL (%d) must be greater than %d", config.TTL, minTTL)
|
||
|
}
|
||
|
|
||
|
client := bunny.NewClient(config.APIKey)
|
||
|
|
||
|
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 to fulfill the dns-01 challenge.
|
||
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
||
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
||
|
|
||
|
authZone, err := getZone(fqdn)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("bunny: failed to find zone: fqdn=%s: %w", fqdn, err)
|
||
|
}
|
||
|
|
||
|
ctx := context.Background()
|
||
|
|
||
|
zone, err := d.findZone(ctx, authZone)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("bunny: %w", err)
|
||
|
}
|
||
|
|
||
|
subDomain, err := dns01.ExtractSubDomain(fqdn, authZone)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("bunny: %w", err)
|
||
|
}
|
||
|
|
||
|
record := &bunny.AddOrUpdateDNSRecordOptions{
|
||
|
Type: pointer(bunny.DNSRecordTypeTXT),
|
||
|
Name: pointer(subDomain),
|
||
|
Value: pointer(value),
|
||
|
TTL: pointer(int32(d.config.TTL)),
|
||
|
}
|
||
|
|
||
|
if _, err := d.client.DNSZone.AddDNSRecord(ctx, deref(zone.ID), record); err != nil {
|
||
|
return fmt.Errorf("bunny: failed to add TXT record: fqdn=%s, zoneID=%d: %w", fqdn, deref(zone.ID), err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// CleanUp removes the TXT record matching the specified parameters.
|
||
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
||
|
fqdn, _ := dns01.GetRecord(domain, keyAuth)
|
||
|
|
||
|
authZone, err := getZone(fqdn)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("bunny: failed to find zone: fqdn=%s: %w", fqdn, err)
|
||
|
}
|
||
|
|
||
|
ctx := context.Background()
|
||
|
|
||
|
zone, err := d.findZone(ctx, authZone)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("bunny: %w", err)
|
||
|
}
|
||
|
|
||
|
subDomain, err := dns01.ExtractSubDomain(fqdn, authZone)
|
||
|
if err != nil {
|
||
|
return fmt.Errorf("bunny: %w", err)
|
||
|
}
|
||
|
|
||
|
var record *bunny.DNSRecord
|
||
|
for _, r := range zone.Records {
|
||
|
if deref(r.Name) == subDomain && deref(r.Type) == bunny.DNSRecordTypeTXT {
|
||
|
r := r
|
||
|
record = &r
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if record == nil {
|
||
|
return fmt.Errorf("bunny: could not find TXT record zone=%d, subdomain=%s", deref(zone.ID), subDomain)
|
||
|
}
|
||
|
|
||
|
if err := d.client.DNSZone.DeleteDNSRecord(ctx, deref(zone.ID), deref(record.ID)); err != nil {
|
||
|
return fmt.Errorf("bunny: failed to delete TXT record: id=%d, name=%s: %w", deref(record.ID), deref(record.Name), err)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (d *DNSProvider) findZone(ctx context.Context, authZone string) (*bunny.DNSZone, error) {
|
||
|
zones, err := d.client.DNSZone.List(ctx, nil)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
var zone *bunny.DNSZone
|
||
|
for _, item := range zones.Items {
|
||
|
if item != nil && deref(item.Domain) == authZone {
|
||
|
zone = item
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if zone == nil {
|
||
|
return nil, fmt.Errorf("could not find DNSZone zone=%s", authZone)
|
||
|
}
|
||
|
|
||
|
return zone, nil
|
||
|
}
|
||
|
|
||
|
func getZone(fqdn string) (string, error) {
|
||
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
return dns01.UnFqdn(authZone), nil
|
||
|
}
|
||
|
|
||
|
func pointer[T string | int | int32 | int64](v T) *T { return &v }
|
||
|
|
||
|
func deref[T string | int | int32 | int64](v *T) T {
|
||
|
if v == nil {
|
||
|
var zero T
|
||
|
return zero
|
||
|
}
|
||
|
|
||
|
return *v
|
||
|
}
|