2018-10-18 20:32:00 +00:00
|
|
|
// Package auroradns implements a DNS provider for solving the DNS-01 challenge using Aurora DNS.
|
2016-10-12 00:42:20 +00:00
|
|
|
package auroradns
|
|
|
|
|
|
|
|
import (
|
2018-09-15 17:07:24 +00:00
|
|
|
"errors"
|
2016-10-12 00:42:20 +00:00
|
|
|
"fmt"
|
2018-05-30 17:53:04 +00:00
|
|
|
"sync"
|
2018-09-15 17:07:24 +00:00
|
|
|
"time"
|
2018-05-30 17:53:04 +00:00
|
|
|
|
2019-01-11 18:23:27 +00:00
|
|
|
auroradns "github.com/ldez/go-auroradns"
|
2018-12-06 21:50:17 +00:00
|
|
|
"github.com/xenolf/lego/challenge/dns01"
|
2018-06-11 15:32:50 +00:00
|
|
|
"github.com/xenolf/lego/platform/config/env"
|
2016-10-12 00:42:20 +00:00
|
|
|
)
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
const defaultBaseURL = "https://api.auroradns.eu"
|
|
|
|
|
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
BaseURL string
|
|
|
|
UserID string
|
|
|
|
Key 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("AURORA_TTL", 300),
|
2018-12-06 21:50:17 +00:00
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("AURORA_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("AURORA_POLLING_INTERVAL", dns01.DefaultPollingInterval),
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-12 00:42:20 +00:00
|
|
|
// DNSProvider describes a provider for AuroraDNS
|
|
|
|
type DNSProvider struct {
|
|
|
|
recordIDs map[string]string
|
|
|
|
recordIDsMu sync.Mutex
|
2018-09-15 17:07:24 +00:00
|
|
|
config *Config
|
2018-10-22 18:42:22 +00:00
|
|
|
client *auroradns.Client
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for AuroraDNS.
|
2018-09-15 17:07:24 +00:00
|
|
|
// Credentials must be passed in the environment variables:
|
|
|
|
// AURORA_USER_ID and AURORA_KEY.
|
2016-10-12 00:42:20 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-06-11 15:32:50 +00:00
|
|
|
values, err := env.Get("AURORA_USER_ID", "AURORA_KEY")
|
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return nil, fmt.Errorf("aurora: %v", err)
|
2018-06-11 15:32:50 +00:00
|
|
|
}
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
config := NewDefaultConfig()
|
2018-10-06 13:33:15 +00:00
|
|
|
config.BaseURL = env.GetOrFile("AURORA_ENDPOINT")
|
2018-09-15 17:07:24 +00:00
|
|
|
config.UserID = values["AURORA_USER_ID"]
|
|
|
|
config.Key = values["AURORA_KEY"]
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
return NewDNSProviderConfig(config)
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for AuroraDNS.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("aurora: the configuration of the DNS provider is nil")
|
2018-06-11 15:32:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
if config.UserID == "" || config.Key == "" {
|
|
|
|
return nil, errors.New("aurora: some credentials information are missing")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.BaseURL == "" {
|
|
|
|
config.BaseURL = defaultBaseURL
|
|
|
|
}
|
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
tr, err := auroradns.NewTokenTransport(config.UserID, config.Key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("aurora: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := auroradns.NewClient(tr.Client(), auroradns.WithBaseURL(config.BaseURL))
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return nil, fmt.Errorf("aurora: %v", err)
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{
|
2018-09-15 17:07:24 +00:00
|
|
|
config: config,
|
2016-10-12 00:42:20 +00:00
|
|
|
client: client,
|
|
|
|
recordIDs: make(map[string]string),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a record with a secret
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
2018-12-06 21:50:17 +00:00
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(dns01.ToFqdn(domain))
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("aurora: could not determine zone for domain: '%s'. %s", domain, err)
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 1. Aurora will happily create the TXT record when it is provided a fqdn,
|
|
|
|
// but it will only appear in the control panel and will not be
|
|
|
|
// propagated to DNS servers. Extract and use subdomain instead.
|
|
|
|
// 2. A trailing dot in the fqdn will cause Aurora to add a trailing dot to
|
|
|
|
// the subdomain, resulting in _acme-challenge..<domain> rather
|
|
|
|
// than _acme-challenge.<domain>
|
|
|
|
|
|
|
|
subdomain := fqdn[0 : len(fqdn)-len(authZone)-1]
|
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone = dns01.UnFqdn(authZone)
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
zone, err := d.getZoneInformationByName(authZone)
|
2018-05-30 17:53:04 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("aurora: could not create record: %v", err)
|
2018-05-30 17:53:04 +00:00
|
|
|
}
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
record := auroradns.Record{
|
|
|
|
RecordType: "TXT",
|
|
|
|
Name: subdomain,
|
|
|
|
Content: value,
|
|
|
|
TTL: d.config.TTL,
|
|
|
|
}
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
newRecord, _, err := d.client.CreateRecord(zone.ID, record)
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("aurora: could not create record: %v", err)
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
d.recordIDsMu.Lock()
|
2018-10-22 18:42:22 +00:00
|
|
|
d.recordIDs[fqdn] = newRecord.ID
|
2018-06-21 17:06:16 +00:00
|
|
|
d.recordIDsMu.Unlock()
|
2016-10-12 00:42:20 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes a given record that was generated by Present
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
2018-12-06 21:50:17 +00:00
|
|
|
fqdn, _ := dns01.GetRecord(domain, keyAuth)
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
d.recordIDsMu.Lock()
|
|
|
|
recordID, ok := d.recordIDs[fqdn]
|
|
|
|
d.recordIDsMu.Unlock()
|
2016-10-12 00:42:20 +00:00
|
|
|
|
|
|
|
if !ok {
|
2018-05-30 17:53:04 +00:00
|
|
|
return fmt.Errorf("unknown recordID for %q", fqdn)
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(dns01.ToFqdn(domain))
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
2018-05-30 17:53:04 +00:00
|
|
|
return fmt.Errorf("could not determine zone for domain: %q. %v", domain, err)
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 21:50:17 +00:00
|
|
|
authZone = dns01.UnFqdn(authZone)
|
2016-10-12 00:42:20 +00:00
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
zone, err := d.getZoneInformationByName(authZone)
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
_, _, err = d.client.DeleteRecord(zone.ID, recordID)
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
d.recordIDsMu.Lock()
|
|
|
|
delete(d.recordIDs, fqdn)
|
|
|
|
d.recordIDsMu.Unlock()
|
2016-10-12 00:42:20 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-09-15 17:07:24 +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-10-22 18:42:22 +00:00
|
|
|
func (d *DNSProvider) getZoneInformationByName(name string) (auroradns.Zone, error) {
|
|
|
|
zs, _, err := d.client.ListZones()
|
2018-09-15 17:07:24 +00:00
|
|
|
if err != nil {
|
2018-10-22 18:42:22 +00:00
|
|
|
return auroradns.Zone{}, err
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, element := range zs {
|
|
|
|
if element.Name == name {
|
|
|
|
return element, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-22 18:42:22 +00:00
|
|
|
return auroradns.Zone{}, fmt.Errorf("could not find Zone record")
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|