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

209 lines
6.2 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
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-10-19 12:13:47 +02:00
2019-02-15 19:49:22 +01:00
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
admin=$(ynh_app_setting_get $app adminusername)
is_public=$(ynh_app_setting_get $app is_public)
final_path=$(ynh_app_setting_get $app final_path)
db_name=$(ynh_app_setting_get $app db_name)
2019-02-15 19:49:22 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
2019-02-15 19:49:22 +01:00
ynh_app_setting_set $app is_public 1
is_public=1
elif [ "$is_public" = "No" ]; then
2019-02-15 19:49:22 +01:00
ynh_app_setting_set $app is_public 0
is_public=0
fi
2019-02-15 19:49:22 +01:00
# If db_name doesn't exist, create it
if [ -z $db_name ]; then
db_name=$(ynh_sanitize_dbid $app)
ynh_app_setting_set $app db_name $db_name
fi
# If final_path doesn't exist, create it
2019-02-15 19:49:22 +01:00
if [ -z $final_path ]; then
final_path=/var/www/$app
ynh_app_setting_set $app final_path $final_path
fi
#=================================================
2019-02-15 19:49:22 +01:00
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
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
path_url=$(ynh_normalize_url_path $path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2015-12-29 02:06:14 +01:00
# Move old app dir
2017-10-19 15:40:50 +02:00
mv "$final_path" "$final_path.old"
2014-11-23 20:45:36 +01:00
2019-02-15 19:49:22 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source "$final_path"
2017-10-30 10:59:00 +01:00
mkdir -p "$final_path"/sessions
2016-01-24 18:24:34 +01:00
# restore data
2017-10-19 15:40:50 +02:00
cp -a "$final_path.old/data" "$final_path"
2016-01-24 18:24:34 +01:00
# restore plugins
2017-10-19 15:40:50 +02:00
if [ -e "$final_path.old/plugins" ]
then
2017-10-19 15:40:50 +02:00
cp -a "$final_path.old/plugins" "$final_path"
fi
2016-01-24 18:24:34 +01:00
# delete temp directory
2017-10-19 15:40:50 +02:00
ynh_secure_remove "$final_path.old"
#=================================================
# NGINX CONFIGURATION
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
2017-10-21 23:15:17 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-02-15 19:49:22 +01:00
# Create a dedicated user (if not existing)
ynh_system_user_create $app
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
# Create a dedicated php-fpm config
ynh_add_fpm_config
2018-03-08 18:33:25 +01:00
#=================================================
2019-02-15 19:49:22 +01:00
# UPGRADE DEPENDENCIES
2018-03-08 18:33:25 +01:00
#=================================================
2018-04-13 17:37:55 +02:00
ynh_install_app_dependencies $pkg_dependencies
2018-03-08 18:33:25 +01:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2019-02-15 19:49:22 +01:00
# CREATE CONFIG.PHP
#=================================================
2019-02-15 19:49:22 +01:00
# Retrieve admin email
email=$(ynh_user_get_info $admin mail)
# 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-02-15 19:49:22 +01:00
ynh_backup_if_checksum_is_different "$config_php"
cp ../conf/config.php "$config_php"
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
ynh_replace_string "__DB_PWD__" "$db_pwd" "$config_php"
ynh_replace_string "__DB_NAME__" $db_name "$config_php"
ynh_replace_string "__USER__" $admin "$config_php"
ynh_replace_string "__EMAIL__" $email "$config_php"
ynh_replace_string "__DOMAIN__" $domain "$config_php"
#=================================================
2019-02-15 19:49:22 +01:00
# UPGRADE KANBOARD
#=================================================
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
php cli db:migrate --no-interaction --verbose
# Launch plugins migration
php cli plugin:upgrade --no-interaction --verbose
2017-10-30 10:59:00 +01:00
)
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
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
#=================================================
2019-02-15 19:49:22 +01:00
# SETUP FAIL2BAN
#=================================================
2017-10-19 12:13:47 +02:00
2017-10-19 15:40:50 +02:00
if [[ "$path_url" == "/" ]]
2017-10-19 12:13:47 +02:00
then
# ynh panel is only comptable with non-root installation
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
2017-10-19 15:03:38 +02:00
ynh_store_file_checksum "$finalnginxconf"
else
ynh_replace_string "^#sub_path_only" "" "$finalnginxconf"
2018-01-31 12:50:58 +01:00
ynh_store_file_checksum "$finalnginxconf"
2017-10-19 12:13:47 +02:00
fi
2019-02-15 19:49:22 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
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
2019-02-15 19:49:22 +01:00
ynh_app_setting_set $app unprotected_uris "/"
ynh_replace_string "define('LDAP_AUTH'.*$" "define('LDAP_AUTH', true);" "$config_php"
ynh_replace_string "define('HIDE_LOGIN_FORM'.*$" "define('HIDE_LOGIN_FORM', false);" "$config_php"
ynh_replace_string "define('REMEMBER_ME_AUTH'.*$" "define('REMEMBER_ME_AUTH', true);" "$config_php"
ynh_replace_string "define('DISABLE_LOGOUT'.*$" "define('DISABLE_LOGOUT', false);" "$config_php"
else
2019-02-15 19:49:22 +01:00
ynh_app_setting_set $app unprotected_uris "/jsonrpc.php"
fi
2019-02-15 19:49:22 +01:00
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum "$config_php"
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
#=================================================
ynh_add_fail2ban_config "/var/log/nginx/$domain-error.log" "^.*authentication failure\" while reading response header from upstream, client: <HOST>,.*$" 5
2019-02-15 19:49:22 +01:00
systemctl reload nginx
2018-11-20 22:43:27 +01:00
#=================================================
#=================================================