2019-01-07 17:30:06 +00:00
|
|
|
// Package alidns implements a DNS provider for solving the DNS-01 challenge using Alibaba Cloud DNS.
|
2018-09-14 08:06:03 +00:00
|
|
|
package alidns
|
|
|
|
|
|
|
|
import (
|
2018-09-17 13:16:03 +00:00
|
|
|
"errors"
|
2018-09-14 08:06:03 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
2018-09-17 13:16:03 +00:00
|
|
|
"time"
|
2018-09-14 08:06:03 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
"github.com/aliyun/alibaba-cloud-sdk-go/sdk"
|
|
|
|
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/auth/credentials"
|
2018-09-14 08:06:03 +00:00
|
|
|
"github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests"
|
|
|
|
"github.com/aliyun/alibaba-cloud-sdk-go/services/alidns"
|
2019-01-07 17:30:06 +00:00
|
|
|
"github.com/xenolf/lego/challenge/dns01"
|
2018-09-14 08:06:03 +00:00
|
|
|
"github.com/xenolf/lego/platform/config/env"
|
|
|
|
)
|
|
|
|
|
|
|
|
const defaultRegionID = "cn-hangzhou"
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// Config is used to configure the creation of the DNSProvider
|
|
|
|
type Config struct {
|
|
|
|
APIKey string
|
|
|
|
SecretKey string
|
|
|
|
RegionID string
|
|
|
|
PropagationTimeout time.Duration
|
|
|
|
PollingInterval time.Duration
|
|
|
|
TTL int
|
|
|
|
HTTPTimeout time.Duration
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDefaultConfig returns a default configuration for the DNSProvider
|
|
|
|
func NewDefaultConfig() *Config {
|
|
|
|
return &Config{
|
|
|
|
TTL: env.GetOrDefaultInt("ALICLOUD_TTL", 600),
|
2019-01-07 17:30:06 +00:00
|
|
|
PropagationTimeout: env.GetOrDefaultSecond("ALICLOUD_PROPAGATION_TIMEOUT", dns01.DefaultPropagationTimeout),
|
|
|
|
PollingInterval: env.GetOrDefaultSecond("ALICLOUD_POLLING_INTERVAL", dns01.DefaultPollingInterval),
|
2018-09-17 13:16:03 +00:00
|
|
|
HTTPTimeout: env.GetOrDefaultSecond("ALICLOUD_HTTP_TIMEOUT", 10*time.Second),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-14 08:06:03 +00:00
|
|
|
// DNSProvider is an implementation of the acme.ChallengeProvider interface
|
|
|
|
type DNSProvider struct {
|
2018-09-17 13:16:03 +00:00
|
|
|
config *Config
|
2018-09-14 08:06:03 +00:00
|
|
|
client *alidns.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDNSProvider returns a DNSProvider instance configured for Alibaba Cloud DNS.
|
|
|
|
// Credentials must be passed in the environment variables: ALICLOUD_ACCESS_KEY and ALICLOUD_SECRET_KEY.
|
|
|
|
func NewDNSProvider() (*DNSProvider, error) {
|
|
|
|
values, err := env.Get("ALICLOUD_ACCESS_KEY", "ALICLOUD_SECRET_KEY")
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return nil, fmt.Errorf("alicloud: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.APIKey = values["ALICLOUD_ACCESS_KEY"]
|
|
|
|
config.SecretKey = values["ALICLOUD_SECRET_KEY"]
|
2018-10-10 14:28:04 +00:00
|
|
|
config.RegionID = env.GetOrFile("ALICLOUD_REGION_ID")
|
2018-09-14 08:06:03 +00:00
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
return NewDNSProviderConfig(config)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
// NewDNSProviderConfig return a DNSProvider instance configured for alidns.
|
|
|
|
func NewDNSProviderConfig(config *Config) (*DNSProvider, error) {
|
|
|
|
if config == nil {
|
|
|
|
return nil, errors.New("alicloud: the configuration of the DNS provider is nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.APIKey == "" || config.SecretKey == "" {
|
|
|
|
return nil, fmt.Errorf("alicloud: credentials missing")
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
if len(config.RegionID) == 0 {
|
|
|
|
config.RegionID = defaultRegionID
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
conf := sdk.NewConfig().WithTimeout(config.HTTPTimeout)
|
|
|
|
credential := credentials.NewAccessKeyCredential(config.APIKey, config.SecretKey)
|
|
|
|
|
|
|
|
client, err := alidns.NewClientWithOptions(config.RegionID, conf, credential)
|
2018-09-14 08:06:03 +00:00
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return nil, fmt.Errorf("alicloud: credentials failed: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
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
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-10-10 14:28:04 +00:00
|
|
|
// Present creates a TXT record to fulfill the dns-01 challenge.
|
2018-09-14 08:06:03 +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)
|
2018-09-14 08:06:03 +00:00
|
|
|
|
|
|
|
_, zoneName, err := d.getHostedZone(domain)
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("alicloud: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
recordAttributes := d.newTxtRecord(zoneName, fqdn, value)
|
2018-09-14 08:06:03 +00:00
|
|
|
|
|
|
|
_, err = d.client.AddDomainRecord(recordAttributes)
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("alicloud: API call failed: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
2018-09-14 08:06:03 +00:00
|
|
|
|
|
|
|
records, err := d.findTxtRecords(domain, fqdn)
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("alicloud: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, _, err = d.getHostedZone(domain)
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("alicloud: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, rec := range records {
|
|
|
|
request := alidns.CreateDeleteDomainRecordRequest()
|
|
|
|
request.RecordId = rec.RecordId
|
|
|
|
_, err = d.client.DeleteDomainRecord(request)
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return fmt.Errorf("alicloud: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DNSProvider) getHostedZone(domain string) (string, string, error) {
|
|
|
|
request := alidns.CreateDescribeDomainsRequest()
|
2019-01-07 17:30:06 +00:00
|
|
|
|
|
|
|
var domains []alidns.Domain
|
|
|
|
startPage := 1
|
|
|
|
|
|
|
|
for {
|
|
|
|
request.PageNumber = requests.NewInteger(startPage)
|
|
|
|
|
|
|
|
response, err := d.client.DescribeDomains(request)
|
|
|
|
if err != nil {
|
|
|
|
return "", "", fmt.Errorf("API call failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
domains = append(domains, response.Domains.Domain...)
|
|
|
|
|
|
|
|
if response.PageNumber >= response.PageSize {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
startPage++
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-07 17:30:06 +00:00
|
|
|
authZone, err := dns01.FindZoneByFqdn(dns01.ToFqdn(domain))
|
2018-09-14 08:06:03 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
var hostedZone alidns.Domain
|
2019-01-07 17:30:06 +00:00
|
|
|
for _, zone := range domains {
|
|
|
|
if zone.DomainName == dns01.UnFqdn(authZone) {
|
2018-09-14 08:06:03 +00:00
|
|
|
hostedZone = zone
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if hostedZone.DomainId == "" {
|
2018-09-17 13:16:03 +00:00
|
|
|
return "", "", fmt.Errorf("zone %s not found in AliDNS for domain %s", authZone, domain)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
return fmt.Sprintf("%v", hostedZone.DomainId), hostedZone.DomainName, nil
|
|
|
|
}
|
|
|
|
|
2018-09-17 13:16:03 +00:00
|
|
|
func (d *DNSProvider) newTxtRecord(zone, fqdn, value string) *alidns.AddDomainRecordRequest {
|
2018-09-14 08:06:03 +00:00
|
|
|
request := alidns.CreateAddDomainRecordRequest()
|
|
|
|
request.Type = "TXT"
|
|
|
|
request.DomainName = zone
|
|
|
|
request.RR = d.extractRecordName(fqdn, zone)
|
|
|
|
request.Value = value
|
2018-09-17 13:16:03 +00:00
|
|
|
request.TTL = requests.NewInteger(d.config.TTL)
|
2018-09-14 08:06:03 +00:00
|
|
|
return request
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DNSProvider) findTxtRecords(domain, fqdn string) ([]alidns.Record, error) {
|
|
|
|
_, zoneName, err := d.getHostedZone(domain)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
request := alidns.CreateDescribeDomainRecordsRequest()
|
|
|
|
request.DomainName = zoneName
|
|
|
|
request.PageSize = requests.NewInteger(500)
|
|
|
|
|
|
|
|
var records []alidns.Record
|
|
|
|
|
|
|
|
result, err := d.client.DescribeDomainRecords(request)
|
|
|
|
if err != nil {
|
2018-09-17 13:16:03 +00:00
|
|
|
return records, fmt.Errorf("API call has failed: %v", err)
|
2018-09-14 08:06:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
recordName := d.extractRecordName(fqdn, zoneName)
|
|
|
|
for _, record := range result.DomainRecords.Record {
|
|
|
|
if record.RR == recordName {
|
|
|
|
records = append(records, record)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return records, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *DNSProvider) extractRecordName(fqdn, domain string) string {
|
2019-01-07 17:30:06 +00:00
|
|
|
name := dns01.UnFqdn(fqdn)
|
2018-09-14 08:06:03 +00:00
|
|
|
if idx := strings.Index(name, "."+domain); idx != -1 {
|
|
|
|
return name[:idx]
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|