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

206 lines
6.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
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Loading installation settings..."
2019-01-29 21:56:56 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-15 14:00:19 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2019-03-27 23:39:07 +01:00
2019-05-15 14:00:19 +02:00
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-03-27 23:39:07 +01:00
2019-05-15 14:00:19 +02:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_pwd=$(ynh_app_setting_get --app=$app --key=db_pwd)
port=$(ynh_app_setting_get --app=$app --key=port)
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2019-01-29 21:56:56 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Ensuring downward compatibility..."
2019-01-29 21:56:56 +01:00
# Fix is_public as a boolean value
if [ "$is_public" = "Yes" ]; then
2019-05-15 14:00:19 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=1
2019-01-29 21:56:56 +01:00
is_public=1
elif [ "$is_public" = "No" ]; then
2019-05-15 14:00:19 +02:00
ynh_app_setting_set --app=$app --key=is_public --value=0
2019-01-29 21:56:56 +01:00
is_public=0
fi
# If db_name doesn't exist, create it
2019-05-15 14:00:19 +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-01-29 21:56:56 +01:00
fi
# If final_path doesn't exist, create it
2019-05-15 14:00:19 +02:00
if [ -z "$final_path" ]; then
2019-01-29 21:56:56 +01:00
final_path=/var/www/$app
2019-05-15 14:00:19 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2019-01-29 21:56:56 +01:00
fi
2019-02-20 18:52:24 +01:00
# Remove yarn repository
2019-05-15 14:00:19 +02:00
ynh_secure_remove --file="/etc/apt/sources.list.d/yarn.list"
2019-02-20 18:52:24 +01:00
2019-02-21 18:34:49 +01:00
# Remove old log file
2019-05-15 14:00:19 +02:00
ynh_secure_remove --file="/var/log/$app/"
2019-02-21 18:34:49 +01:00
2019-03-31 19:27:20 +02:00
# Create PostgreSQL User
ynh_psql_create_user $db_name $db_pwd
2019-01-29 21:56:56 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="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
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
2019-05-15 14:00:19 +02:00
path_url=$(ynh_normalize_url_path --path_url=$path_url)
2019-01-29 21:56:56 +01:00
#=================================================
# STANDARD UPGRADE STEPS
2019-05-15 14:00:19 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_systemd_action --service_name=$app --action="stop"
2019-01-29 21:56:56 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-05-15 14:07:57 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_print_info --message="Upgrading source files..."
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
2019-01-29 21:56:56 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="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-05-15 14:00:19 +02:00
ynh_print_info --message="Upgrading dependencies..."
2019-01-29 21:56:56 +01:00
2019-05-15 14:00:19 +02:00
ynh_install_nodejs --nodejs_version="10"
2019-02-03 05:29:13 +01:00
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-05-15 14:00:19 +02:00
ynh_print_info --message="Making sure dedicated system user exists..."
2019-01-29 21:56:56 +01:00
# Create a dedicated user (if not existing)
2019-05-15 14:00:19 +02:00
ynh_system_user_create --username=$app --home_dir="$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"
2019-05-15 14:00:19 +02:00
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$final_path/config.yml"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/config.yml"
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/config.yml"
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2019-02-03 02:40:30 +01:00
2019-05-15 14:00:19 +02:00
ynh_backup_if_checksum_is_different --file="$final_path/config.yml"
2019-01-29 21:56:56 +01:00
# Recalculate and store the checksum of the file for the next upgrade.
2019-05-15 14:00:19 +02:00
ynh_store_file_checksum --file="$final_path/config.yml"
2019-01-29 21:56:56 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Upgrading systemd configuration..."
2019-01-29 21:56:56 +01:00
# Create a dedicated systemd config
2019-05-15 14:00:19 +02:00
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="../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-05-15 14:00:19 +02:00
ynh_print_info --message="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
2019-05-15 14:00:19 +02:00
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
2019-01-29 21:56:56 +01:00
fi
#=================================================
2019-05-15 14:00:19 +02:00
# START SERVICE
2019-01-29 21:56:56 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd
sleep 30
2019-02-01 22:11:47 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
# RELOAD NGINX
2019-02-01 22:11:47 +01:00
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Reloading nginx web server..."
2019-02-01 22:11:47 +01:00
2019-05-15 14:00:19 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-28 01:40:45 +01:00
2019-02-11 06:05:30 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-15 14:00:19 +02:00
ynh_print_info --message="Upgrade of $app completed"