NS1: Added support for ALIAS, PTR, and TXTMuli (#776)

This commit is contained in:
Max Ratmeyer 2020-07-06 20:29:25 -04:00 committed by GitHub
parent 541bb805da
commit f7d39b578a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,9 @@ import (
)
var docNotes = providers.DocumentationNotes{
providers.CanUseAlias: providers.Can(),
providers.CanUsePTR: providers.Can(),
providers.CanUseTXTMulti: providers.Can(),
providers.DocCreateDomains: providers.Cannot(),
providers.DocOfficiallySupported: providers.Cannot(),
providers.DocDualHost: providers.Can(),
@ -150,6 +153,11 @@ func convert(zr *dns.ZoneRecord, domain string) ([]*models.RecordConfig, error)
}
rec.SetLabelFromFQDN(zr.Domain, domain)
switch rtype := zr.Type; rtype {
case "ALIAS":
rec.Type = rtype
if err := rec.SetTarget(ans); err != nil {
panic(fmt.Errorf("unparsable ALIAS record received from ns1: %w", err))
}
default:
if err := rec.PopulateFromString(rtype, ans, domain); err != nil {
panic(fmt.Errorf("unparsable record received from ns1: %w", err))