2018-12-06 21:50:17 +00:00
|
|
|
// Package rackspace implements a DNS provider for solving the DNS-01 challenge using rackspace DNS.
|
2016-11-04 09:29:14 +00:00
|
|
|
package rackspace
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2018-09-15 17:07:24 +00:00
|
|
|
"errors"
|
2016-11-04 09:29:14 +00:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
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-11-04 09:29:14 +00:00
|
|
|
)
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// defaultBaseURL represents the Identity API endpoint to call
|
|
|
|
const defaultBaseURL = "https://identity.api.rackspacecloud.com/v2.0/tokens"
|
|
|
|
|
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
BaseURL string
|
|
|
|
APIUser string
|
|
|
|
APIKey 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{
|
|
|
|
BaseURL: defaultBaseURL,
|
|
|
|
TTL: env.GetOrDefaultInt("RACKSPACE_TTL", 300),
|
2018-12-06 21:50:17 +00:00
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("RACKSPACE_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("RACKSPACE_POLLING_INTERVAL", dns01.DefaultPollingInterval),
|
2018-09-15 17:07:24 +00:00
|
|
|
HTTPClient: &http.Client{
|
|
|
|
Timeout: env.GetOrDefaultSecond("RACKSPACE_HTTP_TIMEOUT", 30*time.Second),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2016-11-04 09:29:14 +00:00
|
|
|
|
|
|
|
// DNSProvider is an implementation of the acme.ChallengeProvider interface
|
|
|
|
// used to store the reusable token and DNS API endpoint
|
|
|
|
type DNSProvider struct {
|
2018-09-15 17:07:24 +00:00
|
|
|
config *Config
|
2016-11-04 09:29:14 +00:00
|
|
|
token string
|
|
|
|
cloudDNSEndpoint string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for Rackspace.
|
2018-09-15 17:07:24 +00:00
|
|
|
// Credentials must be passed in the environment variables:
|
|
|
|
// RACKSPACE_USER and RACKSPACE_API_KEY.
|
2016-11-04 09:29:14 +00:00
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
2018-06-11 15:32:50 +00:00
|
|
|
values, err := env.Get("RACKSPACE_USER", "RACKSPACE_API_KEY")
|
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return nil, fmt.Errorf("rackspace: %v", err)
|
2018-06-11 15:32:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.APIUser = values["RACKSPACE_USER"]
|
|
|
|
config.APIKey = values["RACKSPACE_API_KEY"]
|
|
|
|
|
|
|
|
return NewDNSProviderConfig(config)
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-09-15 17:07:24 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for Rackspace.
|
|
|
|
// It authenticates against the API, also grabbing the DNS Endpoint.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("rackspace: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.APIUser == "" || config.APIKey == "" {
|
|
|
|
return nil, fmt.Errorf("rackspace: credentials missing")
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 17:29:18 +00:00
|
|
|
identity, err := login(config)
|
2016-11-04 09:29:14 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return nil, fmt.Errorf("rackspace: %v", err)
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate through the Service Catalog to get the DNS Endpoint
|
|
|
|
var dnsEndpoint string
|
2018-09-15 17:07:24 +00:00
|
|
|
for _, service := range identity.Access.ServiceCatalog {
|
2016-11-04 09:29:14 +00:00
|
|
|
if service.Name == "cloudDNS" {
|
|
|
|
dnsEndpoint = service.Endpoints[0].PublicURL
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-10-12 17:29:18 +00:00
|
|
|
|
2016-11-04 09:29:14 +00:00
|
|
|
if dnsEndpoint == "" {
|
2018-09-15 17:07:24 +00:00
|
|
|
return nil, fmt.Errorf("rackspace: failed to populate DNS endpoint, check Rackspace API for changes")
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &DNSProvider{
|
2018-09-15 17:07:24 +00:00
|
|
|
config: config,
|
|
|
|
token: identity.Access.Token.ID,
|
2016-11-04 09:29:14 +00:00
|
|
|
cloudDNSEndpoint: dnsEndpoint,
|
|
|
|
}, nil
|
2018-09-15 17:07:24 +00:00
|
|
|
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-09-24 19:07:20 +00:00
|
|
|
// Present creates a TXT record to fulfill 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-10-12 17:29:18 +00:00
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
zoneID, err := d.getHostedZoneID(fqdn)
|
2016-11-04 09:29:14 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("rackspace: %v", err)
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-05-30 17:53:04 +00:00
|
|
|
rec := Records{
|
|
|
|
Record: []Record{{
|
2018-12-06 21:50:17 +00:00
|
|
|
Name: dns01.UnFqdn(fqdn),
|
2016-11-04 09:29:14 +00:00
|
|
|
Type: "TXT",
|
|
|
|
Data: value,
|
2018-09-15 17:07:24 +00:00
|
|
|
TTL: d.config.TTL,
|
2016-11-04 09:29:14 +00:00
|
|
|
}},
|
|
|
|
}
|
|
|
|
|
|
|
|
body, err := json.Marshal(rec)
|
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("rackspace: %v", err)
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
_, err = d.makeRequest(http.MethodPost, fmt.Sprintf("/domains/%d/records", zoneID), bytes.NewReader(body))
|
2018-09-15 17:07:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("rackspace: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CleanUp removes the TXT 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-10-12 17:29:18 +00:00
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
zoneID, err := d.getHostedZoneID(fqdn)
|
2016-11-04 09:29:14 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("rackspace: %v", err)
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
record, err := d.findTxtRecord(fqdn, zoneID)
|
2016-11-04 09:29:14 +00:00
|
|
|
if err != nil {
|
2018-09-15 17:07:24 +00:00
|
|
|
return fmt.Errorf("rackspace: %v", err)
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 17:06:16 +00:00
|
|
|
_, err = d.makeRequest(http.MethodDelete, fmt.Sprintf("/domains/%d/records?id=%s", zoneID, record.ID), nil)
|
2018-09-15 17:07:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("rackspace: %v", err)
|
|
|
|
}
|
|
|
|
return 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
|
2016-11-04 09:29:14 +00:00
|
|
|
}
|