2021-08-21 06:42:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
## change to "bin/sh" when necessary
|
2020-11-09 12:54:09 +00:00
|
|
|
|
2022-03-31 05:15:08 +00:00
|
|
|
auth_email="" # The email used to login 'https://dash.cloudflare.com'
|
|
|
|
auth_method="token" # Set to "global" for Global API Key or "token" for Scoped API Token
|
|
|
|
auth_key="" # Your API Token or Global API Key
|
|
|
|
zone_identifier="" # Can be found in the "Overview" tab of your domain
|
|
|
|
record_name="" # Which record you want to be synced
|
|
|
|
ttl="3600" # Set the DNS TTL (seconds)
|
|
|
|
proxy="false" # Set the proxy to true or false
|
|
|
|
sitename="" # Title of site "Example Site"
|
|
|
|
slackchannel="" # Slack Channel #example
|
|
|
|
slackuri="" # URI for Slack WebHook "https://hooks.slack.com/services/xxxxx"
|
|
|
|
discorduri="" # URI for Discord WebHook "https://discordapp.com/api/webhooks/xxxxx"
|
2022-10-20 00:54:09 +00:00
|
|
|
telegramtoken="" # Telegram bot API Token
|
|
|
|
telegramchatid="" # Telegram Chat ID
|
2021-07-19 00:49:53 +00:00
|
|
|
|
2020-11-09 12:54:09 +00:00
|
|
|
###########################################
|
2021-07-19 04:58:07 +00:00
|
|
|
## Check if we have a public IP
|
2020-11-09 12:54:09 +00:00
|
|
|
###########################################
|
2022-02-27 12:44:48 +00:00
|
|
|
ipv4_regex='([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\.([01]?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])'
|
|
|
|
ip=$(curl -s -4 https://cloudflare.com/cdn-cgi/trace | grep -E '^ip'); ret=$?
|
|
|
|
if [[ ! $ret == 0 ]]; then # In the case that cloudflare failed to return an ip.
|
|
|
|
# Attempt to get the ip from other websites.
|
|
|
|
ip=$(curl -s https://api.ipify.org || curl -s https://ipv4.icanhazip.com)
|
2022-02-26 10:10:26 +00:00
|
|
|
else
|
2022-02-27 12:44:48 +00:00
|
|
|
# Extract just the ip from the ip line from cloudflare.
|
|
|
|
ip=$(echo $ip | sed -E "s/^ip=($ipv4_regex)$/\1/")
|
2022-02-13 16:11:22 +00:00
|
|
|
fi
|
2021-07-19 12:57:52 +00:00
|
|
|
|
2022-02-27 12:44:48 +00:00
|
|
|
# Use regex to check for proper IPv4 format.
|
2022-03-12 11:45:16 +00:00
|
|
|
if [[ ! $ip =~ ^$ipv4_regex$ ]]; then
|
2022-02-27 12:44:48 +00:00
|
|
|
logger -s "DDNS Updater: Failed to find a valid IP."
|
|
|
|
exit 2
|
2020-11-09 12:54:09 +00:00
|
|
|
fi
|
|
|
|
|
2021-07-19 04:58:07 +00:00
|
|
|
###########################################
|
|
|
|
## Check and set the proper auth header
|
|
|
|
###########################################
|
2022-02-13 16:11:22 +00:00
|
|
|
if [[ "${auth_method}" == "global" ]]; then
|
2021-07-19 12:18:24 +00:00
|
|
|
auth_header="X-Auth-Key:"
|
2021-07-19 04:58:07 +00:00
|
|
|
else
|
|
|
|
auth_header="Authorization: Bearer"
|
|
|
|
fi
|
|
|
|
|
2020-11-09 12:54:09 +00:00
|
|
|
###########################################
|
|
|
|
## Seek for the A record
|
|
|
|
###########################################
|
2021-07-19 04:58:07 +00:00
|
|
|
|
2021-07-19 20:26:13 +00:00
|
|
|
logger "DDNS Updater: Check Initiated"
|
2021-10-20 17:38:10 +00:00
|
|
|
record=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$zone_identifier/dns_records?type=A&name=$record_name" \
|
|
|
|
-H "X-Auth-Email: $auth_email" \
|
|
|
|
-H "$auth_header $auth_key" \
|
|
|
|
-H "Content-Type: application/json")
|
2020-11-09 12:54:09 +00:00
|
|
|
|
|
|
|
###########################################
|
2021-07-19 04:58:07 +00:00
|
|
|
## Check if the domain has an A record
|
2020-11-09 12:54:09 +00:00
|
|
|
###########################################
|
|
|
|
if [[ $record == *"\"count\":0"* ]]; then
|
2021-07-21 13:51:41 +00:00
|
|
|
logger -s "DDNS Updater: Record does not exist, perhaps create one first? (${ip} for ${record_name})"
|
2020-11-09 12:54:09 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
###########################################
|
2021-07-19 04:58:07 +00:00
|
|
|
## Get existing IP
|
2020-11-09 12:54:09 +00:00
|
|
|
###########################################
|
2021-08-12 12:26:15 +00:00
|
|
|
old_ip=$(echo "$record" | sed -E 's/.*"content":"(([0-9]{1,3}\.){3}[0-9]{1,3})".*/\1/')
|
2020-11-09 12:54:09 +00:00
|
|
|
# Compare if they're the same
|
|
|
|
if [[ $ip == $old_ip ]]; then
|
2021-07-19 20:26:13 +00:00
|
|
|
logger "DDNS Updater: IP ($ip) for ${record_name} has not changed."
|
2020-11-09 12:54:09 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
###########################################
|
|
|
|
## Set the record identifier from result
|
|
|
|
###########################################
|
2021-08-12 12:26:15 +00:00
|
|
|
record_identifier=$(echo "$record" | sed -E 's/.*"id":"(\w+)".*/\1/')
|
2020-11-09 12:54:09 +00:00
|
|
|
|
|
|
|
###########################################
|
|
|
|
## Change the IP@Cloudflare using the API
|
|
|
|
###########################################
|
2021-10-20 17:38:10 +00:00
|
|
|
update=$(curl -s -X PATCH "https://api.cloudflare.com/client/v4/zones/$zone_identifier/dns_records/$record_identifier" \
|
2020-11-09 12:54:09 +00:00
|
|
|
-H "X-Auth-Email: $auth_email" \
|
2021-07-19 04:58:07 +00:00
|
|
|
-H "$auth_header $auth_key" \
|
2020-11-09 12:54:09 +00:00
|
|
|
-H "Content-Type: application/json" \
|
2022-02-26 10:10:26 +00:00
|
|
|
--data "{\"type\":\"A\",\"name\":\"$record_name\",\"content\":\"$ip\",\"ttl\":\"$ttl\",\"proxied\":${proxy}}")
|
2020-11-09 12:54:09 +00:00
|
|
|
|
|
|
|
###########################################
|
|
|
|
## Report the status
|
|
|
|
###########################################
|
|
|
|
case "$update" in
|
|
|
|
*"\"success\":false"*)
|
2022-02-13 16:11:22 +00:00
|
|
|
echo -e "DDNS Updater: $ip $record_name DDNS failed for $record_identifier ($ip). DUMPING RESULTS:\n$update" | logger -s
|
2021-11-06 09:41:41 +00:00
|
|
|
if [[ $slackuri != "" ]]; then
|
|
|
|
curl -L -X POST $slackuri \
|
|
|
|
--data-raw '{
|
|
|
|
"channel": "'$slackchannel'",
|
2022-03-31 05:15:08 +00:00
|
|
|
"text" : "'"$sitename"' DDNS Update Failed: '$record_name': '$record_identifier' ('$ip')."
|
2021-11-06 09:41:41 +00:00
|
|
|
}'
|
|
|
|
fi
|
2022-03-31 05:15:08 +00:00
|
|
|
if [[ $discorduri != "" ]]; then
|
|
|
|
curl -i -H "Accept: application/json" -H "Content-Type:application/json" -X POST \
|
|
|
|
--data-raw '{
|
|
|
|
"content" : "'"$sitename"' DDNS Update Failed: '$record_name': '$record_identifier' ('$ip')."
|
|
|
|
}' $discorduri
|
|
|
|
fi
|
2022-10-20 00:54:09 +00:00
|
|
|
if [[ $telegramtoken != "" ]] && [[ $telegramchatid != "" ]]; then
|
|
|
|
curl -H 'Content-Type: application/json' -X POST \
|
|
|
|
--data-raw '{
|
2022-10-20 01:26:08 +00:00
|
|
|
"chat_id": "'$telegramchatid'", "text": "'"$sitename"' DDNS Update Failed: '$record_name': '$record_identifier' ('$ip')."
|
2022-10-20 00:54:09 +00:00
|
|
|
}' https://api.telegram.org/bot$telegramtoken/sendMessage
|
|
|
|
fi
|
2020-11-09 12:54:09 +00:00
|
|
|
exit 1;;
|
|
|
|
*)
|
2021-07-19 20:26:13 +00:00
|
|
|
logger "DDNS Updater: $ip $record_name DDNS updated."
|
2021-11-06 09:41:41 +00:00
|
|
|
if [[ $slackuri != "" ]]; then
|
|
|
|
curl -L -X POST $slackuri \
|
|
|
|
--data-raw '{
|
|
|
|
"channel": "'$slackchannel'",
|
2022-03-31 05:15:08 +00:00
|
|
|
"text" : "'"$sitename"' Updated: '$record_name''"'"'s'""' new IP Address is '$ip'"
|
2021-11-06 09:41:41 +00:00
|
|
|
}'
|
|
|
|
fi
|
2022-03-31 05:15:08 +00:00
|
|
|
if [[ $discorduri != "" ]]; then
|
|
|
|
curl -i -H "Accept: application/json" -H "Content-Type:application/json" -X POST \
|
|
|
|
--data-raw '{
|
|
|
|
"content" : "'"$sitename"' Updated: '$record_name''"'"'s'""' new IP Address is '$ip'"
|
|
|
|
}' $discorduri
|
|
|
|
fi
|
2022-10-20 00:54:09 +00:00
|
|
|
if [[ $telegramtoken != "" ]] && [[ $telegramchatid != "" ]]; then
|
|
|
|
curl -H 'Content-Type: application/json' -X POST \
|
|
|
|
--data-raw '{
|
2022-10-20 01:26:08 +00:00
|
|
|
"chat_id": "'$telegramchatid'", "text": "'"$sitename"' Updated: '$record_name''"'"'s'""' new IP Address is '$ip'"
|
2022-10-20 00:54:09 +00:00
|
|
|
}' https://api.telegram.org/bot$telegramtoken/sendMessage
|
|
|
|
fi
|
2020-11-09 12:54:09 +00:00
|
|
|
exit 0;;
|
2021-07-19 04:58:07 +00:00
|
|
|
esac
|