config 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. # SPECIFIC GETTERS FOR TOML SHORT KEY
  16. #=================================================
  17. get__no_antenna() {
  18. if [[ "$(unused_iw_devices)" == "" ]]
  19. then
  20. echo "value: true"
  21. else
  22. echo "value: false"
  23. fi
  24. }
  25. get__status() {
  26. local service_enabled=$(ynh_app_setting_get $app service_enabled)
  27. if systemctl is-active hostapd@$app -q
  28. then
  29. if [[ "$service_enabled" -eq 1 ]]
  30. then
  31. cat << EOF
  32. style: success
  33. ask:
  34. en: |-
  35. Your Hotspot is running :)
  36. EOF
  37. else
  38. cat << EOF
  39. style: warning
  40. ask:
  41. en: Your Hotspot is running, but it shouldn't !
  42. EOF
  43. fi
  44. elif [[ "$service_enabled" -eq 1 ]]
  45. then
  46. cat << EOF
  47. style: danger
  48. ask:
  49. en: |-
  50. Your Hotspot is down ! Here are errors logged in the last 5 minutes
  51. \`\`\`
  52. $(journalctl -u hostapd@$app -n10 -o cat | sed 's/^/ /g')
  53. \`\`\`
  54. EOF
  55. else
  56. cat << EOF
  57. style: info
  58. ask:
  59. en: Your Hotspot is down as expected.
  60. EOF
  61. fi
  62. }
  63. get__wifi_device() {
  64. local unused_wifi_devices=$(unused_iw_devices)
  65. if [[ -z "${unused_wifi_devices}" ]]
  66. then
  67. echo "choices: []"
  68. else
  69. cat << EOF
  70. choices:
  71. EOF
  72. for device in $unused_wifi_devices
  73. do
  74. echo " $device: $device"
  75. done
  76. fi
  77. echo "value: '$(ynh_app_setting_get $app wifi_device)'"
  78. }
  79. get__dns() {
  80. ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
  81. ip6_dns=$(ynh_app_setting_get --app=$app --key=ip6_dns | tr -d '[]')
  82. ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
  83. ip4_dns=$(ynh_app_setting_get --app=$app --key=ip4_dns)
  84. if [[ -n "${ip6_net}" ]] && [[ -z "${ip6_dns}" ]]; then
  85. ip6_dns="${ip6_net}1"
  86. fi
  87. if [[ -n "${ip4_nat_prefix}" ]] && [[ -z "${ip4_dns}" ]]; then
  88. ip4_dns="${ip4_nat_prefix}.1"
  89. fi
  90. echo "value: ${ip4_dns},${ip6_dns}"
  91. }
  92. #=================================================
  93. # SPECIFIC VALIDATORS FOR TOML SHORT KEYS
  94. #=================================================
  95. validate__wifi_ssid() {
  96. if [[ -z "${wifi_ssid}" ]]
  97. then
  98. echo 'SSID required'
  99. fi
  100. }
  101. validate__wifi_passphrase() {
  102. if [[ "${wifi_secure}" == "1" ]] && [[ -z "${wifi_passphrase}" ]]
  103. then
  104. echo 'In WPA2 secure mode, you need to provide a passphrase'
  105. fi
  106. }
  107. validate__ip4_nat_prefix() {
  108. if [[ -z "${ip4_nat_prefix}" ]]
  109. then
  110. echo 'Private IPv4 nat prefix required'
  111. fi
  112. }
  113. validate__dns() {
  114. if [[ -z "$ip4_dns" ]]
  115. then
  116. echo 'IPv4 DNS required'
  117. fi
  118. if [[ -n "${ip6_net}" ]] && [[ -z "$ip6_dns" ]]
  119. then
  120. echo 'IPv6 DNS required'
  121. fi
  122. }
  123. ynh_app_config_validate() {
  124. if [[ "${advanced}" -eq 0 ]]; then
  125. # When we aren't in advanced mode, these variables must be manually declared
  126. dns="${old[dns]}"
  127. ip6_net="${old[ip6_net]}"
  128. ip4_nat_prefix="${old[ip4_nat_prefix]}"
  129. fi
  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_config_validate
  149. }
  150. #=================================================
  151. # SPECIFIC SETTERS FOR TOML SHORT KEYS
  152. #=================================================
  153. set__dns() {
  154. ynh_app_setting_set $app ip6_dns "${ip6_dns}"
  155. ynh_app_setting_set $app ip4_dns "${ip4_dns}"
  156. }
  157. #=================================================
  158. # OVERWRITING VALIDATE STEP
  159. #=================================================
  160. #=================================================
  161. # OVERWRITING APPLY STEP
  162. #=================================================
  163. ynh_app_config_apply() {
  164. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  165. # Stop vpn client
  166. ynh_print_info --message="Stopping hotspot in order to edit files"
  167. yunohost service stop $service_name
  168. _ynh_app_config_apply
  169. # Activate captive portal or not
  170. captive_portal=$(ynh_app_setting_get --app=$app --key=captive_portal)
  171. if [[ "$captive_portal" == '1' ]]
  172. then
  173. echo "location / {" > /etc/nginx/conf.d/default.d/redirect_to_admin.conf
  174. echo " if (\$remote_addr ~ "^$ip4_nat_prefix.\d+$") {" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
  175. echo " return 302 $captive_portal_url;" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
  176. echo " }" > /etc/nginx/conf.d/default.d/redirect_to_admin.conf
  177. echo " return 302 https://\$http_host/yunohost/admin;" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
  178. echo "}" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
  179. systemctl reload nginx
  180. ynh_systemd_action --service_name=captiveportal_fakedns --action="start" --log_path=systemd
  181. else
  182. ynh_systemd_action --service_name=captiveportal_fakedns --action="stop" --log_path=systemd
  183. fi
  184. # Start vpn client
  185. ynh_print_info --message="Starting hotspot service if needed"
  186. /usr/local/bin/ynh-hotspot start
  187. if [[ "${service_enabled}" -eq 1 ]]; then
  188. configure_hostapd
  189. configure_dhcp
  190. # Start hotspot
  191. ynh_print_info --message="Starting hotspot service if needed"
  192. yunohost service start $service_name
  193. else
  194. ynh_print_info --message="Cleanup hotspot config files"
  195. ynh_secure_remove --file="/etc/hostapd/$app/hostapd.conf"
  196. ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv4.conf"
  197. ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv6.conf"
  198. systemctl restart dnsmasq
  199. fi
  200. yunohost tools regen-conf dnsmasq
  201. }
  202. ynh_app_config_run $1