2022-03-25 18:30:41 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
2023-01-07 13:51:09 +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
|
2022-03-25 18:30:41 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=3
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-02-17 22:50:54 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep=".env storage"
|
2022-03-25 18:30:41 +01:00
|
|
|
fi
|
|
|
|
|
2023-02-17 22:50:54 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-03-25 18:30:41 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
2023-01-07 13:51:09 +01:00
|
|
|
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
|
2022-08-16 12:05:54 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2022-03-25 18:30:41 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-08-16 12:05:54 +02:00
|
|
|
# INSTALL 2FAUTH WITH COMPOSER
|
2022-03-25 18:30:41 +01:00
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing $app with Composer..." --weight=15
|
|
|
|
|
2023-02-17 22:59:56 +01:00
|
|
|
rm $install_dir/package-lock.json
|
2022-05-10 10:37:24 +02:00
|
|
|
|
2022-05-15 07:41:51 +02:00
|
|
|
ynh_install_composer --install_args="--ignore-platform-reqs --prefer-dist --no-scripts --no-dev"
|
2022-03-25 18:30:41 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BUILDING
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building..." --weight=10
|
|
|
|
|
2022-05-15 08:31:53 +02:00
|
|
|
ynh_exec_warn_less ynh_composer_exec --commands="update"
|
|
|
|
|
2022-03-25 18:30:41 +01:00
|
|
|
# Setup application config
|
2023-02-17 22:50:54 +01:00
|
|
|
pushd $install_dir
|
2022-05-15 08:31:53 +02:00
|
|
|
php$phpversion artisan cache:clear
|
|
|
|
php$phpversion artisan config:clear
|
2022-04-07 15:59:53 +02:00
|
|
|
php$phpversion artisan migrate -n
|
2022-05-10 08:13:24 +02:00
|
|
|
php$phpversion artisan passport:install -n
|
|
|
|
php$phpversion artisan config:cache -n
|
|
|
|
php$phpversion artisan route:cache
|
2022-03-25 18:30:41 +01:00
|
|
|
popd
|
2022-04-07 15:59:53 +02:00
|
|
|
|
2022-03-25 18:30:41 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|