config 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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 -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 -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__array_settings() {
  83. local short_setting="${1%%__*}"
  84. local index="${1#*__}"
  85. IFS='|' read -a values <<< "$(ynh_app_setting_get $app $short_setting)"
  86. echo "value: \"${values[$(($index - 1))]:-}\""
  87. }
  88. #=================================================
  89. # SPECIFIC VALIDATORS FOR TOML SHORT KEYS
  90. #=================================================
  91. is_unique() {
  92. local short_setting="$1"
  93. local short_setting__1="$1__1"
  94. local short_setting__2="$1__2"
  95. local short_setting__3="$1__3"
  96. if [[ "${!short_setting__1}" == "${!short_setting__2}" ]]
  97. then
  98. return 1
  99. elif [ "$multissid" -ge "3" ] && [[ "${!short_setting__1}" == "${!short_setting__3}" ]]
  100. then
  101. return 1
  102. elif [ "$multissid" -ge "3" ] && [[ "${!short_setting__2}" == "${!short_setting__3}" ]]
  103. then
  104. return 1
  105. fi
  106. return 0
  107. }
  108. validate__wifi_ssid() {
  109. local wifi_ssid_var="wifi_ssid__$1"
  110. if [ "$multissid" -ge "$1" ] && [[ -z "${!wifi_ssid_var}" ]]
  111. then
  112. echo 'SSID required'
  113. fi
  114. if ! is_unique wifi_ssid
  115. then
  116. echo 'All Wifi names must be unique'
  117. fi
  118. }
  119. validate__wifi_passphrase() {
  120. local wifi_secure_var="wifi_secure__$1"
  121. local wifi_passphrase_var="wifi_passphrase__$1"
  122. if [ "$multissid" -ge "$1" ] && [[ "${!wifi_secure_var}" == "1" ]] && [[ -z "${!wifi_passphrase_var}" ]]
  123. then
  124. echo 'In WPA2 secure mode, you need to provide a passphrase'
  125. fi
  126. }
  127. validate__ip4_nat_prefix() {
  128. local ip4_nat_prefix_var="ip4_nat_prefix__$1"
  129. if [ "$multissid" -ge "$1" ] && [[ -z "${!ip4_nat_prefix_var}" ]]
  130. then
  131. echo 'Private IPv4 nat prefix required'
  132. fi
  133. if ! is_unique ip4_nat_prefix
  134. then
  135. echo 'All IPv4 prefix must be unique'
  136. fi
  137. }
  138. validate__dns() {
  139. local dns_var="dns__$1"
  140. local ip6_net_var="dns__$1"
  141. if [ "$multissid" -ge "$1" ] && ! echo "${!dns_var}" | grep -q "\."
  142. then
  143. echo 'IPv4 DNS required'
  144. fi
  145. if [ "$multissid" -ge "$1" ] && [[ -n "${!ip6_net_var}" ]] && ! echo "${!dns_var}" | grep -q ":"
  146. then
  147. echo 'IPv6 DNS required'
  148. fi
  149. }
  150. validate__array_settings() {
  151. local short_setting="${1%%__*}"
  152. local index="${1#*__}"
  153. if type -t validate__$short_setting | grep -q '^function$' 2>/dev/null;
  154. then
  155. validate__$short_setting $index
  156. fi
  157. }
  158. #=================================================
  159. # SPECIFIC SETTERS FOR TOML SHORT KEYS
  160. #=================================================
  161. set__array_settings() {
  162. local short_setting="${1%%__*}"
  163. local index="${1#*__}"
  164. local type="${types[$1]}"
  165. local value="${!1}"
  166. if [[ "$type" == "string" ]] && [ "$multissid" -lt "$index" ]
  167. then
  168. value=""
  169. fi
  170. local values="$(ynh_app_setting_get $app $short_setting | awk 'BEGIN{FS=OFS="|"} {$'$index'="'${!1}'"}'1)"
  171. ynh_app_setting_set --app=$app --key=$short_setting --value="$values"
  172. ynh_print_info --message="Configuration key '$short_setting' edited in app settings"
  173. }
  174. #=================================================
  175. # OVERWRITING VALIDATE STEP
  176. #=================================================
  177. ynh_app_config_validate() {
  178. _ynh_app_config_validate
  179. }
  180. #=================================================
  181. # OVERWRITING APPLY STEP
  182. #=================================================
  183. ynh_app_config_apply() {
  184. # Stop vpn client
  185. ynh_print_info --message="Stopping hotspot in order to edit files"
  186. /usr/local/bin/ynh-hotspot stop
  187. _ynh_app_config_apply
  188. # Activate captive portal or not
  189. captive_portal=$(ynh_app_setting_get --app=$app --key=captive_portal)
  190. if [[ "$captive_portal" =~ 1 ]]
  191. then
  192. ynh_systemd_action --service_name=captiveportal_fakedns --action="start" --log_path=systemd
  193. else
  194. ynh_systemd_action --service_name=captiveportal_fakedns --action="stop" --log_path=systemd
  195. fi
  196. # Start vpn client
  197. ynh_print_info --message="Starting hotspot service if needed"
  198. /usr/local/bin/ynh-hotspot start
  199. }
  200. ynh_app_config_run $1