1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/firefly-iii_ynh.git synced 2024-09-03 18:36:13 +02:00
firefly-iii_ynh/scripts/upgrade

201 lines
7 KiB
Text
Raw Normal View History

2018-06-17 00:50:26 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? admin=$(ynh_app_setting_get --app=$app --key=admin)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
#REMOVEME? random_key=$(ynh_app_setting_get --app=$app --key=random_key)
2021-02-08 08:58:17 +01:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2023-03-13 09:45:53 +01:00
#REMOVEME? phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2022-04-06 13:22:11 +02:00
timezone="$(cat /etc/timezone)"
2023-03-13 09:45:53 +01:00
#REMOVEME? fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
#REMOVEME? fpm_free_footprint=$(ynh_app_setting_get --app=$app --key=fpm_free_footprint)
#REMOVEME? fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
2022-12-27 12:01:23 +01:00
#=================================================
# CHECK VERSION
#=================================================
2022-07-19 02:18:21 +02:00
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed)
2018-06-17 00:50:26 +02:00
2021-07-23 14:55:35 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-07-23 14:55:35 +02:00
# Backup the current version of the app
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2021-07-23 14:55:35 +02:00
# Restore it if the upgrade fails
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_restore_upgradebackup
2021-07-23 14:55:35 +02:00
}
# Exit if an error occurs during the execution of the script
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_abort_if_errors
2021-07-23 14:55:35 +02:00
2018-06-17 00:50:26 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..."
2018-06-17 00:50:26 +02:00
# If db_name doesn't exist, create it
2020-06-11 00:45:03 +02:00
if [ -z "$db_name" ]; then
db_name=$(ynh_sanitize_dbid --db_name=$app)
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
2023-03-13 09:45:53 +01:00
# If install_dir doesn't exist, create it
if [ -z "$install_dir" ]; then
#REMOVEME? install_dir=/var/www/$app
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
2018-06-17 00:50:26 +02:00
fi
2022-12-27 12:01:23 +01:00
# If fpm_footprint doesn't exist, create it
if [ -z "$fpm_footprint" ]; then
fpm_footprint=low
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
fi
# If fpm_free_footprint doesn't exist, create it
if [ -z "$fpm_free_footprint" ]; then
fpm_free_footprint=0
ynh_app_setting_set --app=$app --key=fpm_free_footprint --value=$fpm_free_footprint
fi
# If fpm_usage doesn't exist, create it
if [ -z "$fpm_usage" ]; then
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
2021-02-08 07:48:49 +01:00
# Cleaning legacy permissions
2023-03-13 09:45:53 +01:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2021-02-08 07:48:49 +01:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2018-06-17 00:50:26 +02:00
#=================================================
2021-07-23 14:55:35 +02:00
# CREATE DEDICATED USER
2018-06-17 00:50:26 +02:00
#=================================================
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..."
2018-06-17 00:50:26 +02:00
2021-07-23 14:55:35 +02:00
# Create a dedicated user (if not existing)
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2021-06-04 09:15:08 +02:00
2018-06-17 00:50:26 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-04-06 13:22:11 +02:00
ynh_script_progression --message="Upgrading source files..."
# Download, check integrity, uncompress and patch the source from app.src
2023-03-13 09:45:53 +01:00
ynh_setup_source --dest_dir="$install_dir" --keep=".env storage/upload storage/export"
2020-06-11 00:45:03 +02:00
fi
2023-03-13 09:45:53 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod -R 775 $install_dir/storage
2021-07-23 14:55:35 +02:00
2022-04-06 13:42:43 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..."
2022-04-06 13:42:43 +02:00
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
2022-04-06 13:42:43 +02:00
2020-06-11 00:45:03 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-29 09:59:46 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..."
2020-02-22 21:29:53 +01:00
2022-07-19 02:18:21 +02:00
# Create a dedicated PHP-FPM config
2022-12-27 12:01:23 +01:00
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
2023-03-13 09:45:53 +01:00
#REMOVEME? phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2018-06-17 00:50:26 +02:00
2022-07-19 02:18:21 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..."
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
2020-06-11 00:45:03 +02:00
# SPECIFIC UPGRADE
#=================================================
2020-06-11 00:45:03 +02:00
# UPDATE PHP DEPENDENCIES
#=================================================
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_script_progression --message="Updating PHP dependencies..."
2022-04-06 17:01:42 +02:00
ynh_exec_warn_less ynh_install_composer
2018-06-17 00:50:26 +02:00
#=================================================
2022-07-19 02:18:21 +02:00
# UPDATE A CONFIG FILE
2018-06-17 00:50:26 +02:00
#=================================================
2022-07-19 02:18:21 +02:00
# ynh_script_progression --message="Updating a configuration file..."
2018-06-17 00:50:26 +02:00
2023-03-13 09:45:53 +01:00
# ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
2021-06-04 09:15:08 +02:00
2023-03-13 09:45:53 +01:00
# chmod 400 "$install_dir/.env"
# chown $app "$install_dir/.env"
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
# DEPLOYMENT
2018-06-17 00:50:26 +02:00
#=================================================
2020-06-11 00:45:03 +02:00
ynh_script_progression --message="Deploying..."
2018-06-17 00:50:26 +02:00
2023-03-13 09:45:53 +01:00
pushd "$install_dir"
2021-02-08 08:58:17 +01:00
ynh_secure_remove --file="bootstrap/cache/*"
php$phpversion artisan cache:clear
php$phpversion artisan migrate --seed
2020-06-11 00:45:03 +02:00
php$phpversion artisan firefly-iii:upgrade-database
php$phpversion artisan passport:install
2020-11-19 10:11:49 +01:00
php$phpversion artisan cache:clear
2020-06-11 00:45:03 +02:00
popd
2021-02-08 07:50:55 +01:00
#=================================================
# SETUP A CRON
#=================================================
ynh_script_progression --message="Setuping a cron..."
2021-07-23 14:55:35 +02:00
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2021-02-08 07:50:55 +01:00
2018-06-17 00:50:26 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..."
2023-03-13 09:45:53 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-07-19 02:18:21 +02:00
ynh_script_progression --message="Upgrade of $app completed"