Compare commits
No commits in common. "8a0362a6e1cb853326b0b94b44d863e8075d71e5" and "8c24c6e6254c18ded41cce52419b2701a1357b3d" have entirely different histories.
8a0362a6e1
...
8c24c6e625
98
cfddns.sh
98
cfddns.sh
@ -82,8 +82,8 @@ quit none
|
||||
function quit {
|
||||
if [ -z "$1" ]; then
|
||||
# exit cleanly
|
||||
echo -e "${bold}${note}${stamp} -- Script completed --\${normal}" \
|
||||
>> "$logFile"
|
||||
echo -e "\e[1;32m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"--[SUCCESS] Script completed --\e[0m" >> $logFile
|
||||
exit 0
|
||||
elif [ "$1" = "none" ]; then
|
||||
if [ -z "$2" ]; then
|
||||
@ -96,14 +96,15 @@ function quit {
|
||||
elif [ "$1" = "199" ]; then
|
||||
# list DNS entries that were not updated
|
||||
for failedName in "${failedDNS[@]}"; do
|
||||
echo -e "${bold}${err}${stamp}" \
|
||||
"-- [ERROR] $failedName was NOT updated --${normal}" >> "$logFile"
|
||||
echo -e "\e[1;31m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"-- [ERROR] $failedName was NOT updated --\e[0m" >> $logFile
|
||||
done
|
||||
exit "$1"
|
||||
else
|
||||
# notify use that error has occurred and provide exit code
|
||||
echo -e "${bold}${err}${stamp}" \
|
||||
"-- [ERROR] ${errorExplain[$1]} (code: $1) --${normal}" >> "$logFile"
|
||||
echo -e "\e[1;31m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"-- [ERROR] Script exited with code $1 --" >> $logFile
|
||||
echo -e "\e[0;31m${errorExplain[$1]}\e[0m" >> $logFile
|
||||
exit "$1"
|
||||
fi
|
||||
}
|
||||
@ -126,20 +127,6 @@ ip4=1
|
||||
ip6=0
|
||||
|
||||
|
||||
### define script variables
|
||||
# timestamp
|
||||
stamp="${stamp}"
|
||||
# formatting
|
||||
normal="\e[0m"
|
||||
bold="\e[1m"
|
||||
default="\e[39m"
|
||||
ok="\e[32m"
|
||||
err="\e[31m"
|
||||
info="\e[96m"
|
||||
lit="\e[93m"
|
||||
note="\e[35m"
|
||||
|
||||
|
||||
## define error code explainations
|
||||
errorExplain[1]="Missing or invalid parameters on script invocation."
|
||||
errorExplain[2]="curl is required to access CloudFlare API. Please install curl. (apt-get install curl on debian/ubuntu)."
|
||||
@ -206,8 +193,8 @@ while getopts ':f:r:i:46hxl:' PARAMS; do
|
||||
done
|
||||
|
||||
# Log beginning of script
|
||||
echo -e "${bold}${note}${stamp} -- Start CloudFlare" \
|
||||
"DDNS script execution --${normal}" >> "$logFile"
|
||||
echo -e "\e[1;32m[`date +%Y-%m-%d` `date +%H:%M:%S`] -- Start CloudFlare" \
|
||||
"DDNS script execution --\e[0m" >> $logFile
|
||||
|
||||
# Check validity of parameters
|
||||
if [ -z "$accountFile" ] || [[ $accountFile == -* ]]; then
|
||||
@ -221,17 +208,17 @@ fi
|
||||
# Check if curl is installed
|
||||
command -v curl >> /dev/null
|
||||
curlResult=$(echo "$?")
|
||||
if [ "$curlResult" -ne 0 ]; then
|
||||
if [ $curlResult -ne 0 ]; then
|
||||
quit 2
|
||||
fi
|
||||
|
||||
# Log operating mode
|
||||
if [ $ip4 -eq 1 ]; then
|
||||
echo -e "${info}${stamp} Script running in" \
|
||||
"IP4 mode${normal}" >> "$logFile"
|
||||
echo -e "\e[1;36m[`date +%Y-%m-%d` `date +%H:%M:%S`] Script running in" \
|
||||
"IP4 mode\e[0m" >> $logFile
|
||||
elif [ $ip6 -eq 1 ]; then
|
||||
echo -e "${info}${stamp} Script running in" \
|
||||
"IP6 mode${normal}" >> "$logFile"
|
||||
echo -e "\e[1;36m [`date +%Y-%m-%d` `date +%H:%M:%S`] Script running in" \
|
||||
"IP6 mode\e[0m" >> $logFile
|
||||
fi
|
||||
|
||||
|
||||
@ -240,9 +227,9 @@ mapfile -t cfDetails < "$accountFile"
|
||||
|
||||
## Get current IP address, if not provided in parameters
|
||||
if [ -z "$ipAddress" ]; then
|
||||
echo -e "${info}${stamp} No IP address for" \
|
||||
"update provided. Detecting this machine's IP address...${normal}" \
|
||||
>> "$logFile"
|
||||
echo -e "\e[1;36m[`date +%Y-%m-%d` `date +%H:%M:%S`] No IP address for" \
|
||||
"update provided. Detecting this machine's IP address..." \
|
||||
>> $logFile
|
||||
if [ $ip4 -eq 1 ]; then
|
||||
ipAddress=$(curl -s http://ipv4.icanhazip.com)
|
||||
elif [ $ip6 -eq 1 ]; then
|
||||
@ -254,21 +241,23 @@ if [ -z "$ipAddress" ]; then
|
||||
quit 201
|
||||
fi
|
||||
fi
|
||||
echo -e "${info}${stamp} [INFO] Using IP address:" \
|
||||
"$ipAddress" >> "$logFile"
|
||||
echo -e "\e[1;36m[`date +%Y-%m-%d` `date +%H:%M:%S`] Using IP address:" \
|
||||
"$ipAddress" >> $logFile
|
||||
|
||||
|
||||
## Check if desired record(s) exist at CloudFlare
|
||||
echo -e "\e[0m[`date +%Y-%m-%d` `date +%H:%M:%S`] Performing CloudFlare" \
|
||||
"lookup on specified DNS records...\e[0m" >> $logFile
|
||||
# perform checks on A or AAAA records based on invocation options
|
||||
if [ $ip4 -eq 1 ]; then
|
||||
echo -e "${normal}${stamp} (IP4 lookup: ${dnsRecords[*]})" \
|
||||
>> "$logFile"
|
||||
echo -e "[`date +%Y-%m-%d` `date +%H:%M:%S`] (IP4: ${dnsRecords[*]})" \
|
||||
>> $logFile
|
||||
for cfLookup in "${dnsRecords[@]}"; do
|
||||
cfRecords+=("$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/${cfDetails[2]}/dns_records?name=$cfLookup&type=A" -H "X-Auth-Email: ${cfDetails[0]}" -H "X-Auth-Key: ${cfDetails[1]}" -H "Content-Type: application/json")")
|
||||
done
|
||||
elif [ $ip6 -eq 1 ]; then
|
||||
echo -e "${normal}${stamp} (IP6 lookup: ${dnsRecords[*]})" \
|
||||
>> "$logFile"
|
||||
echo -e "[`date +%Y-%m-%d` `date +%H:%M:%S`] (IP6: ${dnsRecords[*]})" \
|
||||
>> $logFile
|
||||
for cfLookup in "${dnsRecords[@]}"; do
|
||||
cfRecords+=("$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/${cfDetails[2]}/dns_records?name=$cfLookup&type=AAAA" -H "X-Auth-Email: ${cfDetails[0]}" -H "X-Auth-Key: ${cfDetails[1]}" -H "Content-Type: application/json")")
|
||||
done
|
||||
@ -282,9 +271,9 @@ fi
|
||||
for recordIdx in "${!cfRecords[@]}"; do
|
||||
if [[ ${cfRecords[recordIdx]} == *"\"count\":0"* ]]; then
|
||||
# inform user that domain not found in CloudFlare DNS records
|
||||
echo -e "${err}${stamp} -- [INFO]" \
|
||||
echo -e "\e[0;31m[`date +%Y-%m-%d` `date +%H:%M:%S`] ***" \
|
||||
"${dnsRecords[recordIdx]} not found in your" \
|
||||
"CloudFlare DNS records --${normal}" >> "$logFile"
|
||||
"CloudFlare DNS records***\e[0m" >> $logFile
|
||||
# remove the entry from the dnsRecords array
|
||||
unset dnsRecords[$recordIdx]
|
||||
# remove the entry from the records array
|
||||
@ -302,9 +291,9 @@ if [ -z ${dnsRecords} ]; then
|
||||
quit 104
|
||||
else
|
||||
for recordIdx in "${!cfRecords[@]}"; do
|
||||
echo -e "${normal}${stamp} Found" \
|
||||
"${dnsRecords[recordIdx]} (Index: $recordIdx)" \
|
||||
>> "$logFile"
|
||||
echo -e "\e[1;39m[`date +%Y-%m-%d` `date +%H:%M:%S`] Found" \
|
||||
"${dnsRecords[recordIdx]} (Index: $recordIdx):\e[0m" \
|
||||
>> $logFile
|
||||
done
|
||||
fi
|
||||
|
||||
@ -315,23 +304,23 @@ for recordIdx in "${!cfRecords[@]}"; do
|
||||
grep -Po '(?<="content":")[^"]*'))
|
||||
recordID+=($(echo "${cfRecords[recordIdx]}" | \
|
||||
grep -Po '(?<="id":")[^"]*'))
|
||||
echo -e "${normal}${stamp} Index $recordIdx:" \
|
||||
"For record ${lit}${dnsRecords[recordIdx]}${normal}" \
|
||||
echo -e "\e[0m[`date +%Y-%m-%d` `date +%H:%M:%S`] Index $recordIdx:" \
|
||||
"For record ${dnsRecords[recordIdx]}" \
|
||||
"with ID: ${recordID[recordIdx]}" \
|
||||
"the current IP is ${lit}${currentIP[recordIdx]}" \
|
||||
"${normal}" >> "$logFile"
|
||||
"the current IP is \e[1;35m ${currentIP[recordIdx]}" \
|
||||
"\e[0m" >> $logFile
|
||||
done
|
||||
|
||||
## Check whether new IP matches old IP and update if they do not match
|
||||
for recordIdx in "${!currentIP[@]}"; do
|
||||
if [ ${currentIP[recordIdx]} = $ipAddress ]; then
|
||||
echo -e "${bold}${ok}${stamp} -- [STATUS]" \
|
||||
"${dnsRecords[recordIdx]} is up-to-date.${normal}" \
|
||||
>> "$logFile"
|
||||
echo -e "\e[1;32m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"${dnsRecords[recordIdx]} is up-to-date.\e[0m" \
|
||||
>> $logFile
|
||||
else
|
||||
echo -e "${lit}${stamp} -- [STATUS]" \
|
||||
"${dnsRecords[recordIdx]} needs updating...${normal}" \
|
||||
>> "$logFile"
|
||||
echo -e "\e[0;31m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"${dnsRecords[recordIdx]} needs updating...\e[0m" \
|
||||
>> $logFile
|
||||
if [ $ip4 -eq 1 ]; then
|
||||
# update record at CloudFlare with new IP
|
||||
update=$(curl -s -X PUT "https://api.cloudflare.com/client/v4/zones/${cfDetails[2]}/dns_records/${recordID[recordIdx]}" -H "X-Auth-Email: ${cfDetails[0]}" -H "X-Auth-Key: ${cfDetails[1]}" -H "Content-Type: application/json" --data "{\"id\":\"${cfDetails[2]}\",\"type\":\"A\",\"proxied\":false,\"name\":\"${dnsRecords[recordIdx]}\",\"content\":\"$ipAddress\"}")
|
||||
@ -341,9 +330,12 @@ for recordIdx in "${!currentIP[@]}"; do
|
||||
fi
|
||||
# check for success code from CloudFlare
|
||||
if [[ $update == *"\"success\":true"* ]]; then
|
||||
echo -e "${bold}${ok}${stamp} -- [SUCCESS]" \
|
||||
"${dnsRecords[recordIdx]} updated.${normal}" >> "$logFile"
|
||||
echo -e "\e[1;32m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"${dnsRecords[recordIdx]} updated.\e[0m" >> $logFile
|
||||
else
|
||||
echo -e "\e[1;31m[`date +%Y-%m-%d` `date +%H:%M:%S`]" \
|
||||
"${dnsRecords[recordIdx]} update failed\e[0m" >> $logFile
|
||||
echo -e "\e[0;39m$update\e[0m" >> $logFile
|
||||
failedDNS+=("${dnsRecords[recordIdx]}")
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user