-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.go
103 lines (82 loc) · 1.91 KB
/
task.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package main
import (
"errors"
"io/ioutil"
"log"
"net/http"
cloudflare "github.com/cloudflare/cloudflare-go"
)
const (
publicIPApi = "https://api.ipify.org"
)
var errNotOk = errors.New("status code is not 200")
var errRecordNotFound = errors.New("dns record not found")
func task() {
config, err := loadConfigFromEnv()
if err != nil {
log.Printf("Could not run task.\n%s\n", err.Error())
return
}
err = executeTask(config)
if err != nil {
log.Printf("Could not run task.\n%s\n", err.Error())
}
}
func executeTask(config config) error {
publicIP, err := getPublicIP()
if err != nil {
return err
}
log.Printf("Current public IP is %s\n", publicIP)
api, err := cloudflare.NewWithAPIToken(config.APIKey)
if err != nil {
return err
}
zoneID, err := api.ZoneIDByName(config.Domain)
if err != nil {
return err
}
records, err := api.DNSRecords(zoneID, cloudflare.DNSRecord{})
if err != nil {
return err
}
record, err := getDNSRecord(records, config.Domain, config.DNSRecordType)
if err != nil {
return err
}
log.Printf("Current DNS record is %s\n", record.Content)
if record.Content == publicIP {
log.Printf("No need to change.\n")
return nil
}
record.Content = publicIP
err = api.UpdateDNSRecord(zoneID, record.ID, record)
if err != nil {
return err
}
log.Printf("DNS record updated.\n")
return nil
}
func getPublicIP() (string, error) {
res, err := http.Get(publicIPApi)
if err != nil {
return "", err
}
defer res.Body.Close()
if res.StatusCode != 200 {
return "", errNotOk
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return "", err
}
return string(body), nil
}
func getDNSRecord(records []cloudflare.DNSRecord, domain string, dnsRecordType string) (cloudflare.DNSRecord, error) {
for _, record := range records {
if record.Name == domain && record.Type == dnsRecordType {
return record, nil
}
}
return cloudflare.DNSRecord{}, errRecordNotFound
}