2019-01-07 17:30:06 +00:00
|
|
|
// Package dnsimple implements a DNS provider for solving the DNS-01 challenge using dnsimple DNS.
|
2017-02-07 21:33:23 +00:00
|
|
|
package dnsimple
|
|
|
|
|
|
|
|
import (
|
2019-01-07 17:30:06 +00:00
|
|
|
"context"
|
2018-09-17 13:16:03 +00:00
|
|
|
"errors"
|
2017-02-07 21:33:23 +00:00
|
|
|
"fmt"
|
2017-04-07 09:53:39 +00:00
|
|
|
"strconv"
|
2017-02-07 21:33:23 +00:00
|
|
|
"strings"
|
2018-09-17 13:16:03 +00:00
|
|
|
"time"
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2017-04-07 09:53:39 +00:00
|
|
|
"github.com/dnsimple/dnsimple-go/dnsimple"
|
2019-01-07 17:30:06 +00:00
|
|
|
"github.com/xenolf/lego/challenge/dns01"
|
2018-09-17 13:16:03 +00:00
|
|
|
"github.com/xenolf/lego/platform/config/env"
|
2019-01-07 17:30:06 +00:00
|
|
|
"golang.org/x/oauth2"
|
2017-02-07 21:33:23 +00:00
|
|
|
)
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
AccessToken string
|
|
|
|
BaseURL string
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
TTL int
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
2019-01-07 17:30:06 +00:00
|
|
|
TTL: env.GetOrDefaultInt("DNSIMPLE_TTL", dns01.DefaultTTL),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("DNSIMPLE_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("DNSIMPLE_POLLING_INTERVAL", dns01.DefaultPollingInterval),
|
2018-09-17 13:16:03 +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
|
|
|
config *Config
|
2017-02-07 21:33:23 +00:00
|
|
|
client *dnsimple.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for dnsimple.
|
2017-04-07 09:53:39 +00:00
|
|
|
// Credentials must be passed in the environment variables: DNSIMPLE_OAUTH_TOKEN.
|
|
|
|
//
|
|
|
|
// See: https://developer.dnsimple.com/v2/#authentication
|
2017-02-07 21:33:23 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-09-17 13:16:03 +00:00
|
|
|
config := NewDefaultConfig()
|
2018-10-10 14:28:04 +00:00
|
|
|
config.AccessToken = env.GetOrFile("DNSIMPLE_OAUTH_TOKEN")
|
|
|
|
config.BaseURL = env.GetOrFile("DNSIMPLE_BASE_URL")
|
2017-04-07 09:53:39 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
return NewDNSProviderConfig(config)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for DNSimple.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("dnsimple: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.AccessToken == "" {
|
|
|
|
return nil, fmt.Errorf("dnsimple: OAuth token is missing")
|
2017-04-07 09:53:39 +00:00
|
|
|
}
|
|
|
|
|
2019-01-07 17:30:06 +00:00
|
|
|
ts := oauth2.StaticTokenSource(&oauth2.Token{AccessToken: config.AccessToken})
|
|
|
|
client := dnsimple.NewClient(oauth2.NewClient(context.Background(), ts))
|
2017-04-07 09:53:39 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
if config.BaseURL != "" {
|
|
|
|
client.BaseURL = config.BaseURL
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
return &DNSProvider{client: client, config: config}, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
// Present creates a TXT record to fulfill the dns-01 challenge.
|
2018-07-03 10:44:04 +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)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
zoneName, err := d.getHostedZone(domain)
|
2017-04-07 09:53:39 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
return fmt.Errorf("dnsimple: %v", err)
|
2017-04-07 09:53:39 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
accountID, err := d.getAccountID()
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
return fmt.Errorf("dnsimple: %v", err)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
recordAttributes := newTxtRecord(zoneName, fqdn, value, d.config.TTL)
|
2018-09-17 13:16:03 +00:00
|
|
|
_, err = d.client.Zones.CreateRecord(accountID, zoneName, recordAttributes)
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
return fmt.Errorf("dnsimple: API call failed: %v", err)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 {
|
2019-01-07 17:30:06 +00:00
|
|
|
fqdn, _ := dns01.GetRecord(domain, keyAuth)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
records, err := d.findTxtRecords(domain, fqdn)
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
return fmt.Errorf("dnsimple: %v", err)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
accountID, err := d.getAccountID()
|
2017-04-07 09:53:39 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
return fmt.Errorf("dnsimple: %v", err)
|
2017-04-07 09:53:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
var lastErr error
|
2017-02-07 21:33:23 +00:00
|
|
|
for _, rec := range records {
|
2018-07-03 10:44:04 +00:00
|
|
|
_, err := d.client.Zones.DeleteRecord(accountID, rec.ZoneID, rec.ID)
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
lastErr = fmt.Errorf("dnsimple: %v", err)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-07 09:53:39 +00:00
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
return lastErr
|
2017-02-07 21:33:23 +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
|
|
|
func (d *DNSProvider) getHostedZone(domain string) (string, error) {
|
2019-01-07 17:30:06 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(dns01.ToFqdn(domain))
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2017-04-07 09:53:39 +00:00
|
|
|
return "", err
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
accountID, err := d.getAccountID()
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2017-04-07 09:53:39 +00:00
|
|
|
return "", err
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2019-01-07 17:30:06 +00:00
|
|
|
zoneName := dns01.UnFqdn(authZone)
|
2017-04-07 09:53:39 +00:00
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
zones, err := d.client.Zones.ListZones(accountID, &dnsimple.ZoneListOptions{NameLike: zoneName})
|
2017-04-07 09:53:39 +00:00
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return "", fmt.Errorf("API call failed: %v", err)
|
2017-04-07 09:53:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var hostedZone dnsimple.Zone
|
|
|
|
for _, zone := range zones.Data {
|
|
|
|
if zone.Name == zoneName {
|
2017-02-07 21:33:23 +00:00
|
|
|
hostedZone = zone
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-07 09:53:39 +00:00
|
|
|
if hostedZone.ID == 0 {
|
2018-05-31 07:30:04 +00:00
|
|
|
return "", fmt.Errorf("zone %s not found in DNSimple for domain %s", authZone, domain)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 09:53:39 +00:00
|
|
|
return hostedZone.Name, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
func (d *DNSProvider) findTxtRecords(domain, fqdn string) ([]dnsimple.ZoneRecord, error) {
|
|
|
|
zoneName, err := d.getHostedZone(domain)
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
accountID, err := d.getAccountID()
|
2017-02-07 21:33:23 +00:00
|
|
|
if err != nil {
|
2017-04-07 09:53:39 +00:00
|
|
|
return nil, err
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
recordName := extractRecordName(fqdn, zoneName)
|
2017-04-07 09:53:39 +00:00
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
result, err := d.client.Zones.ListRecords(accountID, zoneName, &dnsimple.ZoneRecordListOptions{Name: recordName, Type: "TXT", ListOptions: dnsimple.ListOptions{}})
|
2017-04-07 09:53:39 +00:00
|
|
|
if err != nil {
|
2018-10-10 14:28:04 +00:00
|
|
|
return nil, fmt.Errorf("API call has failed: %v", err)
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-07 09:53:39 +00:00
|
|
|
return result.Data, nil
|
2017-02-07 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
func newTxtRecord(zoneName, fqdn, value string, ttl int) dnsimple.ZoneRecord {
|
|
|
|
name := extractRecordName(fqdn, zoneName)
|
2017-02-07 21:33:23 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
return dnsimple.ZoneRecord{
|
2017-02-07 21:33:23 +00:00
|
|
|
Type: "TXT",
|
|
|
|
Name: name,
|
|
|
|
Content: value,
|
|
|
|
TTL: ttl,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
func extractRecordName(fqdn, domain string) string {
|
2019-01-07 17:30:06 +00:00
|
|
|
name := dns01.UnFqdn(fqdn)
|
2017-02-07 21:33:23 +00:00
|
|
|
if idx := strings.Index(name, "."+domain); idx != -1 {
|
|
|
|
return name[:idx]
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
2017-04-07 09:53:39 +00:00
|
|
|
|
2018-07-03 10:44:04 +00:00
|
|
|
func (d *DNSProvider) getAccountID() (string, error) {
|
|
|
|
whoamiResponse, err := d.client.Identity.Whoami()
|
2017-04-07 09:53:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if whoamiResponse.Data.Account == nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return "", fmt.Errorf("user tokens are not supported, please use an account token")
|
2017-04-07 09:53:39 +00:00
|
|
|
}
|
|
|
|
|
2018-05-31 07:30:04 +00:00
|
|
|
return strconv.FormatInt(whoamiResponse.Data.Account.ID, 10), nil
|
2017-04-07 09:53:39 +00:00
|
|
|
}
|