2024-01-01 23:59:26 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2024-02-26 02:19:48 +01:00
|
|
|
# if we update from a version prior to the config panel, create new setting
|
|
|
|
if [ -z "${default_matrix_server:-}" ]; then
|
|
|
|
default_matrix_server="matrix.org"
|
|
|
|
ynh_app_setting_set --app="$app" --key=default_matrix_server --value="$default_matrix_server"
|
|
|
|
fi
|
|
|
|
|
2024-01-01 23:59:26 +01:00
|
|
|
#=================================================
|
|
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from manifest.toml
|
2024-03-11 18:24:35 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
|
2024-01-02 00:07:39 +01:00
|
|
|
|
2024-01-25 23:16:00 +01:00
|
|
|
# remove potential trailing slash to avoid double slashes
|
|
|
|
path_without_trailing_slash=${path%/}
|
|
|
|
ynh_replace_string --match_string="<base href=".*">" --replace_string="<base href=\"$path_without_trailing_slash/\">" --target_file="$install_dir/index.html"
|
2024-02-26 02:16:21 +01:00
|
|
|
|
|
|
|
# patching main.dart.js to replace the default matrix server
|
2024-04-02 04:13:58 +02:00
|
|
|
ynh_replace_string --match_string="=\"matrix.org\"" --replace_string="=\"$default_matrix_server\"" --target_file="$install_dir/main.dart.js"
|
2024-01-01 23:59:26 +01:00
|
|
|
fi
|
|
|
|
|
2024-01-02 00:07:39 +01:00
|
|
|
chown -R "www-data:www-data" "$install_dir"
|
2024-01-01 23:59:26 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|