env-wrapper 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/usr/bin/env bash
  2. source $SNAP/helper/functions
  3. if [ -z "${DAEMONIZED}" ]; then
  4. DAEMONIZED=0
  5. fi
  6. function lprint {
  7. if [ ${DAEMONIZED} -eq 0 ]; then
  8. echo ${1}
  9. else
  10. logger "${SNAP_NAME}: ${1}"
  11. fi
  12. }
  13. # WITH S0+n NETWORK KEY IS NOT USED ANYMORE
  14. #export NETWORK_KEY=$(snapctl get network.key)
  15. # SETTINGS_KEY=$(same_network_key "${NETWORK_KEY}")
  16. # if [ $? -ne 0 ]; then
  17. # snapctl set network.key="${SETTINGS_KEY}"
  18. # export NETWORK_KEY="${SETTINGS_KEY}"
  19. # fi
  20. OPT_HELP=false
  21. if [ "${1}" = "--help" ]; then
  22. OPT_HELP=true
  23. fi
  24. if [ ${OPT_HELP} = true ]; then
  25. plugs_connected
  26. if [ $? -ne 0 ]; then
  27. echo ""
  28. echo "NOTE! NOTE! NOTE!"
  29. echo ""
  30. fi
  31. echo "${SNAP_NAME} - $(yq eval '.version' "${SNAP}/meta/snap.yaml")"
  32. echo ""
  33. echo "IMPORTANT! The DAEMON/SERVICE is disabled by default after installation."
  34. echo "You have to manually 'daemonize' it with executing the command"
  35. echo ""
  36. echo "$ ${SNAP_NAME}.enable"
  37. echo ""
  38. echo "Set your configuration as descrived below"
  39. echo ""
  40. # echo "Base configuration values:"
  41. # echo "- network.key: $(snapctl get network.key)"
  42. echo "Server configuration values: $(snapctl get server -d)"
  43. echo ""
  44. echo "- server.ssl: Use secure communication"
  45. echo "- server.host: IP address to bind to, e.g 127.0.0.1"
  46. echo "- server.port: Port to reach the web interface"
  47. echo ""
  48. echo "Session configuration values: $(snapctl get session -d)"
  49. echo ""
  50. echo "- session.secret: Used as secret for session. If not provided a default one is used."
  51. echo "- session.cookie-secure: Set the cookie secure option. See: https://github.com/expressjs/session#cookiesecure"
  52. echo ""
  53. echo "Session configuration values: $(snapctl get mqtt -d)"
  54. echo ""
  55. echo "- mqtt.name: The name used as client name when connecting to the mqtt server."
  56. echo ""
  57. echo "Set options with: $ snap set ${SNAP_NAME} param=key"
  58. echo "For example: $ snap set ${SNAP_NAME} server.host=0.0.0.0"
  59. echo ""
  60. echo "Other settings can be set in the UI after start."
  61. echo ""
  62. echo "Follow the log with"
  63. echo "$ sudo snap logs ${SNAP_NAME} -f"
  64. echo ""
  65. echo "Other commands"
  66. echo "Disable the daemon: $ ${SNAP_NAME}.disable"
  67. echo "Restart the daemon: $ ${SNAP_NAME}.restart"
  68. exit 0
  69. fi
  70. require_root
  71. plugs_connected
  72. if [ $? -ne 0 ]; then
  73. exit 1
  74. fi
  75. # Not needed anymore as of ZWAVEJS_EXTERNAL_CONFIG?
  76. # ensure_zwavejs_config
  77. export SERVER_SSL=$(snapctl get server.ssl)
  78. export SERVER_HOST=$(snapctl get server.host)
  79. export SERVER_PORT=$(snapctl get server.port)
  80. export GIT_DIR="${SNAP}/lib/node_modules/zwavejs2mqtt/.git"
  81. export HTTPS="${SERVER_SSL}"
  82. export SESSION_SECRET=$(snapctl get session.secret)
  83. export USE_SECURE_COOKIE=$(snapctl get session.cookie-secure)
  84. if [ "${HTTPS}" != true ]; then
  85. unset HTTPS
  86. unset SERVER_SSL
  87. unset USE_SECURE_COOKIE
  88. elif [ "${USE_SECURE_COOKIE}" != true ]; then
  89. unset USE_SECURE_COOKIE
  90. fi
  91. export MQTT_NAME=$(snapctl get mqtt.name)
  92. if [ -z "${MQTT_NAME}" ]; then
  93. unset MQTT_NAME
  94. fi
  95. export HOST="${SERVER_HOST}"
  96. export PORT="${SERVER_PORT}"
  97. [ "$(basename "${1}")" == "yarn" ] && cd "${SNAP}/lib/node_modules/zwavejs2mqtt" && exec "${@}" || exec "${@}"