2014-07-20 18:10:20 +02:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
source _common.sh
|
2017-10-19 12:13:47 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# LOAD SETTINGS
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2017-10-19 12:31:32 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2019-05-06 20:34:37 +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=adminusername)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2014-10-22 21:21:37 +02:00
|
|
|
|
2017-10-23 16:34:18 +02:00
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
2017-10-23 16:34:18 +02:00
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=0
|
2017-10-23 16:34:18 +02:00
|
|
|
is_public=0
|
|
|
|
fi
|
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# If db_name doesn't exist, create it
|
2019-05-06 20:34:37 +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
|
2019-02-15 19:49:22 +01:00
|
|
|
fi
|
|
|
|
|
2017-10-23 16:34:18 +02:00
|
|
|
# If final_path doesn't exist, create it
|
2019-05-06 20:34:37 +02:00
|
|
|
if [ -z "$final_path" ]; then
|
2019-02-15 19:49:22 +01:00
|
|
|
final_path=/var/www/$app
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-10-23 16:34:18 +02:00
|
|
|
fi
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=5
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2017-10-23 15:52:55 +02: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
|
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
2019-05-06 20:34:37 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2014-11-23 20:45:36 +01:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=3
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
fi
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2019-02-15 19:57:17 +01:00
|
|
|
mkdir -p $final_path/sessions/
|
2014-10-22 21:21:37 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Upgrading nginx web server configuration..." --weight=2
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2017-10-21 23:15:17 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2017-10-21 23:15:17 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Create a dedicated user (if not existing)
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Upgrading php-fpm configuration..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
2020-06-07 19:20:26 +02:00
|
|
|
ynh_add_fpm_config --phpversion="$YNH_PHP_VERSION" --package="$extra_php_dependencies"
|
2018-03-08 18:33:25 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# CREATE CONFIG.PHP
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Reconfiguring kanboard..." --weight=2
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Retrieve admin email
|
2019-05-06 20:34:37 +02:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2014-10-22 21:21:37 +02:00
|
|
|
# Copy and edit config.php
|
2019-02-15 19:49:22 +01:00
|
|
|
config_php="${final_path}/config.php"
|
2017-10-19 15:40:50 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_backup_if_checksum_is_different --file="$config_php"
|
2019-02-15 19:49:22 +01:00
|
|
|
|
|
|
|
cp ../conf/config.php "$config_php"
|
2019-05-06 20:34:37 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
|
|
|
|
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string=$db_name --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="__USER__" --replace_string=$admin --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="__EMAIL__" --replace_string=$email --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN__" --replace_string=$domain --target_file="$config_php"
|
2014-10-22 21:21:37 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# UPGRADE KANBOARD
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Upgrading kanboard..." --weight=2
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2017-10-30 10:59:00 +01:00
|
|
|
(
|
2019-02-15 19:49:22 +01:00
|
|
|
cd "$final_path"
|
|
|
|
# Launch database migration
|
2020-06-07 19:20:26 +02:00
|
|
|
php$YNH_PHP_VERSION cli db:migrate --no-interaction --verbose
|
2019-02-15 19:49:22 +01:00
|
|
|
# Launch plugins migration
|
2020-06-07 19:20:26 +02:00
|
|
|
php$YNH_PHP_VERSION cli plugin:upgrade --no-interaction --verbose
|
2017-10-30 10:59:00 +01:00
|
|
|
)
|
2017-04-01 18:52:48 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
|
|
|
chown -R $app $final_path/{data,plugins,sessions}
|
|
|
|
chmod -R 700 $final_path/sessions
|
2015-10-20 15:44:33 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# SETUP FAIL2BAN
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Reconfiguring fail2ban..." --weight=7
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2019-02-15 19:54:10 +01:00
|
|
|
ynh_add_fail2ban_config --logpath="/var/log/nginx/$domain-error.log" --failregex="^.*authentication failure\" while reading response header from upstream, client: <HOST>,.*$" --max_retry=5
|
2017-10-19 15:03:38 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Upgrading SSOwat configuration..." --weight=2
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2016-05-05 12:57:31 +02:00
|
|
|
# Make app public or private
|
2019-02-15 19:49:22 +01:00
|
|
|
if [ $is_public -eq 1 ]
|
2016-05-05 12:57:31 +02:00
|
|
|
then
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
|
|
|
ynh_replace_string --match_string="define('LDAP_AUTH'.*$" --replace_string="define('LDAP_AUTH', true);" --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="define('HIDE_LOGIN_FORM'.*$" --replace_string="define('HIDE_LOGIN_FORM', false);" --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="define('REMEMBER_ME_AUTH'.*$" --replace_string="define('REMEMBER_ME_AUTH', true);" --target_file="$config_php"
|
|
|
|
ynh_replace_string --match_string="define('DISABLE_LOGOUT'.*$" --replace_string="define('DISABLE_LOGOUT', false);" --target_file="$config_php"
|
2018-01-18 18:55:08 +01:00
|
|
|
else
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/jsonrpc.php"
|
2016-05-05 12:57:31 +02:00
|
|
|
fi
|
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_store_file_checksum --file="$config_php"
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2018-11-20 22:43:27 +01:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# RELOAD NGINX
|
2018-11-20 22:43:27 +01:00
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..."
|
2018-11-20 22:43:27 +01:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2018-11-20 22:43:27 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
# END OF SCRIPT
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|