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

180 lines
6.9 KiB
Text
Raw Normal View History

#!/bin/bash
2018-05-01 20:43:05 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-03-19 23:16:12 +01:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2019-10-07 22:54:13 +02:00
source ../settings/scripts/ynh_install_ruby__2
source ../settings/scripts/ynh_add_extra_apt_repos__3
2019-08-11 15:58:52 +02:00
source ../settings/scripts/ynh_add_swap
source ../settings/scripts/ynh_check_ram
source /usr/share/yunohost/helpers
2018-05-01 20:43:05 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2020-02-23 18:44:50 +01:00
ynh_script_progression --message="Managing script failure..." --weight=2
2018-05-01 20:43:05 +02:00
ynh_clean_setup () {
ynh_clean_check_starting
}
2018-05-01 20:43:05 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Loading settings..." --weight=2
app=$YNH_APP_INSTANCE_NAME
2019-05-10 16:34:57 +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)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$app
2019-05-10 19:38:49 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
2018-05-01 20:43:05 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=2
2019-05-10 16:34:57 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2018-05-01 20:43:05 +02:00
test ! -d $final_path \
2019-05-10 16:34:57 +02:00
|| ynh_die --message="There is already a directory: $final_path "
2018-05-01 20:43:05 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoring nginx configuration..." --weight=1
2019-05-10 16:34:57 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-05-01 20:43:05 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=105
2019-05-10 16:34:57 +02:00
ynh_restore_file --origin_path="$final_path"
2018-05-01 20:43:05 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=5
2019-03-21 02:07:49 +01:00
# Create the dedicated user (if not existing)
2019-05-10 16:34:57 +02:00
ynh_system_user_create --username=$app --home_dir=$final_path
2018-05-01 20:43:05 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoring users rights..." --weight=4
2018-05-01 20:43:05 +02:00
# Restore permissions on app files
chown -R $app: $final_path
2018-05-01 20:43:05 +02:00
#=================================================
# SPECIFIC RESTORATION
2019-08-11 15:58:52 +02:00
#=================================================
# ADD SWAP IF NEEDED
#=================================================
2020-02-23 18:44:50 +01:00
ynh_script_progression --message="Adding swap if needed..." --weight=4
2019-08-11 15:58:52 +02:00
total_memory=$(ynh_check_ram)
total_swap=$(ynh_check_ram --only_swap)
swap_needed=0
if [ $total_memory -lt 2560 ]; then
# Need a minimum of 8Go of memory
swap_needed=$((2560 - $total_memory))
fi
ynh_script_progression --message="Adding $swap_needed Mo to swap..." --weight=1
ynh_add_swap --size=$swap_needed
2018-05-01 20:43:05 +02:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=63
2020-02-10 21:01:52 +01:00
ynh_install_nodejs --nodejs_version="10"
2019-05-14 21:04:05 +02:00
ynh_install_app_dependencies $pkg_dependencies
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-05-01 20:43:05 +02:00
#=================================================
# INSTALLING RUBY AND BUNDLER
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Installing Ruby..." --weight=393
2019-03-21 20:34:35 +01:00
2019-10-07 22:54:13 +02:00
ynh_install_ruby --ruby_version=2.6.5
/opt/rbenv/versions/2.6.5/bin/gem update --system
2019-12-28 23:50:28 +01:00
/opt/rbenv/versions/2.6.5/bin/gem install bundler:1.17.3 --no-document
2019-03-21 20:34:35 +01:00
2018-05-01 20:43:05 +02:00
#=================================================
2019-03-18 04:22:38 +01:00
# RESTORE THE POSTGRESQL DATABASE
2018-05-01 20:43:05 +02:00
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=18
2018-06-21 04:48:02 +02:00
2018-05-01 11:29:25 +02:00
ynh_psql_test_if_first_run
2019-05-10 19:38:49 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
2019-10-08 01:22:50 +02:00
ynh_psql_execute_as_root --sql="ALTER USER $db_user CREATEDB;"
2019-05-10 16:34:57 +02:00
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
2017-04-18 02:47:58 +02:00
2018-05-01 20:43:05 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=3
2018-05-01 20:43:05 +02:00
2019-05-10 16:34:57 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app-web.service"
ynh_restore_file --origin_path="/etc/systemd/system/$app-sidekiq.service"
ynh_restore_file --origin_path="/etc/systemd/system/$app-streaming.service"
2018-05-01 20:43:05 +02:00
systemctl enable "$app-web" "$app-sidekiq" "$app-streaming"
2018-06-21 04:48:02 +02:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Advertising service in admin panel..." --weight=3
2018-06-21 04:48:02 +02:00
yunohost service add $app-web
yunohost service add $app-sidekiq
yunohost service add $app-streaming
2018-11-07 05:12:21 +01:00
#=================================================
2019-05-10 16:34:57 +02:00
# START SYSTEMD SERVICE
2018-11-07 05:12:21 +01:00
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=41
2018-11-07 05:12:21 +01:00
2019-05-10 16:34:57 +02:00
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on tcp"
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Starting processing"
ynh_systemd_action --service_name=${app}-streaming --action="start" --log_path=systemd --line_match="Worker 1 now listening"
2018-11-07 05:12:21 +01:00
2018-05-01 20:43:05 +02:00
#=================================================
2019-05-10 16:34:57 +02:00
# RESTORE THE CRON FILE
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoring a cron job for removing cache..." --weight=2
2019-05-10 16:34:57 +02:00
ynh_restore_file --origin_path="/etc/cron.d/$app"
2019-05-10 16:34:57 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
2018-05-01 20:43:05 +02:00
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Reloading nginx web server..." --weight=2
2018-05-01 20:43:05 +02:00
2019-05-10 16:34:57 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-03-18 04:22:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-12 03:01:21 +02:00
ynh_script_progression --message="Restoration completed for $app" --last