2020-03-11 00:07:10 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2020-03-27 21:21:19 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=24
|
2020-03-11 00:07:10 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-03-11 15:40:29 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2020-04-05 11:56:23 +02:00
|
|
|
# Add "offline" parameter in index.html
|
|
|
|
# See https://desk.draw.io/support/solutions/articles/16000042546-what-url-parameters-are-supported-
|
2020-04-05 12:32:37 +02:00
|
|
|
sed_pattern="s/var params = window.location.search.slice(1).split('&');/&\n\t\t\tparams.push(\"offline=1\");/g"
|
2023-06-23 09:43:13 +02:00
|
|
|
sed -i "$sed_pattern" "$install_dir/src/main/webapp/index.html"
|
2020-04-05 11:56:23 +02:00
|
|
|
fi
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2023-06-23 09:43:13 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-06-06 23:57:07 +02:00
|
|
|
|
2020-03-11 00:07:10 +01:00
|
|
|
#=================================================
|
2021-04-18 16:14:40 +02:00
|
|
|
# NGINX CONFIGURATION
|
2020-03-11 00:07:10 +01:00
|
|
|
#=================================================
|
2021-04-18 16:14:40 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=17
|
2020-03-11 00:07:10 +01:00
|
|
|
|
2022-09-26 02:34:37 +02:00
|
|
|
# Create a dedicated NGINX config
|
2021-04-18 16:14:40 +02:00
|
|
|
ynh_add_nginx_config
|
2020-03-11 00:07:10 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-27 21:21:19 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|