traefik/vendor/github.com/xenolf/lego/providers/dns/cloudxns/cloudxns.go

116 lines
3.4 KiB
Go
Raw Normal View History

// Package cloudxns implements a DNS provider for solving the DNS-01 challenge
2018-09-17 13:16:03 +00:00
// using CloudXNS DNS.
package cloudxns
import (
2018-09-17 13:16:03 +00:00
"errors"
"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"
)
2018-09-17 13:16:03 +00:00
// Config is used to configure the creation of the DNSProvider
type Config struct {
APIKey string
SecretKey string
PropagationTimeout time.Duration
PollingInterval time.Duration
TTL int
HTTPClient *http.Client
}
// NewDefaultConfig returns a default configuration for the DNSProvider
func NewDefaultConfig() *Config {
client := acme.HTTPClient
client.Timeout = time.Second * time.Duration(env.GetOrDefaultInt("CLOUDXNS_HTTP_TIMEOUT", 30))
return &Config{
2018-10-10 14:28:04 +00:00
PropagationTimeout: env.GetOrDefaultSecond("CLOUDXNS_PROPAGATION_TIMEOUT", acme.DefaultPropagationTimeout),
PollingInterval: env.GetOrDefaultSecond("CLOUDXNS_POLLING_INTERVAL", acme.DefaultPollingInterval),
2018-09-17 13:16:03 +00:00
TTL: env.GetOrDefaultInt("CLOUDXNS_TTL", 120),
HTTPClient: &client,
}
}
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
client *Client
}
2018-09-17 13:16:03 +00:00
// NewDNSProvider returns a DNSProvider instance configured for CloudXNS.
// Credentials must be passed in the environment variables:
// CLOUDXNS_API_KEY and CLOUDXNS_SECRET_KEY.
func NewDNSProvider() (*DNSProvider, error) {
2018-07-03 10:44:04 +00:00
values, err := env.Get("CLOUDXNS_API_KEY", "CLOUDXNS_SECRET_KEY")
if err != nil {
return nil, fmt.Errorf("CloudXNS: %v", err)
}
return NewDNSProviderCredentials(values["CLOUDXNS_API_KEY"], values["CLOUDXNS_SECRET_KEY"])
}
// NewDNSProviderCredentials uses the supplied credentials to return a
2018-09-17 13:16:03 +00:00
// DNSProvider instance configured for CloudXNS.
func NewDNSProviderCredentials(apiKey, secretKey string) (*DNSProvider, error) {
2018-09-17 13:16:03 +00:00
config := NewDefaultConfig()
config.APIKey = apiKey
config.SecretKey = secretKey
2018-09-17 13:16:03 +00:00
return NewDNSProviderConfig(config)
}
2018-09-17 13:16:03 +00:00
// NewDNSProviderConfig return a DNSProvider instance configured for CloudXNS.
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("CloudXNS: the configuration of the DNS provider is nil")
}
2018-09-17 13:16:03 +00:00
client, err := NewClient(config.APIKey, config.SecretKey)
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 {
fqdn, value, _ := acme.DNS01Record(domain, keyAuth)
2018-09-17 13:16:03 +00:00
info, err := d.client.GetDomainInformation(fqdn)
if err != nil {
2018-09-17 13:16:03 +00:00
return err
}
2018-09-17 13:16:03 +00:00
return d.client.AddTxtRecord(info, 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 {
fqdn, _, _ := acme.DNS01Record(domain, keyAuth)
2018-09-17 13:16:03 +00:00
info, err := d.client.GetDomainInformation(fqdn)
if err != nil {
return err
}
2018-09-17 13:16:03 +00:00
record, err := d.client.FindTxtRecord(info.ID, fqdn)
if err != nil {
return err
}
2018-09-17 13:16:03 +00:00
return d.client.RemoveTxtRecord(record.RecordID, info.ID)
}
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
}