mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
Attempt to add NAPTR support.
This commit is contained in:
48
models/t_naptr.go
Normal file
48
models/t_naptr.go
Normal file
@@ -0,0 +1,48 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
// SetTargetNAPTR sets the NAPTR fields.
|
||||
func (rc *RecordConfig) SetTargetNAPTR(order uint16, preference uint16, flags string, service string, regexp string, target string) error {
|
||||
rc.NaptrOrder = order
|
||||
rc.NaptrPreference = preference
|
||||
rc.NaptrFlags = flags
|
||||
rc.NaptrService = service
|
||||
rc.NaptrRegexp = regexp
|
||||
rc.NaptrReplacement = target
|
||||
if rc.Type == "" {
|
||||
rc.Type = "NAPTR"
|
||||
}
|
||||
if rc.Type != "NAPTR" {
|
||||
panic("assertion failed: SetTargetNAPTR called when .Type is not NAPTR")
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// SetTargetNAPTRStrings is like SetTargetNAPTR but accepts strings.
|
||||
func (rc *RecordConfig) SetTargetNAPTRStrings(order, preference, flags string, service string, regexp string, target string) error {
|
||||
i64order, err := strconv.ParseUint(order, 10, 16)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "NAPTR order does not fit in 16 bits")
|
||||
}
|
||||
i64preference, err := strconv.ParseUint(preference, 10, 16)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "NAPTR preference does not fit in 16 bits")
|
||||
}
|
||||
return rc.SetTargetNAPTR(uint16(i64order), uint16(i64preference), flags, service, regexp, target)
|
||||
}
|
||||
|
||||
// SetTargetNAPTRString is like SetTargetNAPTR but accepts one big string.
|
||||
func (rc *RecordConfig) SetTargetNAPTRString(s string) error {
|
||||
part := strings.Fields(s)
|
||||
if len(part) != 6 {
|
||||
return errors.Errorf("NAPTR value does not contain 6 fields: (%#v)", s)
|
||||
}
|
||||
return rc.SetTargetNAPTRStrings(part[0], part[1], part[2], part[3], part[4], StripQuotes(part[5]))
|
||||
}
|
Reference in New Issue
Block a user