1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zeronet_ynh.git synced 2024-09-03 17:46:12 +02:00
zeronet_ynh/scripts/restore

144 lines
5 KiB
Text
Raw Normal View History

2020-11-09 13:27:06 +01:00
#!/bin/bash
2017-03-03 21:26:30 +01:00
2020-11-09 13:27:06 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-05-22 13:13:46 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2020-11-09 13:27:06 +01:00
source ../settings/scripts/_common.sh
2017-03-03 21:26:30 +01:00
source /usr/share/yunohost/helpers
2020-11-09 13:27:06 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2020-11-09 13:27:06 +01:00
ynh_clean_setup () {
true
}
2020-11-09 13:27:06 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2020-11-09 13:27:06 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..."
2020-11-09 13:27:06 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-11-09 13:27:06 +01: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)
port=$(ynh_app_setting_get --app=$app --key=port)
fs_port=$(ynh_app_setting_get --app=$app --key=fs_port)
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2020-11-09 13:27:06 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
ynh_script_progression --message="Validating restoration parameters..."
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2021-05-22 13:13:46 +02:00
ynh_script_progression --message="Restoring the NGINX configuration..."
2020-11-09 13:27:06 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
# Create the dedicated user (if not existing)
2021-05-22 13:13:46 +02:00
ynh_system_user_create --username=$app --home_dir=$final_path
2020-11-09 13:27:06 +01:00
#=================================================
2021-05-22 13:13:46 +02:00
# RESTORE THE APP MAIN DIR
2020-11-09 13:27:06 +01:00
#=================================================
2021-05-22 13:13:46 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2020-11-09 13:27:06 +01:00
2021-05-22 13:13:46 +02:00
ynh_restore_file --origin_path="$final_path"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:$app "$final_path"
2020-11-09 13:27:06 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Reinstalling dependencies..."
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2021-05-23 09:48:04 +02:00
#=================================================
# BUILDING ZERONET
#=================================================
ynh_script_progression --message="Building zeronet..."
pushd "$final_path"
2021-05-27 23:47:07 +02:00
python3 -m venv venv
venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements.txt
2021-05-23 09:48:04 +02:00
popd
2020-11-09 13:27:06 +01:00
2021-05-22 13:13:46 +02:00
#=================================================
# RESTORE VARIOUS FILES
#=================================================
ynh_script_progression --message="Restoring various files..."
# Restore permissions on app files
ynh_restore_file --origin_path="$datadir"
mkdir -p "$datadir"
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:$app "$datadir"
2020-11-09 13:27:06 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..."
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2021-02-08 21:29:31 +01:00
systemctl enable $app.service --quiet
2020-11-09 13:27:06 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2021-05-22 13:13:46 +02:00
yunohost service add $app --description="$app service" --log="$datadir/log/debug-last.log" --needs_exposed_ports="$fs_port"
2020-11-09 13:27:06 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2021-05-23 09:48:04 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Ui.UiServer Web interface" --timeout=120
2020-11-09 13:27:06 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2020-11-26 11:35:22 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2020-11-09 13:27:06 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2017-03-03 21:26:30 +01:00
2020-11-26 11:32:52 +01:00
ynh_script_progression --message="Restoration completed for $app"