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

218 lines
8.7 KiB
Text
Raw Normal View History

2021-09-21 00:25:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_clean_setup () {
#### Remove this function if there's nothing to clean before calling the remove script.
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-09-21 00:25:53 +02:00
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-11-11 16:20:35 +01:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path_url)
2021-11-13 09:55:19 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2021-09-21 00:25:53 +02:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-11-11 16:20:35 +01:00
language_key=$(ynh_app_setting_get --app=$app --key=language_key)
secret_key=$(ynh_app_setting_get --app=$app --key=secret_key)
utils_secret=$(ynh_app_setting_get --app=$app --key=utils_secret)
minio_domain=$(ynh_app_setting_get --app="minio" --key=domain)
2022-03-30 10:19:12 +02:00
minio_admin=$(ynh_app_setting_get --app="minio" --key=admin)
minio_password=$(ynh_app_setting_get --app="minio" --key=password)
2021-11-11 16:20:35 +01:00
minio_key=$(ynh_app_setting_get --app="minio" --key=minio_key)
mc_path=$(ynh_app_setting_get --app="minio" --key=mc_path)
2022-04-01 16:00:48 +02:00
dex_app=$(ynh_app_setting_get --app=$app --key=dex_app)
dex_domain=$(ynh_app_setting_get --app=$app --key=dex_domain)
dex_path=$(ynh_app_setting_get --app=$app --key=dex_path)
oidc_secret=$(ynh_app_setting_get --app=$app --key=oidc_secret)
oidc_name=$(ynh_app_setting_get --app=$app --key=oidc_name)
oidc_callback=$(ynh_app_setting_get --app=$app --key=oidc_callback)
2022-04-01 16:42:10 +02:00
dex_auth_uri=$(ynh_app_setting_get --app=$app --key=dex_auth_uri)
dex_token_uri=$(ynh_app_setting_get --app=$app --key=dex_token_uri)
dex_user_uri=$(ynh_app_setting_get --app=$app --key=dex_user_uri)
2021-09-21 00:25:53 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2021-09-21 00:25:53 +02:00
test ! -d $final_path \
2021-11-11 16:20:35 +01:00
|| ynh_die --message="There is already a directory: $final_path"
2021-09-21 00:25:53 +02:00
2022-04-01 21:43:59 +02:00
#=================================================
# CHECK IF DEX IS INSTALLED, IF NOT INSTALL IT
#=================================================
ynh_script_progression --message="Installing Dex if needed..." --weight=18
if ! yunohost app list | grep -q "id: $dex_app"; then
echo "Dex is not installed. Installing... "
yunohost tools update
if yunohost app list | grep -q "$dex_domain$dex_path"; then
ynh_die "The domain provided for Dex is already used by another app. Please chose another one !"
fi
yunohost app install https://github.com/YunoHost-Apps/dex_ynh --force --args "domain=$dex_domain&path=$dex_path&OIDC_name=$oidc_name&OIDC_secret=$oidc_secret&OIDC_callback=$oidc_callback"
fi
#=================================================
# CHECK IF MINIO IS INSTALLED, IF NOT INSTALL IT
#=================================================
ynh_script_progression --message="Installing MinIO if needed..." --weight=18
if ! yunohost app list | grep -q "id: minio"; then
echo "MinIO is not installed. Installing... "
yunohost tools update
if yunohost app list | grep -q "$minio_domain"; then
ynh_die "The domain provided for MinIO is already used by another app. Please chose another one !"
fi
yunohost app install https://github.com/YunoHost-Apps/minio_ynh --force --args "domain=$minio_domain&is_public=true&admin=$minio_admin&password=$minio_password"
fi
2021-09-21 00:25:53 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
2021-09-21 00:25:53 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
2021-09-21 00:25:53 +02:00
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-09-21 00:25:53 +02:00
ynh_restore_file --origin_path="$final_path"
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2021-11-12 17:44:18 +01:00
#=================================================
# RESTORE MINIO
#=================================================
2021-11-12 19:02:29 +01:00
mv "$final_path/outlinestorage" "$mc_path/outlinestorage"
chown -R minio:www-data "$mc_path/outlinestorage"
2021-11-12 17:44:18 +01:00
pushd "$mc_path"
ynh_exec_warn_less sudo -u minio ./mc mb minio/outlinestorage --region "fr-ynh-1"
ynh_exec_warn_less sudo -u minio ./mc policy set public minio/outlinestorage
2021-11-13 08:32:14 +01:00
ynh_exec_warn_less sudo -u minio ./mc mirror --a ./outlinestorage/ minio/outlinestorage
2021-11-12 17:44:18 +01:00
popd
2021-11-13 07:35:43 +01:00
ynh_secure_remove --file="$mc_path/outlinestorage"
2021-11-12 17:44:18 +01:00
2021-09-21 00:25:53 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
2021-09-21 00:25:53 +02:00
2021-09-23 20:12:33 +02:00
# Install nodejs
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2021-09-21 00:25:53 +02:00
2021-09-23 20:12:33 +02:00
ynh_install_app_dependencies $pkg_dependencies
2021-09-21 00:25:53 +02:00
2021-09-23 20:12:33 +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"
2021-09-21 00:25:53 +02:00
#=================================================
2021-11-11 16:20:35 +01:00
# RESTORE THE POSTGRESQL DATABASE
2021-09-21 00:25:53 +02:00
#=================================================
2021-09-23 20:12:33 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
2021-09-21 00:25:53 +02:00
2021-09-23 20:12:33 +02:00
ynh_psql_test_if_first_run
2021-11-11 19:14:18 +01:00
ynh_psql_setup_db --db_user=$db_name --db_name=$db_name --db_pwd=$secret_key
2021-09-23 20:12:33 +02:00
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
2021-09-21 00:25:53 +02:00
2021-11-13 09:51:37 +01:00
#=================================================
# UPDATING A CONFIGURATION
#=================================================
ynh_secure_remove --file="$final_path/.env"
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Updating the configuration file..." --weight=1
2021-11-13 09:51:37 +01:00
ynh_add_config --template="../conf/.env" --destination="$final_path/.env"
chmod 400 "$final_path/.env"
chown $app:$app "$final_path/.env"
2021-09-21 00:25:53 +02:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
2021-09-21 00:25:53 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoring the logrotate configuration..." --weight=1
2021-09-21 00:25:53 +02:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2021-11-11 04:17:59 +01:00
#=================================================
# RESTORE THE LOGS
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoring the logs..." --weight=1
2021-11-11 04:17:59 +01:00
ynh_restore_file --origin_path="/var/log/$app/$app.log"
2021-09-21 00:25:53 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-09-21 00:25:53 +02:00
2021-11-11 17:30:22 +01:00
yunohost service add $app --description="Outline server" --log="/var/log/$app/$app.log"
2021-09-21 00:25:53 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-09-21 00:25:53 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-09-21 00:25:53 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Restoration completed for $app" --last