1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
weblate_ynh/scripts/upgrade

304 lines
11 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
2020-10-28 12:02:15 +01:00
path_url=$(ynh_app_setting_get --app="$app" --key=path)
final_path=$(ynh_app_setting_get --app="$app" --key=final_path)
db_name=$(ynh_app_setting_get --app="$app" --key=db_name)
db_user=$db_name
domain=$(ynh_app_setting_get --app="$app" --key=domain)
db_pwd=$(ynh_app_setting_get --app="$app" --key=psqlpwd)
admin=$(ynh_app_setting_get --app="$app" --key=admin)
admin_mail=$(ynh_user_get_info "$admin" mail)
2020-10-28 12:02:15 +01:00
github_account=$(ynh_app_setting_get --app="$app" --key=github_account)
2020-11-03 10:19:34 +01:00
github_token=$(ynh_app_setting_get --app="$app" --key=github_token)
2020-10-28 12:02:15 +01:00
key=$(ynh_string_random 50)
redis_db=$(ynh_app_setting_get --app="$app" --key=redis_db)
2017-10-18 23:10:32 +02:00
2019-05-12 17:18:42 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-11-03 17:19:19 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=40
2019-05-12 17:18:42 +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
#=================================================
# Migrate legacy permissions to new system
#=================================================
if ynh_legacy_permissions_exists
then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2019-03-10 21:57:52 +01:00
if [[ -d "$final_path/bin/" ]]
then
2020-10-28 12:02:15 +01:00
ynh_secure_remove --file="$final_path/bin/"
2019-03-10 21:57:52 +01:00
fi
2019-08-28 00:09:23 +02:00
# (<3.8) log cleanups
if [[ -e "/var/log/uwsgi/app/$app" ]]
then
ynh_systemd_action --service_name="$app" --action="stop"
ynh_systemd_action --service_name="$app-celery" --action="stop"
2020-10-28 12:02:15 +01:00
ynh_secure_remove --file="/var/log/uwsgi/app/$app"
ynh_secure_remove --file="/var/log/$app-celery"
2019-08-28 00:09:23 +02:00
fi
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
2019-05-30 20:51:22 +02:00
# STOP SYSTEMD SERVICE
#=================================================
2020-11-03 17:19:19 +01:00
ynh_script_progression --message="Stopping systemd services..." --weight=5
2019-05-30 20:51:22 +02:00
ynh_systemd_action --service_name="$app" --action="stop"
ynh_systemd_action --service_name="$app-celery" --action="stop"
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=3
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
2019-05-30 20:51:22 +02:00
# SPECIFIC UPGRADE
#=================================================
# Update dependencies
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=5
2020-11-03 16:26:23 +01:00
ynh_exec_warn_less ynh_install_app_dependencies "$pkg_dependencies"
#=================================================
2019-05-30 20:51:22 +02:00
# CREATE DEDICATED USER
2017-12-28 17:16:07 +01:00
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2017-12-28 17:16:07 +01:00
2019-05-30 20:51:22 +02:00
# Create a system user
2020-10-28 12:02:15 +01:00
ynh_system_user_create --username="$app" --home_dir="$final_path" --use_shell
2017-12-28 17:16:07 +01:00
2020-11-03 10:19:34 +01:00
#=================================================
# CONFIGURE HUB
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Configure hub..." --weight=2
2020-11-03 10:19:34 +01:00
mkdir -p "$final_path/.config/"
2021-06-28 15:32:27 +02:00
ynh_add_config --template="../conf/hub_config" --destination="$final_path/.config/hub"
2020-11-03 10:19:34 +01:00
cat <<EOF > "$final_path/.bashrc"
eval "$(hub alias -s /bin/bash)"
EOF
2017-09-26 17:01:57 +02:00
#=================================================
2020-10-28 12:02:15 +01:00
# SPECIFIC SETUP UWSGI
2017-11-20 15:58:51 +01:00
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Configure uwsgi..." --weight=2
2017-11-20 15:58:51 +01:00
2019-03-10 21:57:52 +01:00
finaluwsgiini="/etc/uwsgi/apps-available/$app.ini"
2020-10-28 12:02:15 +01:00
2021-06-28 15:32:27 +02:00
ynh_add_config --template="../conf/uwsgi.ini" --destination="$finaluwsgiini"
2020-10-28 12:02:15 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=3
2019-03-10 21:57:52 +01:00
2020-10-28 12:02:15 +01:00
ynh_add_systemd_config --service="$app" --template="weblate.service"
2017-09-26 17:01:57 +02:00
2020-10-28 12:02:15 +01:00
#=================================================
# ACTIVATE CELERY
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Configure celery..." --weight=2
2020-10-28 12:02:15 +01:00
celeryconf="$final_path/celery-weblate"
2021-06-28 15:32:27 +02:00
ynh_add_config --template="../conf/celery-weblate" --destination="$celeryconf"
2019-03-10 21:57:52 +01:00
2020-10-28 12:02:15 +01:00
ynh_add_systemd_config --service="$app-celery" --template="celery-weblate.service"
2019-03-10 21:57:52 +01:00
2017-09-26 17:01:57 +02:00
#=================================================
2020-10-28 19:20:46 +01:00
# UPGRADE WEBLATE
#=================================================
upgrade() {
new_version=$1
settings_template=$2
#=================================================
# PIP INSTALLATION
#=================================================
2020-11-03 17:19:19 +01:00
ynh_script_progression --message="Install weblate using PIP..." --weight=15
2020-10-28 19:20:46 +01:00
ynh_systemd_action --service_name="$app-celery" --action="stop"
2022-03-05 14:07:35 +01:00
ynh_secure_remove --file="${final_path}/venv"
2020-10-28 19:20:46 +01:00
virtualenv --python=python3 "${final_path}/venv"
2022-03-05 14:07:35 +01:00
chown -R $app: "$final_path"
2020-11-03 10:19:34 +01:00
2020-10-28 19:20:46 +01:00
#run source in a 'sub shell'
(
set +o nounset
source "${final_path}/venv/bin/activate"
set -o nounset
2021-05-04 16:06:04 +02:00
cd "${final_path}"
2022-03-11 17:37:20 +01:00
sudo --user=$app $final_path/venv/bin/pip install --upgrade pip setuptools wheel pkgconfig
# Read the "Note" section in https://docs.weblate.org/en/weblate-4.11/admin/install/venv-debian.html#python-modules
sudo --user=$app $final_path/venv/bin/pip install --force-reinstall --no-binary :all: cffi
2020-10-28 19:20:46 +01:00
# Still needed with latest version of weblate?
2021-05-04 16:06:04 +02:00
sudo --user=$app $final_path/venv/bin/pip install --upgrade Weblate=="$new_version"
sudo --user=$app $final_path/venv/bin/pip install psycopg2-binary ruamel.yaml aeidon phply
2020-10-28 19:20:46 +01:00
#pip install pytz python-bidi PyYaML Babel pyuca pylibravatar py3dns psycopg2-binary phply django-redis hiredis aeidon ruamel.yaml
# specific to YunoHost package:
2021-05-04 16:06:04 +02:00
sudo --user=$app $final_path/venv/bin/pip install django_sendmail_backend
2020-10-28 19:20:46 +01:00
)
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Create weblate configuration file..." --weight=2
2020-10-28 19:20:46 +01:00
# save old settings file
settings="$final_path/venv/lib/$weblate_pypath/site-packages/weblate/settings.py"
2021-06-28 15:32:27 +02:00
path_url="${path_url%/}"
2020-10-28 19:20:46 +01:00
2021-06-28 15:32:27 +02:00
ynh_add_config --template="../conf/settings.py" --destination="$settings"
2020-10-28 19:20:46 +01:00
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
# Recalculate and store the config file checksum into the app settings
ynh_store_file_checksum --file="$settings"
touch "$final_path/local_settings.py"
ln -sf "$final_path/local_settings.py" "$final_path/venv/lib/$weblate_pypath/site-packages/weblate/local_settings.py"
#=================================================
# MIGRATE WEBLATE
#=================================================
2020-11-03 17:19:19 +01:00
ynh_script_progression --message="Run migration scripts..." --weight=10
2020-10-28 19:20:46 +01:00
ynh_systemd_action --service_name="$app-celery" --action="start"
(
set +o nounset
source "${final_path}/venv/bin/activate"
set -o nounset
export DJANGO_SETTINGS_MODULE="weblate.settings"
cd "${final_path}"
2021-05-04 16:06:04 +02:00
sudo --user=$app $final_path/venv/bin/weblate migrate --noinput
sudo --user=$app $final_path/venv/bin/weblate collectstatic --noinput
sudo --user=$app $final_path/venv/bin/weblate setuplang
sudo --user=$app $final_path/venv/bin/weblate setupgroups
sudo --user=$app $final_path/venv/bin/weblate compilemessages
2020-11-03 16:26:23 +01:00
# Check the configuration
# This may fail in some cases with errors, etc., but the app works and the user can fix issues later.
2020-11-03 16:51:25 +01:00
if [ "$new_version" == "$weblate_version" ]; then
2021-05-04 16:06:04 +02:00
sudo --user=$app $final_path/venv/bin/weblate check --deploy || true
2020-11-03 10:19:34 +01:00
fi
2020-10-28 19:20:46 +01:00
)
}
file_version="${final_path}/venv/lib/$weblate_pypath/site-packages/weblate/__init__.py"
2020-11-03 10:19:34 +01:00
if [ -e $file_version ]
2020-10-28 19:20:46 +01:00
then
current_version=$(cat $file_version | grep "^VERSION = " | grep -o "[0-9].[0-9]" | head -n1 | cut -d"." -f1)
if [ -z "$current_version" ]
then
file_version="${final_path}/venv/lib/$weblate_pypath/site-packages/weblate/utils/version.py"
current_version=$(cat $file_version | grep "^VERSION = " | grep -o "[0-9].[0-9]" | head -n1 | cut -d"." -f1)
fi
2020-10-28 19:20:46 +01:00
else
current_version=3
fi
2020-10-28 20:22:25 +01:00
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS pg_trgm;" --database=$db_name
2020-11-03 10:19:34 +01:00
if [ "$current_version" -lt "4" ]
2020-10-28 19:20:46 +01:00
then
upgrade "4.1.1" "../conf/settings.4.1.1.py"
fi
upgrade $weblate_version "../conf/settings.py"
2018-06-13 23:49:24 +02:00
#=================================================
2020-10-28 12:02:15 +01:00
# SETUP LOGROTATE
2018-06-13 23:49:24 +02:00
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2019-05-30 20:51:22 +02:00
2020-10-28 12:02:15 +01:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2018-06-13 23:49:24 +02:00
2019-08-23 08:32:02 +02:00
#=================================================
2020-10-28 12:02:15 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2019-08-23 08:32:02 +02:00
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=2
2019-08-23 08:32:02 +02:00
2020-10-28 12:02:15 +01:00
yunohost service add "$app" --log "/var/log/$app/weblate.log"
yunohost service add "$app-celery" --log "/var/log/$app/weblate-celery-w1.log"
2019-08-23 08:32:02 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set right permissions for curl installation
mkdir -p "$final_path/avatar-cache"
2021-04-12 15:21:09 +02:00
chown -R "$app": "$final_path"
2021-05-04 21:12:52 +02:00
chown "$app:www-data" "$final_path"
chown -R "$app:www-data" "$final_path/data"
2021-04-12 15:21:09 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
#=================================================
2020-10-28 12:02:15 +01:00
# START SYSTEMD SERVICES
#=================================================
2020-11-03 17:19:19 +01:00
ynh_script_progression --message="Starting systemd services..." --weight=5
2020-10-28 12:02:15 +01:00
ynh_systemd_action --service_name="$app" --action="start"
ynh_systemd_action --service_name="$app-celery" --action="start"
#=================================================
# RELOAD NGINX
#=================================================
2021-06-28 18:24:51 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-10-28 12:02:15 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2019-05-30 20:51:22 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-06-28 15:32:27 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last