mautrix_telegram_ynh/scripts/upgrade

206 lines
7.9 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
2021-04-05 15:33:18 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
server_name=$(ynh_app_setting_get --app=$app --key=server_name)
port=$(ynh_app_setting_get --app=$app --key=port)
botname=$(ynh_app_setting_get --app=$app --key=botname)
synapse_instance=$(ynh_app_setting_get --app=$app --key=synapse_instance)
app_service_registration_path=$(ynh_app_setting_get --app=$app --key=app_service_registration_path)
encryption=$(ynh_app_setting_get --app=$app --key=encryption)
mautrix_bridge_user=$app
2021-04-05 15:33:18 +02:00
mautrix_bridge_db_name=$(ynh_app_setting_get --app=$app --key=mautrix_bridge_db_name)
2021-08-19 15:58:02 +02:00
mautrix_bridge_db_pwd=$(ynh_app_setting_get --app=$app --key=mautrix_bridge_db_pwd)
2021-04-05 15:33:18 +02:00
botadmin=$(ynh_app_setting_get --app=$app --key=botadmin)
botusers=$(ynh_app_setting_get --app=$app --key=botusers)
apiid=$(ynh_app_setting_get --app=$app --key=apiid)
apihash=$(ynh_app_setting_get --app=$app --key=apihash)
bottoken=$(ynh_app_setting_get --app=$app --key=bottoken)
upstream_version=$(ynh_app_setting_get --app=$app --key=mautrix_version)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-04-05 15:20:06 +02:00
#=================================================
# CHECK VERSION
#=================================================
2022-07-16 01:38:42 +02:00
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-07-16 01:38:42 +02:00
ynh_clean_check_starting
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2022-07-16 01:38:42 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$mautrix_bridge_user
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2022-04-12 18:25:33 +02:00
if [ $encryption -eq 1 ]; then
# Install libolm-dev to be able to use encryption
ynh_install_extra_app_dependencies $pkg_dependencies_e2be
2022-04-12 18:25:33 +02:00
fi
2021-09-05 17:04:01 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
#=================================================
# SPECIFIC UPGRADE
#=================================================
2022-07-16 01:38:42 +02:00
# UPGRADE PYTHON PACKAGE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]; then
ynh_script_progression --message="Upgrading python packages..." --weight=1
2022-03-23 23:52:22 +01:00
python3 -m venv $final_path
2022-03-23 23:46:40 +01:00
export HOME=$final_path
$final_path/bin/pip3 install --upgrade pip setuptools wheel
$final_path/bin/pip3 install --upgrade $final_path/src/mautrix-telegram.tar.gz[speedups,qr_login] # metrics,e2be,hq_thumbnails,sqlite,formattednumbers
2022-04-12 18:25:33 +02:00
if [ $encryption -eq 1 ]; then
$final_path/bin/pip3 install --upgrade $final_path/src/mautrix-telegram.tar.gz[e2be]
fi
fi
2021-09-05 17:04:01 +02:00
#=================================================
2022-07-16 01:38:42 +02:00
# UPDATE A CONFIG FILE
2021-04-05 15:20:06 +02:00
#=================================================
2022-07-16 01:38:42 +02:00
ynh_script_progression --message="Updating a configuration file..."
2021-04-05 15:20:06 +02:00
# main configuration
2021-04-05 16:01:48 +02:00
mautrix_config_path="$final_path/config.yaml"
2021-04-05 15:20:06 +02:00
ynh_backup_if_checksum_is_different --file="$mautrix_config_path"
# as_token hs_token are autogenerated, save them before regenerating the config
2021-08-19 15:58:02 +02:00
as_token=$(grep "as_token:" "$mautrix_config_path" | sed -r "s/ *as_token: *//")
hs_token=$(grep "hs_token:" "$mautrix_config_path" | sed -r "s/ *hs_token: *//")
2021-04-05 15:20:06 +02:00
# ynh_replace_string --match_string=__AS_TOKEN__ --replace_string="$as_token" --target_file="$mautrix_config_path"
# ynh_replace_string --match_string=__HS_TOKEN__ --replace_string="$hs_token" --target_file="$mautrix_config_path"
2022-04-12 18:25:33 +02:00
is_encryption_enabled=$encryption
if [ $encryption -eq 1 ]; then
is_encryption_enabled=true
fi
2021-04-05 15:20:06 +02:00
write_bridge_config
2021-04-05 15:20:06 +02:00
# upgrade the app-service-registration
ynh_backup_if_checksum_is_different --file="$app_service_registration_path/$app.yaml"
2021-04-05 15:20:06 +02:00
$final_path/bin/python3 -m mautrix_telegram -g -c "$mautrix_config_path" -r "$app_service_registration_path/$app.yaml"
# Recalculate and store the checksum of the file for the next upgrade.
ynh_store_file_checksum --file="$mautrix_config_path"
2021-04-05 15:20:06 +02:00
ynh_store_file_checksum --file="$app_service_registration_path/$app.yaml"
#=================================================
2022-07-16 01:38:42 +02:00
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
2021-04-05 15:20:06 +02:00
chown $mautrix_bridge_user:root -R $final_path
2022-07-16 01:38:42 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
2021-04-05 15:20:06 +02:00
ynh_use_logrotate --non-append --logfile "/var/log/$app/$app.log"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-04-05 15:20:06 +02:00
yunohost service add $app --description "$app daemon for bridging Telegram and Matrix messages" --log "/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-04-05 15:20:06 +02:00
ynh_systemd_action --service_name=$app --action="start"
#=================================================
2022-07-16 01:38:42 +02:00
# RELOAD SYNAPSE
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Reloading synapse server..." --weight=1
/opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \
2022-07-16 16:24:51 +02:00
|| ynh_die --message="Synapse can't restart with the appservice configuration"
#=================================================
# END OF SCRIPT
#=================================================
2021-09-05 14:24:10 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last