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

174 lines
5.6 KiB
Text
Raw Normal View History

2021-02-16 13:38:59 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-02-16 14:17:45 +01:00
source _common.sh
2021-02-16 13:38:59 +01:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-02-16 13:38:59 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
2022-07-03 16:40:34 +02:00
language=$(ynh_app_setting_get --app=$app --key=language)
2021-02-16 13:38:59 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-02-16 14:17:45 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
2022-07-03 16:40:34 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2021-02-16 13:38:59 +01:00
#=================================================
# CHECK VERSION
#=================================================
2022-07-03 16:40:34 +02:00
ynh_script_progression --message="Checking version..."
2021-02-16 13:38:59 +01:00
upgrade_type=$(ynh_check_app_version_changed)
2021-09-13 14:35:51 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
ynh_clean_check_starting
2022-07-03 16:40:34 +02:00
# Restore it if the upgrade fails
ynh_restore_upgradebackup
2021-09-13 14:35:51 +02:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2022-07-03 16:40:34 +02:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop"
2021-02-16 13:38:59 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-02-16 13:38:59 +01:00
2021-02-16 14:17:45 +01:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
2022-07-03 16:40:34 +02:00
# If final_path doesn't exist, create it
if [ -z "$final_path" ]; then
final_path=/var/www/$app
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2021-02-16 14:17:45 +01:00
2022-07-03 16:40:34 +02:00
ynh_remove_logrotate
2021-02-16 14:17:45 +01:00
2022-07-03 16:40:34 +02:00
# If datadir doesn't exist, create it
if [ -z "$datadir" ]; then
datadir=/home/yunohost.app/$app
ynh_app_setting_set --app=$app --key=datadir --value=$datadir
mkdir -p $datadir
rsync -a $final_path/mynewwiki/ $datadir/
ynh_secure_remove --file="$final_path/mynewwiki/"
2022-05-22 09:56:17 +02:00
2022-07-03 16:40:34 +02:00
chmod 750 "$datadir"
chmod -R o-rwx "$datadir"
chown -R $app:www-data "$datadir"
fi
# If language doesn't exist, create it
if [ -z "$language" ]; then
language="en-US"
ynh_app_setting_set --app=$app --key=language --value=$language
fi
2022-05-22 09:56:17 +02:00
2021-03-27 18:44:32 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-03-27 18:44:32 +01:00
# Create a dedicated user (if not existing)
2022-07-03 16:40:34 +02:00
ynh_system_user_create --username=$app --home_dir="$final_path"
2021-03-27 18:44:32 +01:00
2021-02-16 13:38:59 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Upgrading source files..."
2022-07-03 16:40:34 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2021-02-16 13:38:59 +01:00
fi
2021-05-28 11:34:56 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2022-07-03 16:40:34 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading dependencies..." --weight=1
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2021-02-16 13:38:59 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-02-16 13:38:59 +01:00
2022-07-03 16:40:34 +02:00
# Create a dedicated NGINX config
2021-02-16 13:38:59 +01:00
ynh_add_nginx_config
2022-07-03 16:40:34 +02:00
#=================================================
# SPECIFIC UPGRADE
2021-02-16 14:17:45 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-02-16 14:17:45 +01:00
2022-07-03 16:40:34 +02:00
# Create a dedicated systemd config
2021-03-27 21:45:48 +01:00
ynh_add_systemd_config
2021-02-16 14:17:45 +01:00
#=================================================
2022-07-03 16:40:34 +02:00
# GENERIC FINALIZATION
2021-11-18 18:54:23 +01:00
#=================================================
2022-07-03 16:40:34 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2021-03-09 23:13:38 +01:00
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
2022-07-03 16:40:34 +02:00
yunohost service add $app --description="A non-linear personal web notebook"
2021-03-09 23:13:38 +01:00
2021-02-16 14:17:45 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-02-16 14:17:45 +01:00
2022-07-03 16:40:34 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Serving on"
2021-02-16 13:38:59 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Reloading NGINX web server..."
2021-02-16 13:38:59 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last