2017-10-02 02:07:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2019-02-05 21:08:32 +01:00
|
|
|
source _common.sh
|
2019-02-05 23:33:38 +01:00
|
|
|
source ynh_package_version
|
2019-07-11 23:34:28 +02:00
|
|
|
source ynh_detect_arch__2
|
2017-10-02 02:07:41 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Loading installation settings..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-07-10 00:03:59 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-07-10 00:03:59 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Ensuring downward compatibility..."
|
|
|
|
|
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
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-02-05 21:57:12 +01:00
|
|
|
fi
|
|
|
|
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
# CHECK VERSION NUMBER
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-02-05 22:24:26 +01:00
|
|
|
|
2019-02-05 23:28:45 +01:00
|
|
|
abort_if_up_to_date
|
2018-07-01 19:28:26 +02:00
|
|
|
# previous function is what defines 'version', more precisely the 'previous version'
|
|
|
|
previous_version="${version}"
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Backing up the app before upgrading (may take a while)..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 22:24:26 +01:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
2017-10-02 02:07:41 +02:00
|
|
|
ynh_clean_setup () {
|
2019-02-05 22:24:26 +01:00
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
2017-10-02 02:07:41 +02:00
|
|
|
}
|
2019-02-05 22:24:26 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2019-07-11 20:00:48 +02:00
|
|
|
# MANAGE UPGRADE FROM PREVIOUS VERSION
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-07-11 20:00:48 +02:00
|
|
|
ynh_print_info --message="Managing upgrade from previous version..."
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2018-07-01 19:28:26 +02:00
|
|
|
if ynh_version_gt "0.45-2" "${previous_version}" ; then
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_replace_string --match_string="Environment=ROOT_URL=http://127.0.0.1:$port$path_url" --replace_string="Environment=ROOT_URL=https://$domain$path_url/" --target_file="/etc/systemd/system/$app.service"
|
2017-11-08 21:25:42 +01:00
|
|
|
systemctl daemon-reload
|
|
|
|
fi
|
2019-02-05 22:24:26 +01:00
|
|
|
|
2018-07-01 19:28:26 +02:00
|
|
|
if ynh_version_gt "0.45-3" "${previous_version}" ; then
|
2017-11-09 12:13:38 +01:00
|
|
|
yunohost service add $app
|
2017-11-08 21:43:16 +01:00
|
|
|
fi
|
2019-02-05 22:24:26 +01:00
|
|
|
|
2018-07-01 19:28:26 +02:00
|
|
|
if ynh_version_gt "0.77-2" "${previous_version}" ; then
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_install_nodejs --nodejs_version="8.9.3"
|
2019-07-13 19:57:31 +02:00
|
|
|
ynh_use_nodejs
|
2019-07-13 21:19:48 +02:00
|
|
|
|
2018-02-25 02:09:31 +01:00
|
|
|
# Create a dedicated systemd config
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_replace_string --match_string="__NODEJS__" --replace_string="$nodejs_use_version" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$app" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__URI__" --replace_string="$path_url/" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="../conf/systemd.service"
|
2018-02-25 02:09:31 +01:00
|
|
|
ynh_add_systemd_config
|
|
|
|
fi
|
2019-02-05 22:24:26 +01:00
|
|
|
|
2018-07-01 19:28:26 +02:00
|
|
|
if ynh_version_gt "1.07~ynh2" "${previous_version}" ; then
|
|
|
|
|
|
|
|
# Replace mongodb packages
|
|
|
|
# Assume no other app needs it >.>
|
|
|
|
rm -f /etc/apt/sources.list.d/mongodb-org-3.2.list
|
|
|
|
ynh_remove_app_dependencies
|
|
|
|
ynh_install_app_dependencies "mongodb mongodb-server"
|
|
|
|
yunohost service remove mongod
|
|
|
|
yunohost service add mongodb --log "/var/log/mongodb/mongodb.log"
|
|
|
|
|
|
|
|
# Gotta regen the systemd config because mongodb service name changed
|
2019-03-08 01:41:31 +01:00
|
|
|
ynh_use_nodejs
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$nodejs_path" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN_URI__" --replace_string="$domain$path_url" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="../conf/systemd.service"
|
2018-07-01 19:28:26 +02:00
|
|
|
ynh_add_systemd_config
|
|
|
|
fi
|
2018-02-25 02:09:31 +01:00
|
|
|
|
2019-03-16 02:46:20 +01:00
|
|
|
if ynh_version_gt "2.48~ynh1" "${previous_version}" ; then
|
2019-07-10 00:03:59 +02:00
|
|
|
# Install dependencies
|
2019-03-08 12:35:31 +01:00
|
|
|
ynh_remove_nodejs
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_install_nodejs --nodejs_version="8.16.0"
|
2019-03-08 12:35:31 +01:00
|
|
|
ynh_use_nodejs
|
2019-07-10 00:03:59 +02:00
|
|
|
|
2019-03-08 12:35:31 +01:00
|
|
|
# Create a dedicated systemd config
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="../conf/systemd.service"
|
2019-03-08 12:35:31 +01:00
|
|
|
ynh_add_systemd_config
|
2019-07-10 00:03:59 +02:00
|
|
|
|
2019-03-08 12:35:31 +01:00
|
|
|
# Create a dedicated .env config
|
2019-07-10 00:03:59 +02:00
|
|
|
config_file="$final_path/.env"
|
|
|
|
ynh_backup_if_checksum_is_different --file="$config_file"
|
|
|
|
cp "../conf/.env" "$config_file"
|
|
|
|
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file"$config_file"
|
|
|
|
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file"$config_file"
|
|
|
|
ynh_replace_string --match_string="__DOMAIN_URI__" --replace_string="$domain$path_url" --target_file"$config_file"
|
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file"$config_file"
|
|
|
|
ynh_store_file_checksum "$config_file"
|
2019-03-08 12:35:31 +01:00
|
|
|
fi
|
|
|
|
|
2019-02-05 22:24:26 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
2019-07-10 00:03:59 +02:00
|
|
|
path_url=$(ynh_normalize_url_path --path_url=$path_url)
|
2017-10-02 02:07:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2019-07-10 00:03:59 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2019-07-11 19:59:10 +02:00
|
|
|
ynh_print_info --message="Stopping $app service..."
|
2019-07-10 00:03:59 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
|
|
|
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-10 00:03:59 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_print_info --message="Upgrading source files..."
|
2019-07-13 21:19:48 +02:00
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
|
|
|
|
# Backup the env file in the temp dir
|
|
|
|
cp -a "$final_path/.env" "$tmpdir/.env"
|
|
|
|
|
|
|
|
# Remove the app directory securely
|
|
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
|
|
|
|
architecture=$(ynh_detect_arch)
|
2019-07-11 23:34:28 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-07-10 22:09:57 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path" --source_id="$architecture"
|
2019-07-13 21:19:48 +02:00
|
|
|
|
|
|
|
#Copy the admin saved settings from tmp directory to final path
|
|
|
|
cp -a "$tmpdir/.env" "$final_path/.env"
|
|
|
|
|
|
|
|
# Remove the tmp directory securely
|
|
|
|
ynh_secure_remove --file="$tmpdir"
|
2019-07-10 00:03:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Upgrading nginx web server configuration..."
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Upgrading dependencies..."
|
|
|
|
|
|
|
|
ynh_install_nodejs --nodejs_version="8.16.0"
|
|
|
|
ynh_use_nodejs
|
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2017-10-02 02:07:41 +02:00
|
|
|
|
2019-02-05 22:24:26 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Making sure dedicated system user exists..."
|
2019-02-05 22:24:26 +01:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Upgrading systemd configuration..."
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
2019-07-13 19:57:31 +02:00
|
|
|
ynh_replace_string --match_string="__NODEJS_PATH__" --replace_string="$nodejs_path" --target_file="../conf/systemd.service"
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_add_systemd_config
|
2019-02-05 22:24:26 +01:00
|
|
|
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2018-02-25 02:09:31 +01:00
|
|
|
|
2019-02-05 22:24:26 +01:00
|
|
|
# Set permissions on app files
|
2017-10-02 02:07:41 +02:00
|
|
|
chown -R $app: "$final_path"
|
|
|
|
chmod -R 640 "$final_path"
|
|
|
|
find "$final_path" -type d -print0 | xargs -0 chmod 750
|
|
|
|
|
2019-02-20 17:45:11 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Upgrading SSOwat configuration..."
|
2019-02-20 17:45:11 +01:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2019-02-20 17:45:11 +01:00
|
|
|
fi
|
|
|
|
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2017-10-02 02:07:41 +02:00
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Starting a systemd service..."
|
2019-02-05 17:41:18 +01:00
|
|
|
|
2019-07-11 00:12:42 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Started Wekan, task board"
|
|
|
|
sleep 30
|
2019-02-05 17:41:18 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
# RELOAD NGINX
|
2019-02-05 17:41:18 +01:00
|
|
|
#=================================================
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Reloading nginx web server..."
|
2019-02-05 17:41:18 +01:00
|
|
|
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-20 17:45:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-10 00:03:59 +02:00
|
|
|
ynh_print_info --message="Upgrade of $app completed"
|