mirror of
https://github.com/tunix/digitalocean-dyndns
synced 2024-11-16 21:45:25 +00:00
43 lines
1.2 KiB
Bash
Executable file
43 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
api_host="https://api.digitalocean.com/v2"
|
|
sleep_interval=${SLEEP_INTERVAL:-300}
|
|
|
|
die() {
|
|
echo "$1"
|
|
exit 1
|
|
}
|
|
|
|
test -z $DIGITALOCEAN_TOKEN && die "DIGITALOCEAN_TOKEN not set!"
|
|
test -z $DOMAIN && die "DOMAIN not set!"
|
|
test -z $NAME && die "NAME not set!"
|
|
|
|
dns_list="$api_host/domains/$DOMAIN/records"
|
|
|
|
while ( true ); do
|
|
domain_records=$(curl -s -X GET \
|
|
-H "Content-Type: application/json" \
|
|
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
|
|
$dns_list)
|
|
record_id=$(echo $domain_records| jq ".domain_records[] | select(.type == \"A\" and .name == \"$NAME\") | .id")
|
|
|
|
test -z $record_id && die "No record found with given domain name!"
|
|
|
|
ip="$(curl -s ipinfo.io/ip)"
|
|
data="{\"type\": \"A\", \"name\": \"$NAME\", \"data\": \"$ip\"}"
|
|
url="$dns_list/$record_id"
|
|
|
|
if [[ -n $ip ]]; then
|
|
echo "Sending data=$data to url=$url"
|
|
|
|
curl -s -X PUT \
|
|
-H "Content-Type: application/json" \
|
|
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
|
|
-d "$data" \
|
|
"$url" &> /dev/null
|
|
else
|
|
echo "IP wasn't retrieved within allowed interval. Will try $sleep_interval seconds later.."
|
|
fi
|
|
|
|
sleep $sleep_interval
|
|
done
|