123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- #!/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
- #=================================================
- # RETRIEVE ARGUMENTS
- #=================================================
- final_path=$(ynh_app_setting_get $app final_path)
- #=================================================
- # 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 ! echo "${dns}" | grep -q "\."
- then
- echo 'IPv4 DNS required'
- fi
- if [[ -n "${ip6_net}" ]] && ! echo "${dns}" | grep -q ":"
- then
- echo 'IPv6 DNS required'
- fi
- }
- #=================================================
- # SPECIFIC SETTERS FOR TOML SHORT KEYS
- #=================================================
- set__dns() {
- 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_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"
- /usr/local/bin/${service_name} stop
- _ynh_app_config_apply
- configure_hostapd
- configure_dhcp
- # Start hotspot
- ynh_print_info --message="Starting hotspot service if needed"
- /usr/local/bin/${service_name} start
- }
- ynh_app_config_run $1
|