mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-04-05 08:54:09 -04:00
185 lines
4.6 KiB
Go
185 lines
4.6 KiB
Go
package servercow
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"net/netip"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"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/headers"
|
|
"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
|
|
username string
|
|
password string
|
|
useProviderIP bool
|
|
ttl uint32
|
|
}
|
|
|
|
func New(data json.RawMessage, domain, host string, ipVersion ipversion.IPVersion, ipv6Suffix netip.Prefix) (
|
|
p *Provider, err error) {
|
|
extraSettings := struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
TTL uint32 `json:"ttl"`
|
|
UseProviderIP bool `json:"provider_ip"`
|
|
}{}
|
|
err = json.Unmarshal(data, &extraSettings)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
p = &Provider{
|
|
domain: domain,
|
|
host: host,
|
|
ipVersion: ipVersion,
|
|
ipv6Suffix: ipv6Suffix,
|
|
username: extraSettings.Username,
|
|
password: extraSettings.Password,
|
|
useProviderIP: extraSettings.UseProviderIP,
|
|
ttl: extraSettings.TTL,
|
|
}
|
|
err = p.isValid()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return p, nil
|
|
}
|
|
|
|
func (p *Provider) isValid() error {
|
|
switch {
|
|
case p.username == "":
|
|
return fmt.Errorf("%w", errors.ErrUsernameNotSet)
|
|
case p.password == "":
|
|
return fmt.Errorf("%w", errors.ErrPasswordNotSet)
|
|
case strings.Contains(p.host, "*"):
|
|
return fmt.Errorf("%w", errors.ErrHostWildcard)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (p *Provider) String() string {
|
|
return utils.ToString("servercow.de", p.host, constants.Servercow, 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://servercow.de\">Servercow</a>",
|
|
IPVersion: p.ipVersion.String(),
|
|
}
|
|
}
|
|
|
|
func (p *Provider) Update(ctx context.Context, client *http.Client, ip netip.Addr) (newIP netip.Addr, err error) {
|
|
recordType := constants.A
|
|
if ip.Is6() {
|
|
recordType = constants.AAAA
|
|
}
|
|
u := url.URL{
|
|
Scheme: "https",
|
|
Host: "api.servercow.de",
|
|
Path: "/dns/v1/domains/" + p.domain,
|
|
}
|
|
|
|
updateHost := p.host
|
|
if updateHost == "@" {
|
|
updateHost = ""
|
|
}
|
|
|
|
requestData := struct {
|
|
Type string `json:"type"` // constants.A or constants.AAAA depending on ip address given
|
|
Name string `json:"name"` // DNS record name (only the subdomain part)
|
|
Content string `json:"content"` // ip address
|
|
TTL uint32 `json:"ttl"`
|
|
}{
|
|
Type: recordType,
|
|
Name: updateHost,
|
|
Content: ip.String(),
|
|
TTL: p.ttl,
|
|
}
|
|
|
|
buffer := bytes.NewBuffer(nil)
|
|
encoder := json.NewEncoder(buffer)
|
|
err = encoder.Encode(requestData)
|
|
if err != nil {
|
|
return netip.Addr{}, fmt.Errorf("json encoding request data: %w", err)
|
|
}
|
|
|
|
request, err := http.NewRequestWithContext(ctx, http.MethodPost, u.String(), buffer)
|
|
if err != nil {
|
|
return netip.Addr{}, fmt.Errorf("creating http request: %w", err)
|
|
}
|
|
headers.SetContentType(request, "application/json")
|
|
headers.SetAccept(request, "application/json")
|
|
headers.SetXAuthUsername(request, p.username)
|
|
headers.SetXAuthPassword(request, p.password)
|
|
headers.SetUserAgent(request)
|
|
|
|
response, err := client.Do(request)
|
|
if err != nil {
|
|
return netip.Addr{}, fmt.Errorf("doing http request: %w", err)
|
|
}
|
|
defer response.Body.Close()
|
|
|
|
if response.StatusCode > http.StatusUnsupportedMediaType {
|
|
return netip.Addr{}, fmt.Errorf("%w: %d: %s",
|
|
errors.ErrHTTPStatusNotValid, response.StatusCode, utils.BodyToSingleLine(response.Body))
|
|
}
|
|
|
|
decoder := json.NewDecoder(response.Body)
|
|
|
|
var parsedJSON struct {
|
|
Message string `json:"message"`
|
|
Error string `json:"error"`
|
|
}
|
|
|
|
err = decoder.Decode(&parsedJSON)
|
|
if err != nil {
|
|
return netip.Addr{}, fmt.Errorf("json decoding response body: %w", err)
|
|
}
|
|
|
|
if parsedJSON.Message != "ok" {
|
|
return netip.Addr{}, fmt.Errorf("%w: %s", errors.ErrUnsuccessful, parsedJSON.Error)
|
|
}
|
|
|
|
return ip, nil
|
|
}
|