1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/thelounge_ynh.git synced 2024-09-03 20:35:54 +02:00
thelounge_ynh/scripts/restore

138 lines
4.6 KiB
Text
Raw Normal View History

2019-02-23 11:06:32 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2020-03-19 14:02:22 +01:00
ynh_clean_setup () {
2020-05-30 11:57:12 +02:00
ynh_clean_check_starting
2020-03-19 14:02:22 +01:00
}
2019-02-23 11:06:32 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Loading settings..."
2019-02-23 11:06:32 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-05-27 18:18:11 +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)
config_path=$(ynh_app_setting_get --app=$app --key=config_path)
2019-02-23 11:06:32 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2019-02-23 11:06:32 +01:00
2019-10-25 11:04:41 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2019-02-23 11:06:32 +01:00
test ! -d $final_path \
2019-10-25 11:04:41 +02:00
|| ynh_die --message="There is already a directory: $final_path "
2019-02-23 11:06:32 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2019-10-25 11:04:41 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-02-23 11:06:32 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2019-02-23 11:06:32 +01:00
2020-05-29 22:51:48 +02:00
ynh_restore_file --origin_path=$final_path
2019-02-23 11:06:32 +01:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Recreating the dedicated system user..."
2019-02-23 11:06:32 +01:00
# Create the dedicated user (if not existing)
2020-05-29 22:51:48 +02:00
ynh_system_user_create --username=$app
2019-02-23 11:06:32 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2019-02-23 11:06:32 +01:00
2020-05-27 17:03:30 +02:00
# Install Nodejs
2020-05-29 22:51:48 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2020-05-27 17:03:30 +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"
2019-02-23 11:06:32 +01:00
#=================================================
# RESTORE THE CONFIG
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Restoring the config path..."
2019-02-23 11:06:32 +01:00
2020-05-29 22:51:48 +02:00
ynh_restore_file --origin_path=$config_path
2019-02-23 11:06:32 +01:00
2020-05-30 16:10:21 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Restore permissions to app files
chown -R $app: $final_path
chown -R $app: $config_path
2019-02-23 11:06:32 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2019-02-23 11:06:32 +01:00
2019-10-25 11:04:41 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2020-05-27 17:03:30 +02:00
2019-02-23 11:06:32 +01:00
systemctl enable $app.service
2019-10-25 11:04:41 +02:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
yunohost service add $app --log "/var/log/$app/$app.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-10-25 11:04:41 +02:00
2020-05-30 11:57:12 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Available at http"
2019-10-25 11:04:41 +02:00
2019-02-23 11:06:32 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2019-10-25 11:04:41 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2019-02-23 11:06:32 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2019-10-25 11:04:41 +02:00
# RELOAD NGINX
2019-02-23 11:06:32 +01:00
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Reloading nginx web server..."
2019-02-23 11:06:32 +01:00
2019-10-25 11:04:41 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-23 11:06:32 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-05-27 17:03:30 +02:00
ynh_script_progression --message="Restoration completed for $app" --last