1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/retroarch_ynh.git synced 2024-09-03 20:16:12 +02:00
retroarch_ynh/scripts/upgrade

138 lines
5.1 KiB
Text
Raw Normal View History

2020-05-08 20:42:27 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2020-05-08 20:42:27 +02: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)
#=================================================
# CHECK VERSION
#=================================================
### This helper will compare the version of the currently installed app and the version of the upstream package.
### $upgrade_type can have 2 different values
### - UPGRADE_APP if the upstream app version has changed
### - UPGRADE_PACKAGE if only the YunoHost package has changed
### ynh_check_app_version_changed will stop the upgrade if the app is up to date.
### UPGRADE_APP should be used to upgrade the core app only if there's an upgrade to do.
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=10
2020-05-08 20:42:27 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2021-05-09 11:52:48 +02:00
# Restore it if the upgrade fails
2020-05-08 20:42:27 +02:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
2021-05-09 11:52:48 +02:00
# STANDARD UPGRADE STEPS
2020-05-08 20:42:27 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=5
2020-05-08 20:42:27 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2021-08-24 22:08:40 +02:00
ynh_add_config --template="../conf/app.src.default" --destination="../conf/app.src"
2021-02-20 19:31:31 +01:00
ynh_setup_source --dest_dir="$final_path" --source_id=$app
2021-05-09 11:52:48 +02:00
#7z archive not handled by ynh and no way to strip component, have to move it manually
7zr x $final_path/retroarch.7z -o$final_path
2021-05-09 17:08:24 +02:00
#mv not working as target directory is not empty
cp -R $final_path/retroarch/* $final_path/
2021-05-09 11:52:48 +02:00
ynh_secure_remove --file="$final_path/retroarch.7z"
ynh_secure_remove --file="$final_path/retroarch"
touch $final_path/analytics.js #https://github.com/libretro/RetroArch/issues/4539#issuecomment-473345195
#Get the indexer as exe so that folder w/ ROMs can be indexed
chmod +x $final_path/indexer
2020-05-08 20:42:27 +02:00
fi
2021-05-09 11:52:48 +02:00
# SETUP CRON FILE FOR INDEXER
2020-05-08 20:42:27 +02:00
2021-05-09 11:52:48 +02:00
#setup indexer bash script
ynh_add_config --template="../conf/indexer.sh" --destination="$final_path/indexer.sh"
2021-05-10 23:19:36 +02:00
chown www-data: $final_path/indexer.sh
2021-05-09 11:52:48 +02:00
chmod 744 $final_path/indexer.sh
#setup cron file
cron_path="/etc/cron.d/$app"
ynh_add_config --template="../conf/retroarch.cron" --destination="$cron_path"
2021-05-10 23:19:36 +02:00
chown www-data: "$cron_path"
2021-05-09 11:52:48 +02:00
chmod 644 "$cron_path"
2021-05-09 11:19:10 +02:00
#=================================================
#SETTING MULTIMEDIA DIRECTORY
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Setting up Multimedia directory..." --weight=4
2021-05-09 11:19:10 +02:00
ynh_multimedia_build_main_dir
2021-05-09 17:08:24 +02:00
mkdir -p $final_path/assets/cores/Game
ynh_multimedia_addfolder --source_dir="$final_path/assets/cores/Game" --dest_dir="/share/Game"
2021-05-09 17:36:53 +02:00
ynh_add_config --template="../conf/README.GAME" --destination="$final_path/assets/cores/Game/README"
chmod 666 $final_path/assets/cores/Game/README
2021-05-09 11:19:10 +02:00
2020-05-08 20:42:27 +02:00
#=================================================
2021-05-09 11:52:48 +02:00
# NGINX CONFIGURATION
2020-05-08 20:42:27 +02:00
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2020-05-08 20:42:27 +02:00
2021-05-09 11:52:48 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2020-05-08 20:42:27 +02:00
#=================================================
2021-05-09 11:52:48 +02:00
# UPGRADE DEPENDENCIES
2020-05-08 20:42:27 +02:00
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=20
2020-05-08 20:42:27 +02:00
2021-05-09 11:52:48 +02:00
# Define and install dependencies
#Dependencies are not really required as this is just to unzip the 7z file
2021-05-09 14:04:51 +02:00
ynh_install_app_dependencies $pkg_dependencies
2021-05-09 11:52:48 +02:00
#However, npm IS required to run the coffeescript
ynh_install_nodejs --nodejs_version=10
ynh_use_nodejs
ynh_npm install -g coffeescript
2020-05-08 20:42:27 +02:00
#=================================================
2021-05-09 11:52:48 +02:00
# SPECIFIC UPGRADE
#=================================================
# Set permissions on app files
2020-05-08 20:42:27 +02:00
#=================================================
2021-05-09 11:52:48 +02:00
#
2021-05-10 23:19:36 +02:00
chown -R www-data: $final_path
2020-05-08 20:42:27 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-05-08 20:42:27 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-05-09 19:11:18 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last