2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2017-06-17 18:02:28 +02:00
|
|
|
# GENERIC START
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-06-05 13:06:35 +02:00
|
|
|
source _common.sh
|
2017-06-02 18:44:37 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=1
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2016-03-18 17:31:44 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-10-20 18:55:53 +02:00
|
|
|
|
2019-04-16 00:32:39 +02:00
|
|
|
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-03-22 17:59:00 +01:00
|
|
|
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2019-04-18 19:58:47 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
### This helper will compare the version of the currently installed app and the version of the upstream package.
|
|
|
|
### $upgrade_type can have 2 different values
|
|
|
|
### - UPGRADE_APP if the upstream app version has changed
|
|
|
|
### - UPGRADE_PACKAGE if only the YunoHost package has changed
|
|
|
|
### ynh_check_app_version_changed will stop the upgrade if the app is up to date.
|
|
|
|
### UPGRADE_APP should be used to upgrade the core app only if there's an upgrade to do.
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
2017-08-28 23:55:51 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
|
2017-08-28 23:55:51 +02:00
|
|
|
|
2017-09-05 17:48:23 +02:00
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
2017-08-28 23:55:51 +02:00
|
|
|
ynh_clean_setup () {
|
2020-08-02 16:00:17 +02:00
|
|
|
# Restore it if the upgrade fails
|
2017-09-05 17:48:23 +02:00
|
|
|
ynh_restore_upgradebackup
|
2017-08-28 23:55:51 +02:00
|
|
|
}
|
2017-09-05 17:48:23 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-08-28 23:55:51 +02:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
2019-05-02 20:44:22 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Stopping systemd services..." --weight=1
|
2019-05-02 20:44:22 +02:00
|
|
|
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_systemd_action --service_name=$app.socket --action="stop" --log_path="/var/log/$app/$app.log"
|
2019-05-02 20:44:22 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_systemd_action --service_name=$app-beat --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
ynh_systemd_action --service_name=$app-celery --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
systemctl disable $app.socket --quiet
|
|
|
|
systemctl disable $app --quiet
|
|
|
|
systemctl disable $app-beat --quiet
|
|
|
|
systemctl disable $app-celery --quiet
|
2019-05-02 20:44:22 +02:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2019-04-18 19:58:47 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2019-04-18 19:58:47 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
fi
|
2017-06-02 18:44:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2020-08-02 16:00:17 +02:00
|
|
|
# Create a dedicated NGINX config
|
2018-05-27 15:44:58 +02:00
|
|
|
ynh_add_nginx_config
|
2018-06-28 22:05:35 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
2018-06-28 22:05:35 +02:00
|
|
|
|
2019-03-05 23:11:52 +01:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2016-05-18 22:31:45 +02:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2018-07-01 09:57:16 +02:00
|
|
|
# Create a dedicated user (if not existing)
|
2019-04-16 00:32:39 +02:00
|
|
|
ynh_system_user_create --username=$app
|
2017-06-02 18:44:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
|
|
|
# UPDATE VIRTUALENV
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Upgrading Python virtualenv..." --weight=2
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2021-03-15 01:36:28 +01:00
|
|
|
pushd $final_path || ynh_die
|
|
|
|
source $final_path/venv/bin/activate
|
|
|
|
python3 -m pip install -U wheel pip setuptools
|
2021-03-22 17:59:00 +01:00
|
|
|
python3 -m pip install -U --requirement $final_path/requirements.txt
|
|
|
|
python3 -m pip install -U --requirement $final_path/requirements-setup.txt
|
2021-03-15 01:36:28 +01:00
|
|
|
deactivate 'dummy_arg'
|
|
|
|
popd || ynh_die
|
2017-06-02 18:44:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
# PERFORM DATABASE MIGRATIONS
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Performing database migrations..." --weight=2
|
|
|
|
|
|
|
|
pushd $final_path || ynh_die
|
|
|
|
source $final_path/venv/bin/activate
|
|
|
|
envdir $final_path/envs/prod python3 $final_path/manage.py makemigrations
|
|
|
|
envdir $final_path/envs/prod python3 $final_path/manage.py migrate
|
|
|
|
deactivate 'dummy_arg'
|
|
|
|
popd || ynh_die
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2019-05-02 20:47:26 +02:00
|
|
|
#=================================================
|
2020-06-04 17:26:46 +02:00
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
|
2020-06-04 17:26:46 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_add_systemd_config --service="$app-socket" --template systemd.socket
|
|
|
|
ynh_add_systemd_config --service="$app-celery" --template systemd-celery.service
|
|
|
|
ynh_add_systemd_config --service="$app-beat" --template systemd-beat.service
|
|
|
|
systemctl disable "$app-socket.service" --quiet
|
|
|
|
mv "/etc/systemd/system/$app-socket.service" "/etc/systemd/system/$app.socket"
|
|
|
|
systemctl daemon-reload --quiet
|
2017-06-02 18:44:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-04 17:26:46 +02:00
|
|
|
# GENERIC FINALIZATION
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2020-06-04 17:26:46 +02:00
|
|
|
# SECURE FILES AND DIRECTORIES
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-06-04 17:26:46 +02:00
|
|
|
# Set permissions on app files
|
2021-03-22 17:59:00 +01:00
|
|
|
chown -R root:$app $final_path
|
|
|
|
chmod -R o-rwx $final_path
|
|
|
|
chmod -R g-w $final_path
|
|
|
|
setfacl -n -R -m user:www-data:rx -m default:user:www-data:rx $final_path
|
|
|
|
setfacl -n -R -m user:www-data:- -m default:user:www-data:- $final_path/envs
|
|
|
|
chown -R $app:$app $datadir
|
|
|
|
chmod o-rwx $datadir
|
|
|
|
setfacl -n -R -m user:www-data:rx -m default:user:www-data:rx $datadir
|
2017-06-02 18:44:37 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-16 23:07:13 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2021-03-15 01:36:28 +01:00
|
|
|
yunohost service add $app --description="Manage podcast subscriptions, and sync them between apps and devices" --log="/var/log/$app/$app.log"
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2019-05-02 20:44:22 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Starting systemd services..." --weight=1
|
2019-04-18 19:58:47 +02:00
|
|
|
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_systemd_action --service_name=$app-celery --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
ynh_systemd_action --service_name=$app-beat --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
ynh_systemd_action --service_name=$app.socket --action="start" --log_path="/var/log/$app/$app.log"
|
2019-04-18 19:58:47 +02:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2019-04-18 19:58:47 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-10 15:02:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-15 01:36:28 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|