config 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC STARTING
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. # Exit if an error occurs during the execution of the script
  13. ynh_abort_if_errors
  14. #=================================================
  15. # RETRIEVE ARGUMENTS
  16. #=================================================
  17. final_path=$(ynh_app_setting_get $app final_path)
  18. #=================================================
  19. # SPECIFIC GETTERS FOR TOML SHORT KEY
  20. #=================================================
  21. get__no_antenna() {
  22. if [[ $(iw_devices) == "" ]]
  23. then
  24. echo "value: true"
  25. else
  26. echo "value: false"
  27. fi
  28. }
  29. get__status() {
  30. local service_enabled=$(ynh_app_setting_get $app service_enabled)
  31. if systemctl is-active hostapd@$app -q
  32. then
  33. if [[ $service_enabled -eq 1 ]]
  34. then
  35. cat << EOF
  36. style: success
  37. ask:
  38. en: |-
  39. Your Hotspot is running :)
  40. EOF
  41. else
  42. cat << EOF
  43. style: warning
  44. ask:
  45. en: Your Hotspot is running, but it shouldn't !
  46. EOF
  47. fi
  48. elif [[ $service_enabled -eq 1 ]]
  49. then
  50. cat << EOF
  51. style: danger
  52. ask:
  53. en: |-
  54. Your Hotspot is down ! Here are errors logged in the last 5 minutes
  55. \`\`\`
  56. $(journalctl -u hostapd@$app -n10 -o cat | sed 's/^/ /g')
  57. \`\`\`
  58. EOF
  59. else
  60. cat << EOF
  61. style: info
  62. ask:
  63. en: Your Hotspot is down as expected.
  64. EOF
  65. fi
  66. }
  67. get__wifi_device() {
  68. if [[ $(iw_devices) == "" ]]
  69. then
  70. echo "choices: []"
  71. else
  72. cat << EOF
  73. choices:
  74. EOF
  75. for device in $(iw_devices | sed "s/|/ /g")
  76. do
  77. echo " $device: $device"
  78. done
  79. fi
  80. echo "value: '$(ynh_app_setting_get $app wifi_device)'"
  81. }
  82. get__dns() {
  83. ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
  84. ip6_dns=$(ynh_app_setting_get --app=$app --key=ip6_dns | tr -d '[]')
  85. ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
  86. ip4_dns=$(ynh_app_setting_get --app=$app --key=ip4_dns)
  87. if [[ -n ${ip6_net} ]] && [[ -z ${ip6_dns} ]]; then
  88. ip6_dns="${ip6_net}1"
  89. fi
  90. if [[ -n ${ip4_nat_prefix} ]] && [[ -z ${ip4_dns} ]]; then
  91. ip4_dns="${ip4_nat_prefix}.1"
  92. fi
  93. echo "value: ${ip4_dns},${ip6_dns}"
  94. }
  95. #=================================================
  96. # SPECIFIC VALIDATORS FOR TOML SHORT KEYS
  97. #=================================================
  98. validate__wifi_ssid() {
  99. if [[ -z "${wifi_ssid}" ]]
  100. then
  101. echo 'SSID required'
  102. fi
  103. }
  104. validate__wifi_passphrase() {
  105. if [[ "${wifi_secure}" == "1" ]] && [[ -z "${wifi_passphrase}" ]]
  106. then
  107. echo 'In WPA2 secure mode, you need to provide a passphrase'
  108. fi
  109. }
  110. validate__ip4_nat_prefix() {
  111. if [[ -z "${ip4_nat_prefix}" ]]
  112. then
  113. echo 'Private IPv4 nat prefix required'
  114. fi
  115. }
  116. validate__dns() {
  117. if ! echo "${dns}" | grep -q "\."
  118. then
  119. echo 'IPv4 DNS required'
  120. fi
  121. if [[ -n "${ip6_net}" ]] && ! echo "${dns}" | grep -q ":"
  122. then
  123. echo 'IPv6 DNS required'
  124. fi
  125. }
  126. #=================================================
  127. # SPECIFIC SETTERS FOR TOML SHORT KEYS
  128. #=================================================
  129. set__dns() {
  130. ip6_dns=""
  131. ip4_dns=""
  132. for ip in $(echo "${dns}" | tr ',' ' '); do
  133. if [[ "$ip" == *":"* ]]; then
  134. ip6_dns+="[$ip],"
  135. else
  136. ip4_dns+="$ip,"
  137. fi
  138. done
  139. # Remove trailing ,
  140. ip6_dns="${ip6_dns%%,}"
  141. ip4_dns="${ip4_dns%%,}"
  142. if [[ -n ${ip6_net} ]] && [[ -z ${ip6_dns} ]]; then
  143. ip6_dns="${ip6_net}1"
  144. fi
  145. if [[ -n ${ip4_nat_prefix} ]] && [[ -z ${ip4_dns} ]]; then
  146. ip4_dns="${ip4_nat_prefix}.1"
  147. fi
  148. ynh_app_setting_set $app ip6_dns "${ip6_dns}"
  149. ynh_app_setting_set $app ip4_dns "${ip4_dns}"
  150. }
  151. #=================================================
  152. # OVERWRITING VALIDATE STEP
  153. #=================================================
  154. #=================================================
  155. # OVERWRITING APPLY STEP
  156. #=================================================
  157. ynh_app_config_apply() {
  158. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  159. # Stop vpn client
  160. ynh_print_info --message="Stopping hotspot in order to edit files"
  161. /usr/local/bin/${service_name} stop
  162. _ynh_app_config_apply
  163. configure_hostapd
  164. configure_dhcp
  165. # Start hotspot
  166. ynh_print_info --message="Starting hotspot service if needed"
  167. /usr/local/bin/${service_name} start
  168. }
  169. ynh_app_config_run $1