123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- #!/bin/bash
- #=================================================
- # GENERIC STARTING
- #=================================================
- # IMPORT GENERIC HELPERS
- #=================================================
- source _common.sh
- source /usr/share/yunohost/helpers
- #=================================================
- # MANAGE SCRIPT FAILURE
- #=================================================
- # Exit if an error occurs during the execution of the script
- ynh_abort_if_errors
- #=================================================
- # SPECIFIC GETTERS FOR TOML SHORT KEY
- #=================================================
- get__no_antenna() {
- if [[ "$(unused_iw_devices)" == "" ]]
- then
- echo "value: true"
- else
- echo "value: false"
- fi
- }
- get__status() {
- local service_enabled=$(ynh_app_setting_get $app service_enabled)
- if systemctl is-active hostapd@$app -q
- then
- if [[ "$service_enabled" -eq 1 ]]
- then
- cat << EOF
- style: success
- ask:
- en: |-
- Your Hotspot is running :)
- EOF
- else
- cat << EOF
- style: warning
- ask:
- en: Your Hotspot is running, but it shouldn't !
- EOF
- fi
- elif [[ "$service_enabled" -eq 1 ]]
- then
- cat << EOF
- style: danger
- ask:
- en: |-
- Your Hotspot is down ! Here are errors logged in the last 5 minutes
- \`\`\`
- $(journalctl -u hostapd@$app -n10 -o cat | sed 's/^/ /g')
- \`\`\`
- EOF
- else
- cat << EOF
- style: info
- ask:
- en: Your Hotspot is down as expected.
- EOF
- fi
- }
- get__wifi_device() {
- local unused_wifi_devices=$(unused_iw_devices)
- if [[ -z "${unused_wifi_devices}" ]]
- then
- echo "choices: []"
- else
- cat << EOF
- choices:
- EOF
- for device in $unused_wifi_devices
- do
- echo " $device: $device"
- done
- fi
- echo "value: '$(ynh_app_setting_get $app wifi_device)'"
- }
- get__dns() {
- ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
- ip6_dns=$(ynh_app_setting_get --app=$app --key=ip6_dns | tr -d '[]')
- ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
- ip4_dns=$(ynh_app_setting_get --app=$app --key=ip4_dns)
- if [[ -n "${ip6_net}" ]] && [[ -z "${ip6_dns}" ]]; then
- ip6_dns="${ip6_net}1"
- fi
- if [[ -n "${ip4_nat_prefix}" ]] && [[ -z "${ip4_dns}" ]]; then
- ip4_dns="${ip4_nat_prefix}.1"
- fi
- echo "value: ${ip4_dns},${ip6_dns}"
- }
- #=================================================
- # SPECIFIC VALIDATORS FOR TOML SHORT KEYS
- #=================================================
- validate__wifi_ssid() {
- if [[ -z "${wifi_ssid}" ]]
- then
- echo 'SSID required'
- fi
- }
- validate__wifi_passphrase() {
- if [[ "${wifi_secure}" == "1" ]] && [[ -z "${wifi_passphrase}" ]]
- then
- echo 'In WPA2 secure mode, you need to provide a passphrase'
- fi
- }
- validate__ip4_nat_prefix() {
- if [[ -z "${ip4_nat_prefix}" ]]
- then
- echo 'Private IPv4 nat prefix required'
- fi
- }
- validate__dns() {
- if [[ -z "$ip4_dns" ]]
- then
- echo 'IPv4 DNS required'
- fi
- if [[ -n "${ip6_net}" ]] && [[ -z "$ip6_dns" ]]
- then
- echo 'IPv6 DNS required'
- fi
- }
- ynh_app_config_validate() {
- if [[ "${advanced}" -eq 0 ]]; then
- # When we aren't in advanced mode, these variables must be manually declared
- dns="${old[dns]}"
- ip6_net="${old[ip6_net]}"
- ip4_nat_prefix="${old[ip4_nat_prefix]}"
- fi
- ip6_dns=""
- ip4_dns=""
- for ip in $(echo "${dns}" | tr ',' ' '); do
- if [[ "$ip" == *":"* ]]; then
- ip6_dns+="[$ip],"
- else
- ip4_dns+="$ip,"
- fi
- done
- # Remove trailing ,
- ip6_dns="${ip6_dns%%,}"
- ip4_dns="${ip4_dns%%,}"
- if [[ -n "${ip6_net}" ]] && [[ -z "${ip6_dns}" ]]; then
- ip6_dns="${ip6_net}1"
- fi
- if [[ -n "${ip4_nat_prefix}" ]] && [[ -z "${ip4_dns}" ]]; then
- ip4_dns="${ip4_nat_prefix}.1"
- fi
- _ynh_app_config_validate
- }
- #=================================================
- # SPECIFIC SETTERS FOR TOML SHORT KEYS
- #=================================================
- set__dns() {
- ynh_app_setting_set $app ip6_dns "${ip6_dns}"
- ynh_app_setting_set $app ip4_dns "${ip4_dns}"
- }
- #=================================================
- # OVERWRITING VALIDATE STEP
- #=================================================
- #=================================================
- # OVERWRITING APPLY STEP
- #=================================================
- ynh_app_config_apply() {
- service_name=$(ynh_app_setting_get --app=$app --key=service_name)
- # Stop vpn client
- ynh_print_info --message="Stopping hotspot in order to edit files"
- yunohost service stop $service_name
- _ynh_app_config_apply
-
- # Activate captive portal or not
- captive_portal=$(ynh_app_setting_get --app=$app --key=captive_portal)
- if [[ "$captive_portal" == '1' ]]
- then
- echo "location / {" > /etc/nginx/conf.d/default.d/redirect_to_admin.conf
-
- echo " if (\$remote_addr ~ "^$ip4_nat_prefix.\d+$") {" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
- echo " return 302 $captive_portal_url;" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
- echo " }" > /etc/nginx/conf.d/default.d/redirect_to_admin.conf
-
- echo " return 302 https://\$http_host/yunohost/admin;" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
-
- echo "}" >> /etc/nginx/conf.d/default.d/redirect_to_admin.conf
- systemctl reload nginx
- ynh_systemd_action --service_name=captiveportal_fakedns --action="start" --log_path=systemd
- else
- ynh_systemd_action --service_name=captiveportal_fakedns --action="stop" --log_path=systemd
- fi
- # Start vpn client
- ynh_print_info --message="Starting hotspot service if needed"
- /usr/local/bin/ynh-hotspot start
- if [[ "${service_enabled}" -eq 1 ]]; then
- configure_hostapd
- configure_dhcp
- # Start hotspot
- ynh_print_info --message="Starting hotspot service if needed"
- yunohost service start $service_name
- else
- ynh_print_info --message="Cleanup hotspot config files"
- ynh_secure_remove --file="/etc/hostapd/$app/hostapd.conf"
- ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv4.conf"
- ynh_secure_remove --file="/etc/dnsmasq.$app/dhcpdv6.conf"
- systemctl restart dnsmasq
- fi
- yunohost tools regen-conf dnsmasq
- }
- ynh_app_config_run $1
|