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

183 lines
6.6 KiB
Text
Raw Normal View History

2014-07-20 18:10:20 +02:00
#!/bin/bash
2015-10-23 16:24:30 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2017-10-19 12:13:47 +02:00
source /usr/share/yunohost/helpers
#=================================================
2019-02-15 19:49:22 +01:00
# LOAD SETTINGS
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
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)
2021-02-26 12:26:48 +01:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
2020-10-30 15:08:59 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2021-02-26 12:26:48 +01:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2019-05-06 20:34:37 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2021-12-17 12:08:46 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up Kanboard before upgrading (may take a while)..." --weight=5
# 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
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
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
# 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
fi
2021-03-16 07:26:45 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-06-07 23:50:22 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# 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
2021-06-07 23:50:22 +02:00
ynh_setup_source --dest_dir="$final_path" --keep="$final_path/config.php"
2019-05-06 20:34:37 +02:00
fi
mkdir -p $final_path/sessions/
2021-06-07 23:50:22 +02:00
chmod 750 "$final_path"
chown -R $app $final_path/{data,plugins,sessions}
chmod -R 700 $final_path/sessions
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2020-10-30 15:08:59 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-12-17 12:08:46 +01:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading dependencies..." --weight=3
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=5
2020-10-30 15:08:59 +01:00
# Create a dedicated PHP-FPM config
2021-12-17 12:08:46 +01:00
ynh_add_fpm_config
2018-03-08 18:33:25 +01:00
#=================================================
2019-02-15 19:49:22 +01:00
# UPGRADE KANBOARD
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Upgrading Kanboard..." --weight=2
2014-07-20 18:10:20 +02:00
2021-02-26 12:26:48 +01:00
pushd $final_path
2019-02-15 19:49:22 +01:00
# Launch database migration
2021-02-26 12:26:48 +01:00
php$phpversion cli db:migrate --no-interaction --verbose
2019-02-15 19:49:22 +01:00
# Launch plugins migration
2021-02-26 12:26:48 +01:00
php$phpversion cli plugin:upgrade --no-interaction --verbose
popd
#=================================================
2019-02-15 19:49:22 +01:00
# SETUP FAIL2BAN
#=================================================
2020-10-30 15:08:59 +01: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
2020-10-30 15:08:59 +01:00
#=================================================
# SETUP CRON
#=================================================
ynh_script_progression --message="Setuping a cron..."
2021-06-08 10:19:18 +02:00
ynh_add_config --template="../conf/cron_kanboard" --destination="/etc/cron.d/$app"
2021-02-26 12:26:48 +01:00
chmod 644 "/etc/cron.d/$app"
2020-10-30 15:08:59 +01: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
# Make app public or private
2019-02-15 19:49:22 +01:00
if [ $is_public -eq 1 ]
then
2021-03-15 22:36:42 +01:00
ynh_permission_update --permission="main" --add="visitors"
2021-06-08 10:19:18 +02:00
ynh_replace_string --match_string="define('LDAP_AUTH'.*$" --replace_string="define('LDAP_AUTH', true);" --target_file="$final_path/config.php"
ynh_replace_string --match_string="define('HIDE_LOGIN_FORM'.*$" --replace_string="define('HIDE_LOGIN_FORM', false);" --target_file="$final_path/config.php"
ynh_replace_string --match_string="define('REMEMBER_ME_AUTH'.*$" --replace_string="define('REMEMBER_ME_AUTH', true);" --target_file="$final_path/config.php"
ynh_replace_string --match_string="define('DISABLE_LOGOUT'.*$" --replace_string="define('DISABLE_LOGOUT', false);" --target_file="$final_path/config.php"
else
2019-05-06 20:34:37 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/jsonrpc.php"
fi
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
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
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
#=================================================
2019-02-17 20:55:37 +01:00
# END OF SCRIPT
#=================================================
2020-10-30 15:08:59 +01:00
ynh_script_progression --message="Installation of Kanboard completed" --last