mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-15 12:45:14 +08:00
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
|
package internetbs
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"github.com/StackExchange/dnscontrol/models"
|
||
|
"github.com/StackExchange/dnscontrol/providers"
|
||
|
"github.com/pkg/errors"
|
||
|
"sort"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
/*
|
||
|
|
||
|
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 := &api{}
|
||
|
|
||
|
api.key, api.password = m["api-key"], m["password"]
|
||
|
if api.key == "" || api.password == "" {
|
||
|
return nil, errors.Errorf("missing Internet.bs api-key and password")
|
||
|
}
|
||
|
|
||
|
return api, nil
|
||
|
}
|
||
|
|
||
|
// GetRegistrarCorrections gathers corrections that would being n to match dc.
|
||
|
func (c *api) 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
|
||
|
}
|