2021-03-24 22:49:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
synapsenumber=$YNH_APP_ARG_SYNAPSENUMBER
|
|
|
|
botname=$YNH_APP_ARG_BOTNAME
|
|
|
|
encryption=$YNH_APP_ARG_ENCRYPTION
|
|
|
|
botadmin=$YNH_APP_ARG_BOTADMIN
|
|
|
|
botusers=$YNH_APP_ARG_BOTUSERS
|
|
|
|
|
2021-02-22 13:21:58 +01:00
|
|
|
# TODO new settings specific to telegram
|
|
|
|
apiid=$YNH_APP_ARG_APIID
|
|
|
|
apihash=$YNH_APP_ARG_APIHASH
|
|
|
|
bottoken=$YNH_APP_ARG_BOTTOKEN
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
final_path=/opt/yunohost/$app
|
|
|
|
|
2021-02-22 13:21:58 +01:00
|
|
|
# TODO check (in manifest?) if the selected synapse instance is not already connected to a mautrix_bridge bridge
|
2021-03-24 22:49:07 +01:00
|
|
|
if [ $synapsenumber -eq "1" ]
|
|
|
|
then
|
|
|
|
synapse_instance="synapse"
|
|
|
|
else
|
|
|
|
synapse_instance="synapse__$synapsenumber"
|
|
|
|
fi
|
|
|
|
server_name=$(ynh_app_setting_get --app $synapse_instance --key server_name)
|
|
|
|
domain=$(ynh_app_setting_get --app $synapse_instance --key domain)
|
|
|
|
synapse_config_path="/etc/matrix-$synapse_instance"
|
|
|
|
app_service_registration_path="/etc/matrix-$synapse_instance/app-service"
|
|
|
|
synapse_name="matrix-$synapse_instance"
|
|
|
|
synapse_user="matrix-$synapse_instance"
|
|
|
|
synapse_db_name="matrix_$synapse_instance"
|
|
|
|
synapse_db_user="matrix_$synapse_instance"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SET CONSTANTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#botname_synapse_db_user="@$botname:$server_name"
|
|
|
|
mautrix_bridge_user=$app
|
|
|
|
mautrix_bridge_db_name=$app
|
|
|
|
mautrix_bridge_db_user=$app
|
|
|
|
upstream_version=$(ynh_app_upstream_version)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
|
|
|
|
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2021-09-05 14:24:10 +02:00
|
|
|
ynh_script_progression --message="Finding an available port..." --weight=1
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
# Find a free port for communication between your local synapse instance (home server) and its app service mautrix_bridge.
|
2021-02-22 13:21:58 +01:00
|
|
|
port=$(ynh_find_port --port=29317)
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=7
|
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=server_name --value=$server_name
|
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
|
|
|
ynh_app_setting_set --app=$app --key=botname --value=$botname
|
|
|
|
ynh_app_setting_set --app=$app --key=synapse_instance --value=$synapse_instance
|
|
|
|
ynh_app_setting_set --app=$app --key=app_service_registration_path --value=$app_service_registration_path
|
|
|
|
ynh_app_setting_set --app=$app --key=encryption --value=$encryption
|
2021-04-05 13:28:00 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=mautrix_bridge_db_name --value=$mautrix_bridge_db_name
|
|
|
|
ynh_app_setting_set --app=$app --key=botadmin --value=$botadmin
|
2021-03-24 22:49:07 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=botusers --value=$botusers
|
2021-02-22 13:21:58 +01:00
|
|
|
|
|
|
|
ynh_app_setting_set --app=$app --key=apiid --value=$apiid
|
|
|
|
ynh_app_setting_set --app=$app --key=apihash --value=$apihash
|
|
|
|
ynh_app_setting_set --app=$app --key=bottoken --value=$bottoken
|
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=mautrix_version --value=$upstream_version
|
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=97
|
|
|
|
|
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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE A POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=3
|
|
|
|
|
|
|
|
ynh_print_OFF
|
|
|
|
mautrix_bridge_db_pwd=$(ynh_string_random --length=30)
|
|
|
|
ynh_app_setting_set --app=$app --key=mautrix_bridge_db_pwd --value=$mautrix_bridge_db_pwd
|
|
|
|
ynh_print_ON
|
|
|
|
|
|
|
|
# Create postgresql database
|
|
|
|
ynh_psql_test_if_first_run
|
|
|
|
ynh_print_OFF
|
|
|
|
ynh_psql_create_user $mautrix_bridge_db_user $mautrix_bridge_db_pwd
|
|
|
|
ynh_print_ON
|
|
|
|
ynh_psql_execute_as_root \
|
|
|
|
--sql="CREATE DATABASE ""$mautrix_bridge_db_name"" ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 OWNER ""$mautrix_bridge_db_user"";"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=3
|
|
|
|
|
|
|
|
### `ynh_setup_source` is used to install an app from a zip or tar.gz file,
|
|
|
|
### downloaded from an upstream source, like a git repository.
|
|
|
|
### `ynh_setup_source` use the file conf/app.src
|
|
|
|
|
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
|
|
|
|
|
|
|
# WARNING : theses command are used in INSTALL, UPGRADE (2 times)
|
|
|
|
# For any update do it in all files
|
|
|
|
#if [ -n "$(uname -m | grep 64)" ]
|
|
|
|
#then
|
|
|
|
# ynh_setup_source --dest_dir=$final_path/ --source_id="amd64_$(lsb_release --codename --short)"
|
|
|
|
#else
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path/src"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$mautrix_bridge_user
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=20
|
|
|
|
|
|
|
|
# Create systemd config for Mautrix-Bridge
|
|
|
|
#cp ../conf/default_mautrix-facebook /etc/default/$app
|
|
|
|
ynh_add_systemd_config --service=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SET MAUTRIX-BRIDGE CONFIG
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring Mautrix-Bridge..." --weight=2
|
|
|
|
|
|
|
|
# WARNING : theses command are used in INSTALL, UPGRADE, CONFIG, CHANGE-URL (4 times)
|
|
|
|
# For any update do it in all files
|
|
|
|
mautrix_config_path="$final_path/config.yaml"
|
2021-04-05 15:20:06 +02:00
|
|
|
as_token="\"This value is generated when generating the registration\""
|
|
|
|
hs_token="\"This value is generated when generating the registration\""
|
|
|
|
write_bridge_config
|
2021-04-05 13:28:00 +02:00
|
|
|
|
2021-03-24 22:49:07 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL MAUTRIX-BRIDGE PYTHON MODULE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
mkdir -p /var/log/$app
|
|
|
|
# Configure Mautrix-Bridge
|
|
|
|
python3 -m venv $final_path
|
2021-10-03 18:59:52 +02:00
|
|
|
export HOME=$final_path # HACK see https://github.com/mautrix/telegram/issues/661
|
2021-02-22 13:21:58 +01:00
|
|
|
$final_path/bin/pip3 install --upgrade setuptools wheel # HACK fixes "error: invalid command 'bdist_wheel'"
|
2021-04-05 17:05:31 +02:00
|
|
|
$final_path/bin/pip3 install --upgrade $final_path/src/mautrix-telegram.tar.gz[postgres,speedups,qr_login] # metrics,hq_thumbnails,e2be
|
2021-03-24 22:49:07 +01:00
|
|
|
# -r optional-requirements.txt
|
2021-02-22 13:21:58 +01:00
|
|
|
$final_path/bin/python3 -m mautrix_telegram -g -c "$mautrix_config_path" -r "$app_service_registration_path/$app.yaml"
|
|
|
|
# initialize the database
|
|
|
|
# HACK alembic won't find its script dir using a relative path unless when started from $final_path
|
|
|
|
# therefore we replace the script_location
|
|
|
|
ynh_replace_string --match_string="script_location = alembic" \
|
|
|
|
--replace_string="script_location = $final_path/alembic" \
|
|
|
|
--target_file="$final_path/alembic.ini"
|
|
|
|
$final_path/bin/alembic -c "$final_path/alembic.ini" -x config="$mautrix_config_path" upgrade head
|
2021-03-24 22:49:07 +01:00
|
|
|
|
2021-09-09 15:09:55 +02:00
|
|
|
# Handled by synapse: synapse_ynh adds all registration files added in $app_service_registration_path to the app_service_config_files list
|
2021-03-24 22:49:07 +01:00
|
|
|
/opt/yunohost/matrix-$synapse_instance/update_synapse_for_appservice.sh \
|
|
|
|
|| ynh_die "Synapse can't restart with the appservice configuration"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE THE CONFIG FILE CHECKSUM
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
### `ynh_store_file_checksum` is used to store the checksum of a file.
|
|
|
|
### That way, during the upgrade script, by using `ynh_backup_if_checksum_is_different`,
|
|
|
|
### you can make a backup of this file before modifying it again if the admin had modified it.
|
|
|
|
|
|
|
|
# Calculate and store the config file checksum into the app settings
|
|
|
|
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"
|
|
|
|
ynh_store_file_checksum --file="$final_path/alembic.ini"
|
2021-03-24 22:49:07 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
### For security reason, any app should set the permissions to root: before anything else.
|
|
|
|
### Then, if write authorization is needed, any access should be given only to directories
|
|
|
|
### that really need such authorization.
|
|
|
|
|
|
|
|
# WARNING : theses command are used in INSTALL, UPGRADE, RESTORE
|
|
|
|
# For any update do it in all files
|
|
|
|
chown $mautrix_bridge_user:root -R $final_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring log rotation..." --weight=3
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
2021-04-05 15:20:06 +02:00
|
|
|
# TODO maybe --specific-user??
|
2021-09-09 15:09:55 +02:00
|
|
|
ynh_use_logrotate --logfile "/var/log/$app/$app.log" --specific_user $mautrix_bridge_user
|
2021-03-24 22:49:07 +01:00
|
|
|
chown $mautrix_bridge_user:root -R /var/log/$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
#yunohost service add $app --log "/var/log/$app/log.log"
|
|
|
|
# if using yunohost version 3.2 or more in the 'manifest.json', a description can be added
|
2021-02-22 13:21:58 +01: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
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|