2021-08-13 15:42:21 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
2021-08-19 14:22:04 +02:00
|
|
|
#path_url=$YNH_APP_ARG_PATH
|
|
|
|
# we can only add support for subpaths once this is resolved in archivebox
|
|
|
|
# https://github.com/ArchiveBox/ArchiveBox/issues/724
|
|
|
|
path_url="/"
|
2021-08-13 15:42:21 +02:00
|
|
|
admin=$(ynh_app_setting_get --app=$app --key=admin)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
2021-08-19 14:22:04 +02:00
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2021-08-13 15:42:21 +02:00
|
|
|
|
2021-12-05 16:20:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SET CORRECT NODE VERSION
|
|
|
|
#=================================================
|
|
|
|
ynh_use_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2021-08-13 15:42:21 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
2021-08-13 15:42:21 +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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2021-08-13 15:42:21 +02: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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2021-12-03 21:14:34 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
|
|
|
if [ $nodejs_version != $(ynh_app_setting_get --app=$app --key=nodejs_version) ]; then
|
|
|
|
ynh_remove_nodejs
|
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
fi
|
|
|
|
|
2021-08-13 15:42:21 +02:00
|
|
|
#=================================================
|
2021-08-19 14:22:04 +02:00
|
|
|
# UPGRADE VIA PIP
|
2021-08-13 15:42:21 +02:00
|
|
|
#=================================================
|
|
|
|
|
2021-08-19 14:22:04 +02:00
|
|
|
datadir=/home/yunohost.app/$app
|
|
|
|
|
2021-08-13 15:42:21 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Upgrading via pip" --weight=1
|
2021-08-19 14:22:04 +02:00
|
|
|
python3 -m venv "${final_path}/venv"
|
|
|
|
cp ../conf/requirements.txt "$final_path/requirements.txt"
|
|
|
|
chown -R "$app" "$final_path"
|
|
|
|
|
|
|
|
#run source in a 'sub shell'
|
|
|
|
(
|
|
|
|
set +o nounset
|
|
|
|
source "${final_path}/venv/bin/activate"
|
|
|
|
set -o nounset
|
|
|
|
ynh_exec_as $app $final_path/venv/bin/pip install --upgrade pip
|
|
|
|
ynh_exec_as $app $final_path/venv/bin/pip install -r "$final_path/requirements.txt"
|
|
|
|
)
|
|
|
|
|
2021-08-20 13:45:31 +02:00
|
|
|
# we use this virtualenv archivebox for further commands now
|
|
|
|
archivebox_cmd="$final_path/venv/bin/archivebox"
|
|
|
|
|
2021-08-19 14:22:04 +02:00
|
|
|
# rerun archivebox setup (its idempotent, so it should be ok during upgrade)
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Finishing Archivebox Setup" --weight=1
|
2021-12-05 16:20:38 +01:00
|
|
|
cd $datadir && ynh_exec_as $app $ynh_node_load_PATH $archivebox_cmd init --setup
|
2021-08-13 15:42:21 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
2021-08-19 15:53:54 +02:00
|
|
|
yunohost service add $app --description="Self-hosted internet archiving" --log="/var/log/$app/$app.log"
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|