1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/coin_ynh.git synced 2024-09-03 18:16:26 +02:00
coin_ynh/scripts/restore

157 lines
5.7 KiB
Text
Raw Normal View History

2017-04-09 11:05:39 +02:00
#!/bin/bash
2019-08-23 16:08:03 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-09-03 00:23:04 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-08-23 16:08:03 +02:00
source ../settings/scripts/_common.sh
2022-09-03 18:22:34 +02:00
source ../settings/scripts/ynh_install_python
2019-08-23 16:08:03 +02:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
2022-09-03 00:23:04 +02:00
true
2019-08-23 16:08:03 +02:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Loading settings..." --weight=1
2017-04-09 11:05:39 +02:00
2019-08-24 17:35:13 +02:00
export app=$YNH_APP_INSTANCE_NAME
2017-04-09 11:05:39 +02:00
2019-08-24 17:35:13 +02:00
export domain=$(ynh_app_setting_get --app=$app --key=domain)
export path_url=$(ynh_app_setting_get --app=$app --key=path)
2022-03-13 23:43:18 +01:00
export final_path=$(ynh_app_setting_get --app=$app --key=final_path)
export db_name=$(ynh_app_setting_get --app=$app --key=db_name)
export db_user=$db_name
2019-08-24 17:35:13 +02:00
export admin=$(ynh_app_setting_get --app=$app --key=admin)
export email=$(ynh_app_setting_get --app=$app --key=email)
export isp_name=$(ynh_app_setting_get --app=$app --key=isp_name)
export isp_site=$(ynh_app_setting_get --app=$app --key=isp_site)
export secret=$(ynh_app_setting_get --app=$app --key=secret)
2019-08-23 16:08:03 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2019-08-23 16:08:03 +02:00
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2019-08-23 16:08:03 +02:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app
#=================================================
2022-03-13 23:43:18 +01:00
# RESTORE THE APP MAIN DIR
2019-08-23 16:08:03 +02:00
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2022-03-13 23:43:18 +01:00
ynh_restore_file --origin_path="$final_path"
2019-08-23 16:08:03 +02:00
2022-03-13 23:43:18 +01:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-08-23 16:08:03 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2019-08-23 16:08:03 +02:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2022-09-03 00:23:04 +02:00
ynh_install_python --python_version=$python_version
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-08-23 16:08:03 +02:00
#=================================================
2022-03-13 23:43:18 +01:00
# RESTORE THE POSTGRESQL DATABASE
2019-08-23 16:08:03 +02:00
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=1
2019-08-23 16:08:03 +02:00
2019-08-24 17:35:13 +02:00
ynh_psql_test_if_first_run
2022-03-13 23:43:18 +01:00
export db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
2019-08-24 17:35:13 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_connect_as --user=$db_user --password=$db_pwd --database=$db_name < ./db.sql
2019-08-23 16:08:03 +02:00
2022-09-03 00:23:04 +02:00
#=================================================
# PYTHON DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing more dependencies..." --weight=1
pushd "$final_path"
ynh_use_python
ynh_exec_warn_less $ynh_pip install --upgrade pip
ynh_exec_warn_less $ynh_pip install gunicorn
echo "django-auth-ldap<1.4" >> $final_path/requirements.txt
ynh_exec_warn_less $ynh_pip install -r $final_path/requirements.txt
popd
2019-08-23 16:08:03 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2019-08-23 16:08:03 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2022-03-13 23:43:18 +01:00
systemctl enable $app.service --quiet
#================================================
# CONFIGURE LOG DIR
#================================================
mkdir -p /var/log/$app
chown -R $app /var/log/$app
chgrp -R www-data /var/log/$app
2019-08-23 16:08:03 +02:00
#=================================================
2022-03-13 23:43:18 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2019-08-23 16:08:03 +02:00
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2019-08-23 16:08:03 +02:00
2022-03-13 23:43:18 +01:00
yunohost service add $app --description "$app daemon" --log="/var/log/$app/$app.log"
2019-08-23 16:08:03 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2019-08-23 16:08:03 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# GENERIC FINALIZATION
#=================================================
2019-08-24 17:35:13 +02:00
# RELOAD NGINX
2019-08-23 16:08:03 +02:00
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-08-23 16:08:03 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-09-03 00:23:04 +02:00
ynh_script_progression --message="Restoration completed for $app" --last