2019-02-06 19:37:46 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-02-06 19:37:46 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_clean_setup () {
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_clean_check_starting
|
2019-02-06 19:37:46 +01:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Loading settings..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-22 22:10:48 +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)
|
2019-05-24 21:10:58 +02:00
|
|
|
service_config=$(ynh_app_setting_get --app=$app --key=service_config)
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_webpath_available --domain=$domain --path_url=$path_url \
|
|
|
|
|| ynh_die --message="Path not available: ${domain}${path_url}"
|
2019-02-06 19:37:46 +01:00
|
|
|
test ! -d $final_path \
|
2019-05-22 22:10:48 +02:00
|
|
|
|| ynh_die --message="There is already a directory: $final_path "
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Recreating the dedicated system user..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
# Create the dedicated user (if not existing)
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Restore permissions on app files
|
2019-05-22 22:10:48 +02:00
|
|
|
chown -R $app: $final_path
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=43
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
# Define and install dependencies
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-05-22 23:13:09 +02:00
|
|
|
# ENABLE "TRANSCODE"
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
|
|
|
|
2019-05-22 23:13:09 +02:00
|
|
|
### For details, see https://airsonic.github.io/docs/transcode/
|
|
|
|
|
2019-05-22 23:47:08 +02:00
|
|
|
mkdir -p $final_path/transcode
|
2019-05-22 23:13:09 +02:00
|
|
|
|
2019-05-24 21:16:54 +02:00
|
|
|
if [ -x /usr/bin/ffmpeg -a ! -e $final_path/transcode/ffmpeg ]; then # Check if 'ffmpeg' is installed, executable and that the symlink doesn't exist
|
2019-05-22 23:13:09 +02:00
|
|
|
ln -s /usr/bin/ffmpeg $final_path/transcode
|
|
|
|
fi
|
|
|
|
|
|
|
|
# FIXME Not sure if 'lame' is needed ?
|
2019-05-24 21:16:54 +02:00
|
|
|
if [ -x /usr/bin/lame -a ! -e $final_path/transcode/lame ]; then # Check if 'lame' is installed, executable and that the symlink doesn't exist
|
2019-05-22 23:13:09 +02:00
|
|
|
ln -s /usr/bin/lame $final_path/transcode
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ensure links belong to the $app user
|
|
|
|
chown $app: $final_path/transcode
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..." --weight=1
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2019-05-24 21:10:58 +02:00
|
|
|
ynh_restore_file --origin_path="$service_config"
|
2019-02-06 19:37:46 +01:00
|
|
|
systemctl enable $app.service
|
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
#=================================================
|
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
yunohost service add $app --description "Airsonic daemon" --log "$final_path/airsonic.log"
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
2019-05-23 21:47:50 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=12
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="$final_path/airsonic.log" --line_match="Started Application in"
|
2019-02-06 19:37:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-10-07 16:02:06 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE DATA
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Use --not_mandatory for the data directory, because if the backup has been made with BACKUP_CORE_ONLY, there's no data into the backup.
|
|
|
|
ynh_restore_file --origin_path="/home/yunohost.airsonic" --not_mandatory
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
mkdir -p /home/yunohost.airsonic/{Podcasts,Playlists}
|
|
|
|
chown -R $app:www-data /home/yunohost.airsonic/
|
|
|
|
chmod -R 764 /home/yunohost.airsonic
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# YUNOHOST MULTIMEDIA INTEGRATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding multimedia directories..." --weight=3
|
|
|
|
|
|
|
|
ynh_multimedia_build_main_dir
|
|
|
|
ynh_multimedia_addfolder --source_dir="/home/yunohost.airsonic/Podcasts" --dest_dir="share/Podcasts"
|
|
|
|
ynh_multimedia_addfolder --source_dir="/home/yunohost.airsonic/Playlists" --dest_dir="share/Playlists"
|
|
|
|
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
# RELOAD NGINX AND PHP-FPM
|
2019-02-06 19:37:46 +01:00
|
|
|
#=================================================
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-02-06 19:37:46 +01:00
|
|
|
|
2019-05-22 22:10:48 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|