mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-16 20:39:08 +08:00
280 lines
7.3 KiB
Go
280 lines
7.3 KiB
Go
package autodns
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/StackExchange/dnscontrol/v4/models"
|
|
"github.com/StackExchange/dnscontrol/v4/pkg/diff2"
|
|
"github.com/StackExchange/dnscontrol/v4/pkg/txtutil"
|
|
"github.com/StackExchange/dnscontrol/v4/providers"
|
|
)
|
|
|
|
var features = providers.DocumentationNotes{
|
|
providers.CanGetZones: providers.Can(),
|
|
providers.CanUseAlias: providers.Can(),
|
|
providers.CanUseCAA: providers.Can(),
|
|
providers.CanUseDS: providers.Cannot(),
|
|
providers.CanUsePTR: providers.Cannot(),
|
|
providers.CanUseSRV: providers.Can(),
|
|
providers.CanUseSSHFP: providers.Cannot(),
|
|
providers.CanUseTLSA: providers.Cannot(),
|
|
providers.DocCreateDomains: providers.Cannot(),
|
|
providers.DocDualHost: providers.Cannot(),
|
|
providers.DocOfficiallySupported: providers.Cannot(),
|
|
}
|
|
|
|
type autoDNSProvider struct {
|
|
baseURL url.URL
|
|
defaultHeaders http.Header
|
|
}
|
|
|
|
func init() {
|
|
fns := providers.DspFuncs{
|
|
Initializer: New,
|
|
RecordAuditor: AuditRecords,
|
|
}
|
|
providers.RegisterDomainServiceProviderType("AUTODNS", fns, features)
|
|
}
|
|
|
|
// New creates a new API handle.
|
|
func New(settings map[string]string, _ json.RawMessage) (providers.DNSServiceProvider, error) {
|
|
api := &autoDNSProvider{}
|
|
|
|
api.baseURL = url.URL{
|
|
Scheme: "https",
|
|
User: url.UserPassword(
|
|
settings["username"],
|
|
settings["password"],
|
|
),
|
|
Host: "api.autodns.com",
|
|
Path: "/v1/",
|
|
}
|
|
|
|
api.defaultHeaders = http.Header{
|
|
"Accept": []string{"application/json; charset=UTF-8"},
|
|
"Content-Type": []string{"application/json; charset=UTF-8"},
|
|
"X-Domainrobot-Context": []string{settings["context"]},
|
|
}
|
|
|
|
return api, nil
|
|
}
|
|
|
|
// GetZoneRecordsCorrections returns a list of corrections that will turn existing records into dc.Records.
|
|
func (api *autoDNSProvider) GetZoneRecordsCorrections(dc *models.DomainConfig, existingRecords models.Records) ([]*models.Correction, error) {
|
|
domain := dc.Name
|
|
txtutil.SplitSingleLongTxt(dc.Records) // Autosplit long TXT records
|
|
|
|
var corrections []*models.Correction
|
|
|
|
msgs, changed, err := diff2.ByZone(existingRecords, dc, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if changed {
|
|
|
|
msgs = append(msgs, "Zone update for "+domain)
|
|
msg := strings.Join(msgs, "\n")
|
|
|
|
nameServers, zoneTTL, resourceRecords := recordsToNative(dc.Records)
|
|
|
|
corrections = append(corrections,
|
|
&models.Correction{
|
|
Msg: msg,
|
|
F: func() error {
|
|
|
|
nameServers := nameServers
|
|
zoneTTL := zoneTTL
|
|
resourceRecords := resourceRecords
|
|
|
|
err := api.updateZone(domain, resourceRecords, nameServers, zoneTTL)
|
|
if err != nil {
|
|
return fmt.Errorf(err.Error())
|
|
}
|
|
|
|
return nil
|
|
},
|
|
})
|
|
|
|
}
|
|
|
|
return corrections, nil
|
|
}
|
|
|
|
func recordsToNative(recs models.Records) ([]*models.Nameserver, uint32, []*ResourceRecord) {
|
|
var nameServers []*models.Nameserver
|
|
var zoneTTL uint32
|
|
var resourceRecords []*ResourceRecord
|
|
|
|
for _, record := range recs {
|
|
|
|
if record.Type == "NS" && record.Name == "@" {
|
|
// NS records for the APEX should be handled differently
|
|
nameServers = append(nameServers, &models.Nameserver{
|
|
Name: strings.TrimSuffix(record.GetTargetField(), "."),
|
|
})
|
|
|
|
zoneTTL = record.TTL
|
|
} else {
|
|
resourceRecord := &ResourceRecord{
|
|
Name: record.Name,
|
|
TTL: int64(record.TTL),
|
|
Type: record.Type,
|
|
Value: record.GetTargetField(),
|
|
}
|
|
|
|
if resourceRecord.Name == "@" {
|
|
resourceRecord.Name = ""
|
|
}
|
|
|
|
if record.Type == "MX" {
|
|
resourceRecord.Pref = int32(record.MxPreference)
|
|
}
|
|
|
|
if record.Type == "SRV" {
|
|
resourceRecord.Value = fmt.Sprintf("%d %d %d %s",
|
|
record.SrvPriority,
|
|
record.SrvWeight,
|
|
record.SrvPort,
|
|
record.GetTargetField(),
|
|
)
|
|
}
|
|
|
|
if record.Type == "CAA" {
|
|
resourceRecord.Value = fmt.Sprintf("%d %s \"%s\"",
|
|
record.CaaFlag,
|
|
record.CaaTag,
|
|
record.GetTargetField(),
|
|
)
|
|
}
|
|
|
|
resourceRecords = append(resourceRecords, resourceRecord)
|
|
}
|
|
}
|
|
return nameServers, zoneTTL, resourceRecords
|
|
}
|
|
|
|
// GetNameservers returns the nameservers for a domain.
|
|
func (api *autoDNSProvider) GetNameservers(domain string) ([]*models.Nameserver, error) {
|
|
zone, err := api.getZone(domain)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return zone.NameServers, nil
|
|
}
|
|
|
|
// GetZoneRecords gets the records of a zone and returns them in RecordConfig format.
|
|
func (api *autoDNSProvider) GetZoneRecords(domain string, meta map[string]string) (models.Records, error) {
|
|
zone, _ := api.getZone(domain)
|
|
existingRecords := make([]*models.RecordConfig, len(zone.ResourceRecords))
|
|
for i, resourceRecord := range zone.ResourceRecords {
|
|
existingRecords[i] = toRecordConfig(domain, resourceRecord)
|
|
|
|
// If TTL is not set for an individual RR AutoDNS defaults to the zone TTL defined in SOA
|
|
if existingRecords[i].TTL == 0 {
|
|
existingRecords[i].TTL = zone.Soa.TTL
|
|
}
|
|
}
|
|
|
|
// AutoDNS doesn't respond with APEX nameserver records as regular RR but rather as a zone property
|
|
for _, nameServer := range zone.NameServers {
|
|
nameServerRecord := &models.RecordConfig{
|
|
TTL: zone.Soa.TTL,
|
|
}
|
|
|
|
nameServerRecord.SetLabel("", domain)
|
|
|
|
// make sure the value for this NS record is suffixed with a dot at the end
|
|
_ = nameServerRecord.PopulateFromString("NS", strings.TrimSuffix(nameServer.Name, ".")+".", domain)
|
|
|
|
existingRecords = append(existingRecords, nameServerRecord)
|
|
}
|
|
|
|
if zone.MainRecord != nil && zone.MainRecord.Value != "" {
|
|
addressRecord := &models.RecordConfig{
|
|
TTL: uint32(zone.MainRecord.TTL),
|
|
}
|
|
|
|
// If TTL is not set for an individual RR AutoDNS defaults to the zone TTL defined in SOA
|
|
if addressRecord.TTL == 0 {
|
|
addressRecord.TTL = zone.Soa.TTL
|
|
}
|
|
|
|
addressRecord.SetLabel("", domain)
|
|
|
|
_ = addressRecord.PopulateFromString("A", zone.MainRecord.Value, domain)
|
|
|
|
existingRecords = append(existingRecords, addressRecord)
|
|
|
|
if zone.IncludeWwwForMain {
|
|
prefixedAddressRecord := &models.RecordConfig{
|
|
TTL: uint32(zone.MainRecord.TTL),
|
|
}
|
|
|
|
// If TTL is not set for an individual RR AutoDNS defaults to the zone TTL defined in SOA
|
|
if prefixedAddressRecord.TTL == 0 {
|
|
prefixedAddressRecord.TTL = zone.Soa.TTL
|
|
}
|
|
|
|
prefixedAddressRecord.SetLabel("www", domain)
|
|
|
|
_ = prefixedAddressRecord.PopulateFromString("A", zone.MainRecord.Value, domain)
|
|
|
|
existingRecords = append(existingRecords, prefixedAddressRecord)
|
|
}
|
|
}
|
|
|
|
return existingRecords, nil
|
|
}
|
|
|
|
func toRecordConfig(domain string, record *ResourceRecord) *models.RecordConfig {
|
|
rc := &models.RecordConfig{
|
|
Type: record.Type,
|
|
TTL: uint32(record.TTL),
|
|
Original: record,
|
|
}
|
|
rc.SetLabel(record.Name, domain)
|
|
|
|
_ = rc.PopulateFromString(record.Type, record.Value, domain)
|
|
|
|
if record.Type == "MX" {
|
|
rc.MxPreference = uint16(record.Pref)
|
|
rc.SetTarget(record.Value)
|
|
}
|
|
|
|
if record.Type == "SRV" {
|
|
rc.SrvPriority = uint16(record.Pref)
|
|
|
|
re := regexp.MustCompile(`(\d+) (\d+) (.+)$`)
|
|
found := re.FindStringSubmatch(record.Value)
|
|
|
|
weight, _ := strconv.Atoi(found[1])
|
|
if weight < 0 {
|
|
rc.SrvWeight = 0
|
|
} else if weight > 65535 {
|
|
rc.SrvWeight = 65535
|
|
} else {
|
|
rc.SrvWeight = uint16(weight)
|
|
}
|
|
|
|
port, _ := strconv.Atoi(found[2])
|
|
if port < 0 {
|
|
rc.SrvPort = 0
|
|
} else if port > 65535 {
|
|
rc.SrvPort = 65535
|
|
} else {
|
|
rc.SrvPort = uint16(port)
|
|
}
|
|
|
|
rc.SetTarget(found[3])
|
|
}
|
|
|
|
return rc
|
|
}
|