Compare commits
2 commits
7a54e0b4e0
...
ed4428e846
Author | SHA1 | Date | |
---|---|---|---|
|
ed4428e846 | ||
|
720bb3707f |
2 changed files with 26 additions and 19 deletions
|
@ -7,9 +7,10 @@ import (
|
|||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
"net"
|
||||
|
||||
"git.darkcloud.ca/kmacmart/name-dyndns/api"
|
||||
"git.darkcloud.ca/kmacmart/name-dyndns/log"
|
||||
"git.darkcloud.ca/kevin/name-dyndns/api"
|
||||
"git.darkcloud.ca/kevin/name-dyndns/log"
|
||||
)
|
||||
|
||||
var wg sync.WaitGroup
|
||||
|
@ -28,24 +29,30 @@ func contains(c api.Config, val string) bool {
|
|||
}
|
||||
|
||||
func updateDNSRecord(a api.API, domain, recordID string, newRecord api.DNSRecord) error {
|
||||
log.Logger.Printf("Deleting DNS record for %s.\n", newRecord.Name)
|
||||
err := a.DeleteDNSRecord(domain, newRecord.RecordID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
addr := net.ParseIP(record.Content)
|
||||
|
||||
log.Logger.Printf("Creating DNS record for %s: %s\n", newRecord.Name, newRecord)
|
||||
if addr != nil {
|
||||
log.Logger.Printf("Deleting DNS record for %s.\n", newRecord.Name)
|
||||
err := a.DeleteDNSRecord(domain, newRecord.RecordID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// Remove the domain from the DNSRecord name.
|
||||
// This is an unfortunate inconsistency from the API
|
||||
// implementation (returns full name, but only requires host)
|
||||
if newRecord.Name == domain {
|
||||
newRecord.Name = ""
|
||||
log.Logger.Printf("Creating DNS record for %s: %s\n", newRecord.Name, newRecord)
|
||||
|
||||
// Remove the domain from the DNSRecord name.
|
||||
// This is an unfortunate inconsistency from the API
|
||||
// implementation (returns full name, but only requires host)
|
||||
if newRecord.Name == domain {
|
||||
newRecord.Name = ""
|
||||
} else {
|
||||
newRecord.Name = strings.TrimSuffix(newRecord.Name, fmt.Sprintf(".%s", domain))
|
||||
}
|
||||
|
||||
return a.CreateDNSRecord(domain, newRecord)
|
||||
} else {
|
||||
newRecord.Name = strings.TrimSuffix(newRecord.Name, fmt.Sprintf(".%s", domain))
|
||||
log.Logger.Printf("Unable to parse IP: %s\n", newRecord)
|
||||
}
|
||||
|
||||
return a.CreateDNSRecord(domain, newRecord)
|
||||
}
|
||||
|
||||
func runConfig(c api.Config, daemon bool) {
|
||||
|
|
6
main.go
6
main.go
|
@ -3,9 +3,9 @@ package main
|
|||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"git.darkcloud.ca/kmacmart/name-dyndns/api"
|
||||
"git.darkcloud.ca/kmacmart/name-dyndns/dyndns"
|
||||
"git.darkcloud.ca/kmacmart/name-dyndns/log"
|
||||
"git.darkcloud.ca/kevin/name-dyndns/api"
|
||||
"git.darkcloud.ca/kevin/name-dyndns/dyndns"
|
||||
"git.darkcloud.ca/kevin/name-dyndns/log"
|
||||
"os"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue