traefik/vendor/github.com/go-acme/lego/providers/dns/sakuracloud/sakuracloud.go

102 lines
3.2 KiB
Go
Raw Normal View History

2019-01-07 17:30:06 +00:00
// Package sakuracloud implements a DNS provider for solving the DNS-01 challenge using SakuraCloud DNS.
2018-07-03 10:44:04 +00:00
package sakuracloud
import (
"errors"
"fmt"
"net/http"
2018-09-17 13:16:03 +00:00
"time"
2018-07-03 10:44:04 +00:00
2019-03-14 10:04:04 +00:00
"github.com/go-acme/lego/challenge/dns01"
"github.com/go-acme/lego/platform/config/env"
2018-07-03 10:44:04 +00:00
"github.com/sacloud/libsacloud/api"
)
2018-09-17 13:16:03 +00:00
// Config is used to configure the creation of the DNSProvider
type Config struct {
Token string
Secret string
PropagationTimeout time.Duration
PollingInterval time.Duration
TTL int
2019-04-26 09:08:44 +00:00
HTTPClient *http.Client
2018-09-17 13:16:03 +00:00
}
// NewDefaultConfig returns a default configuration for the DNSProvider
func NewDefaultConfig() *Config {
return &Config{
2019-01-07 17:30:06 +00:00
TTL: env.GetOrDefaultInt("SAKURACLOUD_TTL", dns01.DefaultTTL),
PropagationTimeout: env.GetOrDefaultSecond("SAKURACLOUD_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
PollingInterval: env.GetOrDefaultSecond("SAKURACLOUD_POLLING_INTERVAL", dns01.DefaultPollingInterval),
2019-04-26 09:08:44 +00:00
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond("SAKURACLOUD_HTTP_TIMEOUT", 10*time.Second),
},
2018-09-17 13:16:03 +00:00
}
}
2018-07-03 10:44:04 +00:00
// DNSProvider is an implementation of the acme.ChallengeProvider interface.
type DNSProvider struct {
2018-09-17 13:16:03 +00:00
config *Config
2019-04-26 09:08:44 +00:00
client *api.DNSAPI
2018-07-03 10:44:04 +00:00
}
2019-01-07 17:30:06 +00:00
// NewDNSProvider returns a DNSProvider instance configured for SakuraCloud.
2018-07-03 10:44:04 +00:00
// Credentials must be passed in the environment variables: SAKURACLOUD_ACCESS_TOKEN & SAKURACLOUD_ACCESS_TOKEN_SECRET
func NewDNSProvider() (*DNSProvider, error) {
values, err := env.Get("SAKURACLOUD_ACCESS_TOKEN", "SAKURACLOUD_ACCESS_TOKEN_SECRET")
if err != nil {
2018-09-17 13:16:03 +00:00
return nil, fmt.Errorf("sakuracloud: %v", err)
2018-07-03 10:44:04 +00:00
}
2018-09-17 13:16:03 +00:00
config := NewDefaultConfig()
config.Token = values["SAKURACLOUD_ACCESS_TOKEN"]
config.Secret = values["SAKURACLOUD_ACCESS_TOKEN_SECRET"]
return NewDNSProviderConfig(config)
2018-07-03 10:44:04 +00:00
}
2019-01-07 17:30:06 +00:00
// NewDNSProviderConfig return a DNSProvider instance configured for SakuraCloud.
2018-09-17 13:16:03 +00:00
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
if config == nil {
return nil, errors.New("sakuracloud: the configuration of the DNS provider is nil")
2018-07-03 10:44:04 +00:00
}
2018-09-17 13:16:03 +00:00
if config.Token == "" {
return nil, errors.New("sakuracloud: AccessToken is missing")
2018-07-03 10:44:04 +00:00
}
2018-09-17 13:16:03 +00:00
if config.Secret == "" {
return nil, errors.New("sakuracloud: AccessSecret is missing")
}
2019-04-26 09:08:44 +00:00
apiClient := api.NewClient(config.Token, config.Secret, "is1a")
if config.HTTPClient == nil {
apiClient.HTTPClient = http.DefaultClient
} else {
apiClient.HTTPClient = config.HTTPClient
}
2018-07-03 10:44:04 +00:00
2019-04-26 09:08:44 +00:00
return &DNSProvider{
client: apiClient.GetDNSAPI(),
config: config,
}, nil
2018-07-03 10:44:04 +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)
2019-04-26 09:08:44 +00:00
return d.addTXTRecord(fqdn, domain, value, d.config.TTL)
2018-07-03 10:44:04 +00:00
}
// CleanUp removes the TXT record matching the specified parameters.
func (d *DNSProvider) CleanUp(domain, token, keyAuth string) error {
2019-01-07 17:30:06 +00:00
fqdn, _ := dns01.GetRecord(domain, keyAuth)
2019-04-26 09:08:44 +00:00
return d.cleanupTXTRecord(fqdn, domain)
2018-07-03 10:44:04 +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
}