traefik/vendor/github.com/go-acme/lego/providers/dns/cloudns/cloudns.go

109 lines
3.1 KiB
Go
Raw Normal View History

2019-03-14 10:04:04 +00:00
// Package cloudns implements a DNS provider for solving the DNS-01 challenge using ClouDNS DNS.
package cloudns
import (
2018-09-17 13:16:03 +00:00
"errors"
"fmt"
"net/http"
"time"
2019-03-14 10:04:04 +00:00
"github.com/go-acme/lego/challenge/dns01"
"github.com/go-acme/lego/platform/config/env"
"github.com/go-acme/lego/providers/dns/cloudns/internal"
)
2018-09-17 13:16:03 +00:00
// Config is used to configure the creation of the DNSProvider
type Config struct {
2019-03-14 10:04:04 +00:00
AuthID string
AuthPassword string
2018-09-17 13:16:03 +00:00
PropagationTimeout time.Duration
PollingInterval time.Duration
TTL int
HTTPClient *http.Client
}
// NewDefaultConfig returns a default configuration for the DNSProvider
func NewDefaultConfig() *Config {
return &Config{
2019-03-14 10:04:04 +00:00
PropagationTimeout: env.GetOrDefaultSecond("CLOUDNS_PROPAGATION_TIMEOUT", 120*time.Second),
PollingInterval: env.GetOrDefaultSecond("CLOUDNS_POLLING_INTERVAL", 4*time.Second),
TTL: env.GetOrDefaultInt("CLOUDNS_TTL", dns01.DefaultTTL),
2019-01-07 17:30:06 +00:00
HTTPClient: &http.Client{
2019-03-14 10:04:04 +00:00
Timeout: env.GetOrDefaultSecond("CLOUDNS_HTTP_TIMEOUT", 30*time.Second),
2019-01-07 17:30:06 +00:00
},
2018-09-17 13:16:03 +00:00
}
}
2018-05-31 07:30:04 +00:00
// DNSProvider is an implementation of the acme.ChallengeProvider interface
type DNSProvider struct {
2018-09-17 13:16:03 +00:00
config *Config
2019-01-07 17:30:06 +00:00
client *internal.Client
}
2019-03-14 10:04:04 +00:00
// NewDNSProvider returns a DNSProvider instance configured for ClouDNS.
2018-09-17 13:16:03 +00:00
// Credentials must be passed in the environment variables:
2019-03-14 10:04:04 +00:00
// CLOUDNS_AUTH_ID and CLOUDNS_AUTH_PASSWORD.
func NewDNSProvider() (*DNSProvider, error) {
2019-03-14 10:04:04 +00:00
values, err := env.Get("CLOUDNS_AUTH_ID", "CLOUDNS_AUTH_PASSWORD")
2018-07-03 10:44:04 +00:00
if err != nil {
2019-03-14 10:04:04 +00:00
return nil, fmt.Errorf("ClouDNS: %v", err)
2018-07-03 10:44:04 +00:00
}
2018-09-17 13:16:03 +00:00
config := NewDefaultConfig()
2019-03-14 10:04:04 +00:00
config.AuthID = values["CLOUDNS_AUTH_ID"]
config.AuthPassword = values["CLOUDNS_AUTH_PASSWORD"]
2018-09-17 13:16:03 +00:00
return NewDNSProviderConfig(config)
}
2019-03-14 10:04:04 +00:00
// NewDNSProviderConfig return a DNSProvider instance configured for ClouDNS.
2018-09-17 13:16:03 +00:00
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
2019-03-14 10:04:04 +00:00
return nil, errors.New("ClouDNS: the configuration of the DNS provider is nil")
}
2019-03-14 10:04:04 +00:00
client, err := internal.NewClient(config.AuthID, config.AuthPassword)
if err != nil {
2018-09-17 13:16:03 +00:00
return nil, err
}
2018-09-17 13:16:03 +00:00
client.HTTPClient = config.HTTPClient
2018-10-11 14:50:04 +00:00
return &DNSProvider{client: client, config: config}, nil
}
2018-10-10 14:28:04 +00:00
// Present creates a TXT record to fulfill the dns-01 challenge.
2018-09-17 13:16:03 +00:00
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
2019-01-07 17:30:06 +00:00
fqdn, value := dns01.GetRecord(domain, keyAuth)
2019-03-14 10:04:04 +00:00
zone, err := d.client.GetZone(fqdn)
if err != nil {
2018-09-17 13:16:03 +00:00
return err
}
2019-03-14 10:04:04 +00:00
return d.client.AddTxtRecord(zone.Name, fqdn, value, d.config.TTL)
}
2018-09-17 13:16:03 +00:00
// CleanUp removes the TXT record matching the specified parameters.
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
2019-01-07 17:30:06 +00:00
fqdn, _ := dns01.GetRecord(domain, keyAuth)
2019-03-14 10:04:04 +00:00
zone, err := d.client.GetZone(fqdn)
if err != nil {
return err
}
2019-03-14 10:04:04 +00:00
record, err := d.client.FindTxtRecord(zone.Name, fqdn)
if err != nil {
return err
}
2019-03-14 10:04:04 +00:00
return d.client.RemoveTxtRecord(record.ID, zone.Name)
}
2018-09-17 13:16:03 +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
}