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

246 lines
8.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
2020-06-11 03:13:15 +02:00
source ynh_composer__2
2020-06-12 13:18:59 +02:00
source ynh_package_version
2017-09-15 18:45:18 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Loading installation settings..."
2017-06-08 13:32:01 +02:00
app=$YNH_APP_INSTANCE_NAME
2020-04-29 19:58:50 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
admin=$(ynh_app_setting_get --app=$app --key=admin)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2020-06-11 03:13:15 +02:00
language=$(ynh_app_setting_get --app=$app --key=language)
2020-04-29 19:58:50 +02:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
random_key=$(ynh_app_setting_get --app=$app --key=random_key)
2020-06-12 02:06:41 +02:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2020-06-11 03:13:15 +02:00
#=================================================
# CHECK VERSION
#=================================================
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed)
2020-04-29 19:58:50 +02:00
2017-09-15 18:45:18 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2017-09-15 18:45:18 +02:00
2020-04-29 19:58:50 +02:00
# Fix is_public as a boolean value
2017-09-15 18:45:18 +02:00
if [ "$is_public" = "Yes" ]; then
2020-04-29 19:58:50 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=1
2017-09-15 18:45:18 +02:00
is_public=1
elif [ "$is_public" = "No" ]; then
2020-04-29 19:58:50 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=0
2017-09-15 18:45:18 +02:00
is_public=0
fi
2020-04-29 19:58:50 +02:00
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2017-09-15 18:45:18 +02:00
fi
2020-04-29 19:58:50 +02:00
2020-06-12 05:36:57 +02:00
#=================================================
# CHECK VERSION NUMBER
#=================================================
abort_if_up_to_date
# previous function is what defines 'version', more precisely the 'previous version'
previous_version="${version}"
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-09-15 18:45:18 +02:00
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
2020-06-11 03:13:15 +02:00
path_url=$(ynh_normalize_url_path --path_url=$path_url)
2017-09-15 18:45:18 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-06-11 03:13:15 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
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
ynh_setup_source --dest_dir="$final_path"
fi
2017-09-15 18:45:18 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Upgrading nginx web server configuration..."
2017-09-15 18:45:18 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
2020-06-11 03:13:15 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading dependencies..."
2020-06-12 02:06:41 +02:00
ynh_install_app_dependencies $pkg_dependencies
2020-06-11 03:13:15 +02:00
2017-09-15 18:45:18 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2017-09-15 18:45:18 +02:00
2020-04-29 19:58:50 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
2017-09-15 18:45:18 +02:00
2020-06-11 03:13:15 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading php-fpm configuration..."
# Create a dedicated php-fpm config
ynh_add_fpm_config --usage=low --footprint=low --package="$extra_php_dependencies"
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
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
#=================================================
2020-06-11 03:13:15 +02:00
ynh_script_progression --message="Updating php dependencies..."
2017-06-13 22:19:11 +02:00
2020-06-11 03:13:15 +02:00
chown -R "$app": "$final_path"
2020-06-11 03:13:15 +02:00
ynh_exec_warn_less ynh_composer_exec --phpversion="$phpversion" --workdir="$final_path" --commands="update"
2020-06-11 03:13:15 +02:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
ynh_script_progression --message="Modifying a config file..."
config="$final_path/.env"
ynh_backup_if_checksum_is_different --file="$config"
cp ../conf/.env "$config"
2020-06-11 03:13:15 +02:00
ynh_replace_string --match_string="random_key" --replace_string="$random_key" --target_file="$config"
ynh_replace_string --match_string="yunouser" --replace_string="$db_name" --target_file="$config"
ynh_replace_string --match_string="yunopass" --replace_string="$db_pwd" --target_file="$config"
ynh_replace_string --match_string="yunobase" --replace_string="$db_name" --target_file="$config"
ynh_replace_string --match_string="yunomail" --replace_string="$email" --target_file="$config"
ynh_replace_string --match_string="yunodomain" --replace_string="$domain" --target_file="$config"
ynh_replace_string --match_string="language" --replace_string="$language" --target_file="$config"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$config"
#=================================================
# DEPLOYMENT
#=================================================
ynh_script_progression --message="Deploying..."
2020-06-11 03:13:15 +02:00
pushd "$final_path"
php$phpversion artisan monica:update --force
popd
2017-09-15 18:45:18 +02:00
if [ -f $final_path/storage/oauth-private.key ]; then
2020-04-29 19:58:50 +02:00
mobile_id=$(ynh_app_setting_get --app=$app --key=mobile_id)
mobile_key=$(ynh_app_setting_get --app=$app --key=mobile_key)
2020-06-11 03:13:15 +02:00
ynh_replace_string --match_string="__IDENTITY__" --replace_string="$mobile_id" --target_file="$config"
ynh_replace_string --match_string="__KEY__" --replace_string="$mobile_key" --target_file="$config"
else
2020-06-11 03:13:15 +02:00
pushd "$final_path"
php$phpversion artisan passport:keys
php$phpversion artisan passport:client --password -n > key.txt
mobile_id=$( tail -2 key.txt | head -1 | cut -c 12- )
mobile_key=$( tail -1 key.txt | cut -c 16- )
ynh_replace_string --match_string="__IDENTITY__" --replace_string="$mobile_id" --target_file="$config"
ynh_replace_string --match_string="__KEY__" --replace_string="$mobile_key" --target_file="$config"
ynh_app_setting_set --app=$app --key=mobile_id --value=$mobile_id
ynh_app_setting_set --app=$app --key=mobile_key --value=$mobile_key
rm -f key.txt
popd
fi
2020-04-29 19:58:50 +02:00
2020-06-12 05:36:57 +02:00
if ynh_version_gt "2.15.0" "${previous_version}" ; then
ynh_script_progression --message="Upgrading for 2.15.0..."
2020-06-11 03:13:15 +02:00
pushd "$final_path"
2020-06-11 13:46:52 +02:00
php$phpversion artisan monica:moveavatarstophotosdirectory
2020-06-11 03:13:15 +02:00
popd
2020-04-29 19:58:50 +02:00
fi
2020-06-11 03:13:15 +02:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
ynh_script_progression --message="Storing the config file checksum..."
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum --file="$config"
2017-09-15 18:45:18 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2020-06-11 03:13:15 +02:00
ynh_script_progression --message="Securing files and directories..."
2017-09-15 18:45:18 +02:00
2020-06-11 03:13:15 +02:00
# Set permissions on app files
chown -R $app: $final_path
2017-09-15 18:45:18 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Upgrading SSOwat configuration..."
2017-09-15 18:45:18 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway
2020-04-29 19:58:50 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
2017-09-15 18:45:18 +02:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2020-04-29 19:58:50 +02:00
ynh_script_progression --message="Reloading nginx web server..."
2017-09-15 18:45:18 +02:00
2020-04-29 19:58:50 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed"