2016-10-12 00:42:20 +00:00
|
|
|
package auroradns
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-05-30 17:53:04 +00:00
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
|
2016-10-12 00:42:20 +00:00
|
|
|
"github.com/edeckers/auroradnsclient"
|
|
|
|
"github.com/edeckers/auroradnsclient/records"
|
|
|
|
"github.com/edeckers/auroradnsclient/zones"
|
|
|
|
"github.com/xenolf/lego/acme"
|
2018-06-11 15:32:50 +00:00
|
|
|
"github.com/xenolf/lego/platform/config/env"
|
2016-10-12 00:42:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// DNSProvider describes a provider for AuroraDNS
|
|
|
|
type DNSProvider struct {
|
|
|
|
recordIDs map[string]string
|
|
|
|
recordIDsMu sync.Mutex
|
|
|
|
client *auroradnsclient.AuroraDNSClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for AuroraDNS.
|
|
|
|
// Credentials must be passed in the environment variables: AURORA_USER_ID
|
|
|
|
// and AURORA_KEY.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-06-11 15:32:50 +00:00
|
|
|
values, err := env.Get("AURORA_USER_ID", "AURORA_KEY")
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("AuroraDNS: %v", err)
|
|
|
|
}
|
2016-10-12 00:42:20 +00:00
|
|
|
|
|
|
|
endpoint := os.Getenv("AURORA_ENDPOINT")
|
|
|
|
|
2018-06-11 15:32:50 +00:00
|
|
|
return NewDNSProviderCredentials(endpoint, values["AURORA_USER_ID"], values["AURORA_KEY"])
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProviderCredentials uses the supplied credentials to return a
|
|
|
|
// DNSProvider instance configured for AuroraDNS.
|
|
|
|
func NewDNSProviderCredentials(baseURL string, userID string, key string) (*DNSProvider, error) {
|
2018-06-11 15:32:50 +00:00
|
|
|
if baseURL == "" {
|
|
|
|
baseURL = "https://api.auroradns.eu"
|
|
|
|
}
|
|
|
|
|
2016-10-12 00:42:20 +00:00
|
|
|
client, err := auroradnsclient.NewAuroraDNSClient(baseURL, userID, key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{
|
|
|
|
client: client,
|
|
|
|
recordIDs: make(map[string]string),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) getZoneInformationByName(name string) (zones.ZoneRecord, error) {
|
|
|
|
zs, err := d.client.GetZones()
|
2016-10-12 00:42:20 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return zones.ZoneRecord{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, element := range zs {
|
|
|
|
if element.Name == name {
|
|
|
|
return element, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-30 17:53:04 +00:00
|
|
|
return zones.ZoneRecord{}, fmt.Errorf("could not find Zone record")
|
2016-10-12 00:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a record with a secret
|
2018-06-21 17:06:16 +00:00
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
2016-10-12 00:42:20 +00:00
|
|
|
fqdn, value, _ := acme.DNS01Record(domain, keyAuth)
|
|
|
|
|
|
|
|
authZone, err := acme.FindZoneByFqdn(acme.ToFqdn(domain), acme.RecursiveNameservers)
|
|
|
|
if err != nil {
|
2018-06-11 15:32:50 +00:00
|
|
|
return fmt.Errorf("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]
|
|
|
|
|
|
|
|
authZone = acme.UnFqdn(authZone)
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
zoneRecord, err := d.getZoneInformationByName(authZone)
|
2018-05-30 17:53:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("could not create record: %v", err)
|
|
|
|
}
|
2016-10-12 00:42:20 +00:00
|
|
|
|
|
|
|
reqData :=
|
|
|
|
records.CreateRecordRequest{
|
|
|
|
RecordType: "TXT",
|
|
|
|
Name: subdomain,
|
|
|
|
Content: value,
|
|
|
|
TTL: 300,
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
respData, err := d.client.CreateRecord(zoneRecord.ID, reqData)
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
2018-05-30 17:53:04 +00:00
|
|
|
return fmt.Errorf("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()
|
|
|
|
d.recordIDs[fqdn] = respData.ID
|
|
|
|
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 {
|
2016-10-12 00:42:20 +00:00
|
|
|
fqdn, _, _ := acme.DNS01Record(domain, keyAuth)
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
authZone, err := acme.FindZoneByFqdn(acme.ToFqdn(domain), acme.RecursiveNameservers)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
authZone = acme.UnFqdn(authZone)
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
zoneRecord, err := d.getZoneInformationByName(authZone)
|
2016-10-12 00:42:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
_, err = d.client.RemoveRecord(zoneRecord.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
|
|
|
|
}
|