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-04-21 00:00:02 +02:00
|
|
|
source experimental_helpers/_ynh_add_extra_apt_repos
|
|
|
|
source experimental_helpers/ynh_install_php
|
2020-03-14 21:22:54 +01:00
|
|
|
source experimental_helpers/ynh_exec_as
|
2020-04-21 00:00:02 +02:00
|
|
|
source experimental_helpers/ynh_composer
|
|
|
|
source experimental_helpers/ynh_send_readme_to_admin
|
|
|
|
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
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-15 21:58:56 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
|
|
|
|
old_project_version=$(ynh_app_setting_get --app=$app --key=project_version)
|
|
|
|
old_core_version=$(ynh_app_setting_get --app=$app --key=core_version)
|
|
|
|
old_ssowat_version=$(ynh_app_setting_get --app=$app --key=ssowat_version)
|
|
|
|
bazaar_extension=$(ynh_app_setting_get --app=$app --key=bazaar_extension)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2018-02-15 21:58:56 +01:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
### This helper will compare the version of the currently installed app and the version of the upstream package.
|
|
|
|
### $upgrade_type can have 2 different values
|
|
|
|
### - UPGRADE_APP if the upstream app version has changed
|
|
|
|
### - UPGRADE_PACKAGE if only the YunoHost package has changed
|
|
|
|
### ynh_check_app_version_changed will stop the upgrade if the app is up to date.
|
|
|
|
### UPGRADE_APP should be used to upgrade the core app only if there's an upgrade to do.
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2018-02-15 21:58:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --time --weight=1
|
2018-02-15 21:58:56 +01:00
|
|
|
|
|
|
|
# If db_name doesn't exist, create it
|
2019-08-24 12:54:18 +02:00
|
|
|
if [ -z "$db_name" ]; then
|
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
2018-02-15 21:58:56 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
2019-08-24 12:54:18 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2018-02-15 21:58:56 +01:00
|
|
|
final_path=/var/www/$app
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-02-15 21:58:56 +01:00
|
|
|
fi
|
|
|
|
|
2020-03-27 20:21:46 +01:00
|
|
|
# Cleaning legacy permissions
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
skipped_uris=$(ynh_app_setting_get --app=$app --key=skipped_uris)
|
|
|
|
unprotected_uris=$(ynh_app_setting_get --app=$app --key=unprotected_uris)
|
|
|
|
protected_uris=$(ynh_app_setting_get --app=$app --key=protected_uris)
|
|
|
|
|
|
|
|
# Remove is_public if exists
|
|
|
|
if [ ! -z "$is_public" ]; then
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove skipped_uris if exists
|
|
|
|
if [ ! -z "$skipped_uris" ]; then
|
|
|
|
ynh_app_setting_delete --app=$app --key=skipped_uris
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove unprotected_uris if exists
|
|
|
|
if [ ! -z "$unprotected_uris" ]; then
|
|
|
|
ynh_app_setting_delete --app=$app --key=unprotected_uris
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove protected_uris if exists
|
|
|
|
if [ ! -z "$protected_uris" ]; then
|
|
|
|
ynh_app_setting_delete --app=$app --key=protected_uris
|
|
|
|
fi
|
|
|
|
|
2019-10-17 23:23:33 +02:00
|
|
|
# Remove the v before version number
|
|
|
|
if [[ $old_project_version == "v*" ]]; then $old_project_version = ${old_project_version:1}; fi
|
|
|
|
|
2018-02-15 21:58:56 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --time --weight=1
|
2018-02-15 21:58:56 +01:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
2019-08-24 12:54:18 +02:00
|
|
|
# N.B. : this is for app installations before YunoHost 2.7
|
|
|
|
# where this value might be something like /foo/ or foo/
|
|
|
|
# instead of /foo ....
|
|
|
|
# If nobody installed your app before 2.7, then you may
|
|
|
|
# safely remove this line
|
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2018-02-15 21:58:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading nginx web server configuration..." --time --weight=1
|
|
|
|
|
2019-09-09 00:27:33 +02:00
|
|
|
# Bug in Nginx with locations and aliases (see http://stackoverflow.com/a/35102259 )
|
|
|
|
if [ $path_url = "/" ]; then
|
|
|
|
ynh_replace_string "__PATH_HACK__" "" "../conf/nginx.conf"
|
|
|
|
else
|
|
|
|
ynh_replace_string "__PATH_HACK__" "$path_url" "../conf/nginx.conf"
|
|
|
|
fi
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2020-04-06 10:54:13 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE PHP7.3
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$(lsb_release --codename --short)" = "buster" ]; then
|
|
|
|
pkg_dependencies="$pkg_dependencies $extra_pkg_dependencies"
|
|
|
|
else
|
2020-04-21 09:07:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading php${php_version}..." --time --weight=1
|
2020-04-06 10:54:13 +02:00
|
|
|
ynh_install_php --phpversion="${php_version}" --package="$extra_pkg_dependencies"
|
|
|
|
fi
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2020-04-21 09:07:21 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --time --weight=1
|
2019-08-24 12:54:18 +02:00
|
|
|
|
2020-04-21 00:00:02 +02:00
|
|
|
_ynh_install_app_dependencies "$pkg_dependencies"
|
2019-08-24 12:54:18 +02:00
|
|
|
|
2018-02-15 21:58:56 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --time --weight=1
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
# Create a dedicated user (if not existing)
|
2020-04-18 23:06:04 +02:00
|
|
|
ynh_system_user_create $app $final_path
|
2020-04-21 00:00:02 +02:00
|
|
|
# Adding it to www-data group
|
|
|
|
usermod -a -G www-data $app
|
2018-02-15 21:58:56 +01:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading php-fpm configuration..." --time --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
2019-09-09 00:27:33 +02:00
|
|
|
ynh_add_fpm_config $php_version
|
2019-08-24 12:54:18 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2018-02-15 21:58:56 +01:00
|
|
|
#=================================================
|
2020-04-19 20:01:48 +02:00
|
|
|
# COMPOSER AND FLARUM UPGRADE
|
2018-02-15 21:58:56 +01:00
|
|
|
#=================================================
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --time --weight=1
|
2019-09-09 00:27:33 +02:00
|
|
|
|
|
|
|
# Backing up the app directory
|
|
|
|
tmpbak="/tmp/${app}backup"
|
2019-09-23 21:23:42 +02:00
|
|
|
ynh_secure_remove --file="$tmpbak"
|
2019-09-09 00:27:33 +02:00
|
|
|
mkdir -p $tmpbak
|
|
|
|
cp -R $final_path/* $tmpbak
|
|
|
|
|
|
|
|
# Deleting current app directory
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2019-09-09 00:27:33 +02:00
|
|
|
|
2020-04-21 00:00:02 +02:00
|
|
|
# Setting user rights
|
|
|
|
chown -R $app:www-data $final_path
|
|
|
|
chmod -R 775 $final_path
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
# Install Composer and Flarum
|
|
|
|
ynh_install_composer --user=$app --phpversion=$php_version --workdir=$final_path
|
2019-09-09 00:27:33 +02:00
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
# Copy config.php back into Flarum
|
|
|
|
cp -f $tmpbak/config.php $final_path
|
2019-09-09 00:27:33 +02:00
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
# Copy assets from old app version. Can be either in root folder or in "public" folder
|
2019-10-17 23:23:33 +02:00
|
|
|
if [ -d $tmpbak/assets ]; then
|
|
|
|
cp -Rf $tmpbak/assets $final_path/public
|
|
|
|
fi
|
2020-04-19 20:01:48 +02:00
|
|
|
if [ -d $tmpbak/public/assets ]; then
|
|
|
|
cp -Rf $tmpbak/public/assets $final_path/public
|
|
|
|
fi
|
|
|
|
|
2019-09-09 00:27:33 +02:00
|
|
|
# Clean temp directory
|
|
|
|
ynh_secure_remove $tmpbak
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
# Set right permissions
|
2019-09-09 00:27:33 +02:00
|
|
|
chown -R $app: $final_path
|
|
|
|
chown -R $app:www-data $final_path/storage
|
2020-04-19 20:01:48 +02:00
|
|
|
chmod -R 775 $final_path
|
|
|
|
|
|
|
|
# Perform migrations and clear cache
|
|
|
|
pushd $final_path
|
2020-04-21 08:40:22 +02:00
|
|
|
ynh_composer_exec --user=$app --phpversion=$php_version --workdir=$final_path \
|
2020-04-19 20:01:48 +02:00
|
|
|
--commands="update --prefer-dist --no-dev -a --with-all-dependencies"
|
|
|
|
exec_as $app php$php_version flarum migrate
|
|
|
|
exec_as $app php$php_version flarum cache:clear
|
|
|
|
popd
|
2019-09-09 00:27:33 +02:00
|
|
|
fi
|
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
#=================================================
|
|
|
|
# FLARUM EXTENSIONS
|
|
|
|
#=================================================
|
2019-09-09 00:27:33 +02:00
|
|
|
|
2020-04-19 20:01:48 +02:00
|
|
|
if ! exec_as $app php$php_version flarum info | grep -q "tituspijean-auth-ssowat" | grep -q $ssowat_version;
|
|
|
|
then
|
|
|
|
# Install and activate the SSOwat auth extension
|
|
|
|
install_and_activate_extension $app $php_version $final_path $db_name "tituspijean/flarum-ext-auth-ssowat:$ssowat_version" "tituspijean-auth-ssowat"
|
|
|
|
# Configure SSOwat auth extension
|
|
|
|
ssowatdomain=$(</etc/yunohost/current_host)
|
|
|
|
sql_command="INSERT IGNORE INTO \`settings\` (\`key\`, \`value\`) VALUES ('tituspijean-auth-ssowat.domain', '$ssowatdomain'), ('tituspijean-auth-ssowat.onlyUse', '0');"
|
|
|
|
ynh_mysql_execute_as_root "$sql_command" $db_name
|
2019-10-17 23:23:33 +02:00
|
|
|
fi
|
|
|
|
|
2019-09-09 00:27:33 +02:00
|
|
|
# Install, activate and set language extensions
|
|
|
|
case $language in
|
2019-10-17 23:23:33 +02:00
|
|
|
en)
|
|
|
|
ynh_script_progression --message="Installing French extension..." --time --weight=2
|
|
|
|
install_and_activate_extension $app $php_version $final_path $db_name "flarum/lang-english" "flarum-lang-english"
|
|
|
|
sql_command="UPDATE \`settings\` SET \`value\` = 'en' WHERE \`settings\`.\`key\` = 'default_locale'"
|
|
|
|
ynh_mysql_execute_as_root "$sql_command" $db_name
|
|
|
|
;;
|
2019-09-09 00:27:33 +02:00
|
|
|
fr)
|
|
|
|
ynh_script_progression --message="Installing French extension..." --time --weight=2
|
2020-04-21 09:33:35 +02:00
|
|
|
install_and_activate_extension $app $php_version $final_path $db_name "milescellar/lang-french" "milescellar-lang-french"
|
2019-09-09 00:27:33 +02:00
|
|
|
sql_command="UPDATE \`settings\` SET \`value\` = 'fr' WHERE \`settings\`.\`key\` = 'default_locale'"
|
|
|
|
ynh_mysql_execute_as_root "$sql_command" $db_name
|
|
|
|
;;
|
|
|
|
de)
|
|
|
|
ynh_script_progression --message="Installing German extension..." --time --weight=2
|
|
|
|
install_and_activate_extension $app $php_version $final_path $db_name "cbmainz/flarum-de" "cbmainz-de"
|
|
|
|
sql_command="UPDATE \`settings\` SET \`value\` = 'de' WHERE \`settings\`.\`key\` = 'default_locale'"
|
|
|
|
ynh_mysql_execute_as_root "$sql_command" $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
|
|
|
|
2018-09-11 13:03:31 +02:00
|
|
|
if [ $bazaar_extension -eq 1 ]; then
|
2019-09-09 00:27:33 +02:00
|
|
|
install_and_activate_extension $app $php_version $final_path $db_name "flagrow/bazaar" "flagrow-bazaar"
|
2018-08-13 16:23:15 +02:00
|
|
|
fi
|
|
|
|
|
2020-04-21 10:05:33 +02:00
|
|
|
# Clear cache
|
|
|
|
pushd $final_path
|
|
|
|
exec_as $app php$php_version flarum cache:clear
|
|
|
|
popd
|
2020-04-19 20:01:48 +02:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --time --weight=1
|
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions on app files
|
|
|
|
chown -R $app: $final_path
|
|
|
|
chown -R $app:www-data $final_path/storage
|
2020-04-19 20:01:48 +02:00
|
|
|
chmod -R 775 $final_path
|
2019-08-24 12:54:18 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-03-27 20:21:46 +01:00
|
|
|
# SETUP PERMISSIONS
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-03-27 20:21:46 +01:00
|
|
|
#ynh_script_progression --message="Upgrading permissions configuration..." --time --weight=1
|
2019-08-24 12:54:18 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reloading nginx web server..." --time --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-10-17 23:23:33 +02:00
|
|
|
ynh_app_setting_set $app php_version $php_version
|
|
|
|
ynh_app_setting_set $app project_version $project_version
|
|
|
|
ynh_app_setting_set $app core_version $core_version
|
|
|
|
ynh_app_setting_set $app ssowat_version $ssowat_version
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --time --last
|