0568e81701
This adds an implementation of node discovery via DNS TXT records to the go-ethereum library. The implementation doesn't match EIP-1459 exactly, the main difference being that this implementation uses separate merkle trees for tree links and ENRs. The EIP will be updated to match p2p/dnsdisc. To maintain DNS trees, cmd/devp2p provides a frontend for the p2p/dnsdisc library. The new 'dns' subcommands can be used to create, sign and deploy DNS discovery trees. |
||
---|---|---|
.. | ||
access_application.go | ||
access_identity_provider.go | ||
access_organization.go | ||
access_policy.go | ||
access_service_tokens.go | ||
account_members.go | ||
account_roles.go | ||
accounts.go | ||
argo.go | ||
auditlogs.go | ||
cloudflare.go | ||
CODE_OF_CONDUCT.md | ||
custom_hostname.go | ||
custom_pages.go | ||
dns.go | ||
duration.go | ||
errors.go | ||
filter.go | ||
firewall_rules.go | ||
firewall.go | ||
go.mod | ||
go.sum | ||
ips.go | ||
keyless.go | ||
LICENSE | ||
load_balancing.go | ||
lockdown.go | ||
logpush.go | ||
options.go | ||
origin_ca.go | ||
page_rules.go | ||
railgun.go | ||
rate_limiting.go | ||
README.md | ||
registrar.go | ||
renovate.json | ||
spectrum.go | ||
ssl.go | ||
universal_ssl.go | ||
user_agent.go | ||
user.go | ||
virtualdns.go | ||
waf.go | ||
workers_kv.go | ||
workers.go | ||
zone.go |
cloudflare-go
Note
: This library is under active development as we expand it to cover our (expanding!) API. Consider the public API of this package a little unstable as we work towards a v1.0.
A Go library for interacting with Cloudflare's API v4. This library allows you to:
- Manage and automate changes to your DNS records within Cloudflare
- Manage and automate changes to your zones (domains) on Cloudflare, including adding new zones to your account
- List and modify the status of WAF (Web Application Firewall) rules for your zones
- Fetch Cloudflare's IP ranges for automating your firewall whitelisting
A command-line client, flarectl, is also available as part of this project.
Features
The current feature list includes:
- Cache purging
- Cloudflare IPs
- Custom hostnames
- DNS Records
- Firewall (partial)
- Keyless SSL
- Load Balancing
- Logpush Jobs
- Organization Administration
- Origin CA
- Railgun administration
- Rate Limiting
- User Administration (partial)
- Virtual DNS Management
- Web Application Firewall (WAF)
- Zone Lockdown and User-Agent Block rules
- Zones
Pull Requests are welcome, but please open an issue (or comment in an existing issue) to discuss any non-trivial changes before submitting code.
Installation
You need a working Go environment.
go get github.com/cloudflare/cloudflare-go
Getting Started
package main
import (
"fmt"
"log"
"os"
"github.com/cloudflare/cloudflare-go"
)
func main() {
// Construct a new API object
api, err := cloudflare.New(os.Getenv("CF_API_KEY"), os.Getenv("CF_API_EMAIL"))
if err != nil {
log.Fatal(err)
}
// Fetch user details on the account
u, err := api.UserDetails()
if err != nil {
log.Fatal(err)
}
// Print user details
fmt.Println(u)
// Fetch the zone ID
id, err := api.ZoneIDByName("example.com") // Assuming example.com exists in your Cloudflare account already
if err != nil {
log.Fatal(err)
}
// Fetch zone details
zone, err := api.ZoneDetails(id)
if err != nil {
log.Fatal(err)
}
// Print zone details
fmt.Println(zone)
}
Also refer to the API documentation for how to use this package in-depth.
License
BSD licensed. See the LICENSE file for details.