Files
ddns-updater-qdm12-4/internal/provider/providers/netcup/provider.go
Quentin McGaw bad0d3aeda fix(ipv6): add JSON IPv6 suffix parameter (#611)
- Remove `IPV6_PREFIX` environment variable (unneeded) and remove associated code
- Update all documentation for each provider supporting IPv6
- Build IPv6 as prefix:suffix when getting it from a public IP source for each record IPv6 suffix parameter
- Automatically disable provider_ip if public ip is IPv6 and IPv6 suffix is set (they are not compatible with each other)
2024-01-29 17:31:07 +01:00

159 lines
3.9 KiB
Go

package netcup
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/netip"
"github.com/qdm12/ddns-updater/internal/models"
"github.com/qdm12/ddns-updater/internal/provider/constants"
"github.com/qdm12/ddns-updater/internal/provider/errors"
"github.com/qdm12/ddns-updater/internal/provider/utils"
"github.com/qdm12/ddns-updater/pkg/publicip/ipversion"
)
type Provider struct {
domain string
host string
ipVersion ipversion.IPVersion
ipv6Suffix netip.Prefix
customerNumber string
apiKey string
password string
}
func New(data json.RawMessage, domain, host string,
ipVersion ipversion.IPVersion, ipv6Suffix netip.Prefix) (
p *Provider, err error) {
var extraSettings struct {
CustomerNumber string `json:"customer_number"`
APIKey string `json:"api_key"`
Password string `json:"password"`
}
err = json.Unmarshal(data, &extraSettings)
if err != nil {
return nil, fmt.Errorf("JSON decoding provider specific settings: %w", err)
}
p = &Provider{
domain: domain,
host: host,
ipVersion: ipVersion,
ipv6Suffix: ipv6Suffix,
customerNumber: extraSettings.CustomerNumber,
apiKey: extraSettings.APIKey,
password: extraSettings.Password,
}
err = p.isValid()
if err != nil {
return nil, fmt.Errorf("validating provider settings: %w", err)
}
return p, nil
}
func (p *Provider) isValid() error {
switch {
case p.customerNumber == "":
return fmt.Errorf("%w", errors.ErrCustomerNumberNotSet)
case p.apiKey == "":
return fmt.Errorf("%w", errors.ErrAPIKeyNotSet)
case p.password == "":
return fmt.Errorf("%w", errors.ErrPasswordNotSet)
case p.host == "*":
return fmt.Errorf("%w", errors.ErrHostWildcard)
}
return nil
}
func (p *Provider) String() string {
return utils.ToString(p.domain, p.host, constants.Netcup, p.ipVersion)
}
func (p *Provider) Domain() string {
return p.domain
}
func (p *Provider) Host() string {
return p.host
}
func (p *Provider) IPVersion() ipversion.IPVersion {
return p.ipVersion
}
func (p *Provider) IPv6Suffix() netip.Prefix {
return p.ipv6Suffix
}
func (p *Provider) Proxied() bool {
return false
}
func (p *Provider) BuildDomainName() string {
return utils.BuildDomainName(p.host, p.domain)
}
func (p *Provider) HTML() models.HTMLRow {
return models.HTMLRow{
Domain: fmt.Sprintf("<a href=\"http://%s\">%s</a>", p.BuildDomainName(), p.BuildDomainName()),
Host: p.Host(),
Provider: "<a href=\"https://www.netcup.eu/\">Netcup.eu</a>",
IPVersion: p.ipVersion.String(),
}
}
func (p *Provider) Update(ctx context.Context, client *http.Client, ip netip.Addr) (newIP netip.Addr, err error) {
session, err := p.login(ctx, client)
if err != nil {
return netip.Addr{}, fmt.Errorf("logging in: %w", err)
}
record, err := p.getRecordToUpdate(ctx, client, session, ip)
if err != nil {
return netip.Addr{}, fmt.Errorf("getting record to update: %w", err)
}
recordType := constants.A
if ip.Is6() {
recordType = constants.AAAA
}
updateRecordSet := dnsRecordSet{
DNSRecords: []dnsRecord{record},
}
updateResponse, err := p.updateDNSRecords(ctx, client, session, updateRecordSet)
if err != nil {
return netip.Addr{}, fmt.Errorf("updating record: %w", err)
}
found := false
for _, record = range updateResponse.DNSRecords {
if record.Hostname == p.host && record.Type == recordType {
found = true
break
}
}
if !found {
return netip.Addr{}, fmt.Errorf("%w: in %d records from update response data",
errors.ErrRecordNotFound, len(updateResponse.DNSRecords))
}
newIP, err = netip.ParseAddr(record.Destination)
if err != nil {
return netip.Addr{}, fmt.Errorf("%w: %s",
errors.ErrIPReceivedMalformed, record.Destination)
}
if ip.Compare(newIP) != 0 {
return netip.Addr{}, fmt.Errorf("%w: expected %s but received %s",
errors.ErrIPReceivedMismatch, ip, newIP)
}
return newIP, nil
}