2019-01-28 19:15:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Loading installation settings..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02: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? port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Checking version..."
|
2019-05-15 01:57:52 +02:00
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_backup_before_upgrade
|
|
|
|
#REMOVEME? ynh_clean_setup () {
|
2021-03-23 20:16:47 +01:00
|
|
|
ynh_clean_check_starting
|
2021-04-10 01:14:00 +02:00
|
|
|
# Restore it if the upgrade fails
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_restore_upgradebackup
|
2019-01-28 19:15:11 +01:00
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_abort_if_errors
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# STANDARD UPGRADE STEPS
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-03 01:19:34 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2022-01-05 03:58:46 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
|
|
|
|
|
|
|
# Cleaning legacy permissions
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? if ynh_legacy_permissions_exists; then
|
|
|
|
#REMOVEME? ynh_legacy_permissions_delete_all
|
2022-01-05 03:58:46 +01:00
|
|
|
|
|
|
|
ynh_app_setting_delete --app=$app --key=is_public
|
|
|
|
fi
|
|
|
|
|
|
|
|
ynh_script_progression --message="Creating storage folder..."
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
if [ -z "$data_dir" ]; then
|
|
|
|
data_dir=/home/yunohost.app/$app
|
|
|
|
#REMOVEME? ynh_app_setting_set --app=$app --key=data_dir --value=$data_dir
|
2022-01-05 03:58:46 +01:00
|
|
|
fi
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
mkdir -p "$data_dir/distbin-db/"
|
2022-01-05 03:58:46 +01:00
|
|
|
|
|
|
|
# Move old db
|
2023-08-15 12:19:13 +02:00
|
|
|
if [ -d "$install_dir/db/" ]; then
|
|
|
|
rsync -arz "$install_dir/db/" "$data_dir/distbin-db/" --delete-after --remove-source-files
|
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir/db"
|
2022-01-05 03:58:46 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Move old db
|
2023-08-15 12:19:13 +02:00
|
|
|
if [ -d "$install_dir/distbin-db/" ]; then
|
|
|
|
if [ -d "$install_dir/distbin-db/db/" ]; then
|
|
|
|
rsync -arz "$install_dir/distbin-db/db/" "$data_dir/distbin-db/" --delete-after --remove-source-files
|
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir/distbin-db/db"
|
2022-01-05 03:58:46 +01:00
|
|
|
fi
|
2023-08-15 12:19:13 +02:00
|
|
|
rsync -arz "$install_dir/distbin-db/" "$data_dir/distbin-db/" --delete-after --remove-source-files
|
|
|
|
#REMOVEME? ynh_secure_remove --file="$install_dir/distbin-db"
|
2022-01-05 03:58:46 +01:00
|
|
|
fi
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chmod 750 "$data_dir"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
|
|
|
chown -R $app:$app "$data_dir"
|
2022-01-05 03:58:46 +01:00
|
|
|
|
2021-04-10 01:14:00 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Making sure dedicated system user exists..."
|
2021-04-10 01:14:00 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_system_user_create --username=$app --home_dir=$install_dir
|
2021-04-10 01:14:00 +02:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2019-05-15 01:57:52 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-08-15 12:19:13 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-05-15 01:57:52 +02:00
|
|
|
fi
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2021-04-10 01:14:00 +02:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-11 09:23:59 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2020-12-11 09:23:59 +01:00
|
|
|
# Create a dedicated NGINX config
|
2019-01-28 19:15:11 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
|
2021-03-23 20:16:47 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2019-01-29 03:27:53 +01:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE LOG FOLDER
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Creating log folder..."
|
2019-05-15 01:57:52 +02:00
|
|
|
|
|
|
|
mkdir -p "/var/log/$app"
|
|
|
|
|
2022-01-05 03:58:46 +01:00
|
|
|
chmod 750 "/var/log/$app"
|
|
|
|
chmod -R o-rwx "/var/log/$app"
|
|
|
|
chown -R $app:$app "/var/log/$app"
|
2021-04-14 20:36:26 +02:00
|
|
|
|
2019-02-02 20:47:00 +01:00
|
|
|
#=================================================
|
2019-12-29 17:43:56 +01:00
|
|
|
# MAKE UPGRADE
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Making upgrade..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
pushd $install_dir
|
2021-02-28 11:37:19 +01:00
|
|
|
ynh_use_nodejs
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --ignore-scripts
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run build
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app cp -af package* dist/
|
2019-02-09 02:57:23 +01:00
|
|
|
popd
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
pushd $install_dir/dist
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --ignore-scripts --production
|
2019-01-29 03:27:53 +01:00
|
|
|
popd
|
|
|
|
|
2019-02-08 23:10:29 +01:00
|
|
|
#=================================================
|
2021-03-23 20:16:47 +01:00
|
|
|
# UPDATE A CONFIG FILE
|
2019-02-08 23:10:29 +01:00
|
|
|
#=================================================
|
2021-03-23 20:16:47 +01:00
|
|
|
ynh_script_progression --message="Updating a config file..."
|
2019-02-08 23:10:29 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
|
2020-08-08 20:21:09 +02:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chmod 400 "$install_dir/.env"
|
|
|
|
chown $app:$app "$install_dir/.env"
|
2021-04-10 01:14:00 +02:00
|
|
|
|
2021-04-11 20:18:30 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..."
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
# GENERIC FINALIZATION
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2019-02-05 18:07:39 +01:00
|
|
|
|
2021-01-23 09:45:50 +01:00
|
|
|
yunohost service add $app --description="Distributed pastebin" --log="/var/log/$app/$app.log"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-03 01:19:34 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started"
|
2022-01-05 03:58:46 +01:00
|
|
|
|
2020-08-08 20:21:09 +02:00
|
|
|
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
|
|
|
sleep 60
|
|
|
|
fi
|
2019-01-29 01:59:40 +01:00
|
|
|
|
2019-02-01 22:10:17 +01:00
|
|
|
#=================================================
|
2019-05-15 01:57:52 +02:00
|
|
|
# RELOAD NGINX
|
2019-02-01 22:10:17 +01:00
|
|
|
#=================================================
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..."
|
2019-02-01 22:10:17 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-11 04:34:08 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|