2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2015-10-27 16:03:21 +01:00
|
|
|
|
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
|
|
|
|
#=================================================
|
2024-01-24 11:53:42 +01:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2022-07-29 22:43:23 +02:00
|
|
|
|
2024-01-24 11:46:45 +01:00
|
|
|
if ! grep --quiet 'qa-ldap-login' "$install_dir/qa-include/pages/login.php"; then
|
2024-01-24 11:42:54 +01:00
|
|
|
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:53:42 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --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"
|
2024-01-24 11:46:45 +01:00
|
|
|
ynh_setup_source --source_id="ldap" --dest_dir="$install_dir/qa-plugin/qa-ldap-login"
|
2019-04-18 19:58:47 +02:00
|
|
|
|
2024-01-24 11:46:45 +01:00
|
|
|
ynh_replace_string \
|
|
|
|
--target_file="$install_dir/qa-include/pages/login.php" \
|
|
|
|
--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';"
|
2021-03-25 17:37:29 +01:00
|
|
|
|
2024-01-24 11:46:45 +01:00
|
|
|
if [ "$language" == "fr" ]; then
|
|
|
|
ynh_setup_source --source_id="lang_fr" --dest_dir="$install_dir/qa-lang/fr"
|
|
|
|
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"
|
2024-01-24 11:46:45 +01:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2017-06-02 18:44:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-24 11:46:45 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2024-01-24 11:46:45 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --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
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-02-10 15:02:38 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-01-24 11:53:42 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|