config 4.9 KB

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