1
0
Fork 0
mirror of https://github.com/tunix/digitalocean-dyndns synced 2024-05-18 13:43:37 +00:00
digitalocean-dyndns/dyndns.sh

82 lines
2.5 KiB
Bash
Raw Normal View History

2020-12-13 14:55:26 +00:00
#!/bin/bash
2016-01-23 16:47:35 +00:00
api_host="https://api.digitalocean.com/v2"
sleep_interval=${SLEEP_INTERVAL:-300}
services=(
"ifconfig.co"
"ipinfo.io/ip"
"ifconfig.me"
)
2016-01-23 16:47:35 +00:00
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"?per_page=200")
for service in ${services[@]}; do
echo "Trying with $service..."
ip="$(curl -s $service | grep '[0-9]\{1,3\}\(\.[0-9]\{1,3\}\)\{3\}')"
test -n "$ip" && break
done
echo "Found IP address $ip"
2016-01-23 16:47:35 +00:00
if [[ -n $ip ]]; then
2021-03-17 07:17:29 +00:00
# disable glob expansion
set -f
2020-01-30 13:38:37 +00:00
for sub in ${NAME//;/ }; do
record_id=$(echo $domain_records| jq ".domain_records[] | select(.type == \"A\" and .name == \"$sub\") | .id")
record_data=$(echo $domain_records| jq -r ".domain_records[] | select(.type == \"A\" and .name == \"$sub\") | .data")
2021-03-17 07:17:29 +00:00
# re-enable glob expansion
set +f
2021-03-20 19:37:31 +00:00
data="{\"type\": \"A\", \"name\": \"$sub\", \"data\": \"$ip\"}"
url="$dns_list/$record_id"
2021-03-20 19:37:31 +00:00
if [[ -z $record_id ]]; then
echo "No record found with '$sub' domain name. Creating record, sending data=$data to url=$url"
2021-03-23 22:03:31 +00:00
2021-03-20 19:37:31 +00:00
new_record=$(curl -s -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
-d "$data" \
"$url")
2021-03-23 22:03:31 +00:00
2021-03-20 19:37:31 +00:00
record_data=$(echo $new_record| jq -r ".data")
fi
2020-01-30 13:38:37 +00:00
if [[ "$ip" != "$record_data" ]]; then
echo "existing DNS record address ($record_data) doesn't match current IP ($ip), 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
2020-12-14 10:00:50 +00:00
echo "existing DNS record address ($record_data) did not need updating"
2020-01-30 13:38:37 +00:00
fi
done
2016-01-23 16:47:35 +00:00
else
echo "IP wasn't retrieved within allowed interval. Will try $sleep_interval seconds later.."
fi
sleep $sleep_interval
done