1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mautrix_signal_ynh.git synced 2024-09-03 19:46:07 +02:00
mautrix_signal_ynh/scripts/install

224 lines
8.6 KiB
Text
Raw Normal View History

2021-01-04 12:14:25 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2022-09-04 22:28:27 +02:00
synapsenumber=$YNH_APP_ARG_SYNAPSENUMBER
botname=$YNH_APP_ARG_BOTNAME
bot_synapse_adm=true
encryption=false
botadmin=$YNH_APP_ARG_BOTADMIN
botusers=$YNH_APP_ARG_BOTUSERS
2022-09-04 22:28:27 +02:00
app=$YNH_APP_INSTANCE_NAME
2022-02-02 11:01:47 +01:00
if [ "$botusers" == "admin" ]
then
botusers=$botadmin
fi
2022-09-04 22:28:27 +02: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
server_name=$(ynh_app_setting_get --app $synapse_instance --key server_name)
domain=$(ynh_app_setting_get --app $synapse_instance --key domain)
mautrix_version=$(ynh_app_upstream_version)
2022-09-04 22:28:27 +02:00
enable_relaybot=true
bot_synapse_db_user="@$botname:$server_name"
synapse_db_name="matrix_$synapse_instance"
signald_user="signald" # This is actually chosen by the signald dependency
2021-01-04 12:14:25 +01:00
#=================================================
2021-01-22 22:44:36 +01:00
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
2021-01-04 12:14:25 +01:00
#=================================================
2021-01-22 22:44:36 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2021-01-04 12:14:25 +01:00
final_path=/opt/yunohost/$app
2021-01-22 22:44:36 +01:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2021-01-04 12:14:25 +01:00
2021-01-22 22:44:36 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_script_progression --message="Storing installation settings..." --weight=7
2021-01-04 12:14:25 +01:00
ynh_app_setting_set --app=$app --key=botname --value=$botname
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
ynh_app_setting_set --app=$app --key=botadmin --value=$botadmin
ynh_app_setting_set --app=$app --key=botusers --value=$botusers
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
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=mautrix_version --value=$mautrix_version
2021-01-04 12:14:25 +01:00
#=================================================
# STANDARD MODIFICATIONS
2021-01-04 12:14:25 +01:00
#=================================================
# FIND AND OPEN A PORT
2021-01-04 12:14:25 +01:00
#=================================================
ynh_script_progression --message="Finding an available port..." --weight=1
2021-01-04 12:14:25 +01:00
# Find a free port for communication between your local synapse instance (home server) and its app service mautrix_bridge.
port=$(ynh_find_port --port=8449)
ynh_app_setting_set --app=$app --key=port --value=$port
2021-01-04 12:14:25 +01:00
#=================================================
# INSTALL DEPENDENCIES
2021-01-04 12:14:25 +01:00
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=10
2021-01-04 12:14:25 +01:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
ynh_install_extra_app_dependencies --repo="https://updates.signald.org unstable main" --package="$extra_dependencies" --key="https://updates.signald.org/apt-signing-key.asc"
2022-02-04 01:03:48 +01:00
sleep 3
2021-01-04 12:14:25 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-01-22 22:44:36 +01:00
ynh_script_progression --message="Configuring system user..." --weight=1
2021-01-04 12:14:25 +01:00
# Create a system user
# 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
2022-09-04 22:28:27 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path" --groups="$signald_user"
2021-01-04 12:14:25 +01:00
#=================================================
# CREATE A POSTGRESQL DATABASE
2021-01-04 12:14:25 +01:00
#=================================================
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=3
2021-01-04 12:14:25 +01:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
2022-09-04 22:28:27 +02:00
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_psql_test_if_first_run
2022-09-04 22:28:27 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2021-01-04 12:14:25 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2021-01-04 12:14:25 +01:00
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=3
2021-01-04 12:14:25 +01:00
2022-09-04 22:28:27 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path/src"
2022-09-04 22:28:27 +02:00
chmod 750 "$final_path"
2022-09-04 22:28:27 +02:00
chmod -R o-rwx "$final_path"
chown -R $app:$app "$final_path"
2021-01-04 12:14:25 +01:00
2022-09-04 22:28:27 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
# 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
ynh_add_config --template="../conf/config.yaml" --destination="$final_path/config.yaml"
2021-02-06 00:40:51 +01:00
2022-09-04 22:28:27 +02:00
chmod 400 "$final_path/config.yaml"
chown $app:$app "$final_path/config.yaml"
2021-02-06 00:40:51 +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
2023-09-05 22:29:01 +02:00
if [ $YNH_ARCH == "armhf" ] || [ $YNH_ARCH == "armel" ]
then
# Install rustup is not already installed
# We need this to be able to install cryptgraphy
export PATH="$PATH:$final_path/.cargo/bin:$final_path/.local/bin:/usr/local/sbin"
if [ -e $final_path/.rustup ]; then
sudo -u "$app" env PATH=$PATH rustup update
else
sudo -u "$app" bash -c 'curl -sSf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --default-toolchain=stable --profile=minimal'
fi
fi
2021-02-06 00:43:01 +01:00
mkdir -p /var/log/$app
2023-09-05 22:29:01 +02:00
2023-09-07 01:31:06 +02:00
python3 -m venv $final_path
export HOME=$final_path
$final_path/bin/pip3 install --upgrade pip setuptools wheel
$final_path/bin/pip3 install --upgrade $final_path/src/mautrix-signal.tar.gz[metrics,e2be,formattednumbers,qrlink,stickers]
#=================================================
# REGISTER SYNAPSE APP-SERVICE
#=================================================
2022-09-04 22:28:27 +02:00
ynh_script_progression --message="Registering Synapse app-service" --weight=1
$final_path/bin/python3 -m mautrix_signal -g -c $final_path/config.yaml -r /etc/matrix-$synapse_instance/app-service/$app.yaml
2022-09-04 23:58:20 +02:00
/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
chown -R $app:$app "$final_path"
ynh_store_file_checksum --file="/etc/matrix-$synapse_instance/app-service/$app.yaml"
ynh_store_file_checksum --file="$final_path/config.yaml"
2021-01-04 12:14:25 +01:00
#=================================================
2022-09-04 22:28:27 +02:00
# SETUP SYSTEMD
2021-01-04 12:14:25 +01:00
#=================================================
2022-09-04 22:28:27 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=3
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
2021-01-04 12:14:25 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-01-22 22:44:36 +01:00
ynh_script_progression --message="Configuring log rotation..." --weight=3
2021-01-04 12:14:25 +01:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
chmod -R 600 "/var/log/$app"
chmod 700 "/var/log/$app"
chown -R $app:$app /var/log/$app
2021-01-04 12:14:25 +01:00
#=================================================
2022-09-04 22:28:27 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2021-01-04 12:14:25 +01:00
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-09-04 22:28:27 +02:00
2022-09-04 23:58:20 +02: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
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
2021-01-04 12:14:25 +01:00
# Start a systemd service
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