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

202 lines
7 KiB
Text
Raw Normal View History

2015-08-11 12:26:57 +02:00
#!/bin/bash
2018-08-10 15:55:41 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2018-08-10 15:55:41 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2018-08-10 15:55:41 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2018-08-10 15:55:41 +02:00
app=$YNH_APP_INSTANCE_NAME
# Retrieve app settings
2020-07-24 12:46:55 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
port=$(ynh_app_setting_get --app=$app --key=port)
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2020-09-17 22:18:12 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
2020-07-24 18:32:57 +02:00
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
2020-09-22 13:00:54 +02:00
timezone=$(cat /etc/timezone)
2020-07-24 12:46:55 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2018-08-10 16:36:04 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=4
2018-08-10 16:36:04 +02:00
2020-07-24 12:46:55 +02:00
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
ynh_app_setting_set --app=$app --key=is_public --value=1
is_public=1
elif [ "$is_public" = "No" ]; then
ynh_app_setting_set --app=$app --key=is_public --value=0
is_public=0
2018-08-10 16:36:04 +02:00
fi
2018-08-10 15:55:41 +02:00
2018-08-12 00:29:57 +02:00
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
2020-07-24 12:46:55 +02:00
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
2018-08-12 00:29:57 +02:00
fi
2018-08-10 15:55:41 +02:00
#=================================================
2020-07-24 12:46:55 +02:00
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
2018-08-10 15:55:41 +02:00
#=================================================
2020-09-26 10:19:46 +02:00
ynh_script_progression --message="Backing up Movim before upgrading (may take a while)..." --weight=1
2018-08-10 15:55:41 +02:00
# Backup the current version of the app
2020-07-24 12:46:55 +02:00
ynh_backup_before_upgrade
ynh_clean_setup () {
2018-08-10 15:55:41 +02:00
# restore it if the upgrade fails
2020-07-24 12:46:55 +02:00
ynh_restore_upgradebackup
}
2018-08-10 15:55:41 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path $path_url)
2015-08-11 12:26:57 +02:00
2018-08-10 15:55:41 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
2020-07-24 12:46:55 +02:00
# STOP SYSTEMD SERVICE
2018-08-10 15:55:41 +02:00
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=23
2015-08-31 16:39:08 +02:00
2020-07-24 12:46:55 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2017-12-29 14:33:28 +01:00
2018-08-10 15:55:41 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-07-24 12:46:55 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2020-07-24 12:46:55 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
2018-08-12 00:59:39 +02:00
2018-08-12 00:03:51 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=5
2018-08-12 00:03:51 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
2015-08-21 18:12:22 +02:00
2020-07-24 12:46:55 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=4
2020-07-24 12:46:55 +02:00
ynh_install_app_dependencies $pkg_dependencies
2018-08-10 15:55:41 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=7
2018-08-10 15:55:41 +02:00
# Create a dedicated user (if not existing)
2020-07-24 12:46:55 +02:00
ynh_system_user_create --username=$app
2018-08-10 15:55:41 +02:00
2018-08-12 00:03:51 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
2018-08-12 00:03:51 +02:00
2020-09-17 22:08:44 +02:00
# Create a dedicated PHP-FPM config
2020-09-26 12:17:55 +02:00
ynh_replace_string --match_string="__TIMEZONE__" --replace_string="$timezone" --target_file=../conf/php-fpm.conf
2020-09-17 22:08:44 +02:00
ynh_add_fpm_config --package="$extra_php_dependencies"
2020-09-17 22:08:44 +02:00
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
2018-08-12 00:03:51 +02:00
2018-08-10 15:55:41 +02:00
#=================================================
# SET PERMISSIONS
#=================================================
2020-09-17 18:49:20 +02:00
chown -R $app:www-data $final_path
chown -R $app $final_path/src/Movim/Bootstrap.php
2015-08-11 12:26:57 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description "Responsive web-based XMPP client" --log="/var/log/$app/$app.log"
2018-08-10 15:55:41 +02:00
#=================================================
2018-08-12 00:59:39 +02:00
# Install PHP dependencies using composer
2018-08-10 15:55:41 +02:00
#=================================================
2018-08-12 00:59:39 +02:00
(
cd "$final_path"
2020-10-30 21:35:36 +01:00
curl -sS https://getcomposer.org/installer | php${phpversion} -- --version="1.10.16" --install-dir="$final_path" \
&& php${phpversion} composer.phar config --global discard-changes true --quiet \
&& php${phpversion} composer.phar install --no-interaction --quiet
2018-08-12 00:59:39 +02:00
)
2015-08-11 12:26:57 +02:00
2018-08-10 15:55:41 +02:00
#=================================================
2018-08-12 00:59:39 +02:00
# Set-up database
2018-08-10 15:55:41 +02:00
#=================================================
2020-09-17 22:08:44 +02:00
ynh_script_progression --message="Configuring database.." --weight=1
2018-08-12 00:59:39 +02:00
(
cd "$final_path"
2020-10-30 21:35:36 +01:00
ynh_exec_as $app php${phpversion} composer.phar movim:migrate
2018-08-12 00:59:39 +02:00
)
2018-08-10 15:55:41 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2018-08-12 00:22:31 +02:00
# Create a dedicated systemd config
2020-09-17 22:08:44 +02:00
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file=../conf/systemd.service
ynh_replace_string --match_string="__PATH__" --replace_string="$path_url" --target_file=../conf/systemd.service
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file=../conf/systemd.service
2020-07-24 12:46:55 +02:00
2018-08-12 00:22:31 +02:00
ynh_add_systemd_config
2018-08-10 15:55:41 +02:00
#=================================================
2020-07-24 12:46:55 +02:00
# START SYSTEMD SERVICE
#=================================================
2020-09-17 22:18:12 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2020-07-24 12:46:55 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# RELOAD NGINX
#=================================================
2020-09-17 22:18:12 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-07-24 12:46:55 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
2018-08-10 15:55:41 +02:00
#=================================================
2020-09-26 10:19:46 +02:00
ynh_script_progression --message="Upgrade of Movim completed" --last