mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 17:26:10 +08:00
bcb968411a
* Unify provider outputs to pkg/printer Signed-off-by: Jan-Philipp Benecke <jan-philipp@bnck.me> * No need for custom Errorf Signed-off-by: Jan-Philipp Benecke <jan-philipp@bnck.me> * Add missing import for activedir Signed-off-by: Jan-Philipp Benecke <jan-philipp@bnck.me> * Add missing fmt import for activedir Signed-off-by: Jan-Philipp Benecke <jan-philipp@bnck.me>
73 lines
2.1 KiB
Go
73 lines
2.1 KiB
Go
package msdns
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/StackExchange/dnscontrol/v3/models"
|
|
"github.com/StackExchange/dnscontrol/v3/pkg/diff"
|
|
"github.com/StackExchange/dnscontrol/v3/pkg/txtutil"
|
|
)
|
|
|
|
// GetDomainCorrections gets existing records, diffs them against existing, and returns corrections.
|
|
func (client *msdnsProvider) GenerateDomainCorrections(dc *models.DomainConfig, existing models.Records) ([]*models.Correction, error) {
|
|
|
|
// Read foundRecords:
|
|
foundRecords, err := client.GetZoneRecords(dc.Name)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("c.GetDNSZoneRecords(%v) failed: %v", dc.Name, err)
|
|
}
|
|
|
|
// Normalize
|
|
models.PostProcessRecords(foundRecords)
|
|
txtutil.SplitSingleLongTxt(dc.Records) // Autosplit long TXT records
|
|
|
|
differ := diff.New(dc)
|
|
_, creates, dels, modifications, err := differ.IncrementalDiff(foundRecords)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Generate changes.
|
|
corrections := []*models.Correction{}
|
|
for _, del := range dels {
|
|
corrections = append(corrections, client.deleteRec(client.dnsserver, dc.Name, del))
|
|
}
|
|
for _, cre := range creates {
|
|
corrections = append(corrections, client.createRec(client.dnsserver, dc.Name, cre)...)
|
|
}
|
|
for _, m := range modifications {
|
|
corrections = append(corrections, client.modifyRec(client.dnsserver, dc.Name, m))
|
|
}
|
|
return corrections, nil
|
|
|
|
}
|
|
|
|
func (client *msdnsProvider) deleteRec(dnsserver, domainname string, cor diff.Correlation) *models.Correction {
|
|
rec := cor.Existing
|
|
return &models.Correction{
|
|
Msg: cor.String(),
|
|
F: func() error {
|
|
return client.shell.RecordDelete(dnsserver, domainname, rec)
|
|
},
|
|
}
|
|
}
|
|
|
|
func (client *msdnsProvider) createRec(dnsserver, domainname string, cre diff.Correlation) []*models.Correction {
|
|
rec := cre.Desired
|
|
arr := []*models.Correction{{
|
|
Msg: cre.String(),
|
|
F: func() error {
|
|
return client.shell.RecordCreate(dnsserver, domainname, rec)
|
|
},
|
|
}}
|
|
return arr
|
|
}
|
|
|
|
func (client *msdnsProvider) modifyRec(dnsserver, domainname string, m diff.Correlation) *models.Correction {
|
|
old, rec := m.Existing, m.Desired
|
|
return &models.Correction{
|
|
Msg: m.String(),
|
|
F: func() error {
|
|
return client.shell.RecordModify(dnsserver, domainname, old, rec)
|
|
},
|
|
}
|
|
}
|