2019-01-07 17:30:06 +00:00
|
|
|
// Package vegadns implements a DNS provider for solving the DNS-01 challenge using VegaDNS.
|
2018-07-03 10:44:04 +00:00
|
|
|
package vegadns
|
|
|
|
|
|
|
|
import (
|
2018-09-17 13:16:03 +00:00
|
|
|
"errors"
|
2018-07-03 10:44:04 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
vegaClient "github.com/OpenDNS/vegadns2client"
|
2019-01-07 17:30:06 +00:00
|
|
|
"github.com/xenolf/lego/challenge/dns01"
|
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 {
|
|
|
|
BaseURL string
|
|
|
|
APIKey string
|
|
|
|
APISecret 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("VEGADNS_TTL", 10),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("VEGADNS_PROPAGATION_TIMEOUT", 12*time.Minute),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("VEGADNS_POLLING_INTERVAL", 1*time.Minute),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
// DNSProvider describes a provider for VegaDNS
|
|
|
|
type DNSProvider struct {
|
2018-09-17 13:16:03 +00:00
|
|
|
config *Config
|
2018-07-03 10:44:04 +00:00
|
|
|
client vegaClient.VegaDNSClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for VegaDNS.
|
|
|
|
// Credentials must be passed in the environment variables:
|
|
|
|
// VEGADNS_URL, SECRET_VEGADNS_KEY, SECRET_VEGADNS_SECRET.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
|
|
|
values, err := env.Get("VEGADNS_URL")
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return nil, fmt.Errorf("vegadns: %v", err)
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.BaseURL = values["VEGADNS_URL"]
|
2018-10-10 14:28:04 +00:00
|
|
|
config.APIKey = env.GetOrFile("SECRET_VEGADNS_KEY")
|
|
|
|
config.APISecret = env.GetOrFile("SECRET_VEGADNS_SECRET")
|
2018-07-03 10:44:04 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
return NewDNSProviderConfig(config)
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for VegaDNS.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("vegadns: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
vega := vegaClient.NewVegaDNSClient(config.BaseURL)
|
|
|
|
vega.APIKey = config.APIKey
|
|
|
|
vega.APISecret = config.APISecret
|
|
|
|
|
|
|
|
return &DNSProvider{client: vega, config: config}, nil
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
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
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
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)
|
2018-07-03 10:44:04 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
_, domainID, err := d.client.GetAuthZone(fqdn)
|
2018-07-03 10:44:04 +00:00
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("vegadns: can't find Authoritative Zone for %s in Present: %v", fqdn, err)
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
err = d.client.CreateTXT(domainID, fqdn, value, d.config.TTL)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("vegadns: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the TXT record matching the specified parameters
|
2018-09-17 13:16:03 +00:00
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
2019-01-07 17:30:06 +00:00
|
|
|
fqdn, _ := dns01.GetRecord(domain, keyAuth)
|
2018-07-03 10:44:04 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
_, domainID, err := d.client.GetAuthZone(fqdn)
|
2018-07-03 10:44:04 +00:00
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("vegadns: can't find Authoritative Zone for %s in CleanUp: %v", fqdn, err)
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
txt := strings.TrimSuffix(fqdn, ".")
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
recordID, err := d.client.GetRecordID(domainID, txt, "TXT")
|
2018-07-03 10:44:04 +00:00
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("vegadns: couldn't get Record ID in CleanUp: %s", err)
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
err = d.client.DeleteRecord(recordID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("vegadns: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
2018-07-03 10:44:04 +00:00
|
|
|
}
|