config 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 [[ $(unused_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. local unused_wifi_devices=$(unused_iw_devices)
  69. if [[ -z ${unused_wifi_devices} ]]
  70. then
  71. echo "choices: []"
  72. else
  73. cat << EOF
  74. choices:
  75. EOF
  76. for device in $unused_wifi_devices
  77. do
  78. echo " $device: $device"
  79. done
  80. fi
  81. echo "value: '$(ynh_app_setting_get $app wifi_device)'"
  82. }
  83. get__dns() {
  84. ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
  85. ip6_dns=$(ynh_app_setting_get --app=$app --key=ip6_dns | tr -d '[]')
  86. ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
  87. ip4_dns=$(ynh_app_setting_get --app=$app --key=ip4_dns)
  88. if [[ -n ${ip6_net} ]] && [[ -z ${ip6_dns} ]]; then
  89. ip6_dns="${ip6_net}1"
  90. fi
  91. if [[ -n ${ip4_nat_prefix} ]] && [[ -z ${ip4_dns} ]]; then
  92. ip4_dns="${ip4_nat_prefix}.1"
  93. fi
  94. echo "value: ${ip4_dns},${ip6_dns}"
  95. }
  96. #=================================================
  97. # SPECIFIC VALIDATORS FOR TOML SHORT KEYS
  98. #=================================================
  99. validate__wifi_ssid() {
  100. if [[ -z "${wifi_ssid}" ]]
  101. then
  102. echo 'SSID required'
  103. fi
  104. }
  105. validate__wifi_passphrase() {
  106. if [[ "${wifi_secure}" == "1" ]] && [[ -z "${wifi_passphrase}" ]]
  107. then
  108. echo 'In WPA2 secure mode, you need to provide a passphrase'
  109. fi
  110. }
  111. validate__ip4_nat_prefix() {
  112. if [[ -z "${ip4_nat_prefix}" ]]
  113. then
  114. echo 'Private IPv4 nat prefix required'
  115. fi
  116. }
  117. validate__dns() {
  118. if ! echo "${dns}" | grep -q "\."
  119. then
  120. echo 'IPv4 DNS required'
  121. fi
  122. if [[ -n "${ip6_net}" ]] && ! echo "${dns}" | grep -q ":"
  123. then
  124. echo 'IPv6 DNS required'
  125. fi
  126. }
  127. #=================================================
  128. # SPECIFIC SETTERS FOR TOML SHORT KEYS
  129. #=================================================
  130. set__dns() {
  131. ip6_dns=""
  132. ip4_dns=""
  133. for ip in $(echo "${dns}" | tr ',' ' '); do
  134. if [[ "$ip" == *":"* ]]; then
  135. ip6_dns+="[$ip],"
  136. else
  137. ip4_dns+="$ip,"
  138. fi
  139. done
  140. # Remove trailing ,
  141. ip6_dns="${ip6_dns%%,}"
  142. ip4_dns="${ip4_dns%%,}"
  143. if [[ -n ${ip6_net} ]] && [[ -z ${ip6_dns} ]]; then
  144. ip6_dns="${ip6_net}1"
  145. fi
  146. if [[ -n ${ip4_nat_prefix} ]] && [[ -z ${ip4_dns} ]]; then
  147. ip4_dns="${ip4_nat_prefix}.1"
  148. fi
  149. ynh_app_setting_set $app ip6_dns "${ip6_dns}"
  150. ynh_app_setting_set $app ip4_dns "${ip4_dns}"
  151. }
  152. #=================================================
  153. # OVERWRITING VALIDATE STEP
  154. #=================================================
  155. #=================================================
  156. # OVERWRITING APPLY STEP
  157. #=================================================
  158. ynh_app_config_apply() {
  159. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  160. # Stop vpn client
  161. ynh_print_info --message="Stopping hotspot in order to edit files"
  162. /usr/local/bin/${service_name} stop
  163. _ynh_app_config_apply
  164. configure_hostapd
  165. configure_dhcp
  166. # Start hotspot
  167. ynh_print_info --message="Starting hotspot service if needed"
  168. /usr/local/bin/${service_name} start
  169. }
  170. ynh_app_config_run $1