2020-02-25 20:56:40 +00:00
|
|
|
// Package constellix implements a DNS provider for solving the DNS-01 challenge using Constellix DNS.
|
|
|
|
package constellix
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/go-acme/lego/v3/challenge/dns01"
|
|
|
|
"github.com/go-acme/lego/v3/platform/config/env"
|
|
|
|
"github.com/go-acme/lego/v3/providers/dns/constellix/internal"
|
|
|
|
)
|
|
|
|
|
2020-03-11 22:51:10 +00:00
|
|
|
// Environment variables names.
|
|
|
|
const (
|
|
|
|
envNamespace = "CONSTELLIX_"
|
|
|
|
|
|
|
|
EnvAPIKey = envNamespace + "API_KEY"
|
|
|
|
EnvSecretKey = envNamespace + "SECRET_KEY"
|
|
|
|
|
|
|
|
EnvTTL = envNamespace + "TTL"
|
|
|
|
EnvPropagationTimeout = envNamespace + "PROPAGATION_TIMEOUT"
|
|
|
|
EnvPollingInterval = envNamespace + "POLLING_INTERVAL"
|
|
|
|
EnvHTTPTimeout = envNamespace + "HTTP_TIMEOUT"
|
|
|
|
)
|
|
|
|
|
2020-02-25 20:56:40 +00:00
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
APIKey string
|
|
|
|
SecretKey string
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
TTL int
|
|
|
|
HTTPClient *http.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
2020-03-11 22:51:10 +00:00
|
|
|
TTL: env.GetOrDefaultInt(EnvTTL, 300),
|
|
|
|
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, dns01.DefaultPollingInterval),
|
2020-02-25 20:56:40 +00:00
|
|
|
HTTPClient: &http.Client{
|
2020-03-11 22:51:10 +00:00
|
|
|
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
|
2020-02-25 20:56:40 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DNSProvider is an implementation of the challenge.Provider interface.
|
|
|
|
type DNSProvider struct {
|
|
|
|
config *Config
|
|
|
|
client *internal.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for Constellix.
|
|
|
|
// Credentials must be passed in the environment variables:
|
|
|
|
// CONSTELLIX_API_KEY and CONSTELLIX_SECRET_KEY.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2020-03-11 22:51:10 +00:00
|
|
|
values, err := env.Get(EnvAPIKey, EnvSecretKey)
|
2020-02-25 20:56:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("constellix: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config := NewDefaultConfig()
|
2020-03-11 22:51:10 +00:00
|
|
|
config.APIKey = values[EnvAPIKey]
|
|
|
|
config.SecretKey = values[EnvSecretKey]
|
2020-02-25 20:56:40 +00:00
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for Constellix.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("constellix: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.SecretKey == "" || config.APIKey == "" {
|
|
|
|
return nil, errors.New("constellix: incomplete credentials, missing secret key and/or API key")
|
|
|
|
}
|
|
|
|
|
|
|
|
tr, err := internal.NewTokenTransport(config.APIKey, config.SecretKey)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("constellix: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
client := internal.NewClient(tr.Wrap(config.HTTPClient))
|
|
|
|
|
|
|
|
return &DNSProvider{config: config, client: client}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Present creates a TXT record using the specified parameters
|
|
|
|
func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
|
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: could not find zone for domain %q and fqdn %q : %w", domain, fqdn, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
domainID, err := d.client.Domains.GetID(dns01.UnFqdn(authZone))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to get domain ID: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
records, err := d.client.TxtRecords.GetAll(domainID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to get TXT records: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
recordName := getRecordName(fqdn, authZone)
|
|
|
|
|
|
|
|
record := findRecords(records, recordName)
|
|
|
|
|
|
|
|
// TXT record entry already existing
|
|
|
|
if record != nil {
|
|
|
|
if containsValue(record, value) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
request := internal.RecordRequest{
|
|
|
|
Name: record.Name,
|
|
|
|
TTL: record.TTL,
|
|
|
|
RoundRobin: append(record.RoundRobin, internal.RecordValue{Value: fmt.Sprintf(`"%s"`, value)}),
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = d.client.TxtRecords.Update(domainID, record.ID, request)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to update TXT records: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
request := internal.RecordRequest{
|
|
|
|
Name: recordName,
|
|
|
|
TTL: d.config.TTL,
|
|
|
|
RoundRobin: []internal.RecordValue{
|
|
|
|
{Value: fmt.Sprintf(`"%s"`, value)},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = d.client.TxtRecords.Create(domainID, request)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to create TXT record %s: %w", fqdn, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the TXT record matching the specified parameters
|
|
|
|
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
|
|
|
|
fqdn, value := dns01.GetRecord(domain, keyAuth)
|
|
|
|
|
|
|
|
authZone, err := dns01.FindZoneByFqdn(fqdn)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: could not find zone for domain %q and fqdn %q : %w", domain, fqdn, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
domainID, err := d.client.Domains.GetID(dns01.UnFqdn(authZone))
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to get domain ID: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
records, err := d.client.TxtRecords.GetAll(domainID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to get TXT records: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
recordName := getRecordName(fqdn, authZone)
|
|
|
|
|
|
|
|
record := findRecords(records, recordName)
|
|
|
|
if record == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !containsValue(record, value) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// only 1 record value, the whole record must be deleted.
|
|
|
|
if len(record.Value) == 1 {
|
|
|
|
_, err = d.client.TxtRecords.Delete(domainID, record.ID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to delete TXT records: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
request := internal.RecordRequest{
|
|
|
|
Name: record.Name,
|
|
|
|
TTL: record.TTL,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, val := range record.Value {
|
|
|
|
if val.Value != fmt.Sprintf(`"%s"`, value) {
|
|
|
|
request.RoundRobin = append(request.RoundRobin, val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = d.client.TxtRecords.Update(domainID, record.ID, request)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("constellix: failed to update TXT records: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func findRecords(records []internal.Record, name string) *internal.Record {
|
|
|
|
for _, r := range records {
|
|
|
|
if r.Name == name {
|
|
|
|
return &r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func containsValue(record *internal.Record, value string) bool {
|
|
|
|
for _, val := range record.Value {
|
|
|
|
if val.Value == fmt.Sprintf(`"%s"`, value) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func getRecordName(fqdn, authZone string) string {
|
|
|
|
return fqdn[0 : len(fqdn)-len(authZone)-1]
|
|
|
|
}
|