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

191 lines
7.3 KiB
Text
Raw Normal View History

2021-02-21 06:08:46 +01: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 () {
2021-07-07 16:42:05 +02:00
ynh_clean_check_starting
2021-02-21 06:08:46 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2021-07-07 16:42:05 +02:00
ynh_script_progression --message="Loading installation settings..."
2021-02-21 06:08:46 +01:00
app=$YNH_APP_INSTANCE_NAME
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-07-07 16:42:05 +02:00
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)
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2021-02-21 06:08:46 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2021-07-07 16:42:05 +02:00
ynh_script_progression --message="Validating restoration parameters..."
2021-02-21 06:08:46 +01:00
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-07-07 16:42:05 +02:00
ynh_script_progression --message="Restoring the NGINX web server configuration..."
2021-02-21 06:08:46 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2021-07-07 16:42:05 +02:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
ynh_script_progression --message="Recreating the dedicated system user..."
# Create the dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir=$final_path
2021-02-21 06:08:46 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-07-07 16:42:05 +02:00
ynh_script_progression --message="Restoring the app main directory..."
2021-02-21 06:08:46 +01:00
ynh_restore_file --origin_path="$final_path"
2021-07-07 16:42:05 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:$app "$final_path"
2021-02-21 06:08:46 +01:00
#=================================================
2021-07-07 16:42:05 +02:00
# RESTORE THE DATA DIRECTORY
2021-02-21 06:08:46 +01:00
#=================================================
2021-07-07 16:42:05 +02:00
ynh_script_progression --message="Restoring the data directory..."
2021-02-21 06:08:46 +01:00
2021-07-07 16:42:05 +02:00
ynh_restore_file --origin_path="$datadir" --not_mandatory
2021-02-21 06:08:46 +01:00
2021-07-07 16:42:05 +02:00
mkdir -p $datadir
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:$app "$datadir"
2021-02-21 06:08:46 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
2021-07-07 16:42:05 +02:00
# REINSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Reinstalling dependencies..."
# Define and install dependencies
2021-07-30 20:15:04 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2021-07-07 16:42:05 +02:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
ynh_use_nodejs
2021-07-30 20:15:04 +02:00
ln -fs /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
2021-07-07 16:42:05 +02:00
#=================================================
# BUILDING IMAGEMAGICK
#=================================================
ynh_script_progression --message="Building ImageMagick..."
ynh_setup_source --dest_dir="$final_path/build-imagemagick/" --source_id="imagemagick"
2021-07-30 20:15:04 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies $imagemagick_build_dependencies
2021-07-07 16:42:05 +02:00
# Install ImageMagick
pushd "$final_path/build-imagemagick/"
2021-08-22 14:13:53 +02:00
ynh_exec_warn_less ./configure --with-modules
ynh_exec_warn_less make
ynh_exec_warn_less make install
ynh_exec_warn_less ldconfig /usr/local/lib
2021-07-07 16:42:05 +02:00
popd
ynh_secure_remove --file="$final_path/build-imagemagick"
2021-07-30 20:15:04 +02:00
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2021-07-07 16:42:05 +02:00
#=================================================
# RESTORE THE POSTGRESQL DATABASE
#=================================================
ynh_script_progression --message="Restoring the PostgreSQL database..."
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
#=================================================
# RESTORE SYSTEMD
#=================================================
ynh_script_progression --message="Restoring the systemd configuration..."
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
ynh_restore_file --origin_path="/etc/systemd/system/$app-ui.service"
systemctl enable $app-ui.service --quiet
ynh_restore_file --origin_path="/etc/systemd/system/$app-iframely.service"
systemctl enable $app-iframely.service --quiet
ynh_restore_file --origin_path="/etc/systemd/system/$app-pict-rs.service"
systemctl enable $app-pict-rs.service --quiet
2021-08-22 14:30:50 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the logrotate configuration..."
mkdir -p "/var/log/$app"
chmod 750 "/var/log/$app"
chmod -R o-rwx "/var/log/$app"
chown -R $app:$app "/var/log/$app"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2021-07-07 16:42:05 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
yunohost service add $app --description="A short description of the app" --log="/var/log/$app/$app.log"
yunohost service add $app-ui --description="A short description of the app" --log="/var/log/$app/$app-ui.log"
yunohost service add $app-iframely --description="A short description of the app" --log="/var/log/$app/$app-iframely.log"
yunohost service add $app-pict-rs --description="A short description of the app" --log="/var/log/$app/$app-pict-rs.log"
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..."
ynh_systemd_action --service_name=$app --action="start" --line_match="Started" --log_path=systemd
ynh_systemd_action --service_name=$app-ui --action="start" --line_match="Started" --log_path=systemd
ynh_systemd_action --service_name=$app-iframely --action="start" --line_match="Started" --log_path=systemd
ynh_systemd_action --service_name=$app-pict-rs --action="start" --line_match="Started" --log_path=systemd
2021-02-21 06:08:46 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2021-07-07 16:42:05 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2021-02-21 06:08:46 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-07-07 16:42:05 +02:00
ynh_script_progression --message="Restoration completed for $app"