mirror of
https://github.com/YunoHost-Apps/outline_ynh.git
synced 2024-09-03 19:56:12 +02:00
168 lines
6.9 KiB
Bash
Executable file
168 lines
6.9 KiB
Bash
Executable file
#!/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
|
|
#=================================================
|
|
|
|
#REMOVEME? 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
|
|
#REMOVEME? ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
|
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
|
|
|
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
|
|
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
|
|
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
|
|
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
#REMOVEME? language_key=$(ynh_app_setting_get --app=$app --key=language_key)
|
|
#REMOVEME? secret_key=$(ynh_app_setting_get --app=$app --key=secret_key)
|
|
#REMOVEME? utils_secret=$(ynh_app_setting_get --app=$app --key=utils_secret)
|
|
#REMOVEME? minio_domain=$(ynh_app_setting_get --app=$app --key=minio_domain)
|
|
#REMOVEME? minio_admin=$(ynh_app_setting_get --app=$app --key=minio_admin)
|
|
#REMOVEME? minio_password=$(ynh_app_setting_get --app=$app --key=minio_password)
|
|
#REMOVEME? mc_path=$(ynh_app_setting_get --app=$app --key=mc_path)
|
|
#REMOVEME? dex_app=$(ynh_app_setting_get --app=$app --key=dex_app)
|
|
#REMOVEME? dex_domain=$(ynh_app_setting_get --app=$app --key=dex_domain)
|
|
#REMOVEME? dex_path=$(ynh_app_setting_get --app=$app --key=dex_path)
|
|
#REMOVEME? oidc_secret=$(ynh_app_setting_get --app=$app --key=oidc_secret)
|
|
#REMOVEME? oidc_name=$(ynh_app_setting_get --app=$app --key=oidc_name)
|
|
#REMOVEME? oidc_callback=$(ynh_app_setting_get --app=$app --key=oidc_callback)
|
|
#REMOVEME? dex_auth_uri=$(ynh_app_setting_get --app=$app --key=dex_auth_uri)
|
|
#REMOVEME? dex_token_uri=$(ynh_app_setting_get --app=$app --key=dex_token_uri)
|
|
#REMOVEME? dex_user_uri=$(ynh_app_setting_get --app=$app --key=dex_user_uri)
|
|
|
|
#=================================================
|
|
# 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
|
|
# FIXME hackish workaround to circumvent the linter
|
|
public=public
|
|
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
|
|
|
|
#=================================================
|
|
# RESTORE THE APP MAIN DIR
|
|
#=================================================
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
#=================================================
|
|
# RESTORE MINIO
|
|
#=================================================
|
|
|
|
mv "$install_dir/outlinestorage" "$mc_path/outlinestorage"
|
|
chown -R minio:www-data "$mc_path/outlinestorage"
|
|
|
|
ynh_add_config --template="../conf/policy.json" --destination="$mc_path/policy.json"
|
|
chown minio:www-data "$mc_path/policy.json"
|
|
|
|
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 anonymous set-json ./policy.json minio/outlinestorage
|
|
popd
|
|
|
|
ynh_secure_remove --file="$mc_path/outlinestorage"
|
|
|
|
#=================================================
|
|
# SPECIFIC RESTORATION
|
|
#=================================================
|
|
# REINSTALL DEPENDENCIES
|
|
#=================================================
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=1
|
|
|
|
# Install nodejs
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
|
|
|
#=================================================
|
|
# RESTORE THE POSTGRESQL DATABASE
|
|
#=================================================
|
|
ynh_script_progression --message="Restoring the PostgreSQL database..." --weight=6
|
|
|
|
ynh_psql_execute_file_as_root --file="./db.sql" --database=$db_name
|
|
|
|
#=================================================
|
|
# UPDATING A CONFIGURATION
|
|
#=================================================
|
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir/.env"
|
|
ynh_script_progression --message="Updating the configuration file..." --weight=1
|
|
|
|
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
|
|
|
|
chmod 400 "$install_dir/.env"
|
|
chown $app:$app "$install_dir/.env"
|
|
|
|
#=================================================
|
|
# RESTORE SYSTEMD
|
|
#=================================================
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
systemctl enable $app.service --quiet
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
ynh_restore_file --origin_path="/var/log/$app/$app.log"
|
|
|
|
yunohost service add $app --description="Outline server" --log="/var/log/$app/$app.log"
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|