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

189 lines
5.5 KiB
Text
Raw Normal View History

2019-01-29 21:56:56 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2019-02-01 22:11:47 +01:00
source ynh_systemd_action
2019-01-29 21:56:56 +01:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Loading installation settings..."
2019-01-29 21:56:56 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
2019-03-27 23:39:07 +01:00
2019-01-29 21:56:56 +01:00
is_public=$(ynh_app_setting_get $app is_public)
final_path=$(ynh_app_setting_get $app final_path)
2019-03-27 23:39:07 +01:00
2019-01-29 21:56:56 +01:00
db_name=$(ynh_app_setting_get $app db_name)
2019-02-04 01:37:23 +01:00
db_pwd=$(ynh_app_setting_get $app db_pwd)
2019-01-29 21:56:56 +01:00
port=$(ynh_app_setting_get $app port)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Ensuring downward compatibility..."
2019-01-29 21:56:56 +01:00
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
ynh_app_setting_set $app is_public 1
is_public=1
elif [ "$is_public" = "No" ]; then
ynh_app_setting_set $app is_public 0
is_public=0
fi
# 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
if [ -z $final_path ]; then
final_path=/var/www/$app
ynh_app_setting_set $app final_path $final_path
fi
2019-02-20 18:52:24 +01:00
# Remove yarn repository
ynh_secure_remove "/etc/apt/sources.list.d/yarn.list"
2019-02-21 18:34:49 +01:00
# Remove old log file
ynh_secure_remove "/var/log/$app/"
2019-01-29 21:56:56 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Backing up the app before upgrading (may take a while)..."
2019-01-29 21:56: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
2019-02-01 22:11:47 +01:00
ynh_clean_check_starting
2019-01-29 21:56:56 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2019-02-01 22:11:47 +01:00
#=================================================
# STOP SERVICE
#=================================================
ynh_systemd_action --action=stop --service_name=$app
2019-01-29 21:56:56 +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
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Upgrading source files..."
2019-01-29 21:56:56 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2019-02-11 11:12:26 +01:00
ynh_setup_source "$final_path"
2019-01-29 21:56:56 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Upgrading nginx web server configuration..."
2019-01-29 21:56:56 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Upgrading dependencies..."
2019-01-29 21:56:56 +01:00
2019-02-03 05:29:13 +01:00
ynh_install_nodejs 10
2019-03-14 01:19:10 +01:00
ynh_install_app_dependencies $pkg_dependencies
2019-02-03 05:12:39 +01:00
2019-01-29 21:56:56 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Making sure dedicated system user exists..."
2019-01-29 21:56:56 +01:00
# Create a dedicated user (if not existing)
2019-02-01 08:43:05 +01:00
ynh_system_user_create "$app" "$final_path"
2019-01-29 21:56:56 +01:00
2019-02-03 02:40:30 +01:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
cp -f ../conf/config.sample.yml "$final_path/config.yml"
ynh_replace_string "__PORT__" "$port" "$final_path/config.yml"
ynh_replace_string "__DB_PWD__" "$db_pwd" "$final_path/config.yml"
ynh_replace_string "__DB_NAME__" "$db_name" "$final_path/config.yml"
2019-01-29 21:56:56 +01:00
ynh_backup_if_checksum_is_different "$final_path/config.yml"
# Recalculate and store the checksum of the file for the next upgrade.
ynh_store_file_checksum "$final_path/config.yml"
#=================================================
# SETUP SYSTEMD
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Upgrading systemd configuration..."
2019-01-29 21:56:56 +01:00
# Create a dedicated systemd config
2019-02-21 18:56:15 +01:00
ynh_replace_string "__NODEJS_PATH__" "$nodejs_path" "../conf/systemd.service"
ynh_add_systemd_config
2019-01-29 21:56:56 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
2019-02-01 08:55:16 +01:00
chown -R "$app":"$app" "$final_path"
2019-01-29 21:56:56 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Upgrading SSOwat configuration..."
2019-01-29 21:56:56 +01:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway
ynh_app_setting_set $app unprotected_uris "/"
fi
#=================================================
# RELOAD NGINX
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Reloading nginx web server..."
2019-01-29 21:56:56 +01:00
systemctl reload nginx
2019-02-01 22:11:47 +01:00
#=================================================
# START SERVICE
#=================================================
2019-02-24 20:57:47 +01:00
ynh_systemd_action --action=start --service_name=$app --log_path=systemd
2019-02-11 06:05:30 +01:00
2019-02-28 01:40:45 +01:00
sleep 30
2019-02-11 06:05:30 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-02-19 00:20:09 +01:00
ynh_print_info "Upgrade of $app completed"