Compare commits

..

No commits in common. "f5730d26918fe42d7283277ad2db203864631720" and "a76eff881449c19ed036d7f5bab460dbc9edc812" have entirely different histories.

2 changed files with 6 additions and 21 deletions

View File

@ -5,10 +5,6 @@ CLI tool to manage cloudflare DNS records
### Using go ### Using go
```bash ```bash
go install go.balki.me/cloudflare-dns-cli@latest go install go.balki.me/cloudflare-dns-cli@latest
# Or run directly
go run go.balki.me/cloudflare-dns-cli@latest
``` ```
### Using docker ### Using docker
```bash ```bash
@ -18,7 +14,7 @@ CLI tool to manage cloudflare DNS records
## Features ## Features
1. Add/Modify `A`, `AAAA`, `CNAME`, `MX` records 1. Add/Modify `A`, `AAAA`, `CNAME` records
2. List/Delete records 2. List/Delete records
3. Save all records in JSON format 3. Save all records in JSON format
@ -34,7 +30,6 @@ Usage of cloudflare-dns-cli:
Domain name, e.g. example.com. env var: DOMAIN Domain name, e.g. example.com. env var: DOMAIN
-i value -i value
IP address (default 127.0.0.1) IP address (default 127.0.0.1)
-m Set mx record with cname value
-o string -o string
Path to save all records as json, e.g. ./records.json Path to save all records as json, e.g. ./records.json
-s string -s string

20
main.go
View File

@ -23,7 +23,6 @@ var (
sub = "<UNSET>" sub = "<UNSET>"
path string path string
del = false del = false
mx = false
) )
func genRecord() (libdns.Record, error) { func genRecord() (libdns.Record, error) {
@ -31,19 +30,11 @@ func genRecord() (libdns.Record, error) {
ipv6 := ip.To16() ipv6 := ip.To16()
switch { switch {
case cname != "": case cname != "":
if mx { return libdns.Record{
return libdns.Record{ Type: "CNAME",
Type: "MX", Name: sub,
Name: sub, Value: cname,
Value: cname, }, nil
}, nil
} else {
return libdns.Record{
Type: "CNAME",
Name: sub,
Value: cname,
}, nil
}
case ipv4 != nil: case ipv4 != nil:
return libdns.Record{ return libdns.Record{
Type: "A", Type: "A",
@ -110,7 +101,6 @@ func main() {
flag.StringVar(&cname, "c", cname, "CNAME target") flag.StringVar(&cname, "c", cname, "CNAME target")
flag.StringVar(&path, "o", path, "Path to save all records as json, e.g. ./records.json") flag.StringVar(&path, "o", path, "Path to save all records as json, e.g. ./records.json")
flag.BoolVar(&del, "x", del, "Delete records of subdomain") flag.BoolVar(&del, "x", del, "Delete records of subdomain")
flag.BoolVar(&mx, "m", mx, "Set mx record with cname value")
flag.Parse() flag.Parse()
provider := cloudflare.Provider{APIToken: token} provider := cloudflare.Provider{APIToken: token}