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

176 lines
6.3 KiB
Text
Raw Normal View History

2021-03-24 16:15:33 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=1
2021-03-24 16:15:33 +01:00
2023-03-03 09:19:21 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2021-03-24 16:15:33 +01:00
2023-03-03 09:19:21 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#REMOVEME? db_user=$db_name
#REMOVEME? db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd)
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
#REMOVEME? files_path=$(ynh_app_setting_get --app=$app --key=files_path)
2021-03-24 16:15:33 +01:00
2023-03-03 09:19:21 +01:00
#REMOVEME? enable_public_boards=$(ynh_app_setting_get --app=$app --key=enable_public_boards)
2022-09-15 21:13:30 +02:00
2021-03-24 16:15:33 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-03-24 16:15:33 +01:00
2022-09-15 21:20:16 +02:00
if [ -z "$enable_public_boards" ]; then
enable_public_boards="false"
ynh_app_setting_set --app=$app --key=enable_public_boards --value=$enable_public_boards
2022-09-15 21:13:30 +02:00
fi
2021-03-24 16:15:33 +01:00
# Cleaning legacy permissions
2023-03-03 09:19:21 +01:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2021-03-24 16:15:33 +01:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-08-27 14:35:21 +02:00
# Create a permission if needed
2023-03-03 09:19:21 +01:00
#REMOVEME? if ! ynh_permission_exists --permission="api"; then
#REMOVEME? ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --auth_header="false" --show_tile="false" --protected="true"
2021-08-27 14:35:21 +02:00
fi
2021-03-24 16:15:33 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-03-24 16:15:33 +01:00
# Backup the current version of the app
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2021-03-24 16:15:33 +01:00
# Restore it if the upgrade fails
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_restore_upgradebackup
2021-03-24 16:15:33 +01:00
}
# Exit if an error occurs during the execution of the script
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_abort_if_errors
2021-03-24 16:15:33 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-03-24 16:15:33 +01:00
2021-04-05 23:05:06 +02:00
ynh_systemd_action --service_name=$app --action=stop --log_path="/var/log/$app/$app.log"
2021-03-24 16:15:33 +01:00
2021-06-10 11:44:27 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..." --weight=3
2021-06-10 11:44:27 +02:00
# Create a dedicated user (if not existing)
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_system_user_create --username=$app --home_dir="$install_dir"
2021-06-10 11:44:27 +02:00
2021-03-24 16:15:33 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-04-06 08:58:51 +02:00
2021-06-19 23:10:54 +02:00
# Create a temporary directory
tmpdir="$(mktemp -d)"
# Backup the config file in the temp dir
2023-03-03 09:19:21 +01:00
cp -a "$install_dir/config.json" "$tmpdir/config.json"
2021-06-19 23:10:54 +02:00
# Remove the app directory securely
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_secure_remove --file="$install_dir"
2021-06-19 23:10:54 +02:00
2021-03-24 16:15:33 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2023-03-03 09:19:21 +01:00
ynh_setup_source --dest_dir="$install_dir" #--keep="config.json"
2021-06-19 23:10:54 +02:00
# Copy the admin saved settings from tmp directory to final path
2023-03-03 09:19:21 +01:00
cp -a "$tmpdir/config.json" "$install_dir/config.json"
2021-06-19 23:10:54 +02:00
# Remove the tmp directory securely
ynh_secure_remove --file="$tmpdir"
2021-03-24 16:15:33 +01:00
fi
2023-03-03 09:19:21 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-06-10 11:44:27 +02:00
2021-03-24 16:15:33 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-03-24 16:15:33 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2022-09-15 21:13:30 +02:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
ynh_script_progression --message="Modifying a config file..."
2023-03-03 09:19:21 +01:00
ynh_add_config --template="../conf/config.json" --destination="$install_dir/config.json"
chmod 600 $install_dir/config.json
2022-09-15 21:13:30 +02:00
2021-03-24 16:15:33 +01:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=2
2021-03-24 16:15:33 +01:00
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
2021-03-24 16:15:33 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-03-24 16:15:33 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-03-24 16:15:33 +01:00
2021-04-06 00:07:55 +02:00
yunohost service add $app --description="Self-hosted kanban board" --log="/var/log/$app/$app.log"
2021-03-24 16:15:33 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-24 16:15:33 +01:00
2021-04-05 23:05:06 +02:00
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
2021-03-24 16:15:33 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-03-24 16:15:33 +01:00
2023-03-03 09:19:21 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2021-03-24 16:15:33 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-04-03 18:19:39 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last