54 lines
1.4 KiB
Go
54 lines
1.4 KiB
Go
|
package godaddy
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"io"
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
// DNSRecord a DNS record
|
||
|
type DNSRecord struct {
|
||
|
Type string `json:"type"`
|
||
|
Name string `json:"name"`
|
||
|
Data string `json:"data"`
|
||
|
Priority int `json:"priority,omitempty"`
|
||
|
TTL int `json:"ttl,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (d *DNSProvider) updateRecords(records []DNSRecord, domainZone string, recordName string) error {
|
||
|
body, err := json.Marshal(records)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
var resp *http.Response
|
||
|
resp, err = d.makeRequest(http.MethodPut, fmt.Sprintf("/v1/domains/%s/records/TXT/%s", domainZone, recordName), bytes.NewReader(body))
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
defer resp.Body.Close()
|
||
|
|
||
|
if resp.StatusCode != http.StatusOK {
|
||
|
bodyBytes, _ := ioutil.ReadAll(resp.Body)
|
||
|
return fmt.Errorf("could not create record %v; Status: %v; Body: %s", string(body), resp.StatusCode, string(bodyBytes))
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (d *DNSProvider) makeRequest(method, uri string, body io.Reader) (*http.Response, error) {
|
||
|
req, err := http.NewRequest(method, fmt.Sprintf("%s%s", defaultBaseURL, uri), body)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
req.Header.Set("Accept", "application/json")
|
||
|
req.Header.Set("Content-Type", "application/json")
|
||
|
req.Header.Set("Authorization", fmt.Sprintf("sso-key %s:%s", d.config.APIKey, d.config.APISecret))
|
||
|
|
||
|
return d.config.HTTPClient.Do(req)
|
||
|
}
|