2017-04-10 04:55:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-03-19 23:16:12 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2019-04-06 16:08:48 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-05-01 20:43:05 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-06 16:08:48 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
ynh_clean_check_starting
|
|
|
|
}
|
2018-05-01 20:43:05 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2017-04-19 02:37:40 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-10 16:34:57 +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)
|
2022-01-10 19:28:30 +01:00
|
|
|
db_user=$(ynh_app_setting_get --app=$app --key=db_user)
|
2019-05-10 19:38:49 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
2017-04-10 04:55:10 +02:00
|
|
|
|
2022-01-10 19:28:30 +01:00
|
|
|
test ! -d $final_path \
|
|
|
|
|| ynh_die --message="There is already a directory: $final_path "
|
2017-04-19 02:37:40 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2019-03-21 02:07:49 +01:00
|
|
|
# Create the dedicated user (if not existing)
|
2022-01-10 19:28:30 +01:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2021-04-10 00:18:53 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=10
|
2021-04-10 00:18:53 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2021-04-17 18:31:31 +02:00
|
|
|
chmod 750 "$final_path"
|
2021-04-10 00:18:53 +02:00
|
|
|
chmod -R o-rwx "$final_path"
|
2021-04-17 18:51:14 +02:00
|
|
|
chown -R $app:www-data "$final_path"
|
2017-05-06 22:30:44 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
2022-01-10 19:28:30 +01:00
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2022-04-18 13:49:05 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=10
|
2022-01-10 19:28:30 +01:00
|
|
|
|
|
|
|
# Define and install dependencies
|
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
|
|
|
ynh_install_ruby --ruby_version=$RUBY_VERSION
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=10
|
2022-01-10 19:28:30 +01:00
|
|
|
|
|
|
|
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_as_root --sql="ALTER USER $db_user CREATEDB;"
|
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database="$db_name"
|
|
|
|
|
2019-08-11 15:58:52 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD SWAP IF NEEDED
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Adding swap if needed..." --weight=1
|
2019-08-11 15:58:52 +02:00
|
|
|
|
2020-05-26 13:18:02 +02:00
|
|
|
total_memory=$(ynh_get_ram --total)
|
2019-08-11 15:58:52 +02:00
|
|
|
swap_needed=0
|
|
|
|
|
2020-05-26 13:19:50 +02:00
|
|
|
if [ $total_memory -lt $MEMORY_NEEDED ]; then
|
2019-08-11 15:58:52 +02:00
|
|
|
# Need a minimum of 8Go of memory
|
2020-05-26 13:19:50 +02:00
|
|
|
swap_needed=$(($MEMORY_NEEDED - $total_memory))
|
2019-08-11 15:58:52 +02:00
|
|
|
fi
|
|
|
|
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Adding $swap_needed Mo to swap..." --weight=1
|
2019-08-11 15:58:52 +02:00
|
|
|
ynh_add_swap --size=$swap_needed
|
|
|
|
|
2019-04-06 16:08:48 +02:00
|
|
|
#=================================================
|
2024-02-15 09:46:11 +01:00
|
|
|
# INSTALLING RUBY, BUNDLER, AND YARN
|
2019-04-06 16:08:48 +02:00
|
|
|
#=================================================
|
2022-04-18 13:49:05 +02:00
|
|
|
ynh_script_progression --message="Installing Ruby dependencies..." --weight=10
|
2019-03-21 20:34:35 +01:00
|
|
|
|
2020-05-19 01:20:45 +02:00
|
|
|
pushd "$final_path/live"
|
2021-03-08 00:45:35 +01:00
|
|
|
ynh_use_ruby
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_gem update --system --no-document
|
2021-03-08 00:45:35 +01:00
|
|
|
ynh_gem install bundler --no-document
|
2020-05-19 01:20:45 +02:00
|
|
|
popd
|
2019-03-21 20:34:35 +01:00
|
|
|
|
2024-02-15 09:46:11 +01:00
|
|
|
ynh_script_progression --message="Installing Yarn dependencies..." --weight=10
|
|
|
|
|
|
|
|
pushd "$final_path/live"
|
|
|
|
corepack enable
|
|
|
|
yarn install
|
|
|
|
popd
|
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2022-01-10 19:28:30 +01:00
|
|
|
# RESTORE VARIOUS FILES
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Restoring various files..." --weight=1
|
2018-06-21 04:48:02 +02:00
|
|
|
|
2022-01-10 19:28:30 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/cron.d/$app"
|
2017-04-18 02:47:58 +02:00
|
|
|
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-web.service"
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-sidekiq.service"
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app-streaming.service"
|
2021-02-17 19:22:07 +01:00
|
|
|
systemctl enable "$app-web" "$app-sidekiq" "$app-streaming" --quiet
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2018-06-21 04:48:02 +02:00
|
|
|
#=================================================
|
2020-02-23 19:51:58 +01:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2018-06-21 04:48:02 +02:00
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2018-06-21 04:48:02 +02:00
|
|
|
|
2021-04-10 00:18:53 +02:00
|
|
|
yunohost service add "$app-web" --description="$app web service"
|
|
|
|
yunohost service add "$app-sidekiq" --description="$app sidekiq service"
|
|
|
|
yunohost service add "$app-streaming" --description="$app streaming service"
|
2018-06-21 04:48:02 +02:00
|
|
|
|
2018-11-07 05:12:21 +01:00
|
|
|
#=================================================
|
2019-05-10 16:34:57 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2018-11-07 05:12:21 +01:00
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2018-11-07 05:12:21 +01:00
|
|
|
|
2021-03-07 20:17:05 +01:00
|
|
|
ynh_systemd_action --service_name=${app}-web --action="start" --log_path=systemd --line_match="Listening on"
|
2020-12-11 14:40:13 +01:00
|
|
|
ynh_systemd_action --service_name=${app}-sidekiq --action="start" --log_path=systemd --line_match="Schedules Loaded"
|
2023-09-04 00:52:09 +02:00
|
|
|
ynh_systemd_action --service_name=${app}-streaming --action="start" --log_path=systemd --line_match="Streaming API now listening on"
|
2018-11-07 05:12:21 +01:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
2019-04-06 16:08:48 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
2018-05-01 20:43:05 +02:00
|
|
|
#=================================================
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2018-05-01 20:43:05 +02:00
|
|
|
|
2019-05-10 16:34:57 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-03-18 04:22:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-01-23 20:06:35 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --weight=1
|