mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-15 04:36:19 +08:00
64 lines
1.4 KiB
Go
64 lines
1.4 KiB
Go
package internetbs
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/StackExchange/dnscontrol/v3/models"
|
|
"github.com/StackExchange/dnscontrol/v3/providers"
|
|
)
|
|
|
|
/*
|
|
|
|
Internet.bs Registrator:
|
|
|
|
Info required in `creds.json`:
|
|
- api-key ApiKey
|
|
- password Your account password
|
|
|
|
*/
|
|
|
|
func init() {
|
|
providers.RegisterRegistrarType("INTERNETBS", newInternetBs)
|
|
}
|
|
|
|
func newInternetBs(m map[string]string) (providers.Registrar, error) {
|
|
api := &internetbsProvider{}
|
|
|
|
api.key, api.password = m["api-key"], m["password"]
|
|
if api.key == "" || api.password == "" {
|
|
return nil, fmt.Errorf("missing Internet.bs api-key and password")
|
|
}
|
|
|
|
return api, nil
|
|
}
|
|
|
|
// GetRegistrarCorrections gathers corrections that would being n to match dc.
|
|
func (c *internetbsProvider) GetRegistrarCorrections(dc *models.DomainConfig) ([]*models.Correction, error) {
|
|
nss, err := c.getNameservers(dc.Name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
foundNameservers := strings.Join(nss, ",")
|
|
|
|
expected := []string{}
|
|
for _, ns := range dc.Nameservers {
|
|
name := strings.TrimRight(ns.Name, ".")
|
|
expected = append(expected, name)
|
|
}
|
|
sort.Strings(expected)
|
|
expectedNameservers := strings.Join(expected, ",")
|
|
|
|
if foundNameservers != expectedNameservers {
|
|
return []*models.Correction{
|
|
{
|
|
Msg: fmt.Sprintf("Update nameservers (%s) -> (%s)", foundNameservers, expectedNameservers),
|
|
F: func() error {
|
|
return c.updateNameservers(expected, dc.Name)
|
|
},
|
|
},
|
|
}, nil
|
|
}
|
|
return nil, nil
|
|
}
|