2018-12-06 21:50:17 +00:00
|
|
|
// Package fastdns implements a DNS provider for solving the DNS-01 challenge using FastDNS.
|
2018-04-03 14:22:13 +00:00
|
|
|
package fastdns
|
|
|
|
|
|
|
|
import (
|
2018-09-15 17:07:24 +00:00
|
|
|
"errors"
|
2018-04-03 14:22:13 +00:00
|
|
|
"fmt"
|
|
|
|
"reflect"
|
2018-09-15 17:07:24 +00:00
|
|
|
"time"
|
2018-04-03 14:22:13 +00:00
|
|
|
|
|
|
|
configdns "github.com/akamai/AkamaiOPEN-edgegrid-golang/configdns-v1"
|
|
|
|
"github.com/akamai/AkamaiOPEN-edgegrid-golang/edgegrid"
|
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"
|
2018-04-03 14:22:13 +00:00
|
|
|
)
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
edgegrid.Config
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
TTL int
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
2018-12-06 21:50:17 +00:00
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("AKAMAI_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("AKAMAI_POLLING_INTERVAL", dns01.DefaultPollingInterval),
|
|
|
|
TTL: env.GetOrDefaultInt("AKAMAI_TTL", dns01.DefaultTTL),
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 14:22:13 +00:00
|
|
|
// DNSProvider is an implementation of the acme.ChallengeProvider interface.
|
|
|
|
type DNSProvider struct {
|
2018-09-15 17:07:24 +00:00
|
|
|
config *Config
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider uses the supplied environment variables to return a DNSProvider instance:
|
|
|
|
// AKAMAI_HOST, AKAMAI_CLIENT_TOKEN, AKAMAI_CLIENT_SECRET, AKAMAI_ACCESS_TOKEN
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-06-11 15:32:50 +00:00
|
|
|
values, err := env.Get("AKAMAI_HOST", "AKAMAI_CLIENT_TOKEN", "AKAMAI_CLIENT_SECRET", "AKAMAI_ACCESS_TOKEN")
|
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return nil, fmt.Errorf("fastdns: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.Config = edgegrid.Config{
|
|
|
|
Host: values["AKAMAI_HOST"],
|
|
|
|
ClientToken: values["AKAMAI_CLIENT_TOKEN"],
|
|
|
|
ClientSecret: values["AKAMAI_CLIENT_SECRET"],
|
|
|
|
AccessToken: values["AKAMAI_ACCESS_TOKEN"],
|
|
|
|
MaxBody: 131072,
|
2018-06-11 15:32:50 +00:00
|
|
|
}
|
2018-04-03 14:22:13 +00:00
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
return NewDNSProviderConfig(config)
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for FastDNS.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("fastdns: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.ClientToken == "" || config.ClientSecret == "" || config.AccessToken == "" || config.Host == "" {
|
2018-10-12 17:29:18 +00:00
|
|
|
return nil, fmt.Errorf("fastdns: credentials are missing")
|
2018-09-15 17:07:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{config: config}, nil
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a TXT record to fullfil the dns-01 challenge.
|
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)
|
2018-06-21 17:06:16 +00:00
|
|
|
zoneName, recordName, err := d.findZoneAndRecordName(fqdn, domain)
|
2018-04-03 14:22:13 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("fastdns: %v", err)
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
configdns.Init(d.config.Config)
|
2018-04-03 14:22:13 +00:00
|
|
|
|
|
|
|
zone, err := configdns.GetZone(zoneName)
|
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("fastdns: %v", err)
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
record := configdns.NewTxtRecord()
|
2018-09-24 19:07:20 +00:00
|
|
|
_ = record.SetField("name", recordName)
|
|
|
|
_ = record.SetField("ttl", d.config.TTL)
|
|
|
|
_ = record.SetField("target", value)
|
|
|
|
_ = record.SetField("active", true)
|
2018-04-03 14:22:13 +00:00
|
|
|
|
2019-02-04 21:12:03 +00:00
|
|
|
for _, r := range zone.Zone.Txt {
|
|
|
|
if r != nil && reflect.DeepEqual(r.ToMap(), record.ToMap()) {
|
2018-04-03 14:22:13 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
return d.createRecord(zone, record)
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the record matching the specified parameters.
|
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)
|
2018-06-21 17:06:16 +00:00
|
|
|
zoneName, recordName, err := d.findZoneAndRecordName(fqdn, domain)
|
2018-04-03 14:22:13 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("fastdns: %v", err)
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
configdns.Init(d.config.Config)
|
2018-04-03 14:22:13 +00:00
|
|
|
|
|
|
|
zone, err := configdns.GetZone(zoneName)
|
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("fastdns: %v", err)
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 21:12:03 +00:00
|
|
|
var removed bool
|
|
|
|
for _, r := range zone.Zone.Txt {
|
|
|
|
if r != nil && r.Name == recordName {
|
|
|
|
if zone.RemoveRecord(r) != nil {
|
|
|
|
return fmt.Errorf("fastdns: %v", err)
|
|
|
|
}
|
|
|
|
removed = true
|
2018-04-03 14:22:13 +00:00
|
|
|
}
|
2019-02-04 21:12:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if removed {
|
2018-04-03 14:22:13 +00:00
|
|
|
return zone.Save()
|
|
|
|
}
|
|
|
|
|
|
|
|
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-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) findZoneAndRecordName(fqdn, domain string) (string, string, error) {
|
2018-12-06 21:50:17 +00:00
|
|
|
zone, err := dns01.FindZoneByFqdn(dns01.ToFqdn(domain))
|
2018-04-03 14:22:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
2018-12-06 21:50:17 +00:00
|
|
|
zone = dns01.UnFqdn(zone)
|
|
|
|
name := dns01.UnFqdn(fqdn)
|
2018-04-03 14:22:13 +00:00
|
|
|
name = name[:len(name)-len("."+zone)]
|
|
|
|
|
|
|
|
return zone, name, nil
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) createRecord(zone *configdns.Zone, record *configdns.TxtRecord) error {
|
2018-04-03 14:22:13 +00:00
|
|
|
err := zone.AddRecord(record)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return zone.Save()
|
|
|
|
}
|