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

150 lines
4.9 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)
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)
2021-03-27 21:25:29 +01:00
admin=$(ynh_app_setting_get --app=$app --key=admin)
2021-08-24 07:44:03 +02:00
password=$(ynh_app_setting_get --app=$app --key=password)
2021-02-16 13:38:59 +01:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# 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
# 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
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
2021-02-16 13:38:59 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2021-02-16 13:38:59 +01:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
2021-02-16 14:17:45 +01:00
ynh_clean_check_starting
2021-02-16 13:38:59 +01:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2021-02-16 14:17:45 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-02-16 14:17:45 +01:00
ynh_systemd_action --service_name=$app --action=stop
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)
ynh_system_user_create --username=$app --home_dir=$final_path
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..."
2021-03-01 20:51:09 +01:00
pushd $final_path
2021-03-27 18:44:32 +01:00
ynh_use_nodejs
2021-03-01 20:51:09 +01:00
npm update -g tiddlywiki
popd
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"
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
2021-02-16 14:17:45 +01:00
# Create a dedicated nginx config
2021-02-16 13:38:59 +01:00
ynh_add_nginx_config
2021-02-16 14:17:45 +01:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-03-27 21:06:39 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2021-02-16 14:17:45 +01:00
ynh_install_nodejs --nodejs_version=$nodejs_version
#=================================================
# 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
2021-03-27 23:10:43 +01:00
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file=../conf/systemd.service
2021-03-27 21:25:29 +01:00
2021-03-27 21:45:48 +01:00
ynh_add_systemd_config
2021-02-16 14:17:45 +01:00
#=================================================
2021-03-09 23:13:38 +01:00
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
yunohost service add $app --description="A non-linear personal web notebook" --log="/var/log/$app/$app.log"
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
2021-03-27 23:16:43 +01:00
ynh_systemd_action --service_name=$app --action=restart --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