router7/internal/dyndns/dyndns.go
Michael Stapelberg 575a14c394 dyndns: add zone to record name
Otherwise, already existing records are not recognized correctly.
2021-09-01 09:37:12 +02:00

68 lines
1.6 KiB
Go

// Copyright 2018 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package dyndns
import (
"context"
"log"
"github.com/libdns/libdns"
)
type RecordGetterSetter interface {
libdns.RecordGetter
libdns.RecordSetter
}
// Update takes a record which should be updated
// within the specified zone.
func Update(ctx context.Context, zone string, record libdns.Record, provider RecordGetterSetter) error {
existing, err := provider.GetRecords(ctx, zone)
if err != nil {
return err
}
var updated []libdns.Record
for _, rec := range existing {
if rec.Name+"."+zone != record.Name || rec.Type != record.Type {
continue
}
if rec.Value == record.Value {
log.Printf("record up to date: %s %s %s",
record.Name,
record.Type,
record.Value)
return nil
}
rec.Value = record.Value
updated = append(updated, rec)
break
}
if len(updated) == 0 {
updated = []libdns.Record{record}
}
if _, err := provider.SetRecords(ctx, zone, updated); err != nil {
return err
}
log.Printf("updated record: %s %s %s",
record.Name,
record.Type,
record.Value)
return nil
}