lego/providers/dns/vultr/vultr.go

195 lines
5.2 KiB
Go
Raw Normal View History

2019-07-17 19:01:50 +00:00
// Package vultr implements a DNS provider for solving the DNS-01 challenge using the Vultr DNS.
2016-03-20 23:23:37 +00:00
// See https://www.vultr.com/api/#dns
2019-03-11 16:56:48 +00:00
package vultr
2016-03-20 23:23:37 +00:00
import (
2019-07-17 19:01:50 +00:00
"context"
"crypto/tls"
"errors"
2016-03-20 23:23:37 +00:00
"fmt"
"net/http"
2019-07-17 19:01:50 +00:00
"strconv"
2016-03-20 23:23:37 +00:00
"strings"
"time"
2016-03-20 23:23:37 +00:00
"github.com/go-acme/lego/v3/challenge/dns01"
"github.com/go-acme/lego/v3/platform/config/env"
2019-07-17 19:01:50 +00:00
"github.com/vultr/govultr"
2016-03-20 23:23:37 +00:00
)
// Environment variables names.
const (
envNamespace = "VULTR_"
EnvAPIKey = envNamespace + "API_KEY"
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
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, dns01.DefaultTTL),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, dns01.DefaultPropagationTimeout),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, dns01.DefaultPollingInterval),
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30),
// from Vultr Client
Transport: &http.Transport{
TLSNextProto: make(map[string]func(string, *tls.Conn) http.RoundTripper),
},
},
}
}
2020-05-08 17:35:25 +00:00
// DNSProvider implements the challenge.Provider interface.
2016-03-20 23:23:37 +00:00
type DNSProvider struct {
config *Config
2019-07-17 19:01:50 +00:00
client *govultr.Client
2016-03-20 23:23:37 +00:00
}
// NewDNSProvider returns a DNSProvider instance with a configured Vultr client.
// Authentication uses the VULTR_API_KEY environment variable.
func NewDNSProvider() (*DNSProvider, error) {
values, err := env.Get(EnvAPIKey)
if err != nil {
2020-02-27 18:14:46 +00:00
return nil, fmt.Errorf("vultr: %w", err)
}
config := NewDefaultConfig()
config.APIKey = values[EnvAPIKey]
return NewDNSProviderConfig(config)
2016-03-20 23:23:37 +00:00
}
// NewDNSProviderConfig return a DNSProvider instance configured for Vultr.
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("vultr: the configuration of the DNS provider is nil")
2016-03-20 23:23:37 +00:00
}
if config.APIKey == "" {
2020-02-27 18:14:46 +00:00
return nil, errors.New("vultr: credentials missing")
}
2019-07-17 19:01:50 +00:00
client := govultr.NewClient(config.HTTPClient, config.APIKey)
return &DNSProvider{client: client, config: config}, nil
2016-03-20 23:23:37 +00:00
}
// Present creates a TXT record to fulfill the DNS-01 challenge.
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
2019-07-22 21:29:32 +00:00
ctx := context.Background()
fqdn, value := dns01.GetRecord(domain, keyAuth)
2016-03-20 23:23:37 +00:00
2019-07-22 21:29:32 +00:00
zoneDomain, err := d.getHostedZone(ctx, domain)
2016-03-20 23:23:37 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("vultr: %w", err)
2016-03-20 23:23:37 +00:00
}
name := d.extractRecordName(fqdn, zoneDomain)
2016-03-20 23:23:37 +00:00
2019-07-30 18:39:25 +00:00
err = d.client.DNSRecord.Create(ctx, zoneDomain, "TXT", name, `"`+value+`"`, d.config.TTL, 0)
2016-03-20 23:23:37 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("vultr: API call failed: %w", err)
2016-03-20 23:23:37 +00:00
}
return nil
}
// CleanUp removes the TXT record matching the specified parameters.
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
2019-07-22 21:29:32 +00:00
ctx := context.Background()
fqdn, _ := dns01.GetRecord(domain, keyAuth)
2016-03-20 23:23:37 +00:00
2019-07-22 21:29:32 +00:00
zoneDomain, records, err := d.findTxtRecords(ctx, domain, fqdn)
2016-03-20 23:23:37 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return fmt.Errorf("vultr: %w", err)
2016-03-20 23:23:37 +00:00
}
var allErr []string
2016-03-20 23:23:37 +00:00
for _, rec := range records {
2019-07-22 21:29:32 +00:00
err := d.client.DNSRecord.Delete(ctx, zoneDomain, strconv.Itoa(rec.RecordID))
2016-03-20 23:23:37 +00:00
if err != nil {
allErr = append(allErr, err.Error())
2016-03-20 23:23:37 +00:00
}
}
if len(allErr) > 0 {
return errors.New(strings.Join(allErr, ": "))
}
2016-03-20 23:23:37 +00:00
return 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
}
2019-07-22 21:29:32 +00:00
func (d *DNSProvider) getHostedZone(ctx context.Context, domain string) (string, error) {
domains, err := d.client.DNSDomain.List(ctx)
2016-03-20 23:23:37 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return "", fmt.Errorf("API call failed: %w", err)
2016-03-20 23:23:37 +00:00
}
2019-07-17 19:01:50 +00:00
var hostedDomain govultr.DNSDomain
for _, dom := range domains {
if strings.HasSuffix(domain, dom.Domain) {
if len(dom.Domain) > len(hostedDomain.Domain) {
hostedDomain = dom
2016-03-20 23:23:37 +00:00
}
}
}
if hostedDomain.Domain == "" {
return "", fmt.Errorf("no matching Vultr domain found for domain %s", domain)
2016-03-20 23:23:37 +00:00
}
return hostedDomain.Domain, nil
}
2019-07-22 21:29:32 +00:00
func (d *DNSProvider) findTxtRecords(ctx context.Context, domain, fqdn string) (string, []govultr.DNSRecord, error) {
zoneDomain, err := d.getHostedZone(ctx, domain)
2016-03-20 23:23:37 +00:00
if err != nil {
return "", nil, err
}
2019-07-17 19:01:50 +00:00
var records []govultr.DNSRecord
2019-07-22 21:29:32 +00:00
result, err := d.client.DNSRecord.List(ctx, zoneDomain)
2016-03-20 23:23:37 +00:00
if err != nil {
2020-02-27 18:14:46 +00:00
return "", records, fmt.Errorf("API call has failed: %w", err)
2016-03-20 23:23:37 +00:00
}
recordName := d.extractRecordName(fqdn, zoneDomain)
2016-03-20 23:23:37 +00:00
for _, record := range result {
if record.Type == "TXT" && record.Name == recordName {
records = append(records, record)
}
}
return zoneDomain, records, nil
}
func (d *DNSProvider) extractRecordName(fqdn, domain string) string {
name := dns01.UnFqdn(fqdn)
2016-03-20 23:23:37 +00:00
if idx := strings.Index(name, "."+domain); idx != -1 {
return name[:idx]
}
return name
}