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.

180 lines
6.8 KiB

  1. #!/usr/bin/env sh
  2. # Here is a scipt to deploy the cert to your TrueNAS using the REST API.
  3. # https://www.truenas.com/docs/hub/additional-topics/api/rest_api.html
  4. #
  5. # Written by Frank Plass github@f-plass.de
  6. # https://github.com/danb35/deploy-freenas/blob/master/deploy_freenas.py
  7. # Thanks to danb35 for your template!
  8. #
  9. # Following environment variables must be set:
  10. #
  11. # export DEPLOY_TRUENAS_APIKEY="<API_KEY_GENERATED_IN_THE_WEB_UI"
  12. #
  13. # The following environmental variables may be set if you don't like their
  14. # default values:
  15. #
  16. # DEPLOY_TRUENAS_HOSTNAME - defaults to localhost
  17. # DEPLOY_TRUENAS_SCHEME - defaults to http, set alternatively to https
  18. #
  19. #returns 0 means success, otherwise error.
  20. ######## Public functions #####################
  21. #domain keyfile certfile cafile fullchain
  22. truenas_deploy() {
  23. _cdomain="$1"
  24. _ckey="$2"
  25. _ccert="$3"
  26. _cca="$4"
  27. _cfullchain="$5"
  28. _debug _cdomain "$_cdomain"
  29. _debug _ckey "$_ckey"
  30. _debug _ccert "$_ccert"
  31. _debug _cca "$_cca"
  32. _debug _cfullchain "$_cfullchain"
  33. _getdeployconf DEPLOY_TRUENAS_APIKEY
  34. if [ -z "$DEPLOY_TRUENAS_APIKEY" ]; then
  35. _err "TrueNAS Api Key is not found, please define DEPLOY_TRUENAS_APIKEY."
  36. return 1
  37. fi
  38. _secure_debug2 DEPLOY_TRUENAS_APIKEY "$DEPLOY_TRUENAS_APIKEY"
  39. # Optional hostname, scheme for TrueNAS
  40. _getdeployconf DEPLOY_TRUENAS_HOSTNAME
  41. _getdeployconf DEPLOY_TRUENAS_SCHEME
  42. # default values for hostname and scheme
  43. [ -n "${DEPLOY_TRUENAS_HOSTNAME}" ] || DEPLOY_TRUENAS_HOSTNAME="localhost"
  44. [ -n "${DEPLOY_TRUENAS_SCHEME}" ] || DEPLOY_TRUENAS_SCHEME="http"
  45. _debug2 DEPLOY_TRUENAS_HOSTNAME "$DEPLOY_TRUENAS_HOSTNAME"
  46. _debug2 DEPLOY_TRUENAS_SCHEME "$DEPLOY_TRUENAS_SCHEME"
  47. _api_url="$DEPLOY_TRUENAS_SCHEME://$DEPLOY_TRUENAS_HOSTNAME/api/v2.0"
  48. _debug _api_url "$_api_url"
  49. _H1="Authorization: Bearer $DEPLOY_TRUENAS_APIKEY"
  50. _secure_debug3 _H1 "$_H1"
  51. _info "Testing Connection TrueNAS"
  52. _response=$(_get "$_api_url/system/state")
  53. _info "TrueNAS System State: $_response."
  54. if [ -z "$_response" ]; then
  55. _err "Unable to authenticate to $_api_url."
  56. _err 'Check your Connection and set DEPLOY_TRUENAS_HOSTNAME="192.168.178.x".'
  57. _err 'or'
  58. _err 'set DEPLOY_TRUENAS_HOSTNAME="<truenas_dnsname>".'
  59. _err 'Check your Connection and set DEPLOY_TRUENAS_SCHEME="https".'
  60. _err "Check your Api Key."
  61. return 1
  62. fi
  63. _savedeployconf DEPLOY_TRUENAS_APIKEY "$DEPLOY_TRUENAS_APIKEY"
  64. _savedeployconf DEPLOY_TRUENAS_HOSTNAME "$DEPLOY_TRUENAS_HOSTNAME"
  65. _savedeployconf DEPLOY_TRUENAS_SCHEME "$DEPLOY_TRUENAS_SCHEME"
  66. _info "Getting active certificate from TrueNAS"
  67. _response=$(_get "$_api_url/system/general")
  68. _active_cert_id=$(echo "$_response" | grep -B2 '"name":' | grep 'id' | tr -d -- '"id: ,')
  69. _active_cert_name=$(echo "$_response" | grep '"name":' | sed -n 's/.*: "\(.\{1,\}\)",$/\1/p')
  70. _param_httpsredirect=$(echo "$_response" | grep '"ui_httpsredirect":' | sed -n 's/.*": \(.\{1,\}\),$/\1/p')
  71. _debug Active_UI_Certificate_ID "$_active_cert_id"
  72. _debug Active_UI_Certificate_Name "$_active_cert_name"
  73. _debug Active_UI_http_redirect "$_param_httpsredirect"
  74. if [ "$DEPLOY_TRUENAS_SCHEME" = "http" ] && [ "$_param_httpsredirect" = "true" ]; then
  75. _info "http Redirect active"
  76. _info "Setting DEPLOY_TRUENAS_SCHEME to 'https'"
  77. DEPLOY_TRUENAS_SCHEME="https"
  78. _api_url="$DEPLOY_TRUENAS_SCHEME://$DEPLOY_TRUENAS_HOSTNAME/api/v2.0"
  79. _savedeployconf DEPLOY_TRUENAS_SCHEME "$DEPLOY_TRUENAS_SCHEME"
  80. fi
  81. _info "Upload new certifikate to TrueNAS"
  82. _certname="Letsencrypt_$(_utc_date | tr ' ' '_' | tr -d -- ':')"
  83. _debug3 _certname "$_certname"
  84. _certData="{\"create_type\": \"CERTIFICATE_CREATE_IMPORTED\", \"name\": \"${_certname}\", \"certificate\": \"$(_json_encode <"$_cfullchain")\", \"privatekey\": \"$(_json_encode <"$_ckey")\"}"
  85. _add_cert_result="$(_post "$_certData" "$_api_url/certificate" "" "POST" "application/json")"
  86. _debug3 _add_cert_result "$_add_cert_result"
  87. _info "Getting Certificate list to get new Cert ID"
  88. _cert_list=$(_get "$_api_url/system/general/ui_certificate_choices")
  89. _cert_id=$(echo "$_cert_list" | grep "$_certname" | sed -n 's/.*"\([0-9]\{1,\}\)".*$/\1/p')
  90. _debug3 _cert_id "$_cert_id"
  91. _info "Activate Certificate ID: $_cert_id"
  92. _activateData="{\"ui_certificate\": \"${_cert_id}\"}"
  93. _activate_result="$(_post "$_activateData" "$_api_url/system/general" "" "PUT" "application/json")"
  94. _debug3 _activate_result "$_activate_result"
  95. _info "Check if WebDAV certificate is the same as the WEB UI"
  96. _webdav_list=$(_get "$_api_url/webdav")
  97. _webdav_cert_id=$(echo "$_webdav_list" | grep '"certssl":' | tr -d -- '"certsl: ,')
  98. if [ "$_webdav_cert_id" = "$_active_cert_id" ]; then
  99. _info "Update the WebDAV Certificate"
  100. _debug _webdav_cert_id "$_webdav_cert_id"
  101. _webdav_data="{\"certssl\": \"${_cert_id}\"}"
  102. _activate_webdav_cert="$(_post "$_webdav_data" "$_api_url/webdav" "" "PUT" "application/json")"
  103. _webdav_new_cert_id=$(echo "$_activate_webdav_cert" | _json_decode | sed -n 's/.*: \([0-9]\{1,\}\) }$/\1/p')
  104. if [ "$_webdav_new_cert_id" -eq "$_cert_id" ]; then
  105. _info "WebDAV Certificate update successfully"
  106. else
  107. _err "Unable to set WebDAV certificate"
  108. _debug3 _activate_webdav_cert "$_activate_webdav_cert"
  109. _debug3 _webdav_new_cert_id "$_webdav_new_cert_id"
  110. return 1
  111. fi
  112. _debug3 _webdav_new_cert_id "$_webdav_new_cert_id"
  113. else
  114. _info "WebDAV certificate not set or not the same as Web UI"
  115. fi
  116. _info "Check if FTP certificate is the same as the WEB UI"
  117. _ftp_list=$(_get "$_api_url/ftp")
  118. _ftp_cert_id=$(echo "$_ftp_list" | grep '"ssltls_certificate":' | tr -d -- '"certislfa:_ ,')
  119. if [ "$_ftp_cert_id" = "$_active_cert_id" ]; then
  120. _info "Update the FTP Certificate"
  121. _debug _ftp_cert_id "$_ftp_cert_id"
  122. _ftp_data="{\"ssltls_certificate\": \"${_cert_id}\"}"
  123. _activate_ftp_cert="$(_post "$_ftp_data" "$_api_url/ftp" "" "PUT" "application/json")"
  124. _ftp_new_cert_id=$(echo "$_activate_ftp_cert" | _json_decode | sed -n 's/.*: \([0-9]\{1,\}\) }$/\1/p')
  125. if [ "$_ftp_new_cert_id" -eq "$_cert_id" ]; then
  126. _info "FTP Certificate update successfully"
  127. else
  128. _err "Unable to set FTP certificate"
  129. _debug3 _activate_ftp_cert "$_activate_ftp_cert"
  130. _debug3 _ftp_new_cert_id "$_ftp_new_cert_id"
  131. return 1
  132. fi
  133. _debug3 _activate_ftp_cert "$_activate_ftp_cert"
  134. else
  135. _info "FTP certificate not set or not the same as Web UI"
  136. fi
  137. _info "Delete old Certificate"
  138. _delete_result="$(_post "" "$_api_url/certificate/id/$_active_cert_id" "" "DELETE" "application/json")"
  139. _debug3 _delete_result "$_delete_result"
  140. _info "Reload WebUI from TrueNAS"
  141. _restart_UI=$(_get "$_api_url/system/general/ui_restart")
  142. _debug2 _restart_UI "$_restart_UI"
  143. if [ -n "$_add_cert_result" ] && [ -n "$_activate_result" ]; then
  144. return 0
  145. else
  146. _err "Certupdate was not succesfull, please use --debug"
  147. return 1
  148. fi
  149. }