2018-03-27 19:32:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-09 23:37:52 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-04-03 03:27:49 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2018-03-31 12:09:27 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-03 03:21:30 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
2018-03-27 19:32:35 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-04-09 23:37:52 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2021-01-13 20:59:06 +01:00
|
|
|
rtmp_port=$(ynh_app_setting_get --app=$app --key=rtmp_port)
|
2021-02-26 03:34:51 +01:00
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2022-01-07 04:42:28 +01:00
|
|
|
db_user=$(ynh_app_setting_get --app=$app --key=db_user)
|
2021-02-26 03:34:51 +01:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
2020-09-27 19:00:21 +02:00
|
|
|
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2022-01-07 04:42:28 +01:00
|
|
|
test ! -d $final_path \
|
|
|
|
|| ynh_die --message="There is already a directory: $final_path "
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
2018-04-01 00:03:32 +02:00
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
2021-04-09 23:37:52 +02:00
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Recreating the dedicated system user..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
|
|
|
# Create the dedicated user (if not existing)
|
2022-01-07 04:42:28 +01:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2018-04-01 00:03:32 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-04-01 00:03:32 +02:00
|
|
|
#=================================================
|
2021-04-10 19:38:56 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2021-04-17 18:31:58 +02:00
|
|
|
chmod 750 "$final_path"
|
2021-04-10 19:38:56 +02:00
|
|
|
chmod -R o-rwx "$final_path"
|
2021-06-18 01:10:37 +02:00
|
|
|
chown -R $app:www-data "$final_path"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2020-06-01 03:40:44 +02:00
|
|
|
#=================================================
|
2020-09-20 18:36:20 +02:00
|
|
|
# RESTORE THE DATA DIRECTORY
|
2020-06-01 03:40:44 +02:00
|
|
|
#=================================================
|
2021-06-29 22:13:41 +02:00
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
2020-06-01 03:40:44 +02:00
|
|
|
|
2020-09-20 18:36:20 +02:00
|
|
|
ynh_restore_file --origin_path="$datadir" --not_mandatory
|
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
mkdir -p $datadir
|
2020-06-01 03:40:44 +02:00
|
|
|
|
2021-04-17 18:31:58 +02:00
|
|
|
chmod 750 "$datadir"
|
2021-04-10 19:38:56 +02:00
|
|
|
chmod -R o-rwx "$datadir"
|
2021-06-18 01:10:37 +02:00
|
|
|
chown -R $app:www-data "$datadir"
|
2021-04-10 19:38:56 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-06-29 22:13:41 +02:00
|
|
|
# SPECIFIC RESTORATION
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2019-04-03 02:43:43 +02:00
|
|
|
# Install nodejs
|
2021-04-11 20:43:53 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2018-04-04 08:00:27 +02:00
|
|
|
|
2019-04-03 02:43:43 +02:00
|
|
|
# Install dependencies
|
2021-12-07 19:19:38 +01:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
2019-04-03 02:43:43 +02:00
|
|
|
|
|
|
|
# Install Yarn
|
|
|
|
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2022-01-30 21:34:03 +01:00
|
|
|
if ! yunohost app list | grep -q "prosody"
|
|
|
|
then
|
2022-02-06 15:30:20 +01:00
|
|
|
yunohost tools update
|
|
|
|
yunohost app install prosody
|
2022-02-06 02:01:51 +01:00
|
|
|
else
|
2022-02-06 15:30:20 +01:00
|
|
|
yunohost tools update
|
|
|
|
yunohost app upgrade prosody
|
2022-01-30 21:34:03 +01:00
|
|
|
fi
|
|
|
|
|
2022-02-06 02:01:51 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=require_prosody --value="1"
|
|
|
|
|
2018-03-31 12:09:27 +02:00
|
|
|
#=================================================
|
2019-04-03 01:12:03 +02:00
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
2018-03-31 12:09:27 +02:00
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..."
|
2018-03-31 12:09:27 +02:00
|
|
|
|
|
|
|
ynh_psql_test_if_first_run
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
|
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
|
2018-03-31 12:09:27 +02:00
|
|
|
|
2021-06-29 22:13:41 +02:00
|
|
|
#=================================================
|
|
|
|
# OPEN A PORT
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring firewall..."
|
|
|
|
|
|
|
|
# Open the port
|
|
|
|
ynh_exec_warn_less yunohost firewall allow TCP $rtmp_port
|
|
|
|
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2021-01-02 20:14:02 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2022-01-07 04:42:28 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the logrotate configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2019-04-03 03:06:16 +02:00
|
|
|
#=================================================
|
2020-02-23 19:42:08 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2019-04-03 03:06:16 +02:00
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2019-04-03 03:06:16 +02:00
|
|
|
|
2021-04-09 23:37:52 +02:00
|
|
|
yunohost service add $app --description="$app daemon for Peertube" --log="$datadir/logs/peertube.log" --needs_exposed_ports $rtmp_port
|
2019-04-03 03:06:16 +02:00
|
|
|
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
2019-06-03 22:37:54 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2018-03-27 19:32:35 +02:00
|
|
|
#=================================================
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2021-03-30 22:58:26 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="HTTP server listening on localhost"
|
2018-03-27 19:32:35 +02:00
|
|
|
|
2019-04-03 02:23:06 +02:00
|
|
|
#=================================================
|
2019-06-03 22:37:54 +02:00
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
2019-04-03 02:23:06 +02:00
|
|
|
#=================================================
|
2020-09-11 14:20:57 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2019-04-03 02:23:06 +02:00
|
|
|
|
2019-06-03 22:37:54 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-04-03 01:12:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-06-01 03:40:44 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|