mirror of
https://github.com/YunoHost-Apps/mautrix_discord_ynh.git
synced 2024-09-03 19:36:35 +02:00
124 lines
4.6 KiB
Bash
Executable file
124 lines
4.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Retrieve some values from selected Synapse instance and store them
|
|
server_name=$(ynh_app_setting_get --app $synapse_instance --key server_name)
|
|
domain=$(ynh_app_setting_get --app $synapse_instance --key domain)
|
|
ynh_app_setting_set --app=$app --key=server_name --value=$server_name
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
synapse_db_name="matrix_$synapse_instance"
|
|
|
|
synapse_version=$(yunohost app info $synapse_instance | grep -oP "version:\s*\K.*")
|
|
|
|
#=================================================
|
|
# SET STANDARD SETTINGS FROM DEFAULT CONFIG
|
|
#=================================================
|
|
|
|
# Die if Synapse is too outdated (1.22.0 is required for ephemeral_events)
|
|
if dpkg --compare-versions $synapse_version lt 1.22.0; then
|
|
ynh_die --message="Unsupported Synapse version. Please upgrade."
|
|
fi
|
|
|
|
appserviceid=$app
|
|
if dpkg --compare-versions $synapse_version ge 1.97.0; then
|
|
async_media="true"
|
|
else
|
|
async_media="false"
|
|
fi
|
|
|
|
listrelay="*"
|
|
listadmin="$botadmin"
|
|
listuser="$botusers"
|
|
|
|
ynh_app_setting_set --app=$app --key=async_media --value=$async_media
|
|
ynh_app_setting_set --app=$app --key=listrelay --value=$listrelay
|
|
ynh_app_setting_set --app=$app --key=listadmin --value=$listadmin
|
|
ynh_app_setting_set --app=$app --key=listuser --value=$listuser
|
|
|
|
#=================================================
|
|
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
|
|
|
ynh_app_setting_set --app=$app --key=listuser --value=$listuser
|
|
# Download, check integrity, uncompress and patch the source from manifest.toml
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
chmod 750 "$install_dir/$APP_BIN"
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
#=================================================
|
|
# SYSTEM CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
ynh_add_systemd_config
|
|
|
|
yunohost service add $app --description="Matrix Discord pupetting bridge for YunoHost" --log="/var/log/$app/$app.log"
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
ynh_use_logrotate --logfile "/var/log/$app/$app.log" --nonappend --specific_user $app/$app
|
|
chmod -R 600 "/var/log/$app"
|
|
chmod 700 "/var/log/$app"
|
|
chown -R $app:$app /var/log/$app
|
|
|
|
#=================================================
|
|
# APP INITIAL CONFIGURATION
|
|
#=================================================
|
|
# ADD A CONFIGURATION
|
|
#=================================================
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
|
|
|
|
|
ynh_add_config --template="config.yaml" --destination="$install_dir/config.yaml"
|
|
|
|
chmod 400 "$install_dir/config.yaml"
|
|
chown $app:$app "$install_dir/config.yaml"
|
|
|
|
|
|
# This calls allows to set multiple users during install question "botusers" specifying them separated by a comma
|
|
set__listuser
|
|
set__listrelay
|
|
set__listadmin
|
|
|
|
$install_dir/$APP_BIN -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"
|
|
|
|
chown -R $app:$app "$install_dir"
|
|
ynh_store_file_checksum --file="/etc/matrix-$synapse_instance/app-service/$app.yaml"
|
|
ynh_store_file_checksum --file="$install_dir/config.yaml"
|
|
|
|
#=================================================
|
|
# GENERIC FINALIZATION
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
# Wait until the synapse user is created
|
|
sleep 30
|
|
|
|
# (Note that, by default, non-admins might not have your homeserver's permission to create Spaces.)
|
|
if [ "$bot_synapse_adm" = true ]
|
|
then
|
|
ynh_psql_execute_as_root --database=$synapse_db_name --sql="UPDATE users SET admin = 1 WHERE name = ""$botname"";"
|
|
fi
|
|
|
|
ynh_systemd_action --service_name=$app --action="restart"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
ynh_script_progression --message="Installation of $app completed" --last
|