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

148 lines
5.2 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
#=================================================
2024-01-24 11:39:24 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --time --weight=1
2024-01-24 11:39:24 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2014-10-20 18:55:53 +02:00
2024-01-24 11:39:24 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? language=$(ynh_app_setting_get --app=$app --key=language)
#REMOVEME? admin=$(ynh_app_setting_get --app=$app --key=admin)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? 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
#=================================================
2022-07-29 22:43:23 +02:00
ynh_script_progression --message="Checking version..."
2019-04-18 19:58:47 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2017-08-28 23:55:51 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2024-01-24 11:39:24 +01:00
#REMOVEME? 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
2024-01-24 11:39:24 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2020-08-02 16:00:17 +02:00
# Restore it if the upgrade fails
2024-01-24 11:39:24 +01:00
#REMOVEME? 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
2024-01-24 11:39:24 +01:00
#REMOVEME? ynh_abort_if_errors
2017-08-28 23:55:51 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2022-07-29 22:43:23 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --time --weight=1
#=================================================
# CREATE DEDICATED USER
#=================================================
2024-01-24 11:39:24 +01:00
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..." --time --weight=1
2022-07-29 22:43:23 +02:00
# Create a dedicated user (if not existing)
2024-01-24 11:39:24 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2022-07-29 22:43:23 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-01-24 11:39:24 +01:00
if grep 'qa-ldap-login' "$install_dir/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
2024-01-24 11:39:24 +01:00
ynh_setup_source --dest_dir="$install_dir"
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
2024-01-24 11:39:24 +01:00
unzip qa-ldap-login.zip -d $install_dir/qa-plugin
mv $install_dir/qa-plugin/qa-ldap-login-$ldap_login_commit $install_dir/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';"\
2024-01-24 11:39:24 +01:00
--target_file="$install_dir/qa-include/pages/login.php"
2019-04-18 19:58:47 +02:00
fi
2017-06-02 18:44:37 +02:00
2024-01-24 11:39:24 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
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
2022-07-29 22:43:23 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --time --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC UPGRADE
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
2024-01-24 11:39:24 +01:00
if [ -e $install_dir/qa-lang/fr ]; then
cd $install_dir/qa-lang/fr
2021-03-26 18:24:58 +01:00
git pull 2>&1
cd -
else
2024-01-24 11:39:24 +01:00
git clone https://github.com/mrflos/q2a-lang-fr $install_dir/qa-lang/fr 2>&1
fi
fi
2024-01-24 11:39:24 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-07-29 22:43:23 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# GENERIC FINALIZATION
2017-06-02 18:44:37 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2024-01-24 11:39:24 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --time --weight=1
2017-06-02 18:44:37 +02:00
2024-01-24 11:39:24 +01:00
#REMOVEME? 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