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="/"
|
2022-09-21 23:51:10 +02:00
|
|
|
language=$(ynh_app_setting_get --app=$app --key=language)
|
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)
|
2021-08-19 14:22:04 +02:00
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
2022-01-27 21:05:27 +01:00
|
|
|
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
2021-12-05 16:20:38 +01:00
|
|
|
|
2021-08-13 15:42:21 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2022-09-21 23:51:10 +02:00
|
|
|
ynh_script_progression --message="Checking version..." --weight=1
|
2021-08-13 15:42:21 +02:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2022-09-22 00:37:16 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2022-09-22 02:55:19 +02:00
|
|
|
tempdir="$(mktemp -d)"
|
|
|
|
ynh_setup_source --dest_dir="$tempdir"
|
2022-09-22 00:37:16 +02:00
|
|
|
mkdir -p $final_path
|
|
|
|
fi
|
|
|
|
|
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2022-09-21 23:51:10 +02:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
|
|
|
|
2022-09-22 20:53:09 +02:00
|
|
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2022-09-21 23:51:10 +02:00
|
|
|
|
2022-01-27 21:05:27 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2021-12-03 21:14:34 +01:00
|
|
|
#=================================================
|
2022-09-21 23:51:10 +02:00
|
|
|
# SPECIFIC UPGRADE
|
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
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-08-23 10:32:06 +02:00
|
|
|
ynh_script_progression --message="Upgrading via pip" --weight=1
|
2022-09-22 00:10:01 +02:00
|
|
|
ynh_use_nodejs
|
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"
|
2022-09-22 00:37:16 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE NODE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading node dependencies..."
|
|
|
|
|
2022-09-22 02:55:19 +02:00
|
|
|
cp -f $tempdir/package.json "$final_path/package.json"
|
|
|
|
cp -f $tempdir/package-lock.json "$final_path/package-lock.json"
|
|
|
|
ynh_secure_remove --file="$tempdir"
|
2022-09-22 00:37:16 +02:00
|
|
|
pushd $final_path
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm ci
|
|
|
|
popd
|
|
|
|
fi
|
2021-08-20 13:45:31 +02:00
|
|
|
|
2022-09-22 00:37:16 +02:00
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
2022-09-22 20:53:09 +02:00
|
|
|
ynh_store_file_checksum --file="$datadir/ArchiveBox.conf"
|
2022-09-22 00:37:16 +02:00
|
|
|
ynh_add_config --template="../conf/ArchiveBox.conf" --destination="$datadir/ArchiveBox.conf"
|
|
|
|
|
2022-09-22 00:46:55 +02:00
|
|
|
chmod 600 "$datadir/ArchiveBox.conf"
|
2022-09-22 00:37:16 +02:00
|
|
|
chown $app:$app "$datadir/ArchiveBox.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FINISH ARCHIVEBOX SETUP
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
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
|
2022-09-22 00:10:01 +02:00
|
|
|
pushd $datadir
|
2022-09-22 20:53:09 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $archivebox_cmd init --setup
|
2022-09-22 00:10:01 +02:00
|
|
|
popd
|
2021-08-13 15:42:21 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|