freedombone-freedns 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # freedns update command for use in cron or a daemon
  12. # License
  13. # =======
  14. #
  15. # Copyright (C) 2016 Bob Mottram <bob@freedombone.net>
  16. #
  17. # This program is free software: you can redistribute it and/or modify
  18. # it under the terms of the GNU Affero General Public License as published by
  19. # the Free Software Foundation, either version 3 of the License, or
  20. # (at your option) any later version.
  21. #
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. # GNU Affero General Public License for more details.
  26. #
  27. # You should have received a copy of the GNU Affero General Public License
  28. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  29. PROJECT_NAME='freedombone'
  30. export TEXTDOMAIN=${PROJECT_NAME}-freedns
  31. export TEXTDOMAINDIR="/usr/share/locale"
  32. CONFIGURATION_FILE=$HOME/${PROJECT_NAME}.cfg
  33. FREEDNS_WGET='wget -q --read-timeout=0.0 --waitretry=5 --tries=4 https://freedns.afraid.org/dynamic/update.php?'
  34. if [ ! -f $CONFIGURATION_FILE ]; then
  35. exit 0
  36. fi
  37. function item_in_array {
  38. local e
  39. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  40. return 1
  41. }
  42. detected_codes=()
  43. codelines=($(grep "_CODE=" $CONFIGURATION_FILE | uniq))
  44. for line in "${codelines[@]}"
  45. do
  46. code=$(echo "$line" | awk -F '=' '{print $2}')
  47. item_in_array "$code" "${detected_codes[@]}"
  48. if [[ $? != 0 ]]; then
  49. detected_codes+=("$code")
  50. fi
  51. done
  52. if [ ! -d $HOME/.freedns-update ]; then
  53. mkdir $HOME/.freedns-update
  54. fi
  55. cd $HOME/.freedns-update
  56. for code in "${detected_codes[@]}"
  57. do
  58. $FREEDNS_WGET${code}
  59. done
  60. exit 0