1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mediawiki_ynh.git synced 2024-09-03 19:46:05 +02:00
mediawiki_ynh/scripts/upgrade

107 lines
4.2 KiB
Text
Raw Normal View History

2019-02-27 23:52:47 +01:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-27 23:52:47 +01:00
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
2019-02-27 23:52:47 +01: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
2023-09-04 13:19:22 +02:00
fpm_footprint=low
2024-04-12 10:35:52 +02:00
ynh_app_setting_set --app="$app" --key="fpm_footprint" --value="$fpm_footprint"
2021-12-08 20:08:43 +01:00
fi
# If fpm_usage doesn't exist, create it
2023-04-10 16:33:31 +02:00
if [ -z "${fpm_usage:-}" ]; then
2023-09-04 13:19:22 +02:00
fpm_usage=low
2024-04-12 10:35:52 +02:00
ynh_app_setting_set --app="$app" --key="fpm_usage" --value="$fpm_usage"
2021-12-08 20:08:43 +01:00
fi
2022-11-13 23:39:11 +01:00
# If create_account doesn't exist, create it
if [ -z "${create_account:-}" ]; then
2023-09-04 13:19:22 +02:00
create_account=false
2024-04-12 10:35:52 +02:00
ynh_app_setting_set --app="$app" --key="create_account" --value="$create_account"
2022-11-13 23:39:11 +01:00
fi
2022-04-13 01:23:40 +02:00
# Removed in dec. 2020
2024-04-12 10:35:52 +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
2023-09-04 13:19:22 +02:00
yunohost user delete "$ldap_user"
2024-04-12 10:35:52 +02:00
ynh_app_setting_delete --app="$app" --key="ldap_user"
ynh_app_setting_delete --app="$app" --key="ldap_password"
2022-04-13 01:23:40 +02:00
fi
2019-02-27 23:52:47 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-04-12 10:35:52 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=4
2024-04-12 10:35:52 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
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"
2019-02-27 23:52:47 +01:00
2024-04-12 10:35:52 +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
2023-04-10 16:26:24 +02:00
chmod -R o-rwx "$install_dir"
2024-04-12 10:35:52 +02:00
chown -R "$app:www-data" "$install_dir"
2022-06-18 18:51:02 +02:00
#=================================================
# 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
2023-09-04 13:19:22 +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
# this as well and make sure to ensure an "" in all cases where "/" is specified
mediawiki_path=""
else
2023-09-04 13:19:22 +02:00
mediawiki_path="$path"
fi
2019-02-27 23:52:47 +01:00
wiki_name_underscorified="${wiki_name//[^a-zA-Z0-9]/_}"
2024-04-12 10:35:52 +02:00
ynh_add_config --template="LocalSettings.php" --destination="$install_dir/LocalSettings.php"
2020-12-18 11:48:45 +01:00
# Check for admin password being too short for the new mediawiki requirements
2024-04-12 10:35:52 +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
2023-09-04 13:19:22 +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."
echo "\$wgPasswordPolicy['policies']['default']['MinimalPasswordLength'] = 10;" >> "$install_dir/LocalSettings.php"
2020-12-18 11:48:45 +01:00
fi
2023-09-15 16:21:52 +02:00
# This is required to update database schemas
2023-04-10 16:26:24 +02:00
"php$phpversion" "$install_dir/maintenance/update.php"
2019-02-27 23:52:47 +01:00
# Set permissions on app files
2024-04-12 10:35:52 +02:00
chown -R "$app:www-data" "$install_dir"
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --phpversion="$phpversion" --usage="$fpm_usage" --footprint="$fpm_footprint"
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-02-27 23:52:47 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last