1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00
flarum_ynh/scripts/upgrade

195 lines
7 KiB
Text
Raw Normal View History

2016-10-05 19:44:08 +02:00
#!/bin/bash
2018-02-15 21:58:56 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-10-05 19:44:08 +02:00
2018-02-15 21:58:56 +01:00
source _common.sh
2020-05-17 14:56:21 +02:00
source experimental_helpers/ynh_add_swap
source /usr/share/yunohost/helpers
2017-02-22 16:51:47 +01:00
2018-02-15 21:58:56 +01:00
#=================================================
2019-08-24 12:54:18 +02:00
# LOAD SETTINGS
2018-02-15 21:58:56 +01:00
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2016-10-05 19:44:08 +02:00
2019-08-24 12:54:18 +02:00
old_core_version=$(ynh_app_setting_get --app=$app --key=core_version)
2021-11-11 23:14:58 +01:00
core_version=$(ynh_app_upstream_version)
2019-08-24 12:54:18 +02:00
#=================================================
# CHECK VERSION
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Checking version..."
2018-02-15 21:58:56 +01:00
2019-08-24 12:54:18 +02:00
upgrade_type=$(ynh_check_app_version_changed)
2018-02-15 21:58:56 +01:00
2021-05-15 18:39:31 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2018-02-15 21:58:56 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-04-29 00:20:51 +02:00
# Remove bazaar_extension if it exists
bazaar_extension=$(ynh_app_setting_get --app=$app --key=bazaar_extension)
2020-06-16 21:52:03 +02:00
if [ ! -z "$bazaar_extension" ]; then
ynh_app_setting_delete --app=$app --key=bazaar_extension
fi
2021-11-11 23:14:58 +01:00
# Remove SSOwat extension if it exists
2021-04-29 00:20:51 +02:00
ssowat_extension=$(ynh_app_setting_get --app=$app --key=ssowat_extension)
if [ ! -z "$ssowat_extension" ]; then
2023-02-19 18:59:53 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="remove tituspijean/flarum-ext-auth-ssowat"
2021-04-29 00:20:51 +02:00
ynh_app_setting_delete --app=$app --key=ssowat_extension
fi
2020-06-12 01:55:21 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ] && ynh_compare_current_package_version --comparison lt --version 1.0~ynh1
2020-06-12 01:55:21 +02:00
then
ynh_script_progression --message="Upgrading source files..."
# Create a temporary directory
tmpdir="$(mktemp -d)"
2023-02-19 18:59:53 +01:00
cp -R $install_dir/* $tmpdir
2020-06-25 22:05:41 +02:00
2020-06-12 01:55:21 +02:00
# Deleting current app directory
2023-02-19 18:59:53 +01:00
ynh_secure_remove --file="$install_dir"
2020-06-25 22:05:41 +02:00
2020-06-12 01:55:21 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-09-23 22:36:31 +02:00
ynh_setup_source --dest_dir="$install_dir" --source_id="flarum"
2020-06-25 22:05:41 +02:00
2020-06-12 01:55:21 +02:00
# Copy config.php back into Flarum
2023-02-19 18:59:53 +01:00
cp -f $tmpdir/config.php $install_dir
2020-06-25 22:05:41 +02:00
2020-06-12 01:55:21 +02:00
# Copy assets from old app version. Can be either in root folder or in "public" folder
if [ -d $tmpdir/assets ]; then
2023-02-19 18:59:53 +01:00
cp -Rf $tmpdir/assets $install_dir/public
2020-06-12 01:55:21 +02:00
fi
if [ -d $tmpdir/public/assets ]; then
2023-02-19 18:59:53 +01:00
cp -Rf $tmpdir/public/assets $install_dir/public
2020-06-12 01:55:21 +02:00
fi
# Clean temp directory
ynh_secure_remove --file="$tmpdir"
fi
2023-02-19 18:59:53 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2019-08-24 12:54:18 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Upgrading php-fpm configuration..." --weight=1
2019-08-24 12:54:18 +02:00
# Create a dedicated php-fpm config
2023-09-14 15:23:23 +02:00
ynh_add_fpm_config
2022-09-13 18:08:13 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-08-24 12:54:18 +02:00
#=================================================
# SPECIFIC UPGRADE
2020-06-12 16:47:52 +02:00
#=================================================
# ADD SWAP
#=================================================
ynh_script_progression --message="Adding swap..."
2022-08-05 11:08:38 +02:00
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 0 ]; then
2022-08-05 10:50:45 +02:00
ynh_add_swap --size=$swap_needed
fi
2020-06-12 01:55:21 +02:00
2018-02-15 21:58:56 +01:00
#=================================================
# COMPOSER AND FLARUM UPGRADE
2018-02-15 21:58:56 +01:00
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2023-02-19 18:59:53 +01:00
ynh_script_progression --message="Installing composer dependencies..." --weight=5
2020-06-12 20:18:09 +02:00
# Set right permissions
2023-02-19 18:59:53 +01:00
chown -R $app:www-data $install_dir
2021-11-12 00:19:47 +01:00
if ynh_compare_current_package_version --comparison lt --version 1.1.0~ynh1
then
2021-11-11 23:14:58 +01:00
# Starting 1.0 (implemented for 1.1 in the package), version requirement is "*" for extensions
# ... except for flarum/core, but that's handled in the next block.
2023-02-19 18:59:53 +01:00
jq '.require | .[] = "*"' $install_dir/composer.json
2021-11-11 23:14:58 +01:00
fi
# Perform migrations and clear cache
2023-02-19 18:59:53 +01:00
pushd $install_dir
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Upgrading Flarum and its extensions..." --weight=1
2023-02-19 18:59:53 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require tituspijean/flarum-ext-auth-ldap:$ldap_version --no-update"
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require flarum/core:$core_version --prefer-dist --update-no-dev -a --update-with-all-dependencies"
2021-05-15 18:39:31 +02:00
ynh_exec_as $app php$phpversion flarum migrate
ynh_exec_as $app php$phpversion flarum cache:clear
popd
fi
2023-02-19 18:59:53 +01:00
ynh_app_setting_set $app core_version "$core_version"
#=================================================
# FLARUM EXTENSIONS
#=================================================
2021-05-15 18:39:31 +02:00
if ! ynh_exec_as $app php$phpversion flarum info | grep -q "tituspijean-auth-ldap" | grep -q $ldap_version;
then
2021-04-29 00:20:51 +02:00
# Install and activate the LDAP auth extension
activate_flarum_extension $db_name "tituspijean-auth-ldap"
# Configure LDAP auth extension
ynh_add_config --template="../conf/ldap.sql.template" --destination="../conf/ldap.sql"
2021-04-29 00:44:54 +02:00
ynh_mysql_connect_as --user=$app --password="$db_pwd" --database=$db_name < ../conf/ldap.sql
fi
# Install, activate and set language extensions
case $language in
fr)
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Installing French extension..." --weight=2
2023-02-19 18:59:53 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require qiaeru/lang-french:*"
2020-06-25 22:05:41 +02:00
activate_flarum_extension $db_name "qiaeru-lang-french"
sql_command="UPDATE \`settings\` SET \`value\` = 'fr' WHERE \`settings\`.\`key\` = 'default_locale'"
ynh_mysql_execute_as_root --sql="$sql_command" --database=$db_name
;;
de)
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Installing German extension..." --weight=2
2023-02-19 18:59:53 +01:00
ynh_exec_warn_less ynh_composer_exec --phpversion=$phpversion --workdir=$install_dir --commands="require kakifrucht/flarum-de:*"
activate_flarum_extension $db_name "kakifrucht-de"
sql_command="UPDATE \`settings\` SET \`value\` = 'de' WHERE \`settings\`.\`key\` = 'default_locale'"
ynh_mysql_execute_as_root --sql="$sql_command" --database=$db_name
;;
esac
ynh_print_info "You may need to manually enable your language extension in Flarum's admin panel."
2018-03-05 15:28:04 +01:00
# Clear cache
2023-02-19 18:59:53 +01:00
pushd $install_dir
2021-05-15 18:39:31 +02:00
ynh_exec_as $app php$phpversion flarum cache:clear
popd
# Set files and directories permissions
2023-02-19 18:59:53 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-05-15 18:39:31 +02:00
#=================================================
# GENERIC FINALIZATION
2019-08-24 12:54:18 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2019-08-24 12:54:18 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# END OF SCRIPT
#=================================================
2020-06-12 01:55:21 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last