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
|
|
|
|
|
2022-11-28 12:45:39 +01:00
|
|
|
appserviceid=$(ynh_app_setting_get --app=$app --key=appserviceid)
|
2021-04-05 15:33:18 +02:00
|
|
|
botname=$(ynh_app_setting_get --app=$app --key=botname)
|
|
|
|
encryption=$(ynh_app_setting_get --app=$app --key=encryption)
|
|
|
|
botadmin=$(ynh_app_setting_get --app=$app --key=botadmin)
|
|
|
|
botusers=$(ynh_app_setting_get --app=$app --key=botusers)
|
2022-09-04 23:58:47 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_user=$db_name
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
synapse_instance=$(ynh_app_setting_get --app=$app --key=synapse_instance)
|
|
|
|
server_name=$(ynh_app_setting_get --app=$app --key=server_name)
|
|
|
|
synapse_registration_path=$(ynh_app_setting_get --app=$app --key=synapse_registration_path)
|
2021-04-05 15:33:18 +02:00
|
|
|
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)
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_script_progression --message="Checking version..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=5
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# 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
|
|
|
|
|
2022-11-28 12:45:39 +01:00
|
|
|
# If appserviceid doesn't exist, create it
|
|
|
|
if [ -z "$appserviceid" ]
|
|
|
|
then
|
|
|
|
appserviceid=$app
|
|
|
|
ynh_app_setting_set --app=$app --key=appserviceid --value=$appserviceid
|
|
|
|
fi
|
|
|
|
|
2022-12-06 18:51:47 +01:00
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
if [ -z "$db_name" ]
|
|
|
|
then
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=mautrix_bridge_db_name)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If db_pwd doesn't exist, create it
|
|
|
|
if [ -z "$db_pwd" ]
|
|
|
|
then
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=mautrix_bridge_db_pwd)
|
|
|
|
ynh_app_setting_set --app=$app --key=psqlpwd --value=$db_pwd
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If synapse_registration_path doesn't exist, create it
|
|
|
|
if [ -z "$synapse_registration_path" ]
|
|
|
|
then
|
|
|
|
synapse_registration_path=$(ynh_app_setting_get --app=$app --key=app_service_registration_path)
|
|
|
|
ynh_app_setting_set --app=$app --key=synapse_registration_path --value=$synapse_registration_path
|
|
|
|
fi
|
|
|
|
|
2022-07-16 01:38:42 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2022-07-16 01:38:42 +02:00
|
|
|
|
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
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path/src"
|
2021-03-24 22:49:07 +01:00
|
|
|
fi
|
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:$app "$final_path"
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# 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-08-27 23:33:17 +02:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
# UPDATE A CONFIG FILE
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=2
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
# main configuration
|
|
|
|
ynh_backup_if_checksum_is_different --file="$final_path/config.yaml"
|
|
|
|
# as_token hs_token are autogenerated, save them before regenerating the config
|
|
|
|
as_token=$(grep "as_token:" "$final_path/config.yaml" | sed -r "s/ *as_token: *//")
|
|
|
|
hs_token=$(grep "hs_token:" "$final_path/config.yaml" | sed -r "s/ *hs_token: *//")
|
|
|
|
# ynh_replace_string --match_string=__AS_TOKEN__ --replace_string="$as_token" --target_file="$final_path/config.yaml"
|
|
|
|
# ynh_replace_string --match_string=__HS_TOKEN__ --replace_string="$hs_token" --target_file="$final_path/config.yaml"
|
|
|
|
is_encryption_enabled="$encryption"
|
2022-04-12 18:25:33 +02:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
if [ $encryption -eq 1 ]; then
|
|
|
|
is_encryption_enabled="true"
|
2021-02-22 13:21:58 +01:00
|
|
|
fi
|
2021-09-05 17:04:01 +02:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_add_config --template="../conf/config.yaml" --destination="$final_path/config.yaml"
|
|
|
|
|
|
|
|
chmod 400 "$final_path/config.yaml"
|
|
|
|
chown $app:$app "$final_path/config.yaml"
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
# UPGRADE MAUTRIX-BRIDGE PYTHON MODULE
|
2021-04-05 15:20:06 +02:00
|
|
|
#=================================================
|
2022-09-04 23:58:47 +02:00
|
|
|
ynh_script_progression --message="Upgrading Mautrix-Bridge Python Module..." --weight=2
|
2021-02-22 13:21:58 +01:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
python3 -m venv $final_path
|
|
|
|
export HOME=$final_path
|
|
|
|
$final_path/bin/pip3 install --upgrade pip setuptools wheel
|
2022-12-06 18:51:47 +01:00
|
|
|
$final_path/bin/pip3 install --upgrade $final_path/src/mautrix-telegram.tar.gz[e2be,speedups,qr_login] # metrics,hq_thumbnails,sqlite,formattednumbers
|
2022-04-12 18:25:33 +02:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
#=================================================
|
|
|
|
# REGISTER SYNAPSE APP-SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Registering Synapse app-service" --weight=1
|
2021-02-22 13:21:58 +01:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
$final_path/bin/python3 -m mautrix_telegram -g -c $final_path/config.yaml -r "$synapse_registration_path/$app.yaml"
|
|
|
|
/opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh || ynh_die --message="Synapse can't restart with the appservice configuration"
|
2021-02-22 13:21:58 +01:00
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
# Set permissions on app files
|
|
|
|
chown -R $app:$app "$final_path"
|
|
|
|
ynh_store_file_checksum --file="$synapse_registration_path/$app.yaml"
|
|
|
|
ynh_store_file_checksum --file="$final_path/config.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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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"
|
2022-09-04 23:58:47 +02:00
|
|
|
chown -R $app:$app /var/log/$app
|
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
|
|
|
|
2022-09-04 23:58:47 +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
|
|
|
|
2022-09-04 23:58:47 +02:00
|
|
|
# Start a systemd service
|
2021-04-05 15:20:06 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start"
|
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
|