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

244 lines
7.9 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-05 21:08:32 +01:00
source _common.sh
source ynh_package_version
2019-07-11 23:34:28 +02:00
source ynh_detect_arch__2
2020-06-15 03:40:49 +02:00
source ynh_add_config
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Loading installation settings..."
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)
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)
2019-07-10 00:03:59 +02:00
#=================================================
# CHECK VERSION
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Checking version..."
2019-07-10 00:03:59 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2019-07-10 00:03:59 +02:00
# If db_name doesn't exist, create it
if [ -z "$db_name" ]; then
2020-06-15 03:40:49 +02:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
fi
#=================================================
2019-07-10 00:03:59 +02:00
# CHECK VERSION NUMBER
#=================================================
2019-02-05 22:24:26 +01:00
2019-12-30 20:23:46 +01:00
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
2020-06-15 03:40:49 +02:00
sleep 60
2019-12-30 20:23:46 +01:00
fi
abort_if_up_to_date
# previous function is what defines 'version', more precisely the 'previous version'
previous_version="${version}"
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2019-02-05 22:24:26 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2019-02-05 22:24:26 +01:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
2019-02-05 22:24:26 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2020-02-20 22:51:47 +01:00
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path --path_url=$path_url)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Stopping a systemd service..."
2020-02-20 22:51:47 +01:00
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd
#=================================================
2019-07-11 20:00:48 +02:00
# MANAGE UPGRADE FROM PREVIOUS VERSION
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Managing upgrade from previous version..."
if ynh_version_gt "0.45-2" "${previous_version}" ; then
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading to 0.45-2..."
2020-06-15 03:40:49 +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"
systemctl daemon-reload
2017-11-08 21:25:42 +01:00
fi
2019-02-05 22:24:26 +01:00
if ynh_version_gt "0.45-3" "${previous_version}" ; then
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading to 0.45-3..."
yunohost service add $app --description "Wekan daemon" --log_type "systemd"
2017-11-08 21:43:16 +01:00
fi
2019-02-05 22:24:26 +01:00
if ynh_version_gt "1.07~ynh2" "${previous_version}" ; then
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading to 1.07~ynh2..."
2020-06-15 03:40:49 +02:00
# 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"
2020-06-15 04:15:42 +02:00
yunohost service add $app --description "Wekan daemon" --log_type "systemd"
2020-02-18 23:06:11 +01:00
fi
2020-02-20 20:01:00 +01:00
if ynh_version_gt "2.56~ynh1" "${previous_version}" ; then
2020-06-15 03:40:49 +02:00
# Create a dedicated .env config
config_file="$final_path/.env"
touch $config_file
2020-02-20 19:50:06 +01:00
fi
2020-04-01 16:01:52 +02:00
# Create the permission "admin" only if it doesn't exist.
if ! ynh_permission_exists --permission="admin"
then
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading Permission configuration..."
2020-04-01 16:01:52 +02:00
ynh_app_setting_delete --app=$app --key=unprotected_uris
2020-06-15 03:40:49 +02:00
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
2020-04-01 16:01:52 +02:00
2020-06-15 03:40:49 +02:00
if [ $is_public -eq 1 ]; then
ynh_permission_update --permission "main" --add "visitors"
fi
2020-04-01 16:01:52 +02:00
ynh_app_setting_delete --app=$app --key=is_public
2020-06-15 03:40:49 +02:00
ynh_permission_create --permission="admin"
2020-04-01 16:01:52 +02:00
fi
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-07-10 00:03:59 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading source files..."
2020-06-15 03:40:49 +02:00
# Create a temporary directory
tmpdir="$(mktemp -d)"
2019-07-13 21:19:48 +02:00
2020-06-15 03:40:49 +02:00
# Backup the env file in the temp dir
cp -a "$final_path/.env" "$tmpdir/.env"
2019-07-13 21:19:48 +02:00
2020-06-15 03:40:49 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
2019-07-13 21:19:48 +02:00
2020-06-15 03:40:49 +02:00
architecture=$(ynh_detect_arch)
# 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
2020-06-15 03:40:49 +02:00
#Copy the admin saved settings from tmp directory to final path
cp -a "$tmpdir/.env" "$final_path/.env"
2019-07-13 21:19:48 +02:00
2020-06-15 03:40:49 +02:00
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
2019-07-10 00:03:59 +02:00
fi
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading nginx web server configuration..."
2019-07-10 00:03:59 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading dependencies..."
2019-07-10 00:03:59 +02:00
2020-08-06 04:44:39 +02:00
ynh_install_app_dependencies $pkg_dependencies
2020-02-23 14:53:43 +01:00
ynh_remove_nodejs
2020-02-18 23:06:11 +01:00
ynh_install_nodejs --nodejs_version=$nodejsversion
2019-07-10 00:03:59 +02:00
ynh_use_nodejs
2020-08-06 04:51:45 +02:00
ynh_install_mongo
2019-02-05 22:24:26 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --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"
2020-02-19 22:38:00 +01:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Modifying a config file..."
2020-02-19 22:38:00 +01:00
# Create a dedicated .env config
2020-06-15 03:40:49 +02:00
ynh_add_config
2020-02-19 22:38:00 +01:00
2019-07-10 00:03:59 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrading systemd configuration..."
2019-07-10 00:03:59 +02:00
# Create a dedicated systemd config
2020-06-15 03:40:49 +02:00
ynh_add_systemd_config --others_var="mongodb_servicename ynh_node"
2019-02-05 22:24:26 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Securing files and directories..."
2019-02-05 22:24:26 +01:00
# Set permissions on app files
chown -R $app: "$final_path"
chmod -R 640 "$final_path"
find "$final_path" -type d -print0 | xargs -0 chmod 750
#=================================================
2019-07-10 00:03:59 +02:00
# START SYSTEMD SERVICE
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-12-29 23:56:39 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started Wekan, task board"
2020-06-15 04:15:42 +02:00
2019-12-29 23:56:39 +01:00
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
2020-06-15 03:40:49 +02:00
sleep 60
2019-12-29 23:56:39 +01:00
fi
#=================================================
2019-07-10 00:03:59 +02:00
# RELOAD NGINX
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Reloading nginx web server..."
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
#=================================================
2020-06-15 04:15:42 +02:00
ynh_script_progression --message="Upgrade of $app completed"