2021-03-24 22:49:07 +01:00
|
|
|
#!/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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
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)
|
2021-06-14 19:35:46 +02:00
|
|
|
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
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2022-07-16 01:38:42 +02:00
|
|
|
ynh_script_progression --message="Checking version..."
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
# 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
|
2021-03-24 22:49:07 +01:00
|
|
|
# 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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# 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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
# 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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2022-04-12 18:25:33 +02:00
|
|
|
if [ $encryption -eq 1 ]; then
|
2022-08-12 19:26:48 +02:00
|
|
|
# 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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
2022-07-16 01:38:42 +02:00
|
|
|
# UPGRADE PYTHON PACKAGE
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
|
2021-09-17 17:59:25 +02:00
|
|
|
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
|
2022-08-10 16:00:34 +02:00
|
|
|
$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
|
2021-02-22 13:21:58 +01:00
|
|
|
fi
|
2021-09-05 17:04:01 +02:00
|
|
|
|
2021-03-24 22:49:07 +01: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-02-22 13:21:58 +01:00
|
|
|
|
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-02-22 13:21:58 +01:00
|
|
|
|
2021-04-05 15:20:06 +02:00
|
|
|
# upgrade the app-service-registration
|
2021-02-22 13:21:58 +01:00
|
|
|
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"
|
2021-02-22 13:21:58 +01:00
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
# Recalculate and store the checksum of the file for the next upgrade.
|
2021-02-22 13:21:58 +01:00
|
|
|
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"
|
2021-02-22 13:21:58 +01:00
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
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
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# 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
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2022-07-16 01:38:42 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
# 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"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
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"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2021-04-05 15:20:06 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-16 01:38:42 +02:00
|
|
|
# RELOAD SYNAPSE
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Reloading synapse server..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2021-02-22 13:21:58 +01:00
|
|
|
/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"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|