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

194 lines
6.5 KiB
Text
Raw Normal View History

#!/bin/bash
2017-10-14 16:28:52 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-10-14 16:28:52 +02:00
source _common.sh
source /usr/share/yunohost/helpers
2017-10-14 16:28:52 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2017-10-14 16:28:52 +02:00
app=$YNH_APP_INSTANCE_NAME
2020-07-25 23:14:14 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path_url)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
2021-05-12 09:09:45 +02:00
data_path=$(ynh_app_setting_get --app=$app --key=data_path)
2020-07-25 23:14:14 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2017-10-14 16:28:52 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2017-10-14 16:28:52 +02:00
# If final_path doesn't exist, create it
2020-07-25 23:14:14 +02:00
if [ -z "$final_path" ]; then
2017-10-14 16:28:52 +02:00
final_path=/var/www/$app
2020-07-25 23:14:14 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2017-10-14 16:28:52 +02:00
fi
2021-05-12 09:09:45 +02:00
# If data_path doesn't exist, create it
if [ -z "$data_path" ]; then
data_path="/home/yunohost.app/${app}"
mkdir -p "$data_path"
ynh_app_setting_set --app=$app --key=data_path --value=$data_path
fi
2021-03-16 08:37:17 +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
2017-10-14 16:28:52 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=4
2017-10-14 16:28:52 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
2020-07-25 23:14:14 +02:00
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
2017-10-14 16:28:52 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2017-10-14 16:28:52 +02:00
2020-07-25 23:14:14 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2017-11-29 15:42:21 +01:00
2017-10-14 16:28:52 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-07-25 23:14:14 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=7
# Download, check integrity, uncompress and patch the source from app.src
2021-05-12 09:09:45 +02:00
ynh_setup_source --dest_dir="$final_path" --keep="$final_path/config.js"
2020-07-25 23:14:14 +02:00
fi
2017-10-14 16:28:52 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-07-25 23:25:36 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
2017-10-14 16:28:52 +02:00
2020-07-30 07:04:34 +02:00
# Create a dedicated NGINX config
2017-10-14 16:28:52 +02:00
ynh_add_nginx_config
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=2
2017-10-14 16:28:52 +02:00
2020-07-25 23:14:14 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app
2017-10-14 16:28:52 +02:00
2017-10-14 16:36:30 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# SPECIFIC UPGRADE
#=================================================
# UPGRADE NODEJS
#=================================================
2020-07-25 23:14:14 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2017-11-29 15:42:21 +01:00
#=================================================
# UPGRADE NPM MODULES
#=================================================
2020-07-25 23:14:14 +02:00
pushd "$final_path" || ynh_die
ynh_use_nodejs
ynh_exec_warn_less ynh_npm install
popd || ynh_die
2017-11-29 15:42:21 +01:00
#=================================================
# SETUP LOGROTATE
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2017-11-29 15:42:21 +01:00
2020-07-25 23:14:14 +02:00
# FIXME Currently, the log is only redirected to syslog.
ynh_use_logrotate --non-append
2017-11-29 15:42:21 +01:00
#=================================================
# SETUP SYSTEMD
2017-10-14 16:36:30 +02:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2017-10-14 16:36:30 +02:00
2021-04-23 22:36:24 +02:00
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
ynh_replace_string --match_string="__YNH_NPM__" --replace_string="$ynh_npm" --target_file="../conf/systemd.service"
2017-11-29 15:42:21 +01:00
2017-10-14 16:36:30 +02:00
ynh_add_systemd_config
2017-11-29 15:42:21 +01:00
2017-10-14 16:28:52 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# UPGRADE HASTE CONFIGURATION
2017-10-14 16:28:52 +02:00
#=================================================
2020-07-25 23:25:36 +02:00
# Replace ajax.googleapis by local file
cp ../sources/jquery.min.js "$final_path/static/jquery.min.js"
2020-07-29 09:33:29 +02:00
ynh_replace_string --match_string="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" --replace_string="jquery.min.js" --target_file="$final_path/static/index.html"
2020-07-25 23:25:36 +02:00
2017-10-14 16:28:52 +02:00
#=================================================
2017-11-29 15:42:21 +01:00
# UPGRADE HASTE BINARY
2017-10-14 16:28:52 +02:00
#=================================================
2021-05-12 09:09:45 +02:00
haste_url="${domain}${path_url}"
ynh_add_config --template="../conf/haste.sh" --destination="/usr/bin/$app"
2020-07-25 23:14:14 +02:00
2017-10-14 16:28:52 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2021-05-12 09:09:45 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2021-02-01 23:18:17 +01:00
chown -R $app: $data_path
2020-09-06 18:03:25 +02:00
chmod +x /usr/bin/$app
2017-11-29 15:42:21 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-02-01 23:18:17 +01:00
yunohost service add $app --description="Haste is a pastebin software" --log="/var/log/$app/$app.log"
2017-11-29 15:42:21 +01:00
#=================================================
2020-07-25 23:14:14 +02:00
# START SYSTEMD SERVICE
2017-11-29 15:42:21 +01:00
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2017-11-29 15:42:21 +01:00
2021-02-01 23:18:17 +01:00
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
2017-10-14 16:28:52 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2017-10-14 16:28:52 +02:00
2020-07-25 23:14:14 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last