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

229 lines
8 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-07-07 22:34:33 +02:00
source ynh_send_readme_to_admin__2
2019-01-29 21:56:56 +01:00
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)
2019-07-07 22:34:33 +02:00
ldap_user=$(ynh_app_setting_get --app=$app --key=ldap_user)
ldap_password=$(ynh_app_setting_get --app=$app --key=ldap_password)
2019-05-15 14:00:19 +02:00
#=================================================
# 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-07-07 22:34:33 +02:00
# If ldap_user doesn't exist, retrieve it or create it
if [[ -z "$ldap_user" ]]; then
2019-07-09 08:30:38 +02:00
ldap_user="svc_${app}_ldap"
2019-07-07 22:34:33 +02:00
ldap_password=$(ynh_string_random --length=8)
ynh_app_setting_set "$app" ldap_user "$ldap_user"
ynh_app_setting_set "$app" ldap_password "$ldap_password"
2019-07-09 08:30:38 +02:00
yunohost user create $ldap_user --firstname "SvcWikijsLdap" --lastname "SvcWikijsLdap" --mail ${ldap_user}@$domain --password $ldap_password -q 0
2019-07-07 22:34:33 +02: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
2020-01-05 23:27:00 +01:00
#Workaround to be remove in next version
2020-01-08 01:06:00 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="HTTP Server:"
2020-01-05 23:27:00 +01:00
2019-01-29 21:56:56 +01:00
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
#=================================================
# STANDARD UPGRADE STEPS
2019-05-15 14:00:19 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2019-07-07 22:34:33 +02:00
ynh_print_info --message="Stopping a systemd service..."
2019-05-15 14:00:19 +02:00
2020-01-08 01:06:00 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped wikijs service"
2019-05-15 14:00:19 +02:00
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-07-07 22:34:33 +02:00
#=================================================
# SPECIFIC UPGRADE
2019-02-03 02:40:30 +01:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2019-07-07 22:34:33 +02:00
config_file="$final_path/config.yml"
ynh_backup_if_checksum_is_different --file=$config_file
cp -f ../conf/config.sample.yml $config_file
2019-02-03 02:40:30 +01:00
2019-12-27 23:53:20 +01:00
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$config_file"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$config_file"
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$config_file"
2019-05-15 14:00:19 +02:00
#=================================================
# STORE THE CONFIG FILE CHECKSUM
#=================================================
2019-02-03 02:40:30 +01:00
2019-01-29 21:56:56 +01:00
# Recalculate and store the checksum of the file for the next upgrade.
2019-12-27 23:53:20 +01:00
ynh_store_file_checksum --file="$config_file"
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-07-07 22:34:33 +02:00
# START SYSTEMD SERVICE
2019-01-29 21:56:56 +01:00
#=================================================
2019-07-07 22:34:33 +02:00
ynh_print_info --message="Starting a systemd service..."
2019-01-29 21:56:56 +01:00
2020-01-08 01:06:00 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="HTTP Server:"
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-07-07 22:34:33 +02:00
#=================================================
# SEND README TO ADMIN
#=================================================
ynh_print_info --message="Sending ReadMe to admin..."
ynh_replace_string --match_string="__LDAP_USER__" --replace_string="$ldap_user" --target_file="../conf/ldap_message"
ynh_replace_string --match_string="__LDAP_PASSWORD__" --replace_string="$ldap_password" --target_file="../conf/ldap_message"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="../conf/ldap_message"
ynh_replace_string --match_string="__PATH_URL__" --replace_string="$path_url" --target_file="../conf/ldap_message"
ynh_send_readme_to_admin --app_message="../conf/ldap_message" --recipients="root" --type='upgrade'
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"