2021-01-04 12:14:25 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2024-02-26 13:49:53 +01:00
# INITIALIZE AND STORE SETTINGS
2021-01-04 12:14:25 +01:00
#=================================================
2022-01-25 09:49:10 +01:00
bot_synapse_adm=true
encryption=false
2022-09-04 22:28:27 +02:00
2024-02-26 13:49:53 +01:00
if [[ -z "${botusers}" ]] || [ "$botusers" == "admin" ]; then
if_botusers="# "
else
if_botusers=""
2022-01-25 09:49:10 +01:00
fi
2022-09-04 22:28:27 +02:00
2021-02-10 21:07:18 +01:00
# ToDo check (in manifest?) if the selected synapse instance is not already connected to a mautrix_bridge bridge
2021-01-22 22:44:36 +01:00
if [ $synapsenumber -eq "1" ]
then
2022-09-04 22:28:27 +02:00
synapse_instance="synapse"
2021-01-22 22:44:36 +01:00
else
2022-09-04 22:28:27 +02:00
synapse_instance="synapse__$synapsenumber"
2021-01-22 22:44:36 +01:00
fi
2024-02-26 14:05:59 +01:00
server_name=$(ynh_app_setting_get --app $synapse_instance --key server_name)
domain=$(ynh_app_setting_get --app $synapse_instance --key domain)
2022-01-25 09:49:10 +01:00
mautrix_version=$(ynh_app_upstream_version)
2022-09-04 22:28:27 +02:00
bot_synapse_db_user="@$botname:$server_name"
synapse_db_name="matrix_$synapse_instance"
2021-01-04 12:14:25 +01:00
2022-01-25 09:49:10 +01:00
ynh_app_setting_set --app=$app --key=bot_synapse_adm --value=$bot_synapse_adm
2021-01-22 22:44:36 +01:00
ynh_app_setting_set --app=$app --key=encryption --value=$encryption
2022-09-04 22:28:27 +02:00
ynh_app_setting_set --app=$app --key=synapse_instance --value=$synapse_instance
ynh_app_setting_set --app=$app --key=server_name --value=$server_name
2022-01-25 09:49:10 +01:00
ynh_app_setting_set --app=$app --key=mautrix_version --value=$mautrix_version
2021-01-04 12:14:25 +01:00
2021-08-19 17:41:14 +02:00
# Add the user to the signald group. The signald group was created when the signald
# package was installed from the extra repository
2022-02-03 22:49:26 +01:00
# resolved by https://gitlab.com/signald/signald/-/commit/278240f3f1cc40a3b444c958b68ca3d6908e98a8
2024-02-26 13:49:53 +01:00
usermod -a -G "$signald_user" "$app"
2021-01-04 12:14:25 +01:00
#=================================================
2022-01-25 09:49:10 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2021-01-04 12:14:25 +01:00
#=================================================
2022-01-25 09:49:10 +01:00
ynh_script_progression --message="Setting up source files..." --weight=3
2021-01-04 12:14:25 +01:00
2022-01-25 09:49:10 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2024-02-26 13:49:53 +01:00
ynh_setup_source --dest_dir="$install_dir/src"
2022-09-04 22:28:27 +02:00
2024-02-26 13:49:53 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:$app" "$install_dir"
mkdir -p /var/log/$app
2021-01-04 12:14:25 +01:00
2022-01-25 09:49:10 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-09-04 22:28:27 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=2
2021-01-22 22:44:36 +01:00
2024-02-26 13:49:53 +01:00
ynh_add_config --template="config.yaml" --destination="$install_dir/config.yaml"
2021-02-06 00:40:51 +01:00
2024-02-26 13:49:53 +01:00
chmod 400 "$install_dir/config.yaml"
chown "$app:$app" "$install_dir/config.yaml"
2021-08-19 17:41:14 +02:00
2021-02-06 00:40:51 +01:00
#=================================================
2021-02-10 21:07:18 +01:00
# INSTALL MAUTRIX-BRIDGE PYTHON MODULE
2021-02-06 00:40:51 +01:00
#=================================================
2022-09-04 23:58:20 +02:00
ynh_script_progression --message="Installing Mautrix-Bridge Python Module..." --weight=6
2021-02-06 00:40:51 +01:00
2024-02-26 13:49:53 +01:00
if [ "$YNH_ARCH" == "armhf" ] || [ "$YNH_ARCH" == "armel" ]; then
# Install rustup is not already installed
# We need this to be able to install cryptgraphy
_install_rustup
2023-09-05 22:29:01 +02:00
fi
2024-02-26 13:49:53 +01:00
_mautrix_signal_build_venv
2022-01-25 09:49:10 +01:00
#=================================================
# REGISTER SYNAPSE APP-SERVICE
#=================================================
2022-09-04 22:28:27 +02:00
ynh_script_progression --message="Registering Synapse app-service" --weight=1
2022-01-25 09:49:10 +01:00
2024-02-26 13:49:53 +01:00
"$install_dir/venv/bin/python3" -m mautrix_signal -g -c "$install_dir/config.yaml" -r "/etc/matrix-$synapse_instance/app-service/$app.yaml"
"/opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh" || ynh_die --message="Synapse can't restart with the appservice configuration"
2022-09-04 22:28:27 +02:00
2024-02-26 13:49:53 +01:00
chown -R "$app:$app" "$install_dir"
2022-09-04 22:28:27 +02:00
ynh_store_file_checksum --file="/etc/matrix-$synapse_instance/app-service/$app.yaml"
2024-02-26 13:49:53 +01:00
ynh_store_file_checksum --file="$install_dir/config.yaml"
2021-01-04 12:14:25 +01:00
#=================================================
2024-02-26 13:49:53 +01:00
# SYSTEM CONFIGURATION
2021-01-04 12:14:25 +01:00
#=================================================
2024-02-26 13:49:53 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2021-01-04 12:14:25 +01:00
2022-09-04 22:28:27 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
2024-02-26 13:49:53 +01:00
yunohost service add "$app" --description="$app daemon for bridging Signal and Matrix messages" --log=/var/log/$app/$app.log
2021-01-04 12:14:25 +01:00
# Use logrotate to manage application logfile(s)
2022-01-25 09:49:10 +01:00
ynh_use_logrotate
2021-01-04 12:14:25 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-02-26 13:49:53 +01:00
ynh_script_progression --message="Starting $app's systemd service..." --weight=2
2021-01-04 12:14:25 +01:00
# Start a systemd service
2024-02-26 13:49:53 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2021-01-04 12:14:25 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-02-05 23:47:33 +01:00
ynh_script_progression --message="Installation of $app completed" --last