2019-01-09 09:31:49 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2019-01-09 09:31:49 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
2021-09-21 18:27:40 +02:00
|
|
|
password=$(ynh_app_setting_get --app=$app --key=password)
|
2021-07-06 18:01:44 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2021-09-21 18:27:40 +02:00
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
adguard_port=$(ynh_app_setting_get --app=$app --key=adguard_port)
|
2022-01-06 17:49:26 +01:00
|
|
|
dns_over_https=$(ynh_app_setting_get --app=$app --key=dns_over_https)
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_script_progression --message="Checking version..."
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_clean_check_starting
|
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2021-07-06 18:01:44 +02:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2021-09-21 18:27:40 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop"
|
|
|
|
|
|
|
|
# Disable the port 53 for upnp
|
|
|
|
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $adguard_port
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
# Cleaning legacy permissions
|
|
|
|
if ynh_legacy_permissions_exists; then
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_legacy_permissions_delete_all
|
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2022-07-29 21:30:38 +02:00
|
|
|
# The dns port should be 53
|
|
|
|
if [ "$adguard_port" -ne "53" ]; then
|
|
|
|
adguard_port=53
|
|
|
|
ynh_app_setting_set --app=$app --key=adguard_port --value=$adguard_port
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Create a permission if needed
|
|
|
|
if ! ynh_permission_exists --permission="api"; then
|
|
|
|
ynh_permission_create --permission="api" --label="api" --url="re:$domain/dns-query" --allowed="visitors" --auth_header="false" --show_tile="false" --protected="true"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -n "$dns_over_https" ] && [ "$dns_over_https" == "1" ];
|
|
|
|
then
|
|
|
|
dns_over_https="true"
|
|
|
|
ynh_app_setting_set --app=$app --key=dns_over_https --value=$dns_over_https
|
|
|
|
elif [ -z "$dns_over_https" ] || [ "$dns_over_https" == "0" ];
|
|
|
|
then
|
|
|
|
dns_over_https="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=dns_over_https --value=$dns_over_https
|
2021-07-06 18:01:44 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2023-02-06 16:33:31 +01:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path" --groups="ssl-cert"
|
2019-07-28 10:42:10 +02:00
|
|
|
|
2019-01-09 09:31:49 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2020-05-23 13:25:24 +02:00
|
|
|
|
2022-07-29 21:30:38 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir=$final_path --source_id="$YNH_ARCH"
|
2021-07-06 18:01:44 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
2022-07-29 21:30:38 +02:00
|
|
|
chown -R $app:$app "$final_path"
|
2021-09-21 18:27:40 +02:00
|
|
|
|
|
|
|
setcap 'CAP_NET_BIND_SERVICE=+eip CAP_NET_RAW=+eip' $final_path/AdGuardHome
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2022-07-29 21:30:38 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
2019-01-09 09:31:49 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2021-09-21 18:27:40 +02:00
|
|
|
#=================================================
|
2022-07-29 21:30:38 +02:00
|
|
|
# SPECIFIC UPGRADE
|
2022-01-03 16:25:24 +01:00
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
2022-01-12 11:03:31 +01:00
|
|
|
ipv4_interface=$(echo "$(ip -4 route get 1.2.3.4 2> /dev/null)" | head -n1 | grep -oP '(?<=dev )\w+' || true)
|
|
|
|
ipv6_interface=$(echo "$(ip -6 route get ::1.2.3.4 2> /dev/null)" | head -n1 | grep -oP '(?<=dev )\w+' || true)
|
2022-01-06 11:23:20 +01:00
|
|
|
|
|
|
|
if [ -z "$ipv4_interface" ] && [ -z "$ipv6_interface" ]; then
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_die --message="Impossible to find the main network interface, please report this issue."
|
2022-01-06 11:23:20 +01:00
|
|
|
elif [ "$ipv4_interface" != "$ipv6_interface" ]; then
|
2022-07-29 21:30:38 +02:00
|
|
|
if [ -z "$ipv4_interface" ]; then
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv6_interface" > "/etc/dnsmasq.d/$app"
|
2022-07-29 21:30:38 +02:00
|
|
|
elif [ -z "$ipv6_interface" ]; then
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv4_interface" > "/etc/dnsmasq.d/$app"
|
2022-07-29 21:30:38 +02:00
|
|
|
else
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv4_interface, $ipv6_interface" > "/etc/dnsmasq.d/$app"
|
2022-07-29 21:30:38 +02:00
|
|
|
fi
|
2022-01-04 14:00:07 +01:00
|
|
|
else
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv4_interface" > "/etc/dnsmasq.d/$app"
|
2022-01-04 14:00:07 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
systemctl restart dnsmasq
|
|
|
|
|
|
|
|
ynh_store_file_checksum --file="/etc/dnsmasq.d/$app"
|
|
|
|
|
2022-01-06 11:44:14 +01:00
|
|
|
ipv4_route_output=$(echo "$(ip -4 route get 1.2.3.4 2> /dev/null)" | head -n1)
|
|
|
|
ipv6_route_output=$(echo "$(ip -6 route get ::1.2.3.4 2> /dev/null)" | head -n1)
|
2022-01-03 16:25:24 +01:00
|
|
|
|
|
|
|
ipv4_addr=""
|
|
|
|
for i in $(seq "$(echo $ipv4_route_output | wc -w)" -1 1); do
|
2022-07-29 21:30:38 +02:00
|
|
|
ip=$(echo $ipv4_route_output | awk "{print \$$i}")
|
|
|
|
if ynh_validate_ip4 --ip_address=$ip; then
|
|
|
|
ipv4_addr="$ip"
|
|
|
|
break
|
|
|
|
fi
|
2022-01-03 16:25:24 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
ipv6_addr=""
|
|
|
|
for i in $(seq "$(echo $ipv6_route_output | wc -w)" -1 1); do
|
2022-07-29 21:30:38 +02:00
|
|
|
ip=$(echo $ipv6_route_output | awk "{print \$$i}")
|
|
|
|
if ynh_validate_ip6 --ip_address=$ip; then
|
|
|
|
ipv6_addr="$ip"
|
|
|
|
break
|
|
|
|
fi
|
2022-01-03 16:25:24 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
# Reset the bind_hosts if the current ip is 0.0.0.0
|
|
|
|
python3 -c "import yaml
|
|
|
|
with open(\"$final_path/AdGuardHome.yaml\", 'r') as file:
|
2022-07-29 21:30:38 +02:00
|
|
|
conf_file = yaml.safe_load(file)
|
2022-01-03 16:25:24 +01:00
|
|
|
|
|
|
|
need_file_update = False
|
|
|
|
|
|
|
|
if \"0.0.0.0\" in conf_file[\"dns\"][\"bind_hosts\"]:
|
2022-07-29 21:30:38 +02:00
|
|
|
conf_file[\"dns\"][\"bind_hosts\"] = []
|
|
|
|
if \"$ipv4_addr\":
|
|
|
|
conf_file[\"dns\"][\"bind_hosts\"].append(\"$ipv4_addr\")
|
|
|
|
if \"$ipv6_addr\":
|
|
|
|
conf_file[\"dns\"][\"bind_hosts\"].append(\"$ipv6_addr\")
|
|
|
|
need_file_update = True
|
2022-01-03 16:25:24 +01:00
|
|
|
|
|
|
|
if conf_file[\"dns\"][\"port\"] != $adguard_port:
|
2022-07-29 21:30:38 +02:00
|
|
|
conf_file[\"dns\"][\"port\"] = $adguard_port
|
|
|
|
need_file_update = True
|
|
|
|
|
2022-01-03 16:25:24 +01:00
|
|
|
if need_file_update:
|
2022-07-29 21:30:38 +02:00
|
|
|
with open(\"$final_path/AdGuardHome.yaml\", 'w') as file:
|
|
|
|
yaml.dump(conf_file, file)
|
2022-01-03 16:25:24 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
chmod 600 "$final_path/AdGuardHome.yaml"
|
2022-07-29 21:30:38 +02:00
|
|
|
chown -R $app:$app "$final_path/AdGuardHome.yaml"
|
2022-01-03 16:25:24 +01:00
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2022-07-29 21:32:29 +02:00
|
|
|
yunohost service add $app --description="Ads & trackers blocking DNS server" --needs_exposed_ports $adguard_port
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="restart" --log_path="systemd"
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|