2019-02-27 23:52:47 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-06-10 15:24:30 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2020-06-10 15:24:30 +02:00
|
|
|
|
2019-02-27 23:52:47 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2021-05-16 17:29:40 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
2020-06-10 15:24:30 +02:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
2020-06-10 15:24:30 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2021-12-08 20:08:43 +01:00
|
|
|
# If fpm_footprint doesn't exist, create it
|
2023-04-10 16:33:31 +02:00
|
|
|
if [ -z "${fpm_footprint:-}" ]; then
|
2021-12-08 20:08:43 +01:00
|
|
|
fpm_footprint=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
2023-04-10 16:33:31 +02:00
|
|
|
if [ -z "${fpm_usage:-}" ]; then
|
2021-12-08 20:08:43 +01:00
|
|
|
fpm_usage=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
|
|
|
fi
|
|
|
|
|
2022-11-13 23:39:11 +01:00
|
|
|
# If create_account doesn't exist, create it
|
|
|
|
if [ -z "$create_account" ]; then
|
|
|
|
create_account=false
|
|
|
|
ynh_app_setting_set --app=$app --key=create_account --value=$create_account
|
|
|
|
fi
|
|
|
|
|
2022-04-13 01:23:40 +02:00
|
|
|
# Removed in dec. 2020
|
2023-04-15 08:34:12 +02:00
|
|
|
ldap_user=$(ynh_app_setting_get --app=$app --key=ldap_user)
|
2023-04-10 16:33:31 +02:00
|
|
|
if [[ -n "${ldap_user:-}" ]]; then
|
2022-04-13 01:23:40 +02:00
|
|
|
yunohost user delete "$ldap_user"
|
|
|
|
ynh_app_setting_delete --app=$app --key=ldap_user
|
|
|
|
ynh_app_setting_delete --app=$app --key=ldap_password
|
|
|
|
fi
|
|
|
|
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-07-27 22:09:37 +02:00
|
|
|
|
2021-05-16 17:29:40 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=4
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2021-05-16 17:29:40 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-10 16:26:24 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2023-05-26 20:05:28 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/extensions/LDAPAuthentication2" --source_id="ldap_authentication2"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/extensions/LDAPProvider" --source_id="ldap_provider"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/extensions/PluggableAuth" --source_id="pluggable_auth"
|
2021-05-16 17:29:40 +02:00
|
|
|
|
2023-05-26 20:05:28 +02:00
|
|
|
# ynh_setup_source --dest_dir="$install_dir/extensions/LDAPGroups" --source_id="ldap_groups"
|
|
|
|
# ynh_setup_source --dest_dir="$install_dir/extensions/LDAPUserInfo" --source_id="ldap_userinfo"
|
|
|
|
# ynh_setup_source --dest_dir="$install_dir/extensions/LDAPAuthorization" --source_id="ldap_authorization"
|
2021-05-16 17:29:40 +02:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2020-06-10 15:24:30 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-05-16 17:29:40 +02:00
|
|
|
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1
|
2020-06-10 15:24:30 +02:00
|
|
|
|
2021-05-16 17:29:40 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2021-12-08 20:08:43 +01:00
|
|
|
ynh_add_fpm_config --phpversion=$phpversion --usage=$fpm_usage --footprint=$fpm_footprint
|
2020-06-10 15:24:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-18 18:51:02 +02:00
|
|
|
# NGINX CONFIGURATION
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
2022-06-18 18:51:02 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2019-02-27 23:52:47 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-06-18 18:51:02 +02:00
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
2022-06-18 18:51:02 +02:00
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=4
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
if [ "$path" = "/" ]; then
|
2021-05-19 18:18:33 +02:00
|
|
|
# MediaWiki expects a "" for the root URL which is typically assumed to be
|
|
|
|
# "/" by other application packages. Therefore, we assume end-users will do
|
2023-04-10 20:41:16 +02:00
|
|
|
# this as well and make sure to ensure an "" in all cases where "/" is specified
|
2022-04-13 01:23:40 +02:00
|
|
|
mediawiki_path=""
|
2019-07-27 22:09:37 +02:00
|
|
|
else
|
2023-04-10 16:26:24 +02:00
|
|
|
mediawiki_path="$path"
|
2019-07-27 22:09:37 +02:00
|
|
|
fi
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2020-12-18 11:48:45 +01:00
|
|
|
# Check for admin password being too short for the new mediawiki requirements
|
2023-04-10 18:11:11 +02:00
|
|
|
password_length=$(ynh_app_setting_get --app=$app --key=password | awk '{print length}')
|
2020-12-18 11:48:45 +01:00
|
|
|
if (( password_length < 10 )); then
|
2021-05-19 18:18:33 +02:00
|
|
|
ynh_print_warn -m "The current admin password is $password_length long. Mediawiki now requires a 10 chars minimum password."
|
|
|
|
ynh_print_warn -m "We are adapting the minimum length, but that would be great to change the admin password."
|
2023-04-10 16:26:24 +02:00
|
|
|
echo "\$wgPasswordPolicy['policies']['default']['MinimalPasswordLength'] = 10;" >> "$install_dir/LocalSettings.php"
|
2020-12-18 11:48:45 +01:00
|
|
|
fi
|
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
"php$phpversion" "$install_dir/maintenance/update.php"
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2020-06-10 15:24:30 +02:00
|
|
|
# Set permissions on app files
|
2023-04-10 16:26:24 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2019-02-27 23:52:47 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2020-06-10 15:24:30 +02:00
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|