1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/peertube_ynh.git synced 2024-09-03 19:56:29 +02:00
peertube_ynh/scripts/restore

172 lines
6.1 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-06-01 03:40:44 +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
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2019-04-03 03:21:30 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Loading settings..."
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)
db_name=$(ynh_app_setting_get --app=$app --key=psql_db)
db_user=$app
db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2019-06-03 22:37:54 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
2018-04-01 00:03:32 +02:00
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Restoring the nginx configuration..."
2019-06-03 22:37:54 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2019-06-03 22:37:54 +02:00
ynh_restore_file --origin_path="$final_path"
2018-04-01 00:03:32 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Recreating the dedicated system user..."
# Create the dedicated user (if not existing)
2019-10-24 20:13:53 +02:00
ynh_system_user_create --username=$app --home_dir=$final_path
2018-04-01 00:03:32 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Restoring user rights..."
2020-06-01 03:40:44 +02:00
# Restore permissions on app files
chown -R $app:$app $final_path
#=================================================
# SPECIFIC RESTORATION
2020-06-01 03:40:44 +02:00
#=================================================
# CREATE THE DATA DIRECTORY
#=================================================
ynh_script_progression --message="Creating the data directory..."
# Define app's data directory
datadir="/home/yunohost.app/${app}/storage"
if [ ! -d "$datadir" ]
then
# Create app folders
mkdir -p "$datadir"
fi
# Give permission to the datadir
chown -R "$app":"$app" "$datadir"
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2019-04-03 02:43:43 +02:00
# Install nodejs
2020-06-01 03:40:44 +02:00
ynh_install_nodejs --nodejs_version=$YNH_NODEJS_VERSION
2019-04-03 02:43:43 +02:00
# Install dependencies
ynh_install_app_dependencies $pkg_dependencies
# Install ffmpeg from backports for Debian Jessie and from main for others
if [ "$(lsb_release --codename --short)" == "jessie" ]; then
2019-04-03 02:43:43 +02:00
ynh_install_extra_app_dependencies --repo="deb http://httpredir.debian.org/debian jessie-backports main" --package="ffmpeg"
else
ynh_add_app_dependencies --package="ffmpeg"
fi
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-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
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2019-06-03 22:37:54 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service
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
yunohost service add $app --description "$app daemon for Peertube" --log "/home/yunohost.app/${app}/storage/logs/peertube.log"
#=================================================
2019-06-03 22:37:54 +02:00
# START SYSTEMD SERVICE
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-06-03 22:37:54 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Server listening on localhost"
2018-04-01 00:03:32 +02:00
#=================================================
2019-06-03 22:37:54 +02:00
# RESTORE THE LOGROTATE CONFIGURATION
2018-04-01 00:03:32 +02:00
#=================================================
2020-06-01 03:40:44 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..."
2018-04-01 00:03:32 +02:00
2019-06-03 22:37:54 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
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-06-01 03:40:44 +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"