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
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Loading settings..." --weight=1
|
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)
|
2021-08-02 08:23:59 +02:00
|
|
|
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
2019-02-23 11:06:32 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
2019-02-23 11:06:32 +01:00
|
|
|
|
2021-11-23 08:28:18 +01:00
|
|
|
test ! -d $final_path || 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
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
|
2019-02-23 11:06:32 +01:00
|
|
|
|
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
|
|
|
|
2021-03-22 09:06:18 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
|
2021-03-22 09:06:18 +01:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2019-02-23 11:06:32 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Restoring $app main directory..." --weight=5
|
2019-02-23 11:06:32 +01:00
|
|
|
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2019-02-23 11:06:32 +01:00
|
|
|
|
2021-08-02 08:23:59 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2020-05-30 21:03:54 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE CONFIG
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Restoring the config path..." --weight=2
|
2020-05-30 21:03:54 +02:00
|
|
|
|
2021-08-02 08:23:59 +02:00
|
|
|
ynh_restore_file --origin_path="$datadir" --not_mandatory
|
2020-05-30 21:03:54 +02:00
|
|
|
|
2021-08-02 08:23:59 +02:00
|
|
|
mkdir -p $datadir
|
2020-05-30 19:18:05 +02:00
|
|
|
|
2021-08-02 08:23:59 +02:00
|
|
|
chmod 750 "$datadir"
|
|
|
|
chmod -R o-rwx "$datadir"
|
|
|
|
chown -R $app:www-data "$datadir"
|
2020-05-30 19:18:05 +02:00
|
|
|
|
2019-02-23 11:06:32 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=7
|
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 SYSTEMD
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
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-12-04 14:07:23 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2019-02-23 11:06:32 +01:00
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2019-10-25 11:04:41 +02:00
|
|
|
|
2020-12-14 11:14:10 +01:00
|
|
|
yunohost service add $app --description="Client Web IRC" --log="/var/log/$app/$app.log"
|
2019-10-25 11:04:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2019-10-25 11:04:41 +02:00
|
|
|
|
2021-08-30 22:37:35 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path=systemd
|
2019-10-25 11:04:41 +02:00
|
|
|
|
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
|
|
|
#=================================================
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
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
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-23 08:28:18 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|