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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
2020-06-10 15:24:30 +02:00
|
|
|
|
2023-04-10 16:26:24 +02: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)
|
|
|
|
#REMOVEME? db_user=$db_name
|
|
|
|
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
|
|
|
#REMOVEME? wiki_name=$(ynh_app_setting_get --app=$app --key=wiki_name)
|
|
|
|
#REMOVEME? phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
|
|
|
#REMOVEME? secret=$(ynh_app_setting_get --app=$app --key=secret)
|
|
|
|
#REMOVEME? fpm_footprint=$(ynh_app_setting_get --app=$app --key=fpm_footprint)
|
|
|
|
#REMOVEME? fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage)
|
2021-12-08 20:08:43 +01:00
|
|
|
|
2021-05-16 17:29:40 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2022-04-13 01:23:40 +02:00
|
|
|
ynh_script_progression --message="Checking version..."
|
2021-05-16 17:29:40 +02:00
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=6
|
2021-05-16 17:29:40 +02:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_backup_before_upgrade
|
|
|
|
#REMOVEME? ynh_clean_setup () {
|
2021-05-16 17:29:40 +02:00
|
|
|
# Restore it if the upgrade fails
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_restore_upgradebackup
|
2021-05-16 17:29:40 +02:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_abort_if_errors
|
2021-05-16 17:29:40 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
2022-06-18 18:51:02 +02:00
|
|
|
# Cleaning legacy permissions
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? if ynh_legacy_permissions_exists; then
|
|
|
|
#REMOVEME? ynh_legacy_permissions_delete_all
|
2022-06-18 18:51:02 +02:00
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
2020-06-10 15:24:30 +02:00
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
if [ -z "$db_name" ]; then
|
2021-05-19 18:15:23 +02:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2019-02-27 23:52:47 +01:00
|
|
|
fi
|
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
# If install_dir doesn't exist, create it
|
|
|
|
if [ -z "$install_dir" ]; then
|
|
|
|
#REMOVEME? install_dir=/var/www/$app
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
|
2021-05-16 17:29:40 +02:00
|
|
|
fi
|
|
|
|
|
2021-12-08 20:08:43 +01:00
|
|
|
# If fpm_footprint doesn't exist, create it
|
|
|
|
if [ -z "$fpm_footprint" ]; then
|
|
|
|
fpm_footprint=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If fpm_usage doesn't exist, create it
|
|
|
|
if [ -z "$fpm_usage" ]; then
|
|
|
|
fpm_usage=low
|
|
|
|
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
|
|
|
|
fi
|
|
|
|
|
2022-04-13 01:23:40 +02:00
|
|
|
# Removed in dec. 2020
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ldap_user=$(ynh_app_setting_get --app=$app --key=ldap_user)
|
2022-04-13 01:23:40 +02:00
|
|
|
if [[ -n "$ldap_user" ]]; then
|
|
|
|
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
|
|
|
#=================================================
|
2021-05-16 17:29:40 +02:00
|
|
|
# CREATE DEDICATED USER
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2021-05-16 17:29:40 +02:00
|
|
|
# Create a dedicated user (if not existing)
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
|
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"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/extensions/" --source_id="ldap_authentication2"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/extensions/" --source_id="ldap_provider"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir/extensions/" --source_id="pluggable_auth"
|
2021-05-16 17:29:40 +02:00
|
|
|
|
|
|
|
# Note(decentral1se): Disabled and unused for now ...
|
2023-04-10 16:26:24 +02:00
|
|
|
# ynh_setup_source --dest_dir="$install_dir/extensions/" --source_id="ldap_groups"
|
|
|
|
# ynh_setup_source --dest_dir="$install_dir/extensions/" --source_id="ldap_userinfo"
|
|
|
|
# ynh_setup_source --dest_dir="$install_dir/extensions/" --source_id="ldap_authorization"
|
2021-05-16 17:29:40 +02:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2019-02-27 23:52:47 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=3
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
|
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
|
|
|
|
# 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
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
ynh_add_config --template="../conf/LocalSettings.php" --destination="$install_dir/LocalSettings.php"
|
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 16:26:24 +02:00
|
|
|
#REMOVEME? password_length=$(ynh_app_setting_get --app=$app --key=admin_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
|
|
|
|
|
|
|
#=================================================
|
2021-05-16 17:29:40 +02:00
|
|
|
# GENERIC FINALIZATION
|
2019-02-27 23:52:47 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2019-02-27 23:52:47 +01:00
|
|
|
|
2023-04-10 16:26:24 +02:00
|
|
|
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
|
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
|