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

179 lines
6.7 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
2019-08-11 15:58:52 +02:00
source ../settings/scripts/ynh_add_swap
source /usr/share/yunohost/helpers
2018-05-01 20:43:05 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
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
#=================================================
ynh_script_progression --message="Loading settings..."
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)
2021-03-01 21:15:26 +01:00
db_user=$(ynh_sanitize_dbid --db_name=$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
#=================================================
ynh_script_progression --message="Validating restoration parameters..."
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
#=================================================
ynh_script_progression --message="Restoring the nginx configuration..."
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
#=================================================
ynh_script_progression --message="Restoring the app main directory..."
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
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
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
#=================================================
ynh_script_progression --message="Restoring user rights..."
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
#=================================================
ynh_script_progression --message="Adding swap if needed..."
2019-08-11 15:58:52 +02:00
total_memory=$(ynh_get_ram --total)
2019-08-11 15:58:52 +02:00
swap_needed=0
2020-05-26 13:19:50 +02:00
if [ $total_memory -lt $MEMORY_NEEDED ]; then
2019-08-11 15:58:52 +02:00
# Need a minimum of 8Go of memory
2020-05-26 13:19:50 +02:00
swap_needed=$(($MEMORY_NEEDED - $total_memory))
2019-08-11 15:58:52 +02:00
fi
ynh_script_progression --message="Adding $swap_needed Mo to swap..."
2019-08-11 15:58:52 +02:00
ynh_add_swap --size=$swap_needed
2018-05-01 20:43:05 +02:00
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Reinstalling dependencies..."
2021-03-08 00:45:35 +01:00
ynh_install_app_dependencies $pkg_dependencies
2020-05-19 18:58:25 +02:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2019-05-14 21:04:05 +02:00
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
2021-03-08 00:45:35 +01:00
ynh_install_ruby --ruby_version=$RUBY_VERSION
2018-05-01 20:43:05 +02:00
#=================================================
# INSTALLING RUBY AND BUNDLER
#=================================================
ynh_script_progression --message="Installing Ruby..."
2019-03-21 20:34:35 +01:00
2020-05-19 01:20:45 +02:00
pushd "$final_path/live"
2021-03-08 00:45:35 +01:00
ynh_use_ruby
# ynh_gem update --system
ynh_gem install bundler --no-document
2020-05-19 01:20:45 +02:00
popd
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
#=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..."
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
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..."
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"
2021-02-17 19:22:07 +01:00
systemctl enable "$app-web" "$app-sidekiq" "$app-streaming" --quiet
2018-05-01 20:43:05 +02:00
2018-06-21 04:48:02 +02:00
#=================================================
2020-02-23 19:51:58 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2018-06-21 04:48:02 +02:00
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2018-06-21 04:48:02 +02:00
yunohost service add "$app-web" --description "$app web service"
yunohost service add "$app-sidekiq" --description "$app sidekiq service"
yunohost service add "$app-streaming" --description "$app streaming service"
2018-06-21 04:48:02 +02:00
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
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2018-11-07 05:12:21 +01:00
2021-03-07 20:17:05 +01:00
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on"
2020-12-11 14:40:13 +01:00
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Schedules Loaded"
2019-05-10 16:34:57 +02:00
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
#=================================================
ynh_script_progression --message="Restoring the cron file..."
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
#=================================================
2021-02-17 19:22:07 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
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
#=================================================
ynh_script_progression --message="Restoration completed for $app"