1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/question2answer_ynh.git synced 2024-09-03 20:16:07 +02:00
question2answer_ynh/scripts/upgrade

185 lines
6.6 KiB
Text
Raw Normal View History

2014-10-20 18:55:53 +02:00
#!/bin/bash
2017-06-02 18:44:37 +02:00
#=================================================
2017-06-17 18:02:28 +02:00
# GENERIC START
2017-06-02 18:44:37 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-06-05 13:06:35 +02:00
source _common.sh
2017-06-02 18:44:37 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-04-18 19:58:47 +02:00
ynh_script_progression --message="Loading installation settings..." --time --weight=1
app=$YNH_APP_INSTANCE_NAME
2014-10-20 18:55:53 +02:00
2019-04-16 00:32:39 +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)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
language=$(ynh_app_setting_get --app=$app --key=language)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2017-06-02 18:44:37 +02:00
2019-04-18 19:58:47 +02:00
#=================================================
# CHECK VERSION
#=================================================
### This helper will compare the version of the currently installed app and the version of the upstream package.
### $upgrade_type can have 2 different values
### - UPGRADE_APP if the upstream app version has changed
### - UPGRADE_PACKAGE if only the YunoHost package has changed
### ynh_check_app_version_changed will stop the upgrade if the app is up to date.
### UPGRADE_APP should be used to upgrade the core app only if there's an upgrade to do.
upgrade_type=$(ynh_check_app_version_changed)
2017-06-02 18:44:37 +02:00
#=================================================
2017-06-17 18:02:28 +02:00
# ENSURE DOWNWARD COMPATIBILITY
2017-06-02 18:44:37 +02:00
#=================================================
2019-04-18 19:58:47 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --time --weight=1
2017-06-02 18:44:37 +02:00
#
# N.B. : the followings setting migrations snippets are provided as *EXAMPLES*
# of what you may want to do in some cases (e.g. a setting was not defined on
# some legacy installs and you therefore want to initiaze stuff during upgrade)
#
2017-08-28 23:55:51 +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
2017-06-02 18:44:37 +02:00
2017-08-28 23:55:51 +02:00
# 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
#fi
2017-08-28 23:55:51 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-04-18 19:58:47 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
2017-08-28 23:55:51 +02:00
2017-09-05 17:48:23 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
2017-08-28 23:55:51 +02:00
ynh_clean_setup () {
2020-08-02 16:00:17 +02:00
# Restore it if the upgrade fails
2017-09-05 17:48:23 +02:00
ynh_restore_upgradebackup
2017-08-28 23:55:51 +02:00
}
2017-09-05 17:48:23 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-08-28 23:55:51 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if grep 'qa-ldap-login' "$final_path/qa-include/pages/login.php"
then
has_ldap=1
else
has_ldap=0
ynh_print_warn "The LDAP plugin will be installed, but not configured, you'll have to do it in the Question2Answer admin"
fi
2019-04-18 19:58:47 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --time --weight=1
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2021-03-25 17:37:29 +01:00
# Setup LDAP
wget -O qa-ldap-login.zip https://github.com/zakkak/qa-ldap-login/archive/$ldap_login_commit.zip 2>&1
unzip qa-ldap-login.zip -d $final_path/qa-plugin
mv $final_path/qa-plugin/qa-ldap-login-$ldap_login_commit $final_path/qa-plugin/qa-ldap-login
ynh_replace_string\
--match_string="require_once QA_INCLUDE_DIR . 'db/selects.php';"\
--replace_string="require_once QA_INCLUDE_DIR . 'db/selects.php';\r\n require_once QA_INCLUDE_DIR . '../qa-plugin/qa-ldap-login/qa-ldap-process.php';"\
--target_file="$final_path/qa-include/pages/login.php"
2019-04-18 19:58:47 +02:00
fi
2017-06-02 18:44:37 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-08-02 16:00:17 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --time --weight=1
2017-06-02 18:44:37 +02:00
2020-08-02 16:00:17 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2018-06-28 22:05:35 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-04-18 19:58:47 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --time --weight=1
2017-06-02 18:44:37 +02:00
2018-07-01 09:57:16 +02:00
# Create a dedicated user (if not existing)
2019-04-16 00:32:39 +02:00
ynh_system_user_create --username=$app
2017-06-02 18:44:37 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-08-02 16:00:17 +02:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --time --weight=1
2017-06-02 18:44:37 +02:00
2020-08-02 16:00:17 +02:00
# Create a dedicated PHP-FPM config
2017-08-28 23:55:51 +02:00
ynh_add_fpm_config
2017-06-02 18:44:37 +02:00
#=================================================
# UPGRADE TRANSLATIONS
2017-06-02 18:44:37 +02:00
#=================================================
ynh_script_progression --message="Upgrading Translations..." --time --weight=1
2017-06-02 18:44:37 +02:00
### French
if [ $language == "fr" ]; then
if [ -e $final_path/qa-lang/fr ]; then
cd $final_path/qa-lang/fr
ynh_print_OFF
git pull
ynh_print_ON
cd -
else
ynh_print_OFF
git clone https://github.com/mrflos/q2a-lang-fr $final_path/qa-lang/fr
ynh_print_ON
fi
fi
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2018-06-28 22:05:35 +02:00
### Verify the checksum of a file, stored by `ynh_store_file_checksum` in the install script.
2018-07-01 09:57:16 +02:00
### And create a backup of this file if the checksum is different. So the file will be backed up if the admin had modified it.
2019-04-16 00:32:39 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/CONFIG_FILE"
#ynh_replace_string --match_string="match_string" --replace_string="replace_string" --target_file="$final_path/CONFIG_FILE"
2018-06-28 22:05:35 +02:00
# Recalculate and store the checksum of the file for the next upgrade.
2019-04-16 00:32:39 +02:00
ynh_store_file_checksum --file="$final_path/CONFIG_FILE"
2017-06-02 18:44:37 +02:00
#=================================================
# GENERIC FINALIZATION
2017-06-02 18:44:37 +02:00
#=================================================
# SECURE FILES AND DIRECTORIES
2017-06-02 18:44:37 +02:00
#=================================================
# Set permissions on app files
chown -R root: $final_path
2017-06-02 18:44:37 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-08-02 16:00:17 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --time --weight=1
2017-06-02 18:44:37 +02:00
2019-04-18 19:58:47 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-10 15:02:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-04-18 19:58:47 +02:00
ynh_script_progression --message="Upgrade of $app completed" --time --last