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

146 lines
5.3 KiB
Text
Raw Normal View History

2019-01-29 21:56:56 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-07-07 22:34:33 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-01-29 21:56:56 +01:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
2020-06-03 23:48:48 +02:00
#=================================================
2019-01-29 21:56:56 +01:00
ynh_clean_setup () {
2019-02-01 22:11:47 +01:00
ynh_clean_check_starting
2019-01-29 21:56:56 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Loading settings..."
2019-01-29 21:56:56 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-15 14:00:19 +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)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
2019-07-07 22:34:33 +02:00
ldap_user=$(ynh_app_setting_get --app=$app --key=ldap_user)
ldap_password=$(ynh_app_setting_get --app=$app --key=ldap_password)
2019-01-29 21:56:56 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2019-01-29 21:56:56 +01:00
test ! -d $final_path \
2019-05-15 14:00:19 +02:00
|| ynh_die --message="There is already a directory: $final_path "
2019-01-29 21:56:56 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Restoring the nginx configuration..."
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-01-29 21:56:56 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
ynh_restore_file --origin_path="$final_path"
2019-01-29 21:56:56 +01:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Recreating the dedicated system user..."
2019-01-29 21:56:56 +01:00
# Create the dedicated user (if not existing)
2019-05-15 14:00:19 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2019-01-29 21:56:56 +01:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Restoring user rights..."
2019-01-29 21:56:56 +01:00
# Restore permissions on app files
2019-02-01 08:55:16 +01:00
chown -R "$app":"$app" "$final_path"
2019-01-29 21:56:56 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Reinstalling dependencies..."
2019-01-29 21:56:56 +01:00
# Define and install dependencies
2020-06-03 23:48:48 +02:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
ynh_use_nodejs
2019-03-14 01:19:10 +01:00
ynh_install_app_dependencies $pkg_dependencies
2019-02-03 05:12:39 +01:00
2019-02-11 06:05:30 +01:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Restoring the PostgreSQL database..."
2019-02-11 06:05:30 +01:00
ynh_psql_test_if_first_run
2019-05-15 14:00:19 +02:00
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
2020-01-28 00:45:37 +01:00
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS pg_trgm;" --database=$db_name
2019-05-15 14:00:19 +02:00
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
2019-02-11 06:05:30 +01:00
2019-01-29 21:56:56 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Restoring the systemd configuration..."
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service
2019-01-29 21:56:56 +01:00
#=================================================
2019-12-27 23:53:20 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2019-01-29 21:56:56 +01:00
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2019-01-29 21:56:56 +01:00
2019-12-27 23:53:20 +01:00
yunohost service add $app --description "$app daemon for Wiki.js" --log_type systemd
2019-01-29 21:56:56 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
# START SYSTEMD SERVICE
2019-01-29 21:56:56 +01:00
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-01-29 21:56:56 +01:00
2020-01-08 01:06:00 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="HTTP Server:"
2019-02-01 22:11:47 +01:00
2019-07-07 22:34:33 +02:00
#=================================================
# CREATE LDAP USER
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Creating LDAP user..."
2019-07-07 22:34:33 +02:00
2019-07-09 08:30:38 +02:00
yunohost user create $ldap_user --firstname "SvcWikijsLdap" --lastname "SvcWikijsLdap" --mail ${ldap_user}@$domain --password $ldap_password -q 0
2019-07-07 22:34:33 +02:00
2019-02-01 22:11:47 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
# GENERIC FINALIZATION
2019-02-01 22:11:47 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
# RELOAD NGINX
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Reloading nginx web server..."
2019-02-01 22:11:47 +01:00
2019-05-15 14:00:19 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-27 22:24:34 +01:00
2019-02-11 06:05:30 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-06-03 23:48:48 +02:00
ynh_script_progression --message="Restoration completed for $app"