1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00
monica_ynh/scripts/upgrade

167 lines
5.9 KiB
Text
Raw Normal View History

2017-06-08 13:32:01 +02:00
#!/bin/bash
2017-09-15 18:45:18 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-11 03:13:15 +02:00
2023-03-27 21:53:20 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2023-01-31 16:53:24 +01:00
2020-06-11 03:13:15 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2020-04-29 19:58:50 +02:00
2022-01-23 23:07:14 +01:00
#=================================================
# STANDARD UPGRADE STEPS
2017-09-15 18:45:18 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-08-15 15:18:03 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2017-09-15 18:45:18 +02:00
2023-01-31 16:53:24 +01:00
# If fpm_footprint doesn't exist, create it
2023-03-28 09:32:43 +02:00
if [ -z "${fpm_footprint:-}" ]; then
2023-01-31 16:53:24 +01:00
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
2023-03-28 09:32:43 +02:00
if [ -z "${fpm_free_footprint:-}" ]; then
2023-01-31 16:53:24 +01:00
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
2023-03-28 09:32:43 +02:00
if [ -z "${fpm_usage:-}" ]; then
2023-01-31 16:53:24 +01:00
fpm_usage=low
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
fi
2017-09-15 18:45:18 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-06-11 03:13:15 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-08-15 15:18:03 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2017-09-15 18:45:18 +02:00
2020-06-11 03:13:15 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-27 21:45:01 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep=".env"
2020-06-11 03:13:15 +02:00
fi
2023-03-27 21:45:01 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-01-23 23:07:14 +01:00
2020-06-11 03:13:15 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-03-27 21:53:20 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2020-06-11 03:13:15 +02:00
2022-01-30 02:32:04 +01:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2020-06-11 03:13:15 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2022-08-15 15:18:03 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2020-06-11 03:13:15 +02:00
2022-01-23 23:07:14 +01:00
# Create a dedicated PHP-FPM config
2023-02-01 09:52:21 +01:00
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
2022-08-15 15:18:03 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2017-09-15 18:45:18 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2020-06-11 03:13:15 +02:00
# UPDATE PHP DEPENDENCIES
2020-04-29 19:58:50 +02:00
#=================================================
2023-03-27 21:53:20 +02:00
ynh_script_progression --message="Updating php dependencies..."
2017-06-13 22:19:11 +02:00
2023-03-27 21:53:20 +02:00
ynh_secure_remove --file="$install_dir/vendor"
2023-03-27 21:45:01 +02:00
ynh_exec_warn_less ynh_install_composer --phpversion="$phpversion" --workdir="$install_dir"
2023-03-27 21:45:01 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-01-30 02:32:04 +01:00
2020-06-11 03:13:15 +02:00
#=================================================
2022-01-23 23:07:14 +01:00
# UPDATE A CONFIG FILE
2020-06-11 03:13:15 +02:00
#=================================================
2022-08-15 15:18:03 +02:00
ynh_script_progression --message="Updating a configuration file..." --weight=1
2020-06-11 03:13:15 +02:00
2023-03-27 21:45:01 +02:00
ynh_backup_if_checksum_is_different --file="$install_dir/.env"
2023-11-08 17:34:24 +01:00
ynh_add_config --template=".env" --destination="$install_dir/.env"
2020-06-11 03:13:15 +02:00
#=================================================
# DEPLOYMENT
#=================================================
ynh_script_progression --message="Deploying..."
2023-03-27 21:45:01 +02:00
pushd "$install_dir"
2022-01-30 02:32:04 +01:00
ynh_use_nodejs
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH yarn install
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH yarn run production
2022-08-30 22:57:33 +02:00
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan monica:update --force
2020-06-11 03:13:15 +02:00
popd
2017-09-15 18:45:18 +02:00
2023-03-27 21:45:01 +02:00
if [ -f $install_dir/storage/oauth-private.key ]; then
2023-03-27 21:53:20 +02:00
mobile_id=$(ynh_app_setting_get --app=$app --key=mobile_id)
mobile_key=$(ynh_app_setting_get --app=$app --key=mobile_key)
2023-03-27 21:45:01 +02:00
ynh_replace_string --match_string="mobile_id" --replace_string="$mobile_id" --target_file="$install_dir/.env"
ynh_replace_string --match_string="mobile_key" --replace_string="$mobile_key" --target_file="$install_dir/.env"
else
2023-03-27 21:45:01 +02:00
pushd "$install_dir"
2022-01-30 02:32:04 +01:00
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan passport:keys
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan passport:client --password -n > key.txt
2020-06-11 03:13:15 +02:00
mobile_id=$( tail -2 key.txt | head -1 | cut -c 12- )
mobile_key=$( tail -1 key.txt | cut -c 16- )
2023-03-27 21:45:01 +02:00
ynh_replace_string --match_string="mobile_id" --replace_string="$mobile_id" --target_file="$install_dir/.env"
ynh_replace_string --match_string="mobile_key" --replace_string="$mobile_key" --target_file="$install_dir/.env"
2020-06-11 03:13:15 +02:00
ynh_app_setting_set --app=$app --key=mobile_id --value=$mobile_id
ynh_app_setting_set --app=$app --key=mobile_key --value=$mobile_key
2023-03-27 21:53:20 +02:00
ynh_secure_remove --file="$install_dir/key.txt"
2020-06-11 03:13:15 +02:00
popd
fi
2023-03-27 21:45:01 +02:00
pushd "$install_dir"
2022-01-30 02:32:04 +01:00
ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan config:cache
popd
2020-04-29 19:58:50 +02:00
2023-03-28 09:32:43 +02:00
#if ynh_version_gt "2.15.0" "${previous_version}" ; then
# ynh_script_progression --message="Upgrading for 2.15.0..."
# pushd "$install_dir"
# ynh_exec_warn_less ynh_exec_as $app php$phpversion artisan monica:moveavatarstophotosdirectory
# popd
#fi
2020-04-29 19:58:50 +02:00
2020-06-11 03:13:15 +02:00
# Calculate and store the config file checksum into the app settings
2023-03-27 21:45:01 +02:00
ynh_store_file_checksum --file="$install_dir/.env"
2020-06-11 03:13:15 +02:00
2023-03-27 21:45:01 +02:00
chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
2017-09-15 18:45:18 +02:00
#=================================================
# INSTALL THE CRON FILE
#=================================================
ynh_script_progression --message="Setuping a cron..." --weight=1
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
2020-04-29 19:58:50 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-08-15 15:18:03 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last