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

100 lines
3.4 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
#=================================================
# STANDARD UPGRADE STEPS
2022-07-29 22:43:23 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --time --weight=1
2024-01-24 11:42:54 +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
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:42:54 +01:00
ynh_script_progression --message="Upgrading source files..." --time --weight=1
2017-06-02 18:44:37 +02:00
2024-01-24 11:42:54 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="qa-config.php"
2019-04-18 19:58:47 +02:00
2024-01-24 11:42:54 +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 $install_dir/qa-plugin
mv $install_dir/qa-plugin/qa-ldap-login-$ldap_login_commit $install_dir/qa-plugin/qa-ldap-login
2021-03-25 17:37:29 +01:00
2024-01-24 11:42:54 +01:00
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="$install_dir/qa-include/pages/login.php"
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