2017-02-07 21:33:23 +00:00
|
|
|
// Package cloudflare implements a DNS provider for solving the DNS-01
|
|
|
|
// challenge using cloudflare DNS.
|
|
|
|
package cloudflare
|
|
|
|
|
|
|
|
import (
|
2018-07-03 10:44:04 +00:00
|
|
|
"errors"
|
2017-02-07 21:33:23 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2018-05-31 07:30:04 +00:00
|
|
|
"github.com/xenolf/lego/acme"
|
2018-07-03 10:44:04 +00:00
|
|
|
"github.com/xenolf/lego/platform/config/env"
|
2017-02-07 21:33:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// CloudFlareAPIURL represents the API endpoint to call.
|
2018-09-17 13:16:03 +00:00
|
|
|
const CloudFlareAPIURL = defaultBaseURL // Deprecated
|
|
|
|
|
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
AuthEmail string
|
|
|
|
AuthKey string
|
|
|
|
TTL int
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
HTTPClient *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
|
|
|
TTL: env.GetOrDefaultInt("CLOUDFLARE_TTL", 120),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("CLOUDFLARE_PROPAGATION_TIMEOUT", 2*time.Minute),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("CLOUDFLARE_POLLING_INTERVAL", 2*time.Second),
|
|
|
|
HTTPClient: &http.Client{
|
|
|
|
Timeout: env.GetOrDefaultSecond("CLOUDFLARE_HTTP_TIMEOUT", 30*time.Second),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-05-31 07:30:04 +00:00
|
|
|
// DNSProvider is an implementation of the acme.ChallengeProvider interface
|
2017-02-07 21:33:23 +00:00
|
|
|
type DNSProvider struct {
|
2018-09-17 13:16:03 +00:00
|
|
|
client *Client
|
|
|
|
config *Config
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for Cloudflare.
|
|
|
|
// Credentials must be passed in the environment variables:
|
|
|
|
// CLOUDFLARE_EMAIL and CLOUDFLARE_API_KEY.
|
2017-02-07 21:33:23 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-07-03 10:44:04 +00:00
|
|
|
values, err := env.Get("CLOUDFLARE_EMAIL", "CLOUDFLARE_API_KEY")
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return nil, fmt.Errorf("cloudflare: %v", err)
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.AuthEmail = values["CLOUDFLARE_EMAIL"]
|
|
|
|
config.AuthKey = values["CLOUDFLARE_API_KEY"]
|
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// NewDNSProviderCredentials uses the supplied credentials
|
|
|
|
// to return a DNSProvider instance configured for Cloudflare.
|
|
|
|
// Deprecated
|
2017-02-07 21:33:23 +00:00
|
|
|
func NewDNSProviderCredentials(email, key string) (*DNSProvider, error) {
|
2018-09-17 13:16:03 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.AuthEmail = email
|
|
|
|
config.AuthKey = key
|
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for Cloudflare.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("cloudflare: the configuration of the DNS provider is nil")
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
client, err := NewClient(config.AuthEmail, config.AuthKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
client.HTTPClient = config.HTTPClient
|
|
|
|
|
|
|
|
// TODO: must be remove. keep only for compatibility reason.
|
|
|
|
client.BaseURL = CloudFlareAPIURL
|
|
|
|
|
2017-02-07 21:33:23 +00:00
|
|
|
return &DNSProvider{
|
2018-09-17 13:16:03 +00:00
|
|
|
client: client,
|
|
|
|
config: config,
|
2017-02-07 21:33:23 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Timeout returns the timeout and interval to use when checking for DNS
|
|
|
|
// propagation. Adjusting here to cope with spikes in propagation times.
|
2018-07-03 10:44:04 +00:00
|
|
|
func (d *DNSProvider) Timeout() (timeout, interval time.Duration) {
|
2018-09-17 13:16:03 +00:00
|
|
|
return d.config.PropagationTimeout, d.config.PollingInterval
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a TXT record to fulfil the dns-01 challenge
|
2018-07-03 10:44:04 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
2018-09-17 13:16:03 +00:00
|
|
|
fqdn, value, _ := acme.DNS01Record(domain, keyAuth)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
rec := TxtRecord{
|
2017-02-07 21:33:23 +00:00
|
|
|
Type: "TXT",
|
2018-05-31 07:30:04 +00:00
|
|
|
Name: acme.UnFqdn(fqdn),
|
2017-02-07 21:33:23 +00:00
|
|
|
Content: value,
|
2018-09-17 13:16:03 +00:00
|
|
|
TTL: d.config.TTL,
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
return d.client.AddTxtRecord(fqdn, rec)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the TXT record matching the specified parameters
|
2018-07-03 10:44:04 +00:00
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
2018-05-31 07:30:04 +00:00
|
|
|
fqdn, _, _ := acme.DNS01Record(domain, keyAuth)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
return d.client.RemoveTxtRecord(fqdn)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|