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

157 lines
4.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
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
# Exit if an error occurs during the execution of the script
2017-10-19 12:13:47 +02:00
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-10-19 12:13:47 +02:00
# Set app specific variables
dbuser=$app
# Retrieve settings
domain=$(ynh_app_setting_get "$app" domain)
2017-10-19 15:03:38 +02:00
path_url=$(ynh_app_setting_get "$app" path)
admin=$(ynh_app_setting_get "$app" adminusername)
email=$(ynh_user_get_info "$admin" mail)
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
is_public=$(ynh_app_setting_get "$app" is_public)
final_path=$(ynh_app_setting_get "$app" final_path)
2017-10-19 15:40:50 +02:00
if [[ -z "$is_public" ]]
then # Old version doesnt have is_public settings
2017-10-19 12:13:47 +02:00
is_public=0
2017-10-19 15:40:50 +02:00
ynh_app_setting_set "$app" is_public "$is_public"
fi
#=================================================
# 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
ynh_setup_source "$final_path"
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
#=================================================
# Create a system user
ynh_system_user_create "$app"
# flush php sessions before upgrade
ynh_secure_remove /var/lib/php5/session/*
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
# Create a dedicated php-fpm config
ynh_add_fpm_config
#=================================================
# SPECIFIC UPGRADE
#=================================================
# Create config.php
#=================================================
# Copy and edit config.php
2017-10-19 15:40:50 +02:00
config_php="$final_path/config.php"
cp ../conf/config.php "$config_php"
2017-10-19 15:40:50 +02:00
ynh_replace_string "yuno_dbpdw" "$dbpass" "$config_php"
ynh_replace_string "yuno_dbuser" "$dbuser" "$config_php"
ynh_replace_string "yuno_admin" "$admin" "$config_php"
ynh_replace_string "yuno_email" "$email" "$config_php"
ynh_replace_string "yuno_domain" "$domain" "$config_php"
#=================================================
# Database initialization
#=================================================
2014-07-20 18:10:20 +02:00
# Launch database migration
2017-10-19 15:40:50 +02:00
"$final_path"/cli db:migrate
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to kanboard and data directory
chown -R root:root "$final_path"
2017-10-21 23:15:17 +02:00
chown -R "$app" "$final_path"/{data,plugins}
2015-10-20 15:44:33 +02:00
#=================================================
# SETUP SSOWAT
#=================================================
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"
2017-10-19 12:13:47 +02:00
fi
2014-07-20 18:10:20 +02:00
# Make app public or private
2017-10-19 12:13:47 +02:00
if [[ "$is_public" -eq 1 ]];
then
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"
fi
#=================================================
# RELOAD NGINX
#=================================================
2017-10-19 15:21:24 +02:00
service php5-fpm restart
systemctl reload nginx