You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

119 lines
4.0 KiB

5 years ago
5 years ago
  1. #!/usr/bin/env sh
  2. #Author StefanAbl
  3. #Usage specify a private keyfile to use with dynv6 'export KEY="path/to/keyfile"'
  4. #if no keyfile is specified, you will be asked if you want to create one in /home/$USER/.ssh/dynv6 and /home/$USER/.ssh/dynv6.pub
  5. ######## Public functions #####################
  6. # Please Read this guide first: https://github.com/Neilpang/acme.sh/wiki/DNS-API-Dev-Guide
  7. #Usage: dns_myapi_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
  8. dns_dynv6_add() {
  9. fulldomain=$1
  10. txtvalue=$2
  11. _info "Using dynv6 api"
  12. _debug fulldomain "$fulldomain"
  13. _debug txtvalue "$txtvalue"
  14. _get_keyfile
  15. _info "using keyfile $dynv6_keyfile"
  16. _your_hosts="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts)"
  17. <<<<<<< HEAD
  18. =======
  19. >>>>>>> first attempt to make travis happy
  20. if ! _get_domain "$fulldomain" "$_your_hosts"; then
  21. _err "Host not found on your account"
  22. return 1
  23. fi
  24. _debug "found host on your account"
  25. returnval="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts \""$_host"\" records set \""$_record"\" txt data \""$txtvalue"\")"
  26. _debug "Dynv6 returend this after record was added: $returnval"
  27. if _contains "$returnval" "created"; then
  28. return 0
  29. elif _contains "$returnval" "updated"; then
  30. return 0
  31. else
  32. _err "Something went wrong! it does not seem like the record was added succesfully"
  33. return 1
  34. fi
  35. return 1
  36. }
  37. #Usage: fulldomain txtvalue
  38. #Remove the txt record after validation.
  39. dns_dynv6_rm() {
  40. fulldomain=$1
  41. txtvalue=$2
  42. _info "Using dynv6 api"
  43. _debug fulldomain "$fulldomain"
  44. _debug txtvalue "$txtvalue"
  45. _get_keyfile
  46. _info "using keyfile $dynv6_keyfile"
  47. _your_hosts="$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts)"
  48. if ! _get_domain "$fulldomain" "$_your_hosts"; then
  49. _err "Host not found on your account"
  50. return 1
  51. fi
  52. _debug "found host on your account"
  53. _info "$(ssh -i "$dynv6_keyfile" api@dynv6.com hosts "\"$_host\"" records del "\"$_record\"" txt)"
  54. return 0
  55. }
  56. #################### Private functions below ##################################
  57. #Usage: No Input required
  58. #returns
  59. #dynv6_keyfile the path to the new keyfile that has been generated
  60. _generate_new_key() {
  61. dynv6_keyfile="$(eval echo ~"$USER")/.ssh/dynv6"
  62. _info "Path to key file used: $dynv6_keyfile"
  63. if [ ! -f "$dynv6_keyfile" ] && [ ! -f "$dynv6_keyfile.pub" ]; then
  64. _debug "generating key in $dynv6_keyfile and $dynv6_keyfile.pub"
  65. ssh-keygen -f "$dynv6_keyfile" -t ssh-ed25519 -N ''
  66. else
  67. _err "There is already a file in $dynv6_keyfile or $dynv6_keyfile.pub"
  68. return 1
  69. fi
  70. }
  71. #Usage: _acme-challenge.www.example.dynv6.net "$_your_hosts"
  72. #where _your_hosts is the output of ssh -i ~/.ssh/dynv6.pub api@dynv6.com hosts
  73. #returns
  74. #_host= example.dynv6.net
  75. #_record=_acme-challenge.www
  76. #aborts if not a valid domain
  77. _get_domain() {
  78. #_your_hosts="$(ssh -i ~/.ssh/dynv6.pub api@dynv6.com hosts)"
  79. _full_domain="$1"
  80. _your_hosts="$2"
  81. _your_hosts="$(echo "$_your_hosts" | awk '/\./ {print $1}')"
  82. for l in $_your_hosts; do
  83. #echo "host: $l"
  84. if test "${_full_domain#*$l}" != "$_full_domain"; then
  85. _record="${_full_domain%.$l}"
  86. _host=$l
  87. _debug "The host is $_host and the record $_record"
  88. return 0
  89. fi
  90. done
  91. _err "Either their is no such host on your dnyv6 account or it cannot be accessed with this key"
  92. return 1
  93. }
  94. # Usage: No input required
  95. #returns
  96. #dynv6_keyfile path to the key that will be used
  97. _get_keyfile() {
  98. _debug "get keyfile method called"
  99. dynv6_keyfile="${dynv6_keyfile:-$(_readaccountconf_mutable dynv6_keyfile)}"
  100. _debug "Your key is $dynv6_keyfile"
  101. if [ -z "$dynv6_keyfile" ]; then
  102. if [ -z "$KEY" ]; then
  103. _err "You did not specify a key to use with dynv6"
  104. _info "Creating new dynv6 api key to add to dynv6.com"
  105. _generate_new_key
  106. _info "Please add this key to dynv6.com $(cat "$dynv6_keyfile.pub")"
  107. _info "Hit Enter to contiue"
  108. read -r _
  109. #save the credentials to the account conf file.
  110. else
  111. dynv6_keyfile="$KEY"
  112. fi
  113. _saveaccountconf_mutable dynv6_keyfile "$dynv6_keyfile"
  114. fi
  115. }