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

426 lines
13 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
2017-10-04 15:22:54 +02:00
path_url=$(ynh_app_setting_get "$app" path)
is_public=$(ynh_app_setting_get "$app" is_public)
final_path=$(ynh_app_setting_get "$app" final_path)
db_name=$(ynh_app_setting_get "$app" db_name)
domain=$(ynh_app_setting_get "$app" domain)
db_pwd=$(ynh_app_setting_get "$app" psqlpwd)
admin=$(ynh_app_setting_get "$app" admin)
admin_mail=$(ynh_user_get_info "$admin" mail)
memc_port=$(ynh_app_setting_get "$app" memc_port)
github_account=$(ynh_app_setting_get "$app" github_account)
migration311=$(ynh_app_setting_get "$app" migration311)
key=$(ynh_string_random 24)$(ynh_string_random 24)$(ynh_string_random 2)
2018-10-25 08:01:56 +02:00
redis_db=$(ynh_app_setting_get "$app" redis_db)
2017-10-18 23:10:32 +02:00
#=================================================
# Get previous version number
#=================================================
(
set +o nounset
2017-10-18 23:10:32 +02:00
source "${final_path}/venv/bin/activate"
set -o nounset
pip install --upgrade pip
pip freeze --local > freeze.pip
2017-10-18 23:10:32 +02:00
)
previous_version=$(cat freeze.pip | grep "Weblate==" | sed "s|Weblate==||")
ynh_secure_remove freeze.pip
previous_version_template="../conf/settings_history/settings.$previous_version.py"
test -e "$previous_version_template" || ynh_die "Previous version unknown: $previous_version"
2017-10-18 23:10:32 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
if [ "$is_public" = "Yes" ]; then
2017-10-04 15:22:54 +02:00
ynh_app_setting_set "$app" is_public 1 # Fix is_public as a boolean value
is_public=1
elif [ "$is_public" = "No" ]; then
2017-10-04 15:22:54 +02:00
ynh_app_setting_set "$app" is_public 0
is_public=0
fi
# (<2.17)
2017-10-04 15:22:54 +02:00
if [ -z "$db_name" ]; then # If db_name doesn't exist, create it
db_name=$(ynh_sanitize_dbid "$app")
ynh_app_setting_set "$app" db_name "$db_name"
fi
2018-10-26 22:48:09 +02:00
# (<3.2)
migrate_to_python3=0
2018-10-25 08:01:56 +02:00
if [ -e "$final_path/venv/lib/python2.7/site-packages/weblate/settings.py" ]; then
settings="$final_path/venv/lib/python2.7/site-packages/weblate/settings.py"
2018-10-26 22:48:09 +02:00
migrate_to_python3=1
cp "$settings" "$final_path/settings.py"
else
2018-10-25 08:01:56 +02:00
settings="$final_path/venv/lib/python3.5/site-packages/weblate/settings.py"
fi
# (<2.17) save memc_port if it doesn't exist
2017-12-28 17:16:07 +01:00
if [[ -z "$memc_port" ]]
then
memc_port=$(cat "$settings" \
| grep "'LOCATION': '127.0.0.1:" \
| sed "s|.*:\\(.*\\)'.*|\\1|")
ynh_app_setting_set "$app" memc_port "$memc_port"
fi
# Weblate requires an update to 3.0 before 3.1
# the upgrade hook will launch this script again to make sure it works
2018-10-16 22:37:09 +02:00
if [[ -z "$migration311" && $previous_version = "2.20" ]]
then
# $migration311 is not set, version is <3.0
migration311="two_steps_upgrade_3.0to3.1-needed"
mig_type=$(cat "/etc/yunohost/apps/$YNH_APP_ID/status.json" | sed -e 's/.*"type":.*"\(.\+\)".*/\1/gi')
if [ "$mig_type" = "file" ]
then
mig_parm=$(cat "/etc/yunohost/apps/$YNH_APP_ID/status.json" | sed -e 's/.*"path": "\(.\+\)",.*/\1/gi')
else
mig_parm=$(cat "/etc/yunohost/apps/$YNH_APP_ID/status.json" | sed -e 's/.*"url": "\(.\+\)", "type".*/\1/gi')
fi
ynh_app_setting_set "$app" migration311 "$migration311"
ynh_app_setting_set "$app" migration311_type "$mig_type"
ynh_app_setting_set "$app" migration311_parm "$mig_parm"
current_version="3.0.1"
fi
2018-10-25 08:01:56 +02:00
# (<3.2)
if [ -z "$redis_db" ]; then
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set "$app" redis_db "$redis_db"
fi
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
# 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
#=================================================
2019-03-10 21:57:52 +01:00
# ENSURE DOWNWARD COMPATIBILITY - impacting system
#=================================================
2019-03-10 21:57:52 +01:00
# (<2.20) remove complex uwsgi systemd template
if [ -e "/etc/systemd/system/uwsgi-app@.service" ]
then
systemctl stop "uwsgi-app@$app"
yunohost service remove "uwsgi-app@$app.service"
ynh_secure_remove "/etc/systemd/system/uwsgi-app@.socket"
ynh_secure_remove "/etc/systemd/system/uwsgi-app@.service"
# remove old log file (used by the new service file)
ynh_secure_remove "/var/log/uwsgi/app/weblate"
systemctl daemon-reload
fi
2019-03-10 21:57:52 +01:00
# (<2.18) move hub to the correct folder
if [ -e "$final_path/bin/hub" ]
then
mv "$final_path/bin/hub" /usr/bin/
chown root:root /usr/bin/hub
fi
2019-03-10 21:57:52 +01:00
if [[ -d "$final_path/bin/" ]]
then
ynh_secure_remove "$final_path/bin/"
fi
# Make sure the uwsgi service is stoped
if [[ -e "/var/run/$app/socket" ]]
then
systemctl stop "$app"
fi
2019-03-10 21:57:52 +01:00
if [[ -e "/var/run/$app-celery/$app-w1.pid" ]]
then
systemctl stop "$app-celery"
fi
2019-03-10 21:57:52 +01:00
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
path_url=$(ynh_normalize_url_path "$path_url")
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# Create a dedicated nginx config
ynh_add_nginx_config
2017-10-17 15:46:35 +02:00
if [ "$path_url" == "/" ]
then
# $finalnginxconf comes from ynh_add_nginx_config
ynh_replace_string "location //" "location /" "$finalnginxconf"
# ynh panel is only comptable with non-root installation
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
ynh_store_file_checksum "$finalnginxconf"
fi
#=================================================
# CREATE DEDICATED USER
#=================================================
# Create a system user
2017-09-28 16:42:10 +02:00
ynh_system_user_create "$app" "/home/$app"
2017-10-04 10:46:26 +02:00
chsh --shell /bin/bash "$app"
#=================================================
# SPECIFIC UPGRADE
2017-12-28 17:16:07 +01:00
#=================================================
# Update dependencies
#=================================================
ynh_install_app_dependencies libxml2-dev libxslt-dev libfreetype6-dev \
libjpeg-dev libz-dev libyaml-dev python3-dev python3-pip python3-virtualenv \
postgresql libpq-dev uwsgi uwsgi-plugin-python3 memcached \
mailutils python-celery-common virtualenv redis-server
2017-12-28 17:16:07 +01:00
2017-09-26 17:01:57 +02:00
#=================================================
2017-11-20 15:58:51 +01:00
# SPECIFIC SETUP uwsgi
#=================================================
2019-03-10 21:57:52 +01:00
finaluwsgiini="/etc/uwsgi/apps-available/$app.ini"
cp ../conf/uwsgi.ini "$finaluwsgiini"
ynh_replace_string "__FINALPATH__" "$final_path" "$finaluwsgiini"
ynh_replace_string "__PATH__" "$path_url" "$finaluwsgiini"
ynh_replace_string "__APP__" "$app" "$finaluwsgiini"
2017-09-26 17:01:57 +02:00
# root install doesn't require uwsgi to handle script names
if [ "$path_url" == "/" ]
then
ynh_replace_string "manage-script-name = true" "manage-script-name = false" "$finaluwsgiini"
fi
2019-03-10 21:57:52 +01:00
ynh_add_systemd_config "$app" "weblate.service"
ynh_store_file_checksum "$finaluwsgiini"
2017-09-26 17:01:57 +02:00
#=================================================
# PIP INSTALLATION
#=================================================
2018-10-26 22:48:09 +02:00
if [ "$migrate_to_python3" -eq 1 ]
then
ynh_secure_remove "${final_path}/venv"
virtualenv --python=python3 "${final_path}/venv"
fi
2017-09-26 17:01:57 +02:00
(
set +o nounset
2017-09-26 17:01:57 +02:00
source "${final_path}/venv/bin/activate"
set -o nounset
2017-12-28 17:16:07 +01:00
pip install --upgrade pip
2018-04-07 10:13:07 +02:00
# prevent error: "command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers"
pip install --upgrade setuptools
pip install Weblate=="$current_version"
pip install pytz python-bidi PyYaML Babel pyuca pylibravatar py3dns psycopg2-binary phply django-redis hiredis
2017-10-04 10:46:26 +02:00
# specific to YunoHost package:
pip install django_sendmail_backend
2018-10-25 08:01:56 +02:00
)
2017-09-26 17:01:57 +02:00
2018-10-26 22:48:09 +02:00
if [ "$migrate_to_python3" -eq 1 ]
then
mv "$final_path/settings.py" "$final_path/venv/lib/python3.5/site-packages/weblate/settings.py"
settings="$final_path/venv/lib/python3.5/site-packages/weblate/settings.py"
fi
#=================================================
# CONFIG FILE UPGRADE
#=================================================
# save old settings file
old_settings="$final_path/settings.$previous_version.old.py"
cp "$settings" "$old_settings"
check=$(ynh_check_if_checksum_is_different "$settings")
2017-10-18 23:10:32 +02:00
if [[ "$check" -eq 1 ]]
then
echo "Settings.py was modified localy, running diff before using the new default file for $current_version."
# generate previous defaults settings
cp "$previous_version_template" "$old_settings"
weblate_fill_settings "$old_settings"
# store diff between defaults and local settings
set +eu
diff --unified "$old_settings" "$settings" > "$final_path/settings.${previous_version}_${current_version}.diff"
set -eu
2017-10-18 23:10:32 +02:00
# send diff to the server administrator
mail_message="
Weblate was updated from version $previous_version to $current_version
Please read:
https://docs.weblate.org/en/latest/admin/upgrade.html
2017-10-18 23:10:32 +02:00
A new settings.py has been created:
$settings
2017-10-18 23:10:32 +02:00
You may have changed your defaults settings.
To help you, here is a diff file with every changes you did.
2017-10-18 23:10:32 +02:00
Diff has been created in:
$final_path/settings.${previous_version}_${current_version}.diff
Please note secret key is updated, this is normal.
2017-10-18 23:10:32 +02:00
For any issue, please file a bug in: https://github.com/YunoHost-Apps/weblate_ynh
"
2017-10-18 23:10:32 +02:00
2018-04-01 12:50:02 +02:00
ynh_send_readme_to_admin "$mail_message" root "$admin_mail"
else
echo "Settings.py was not modified, using the new default file for $current_version."
fi
2017-10-18 23:10:32 +02:00
# generate new defaults settings
cp "../conf/settings_history/settings.$current_version.py" "$settings"
weblate_fill_settings "$settings"
ynh_secure_remove "$old_settings"
2018-10-26 22:48:09 +02:00
#=================================================
# ACTIVATE CELERY
#=================================================
celeryconf="$final_path/celery-weblate"
cp ../conf/celery-weblate "$celeryconf"
ynh_replace_string "__APP__" "$app" "$celeryconf"
ynh_replace_string "__FINALPATH__" "$final_path" "$celeryconf"
ynh_add_systemd_config "$app-celery" "celery-weblate.service"
#=================================================
2017-10-18 23:10:32 +02:00
# Run migration scripts
#=================================================
(
set +o nounset
source "${final_path}/venv/bin/activate"
set -o nounset
export DJANGO_SETTINGS_MODULE="weblate.settings"
2017-10-04 15:22:54 +02:00
cd "${final_path}"
2018-06-06 00:23:36 +02:00
# https://docs.weblate.org/en/latest/admin/upgrade.html#upgrade-3
# https://github.com/WeblateOrg/docker/blob/386aa8d98bb57dfec3707680827d4e4f4d79e3fd/start#L81-L88
if [[ $current_version = "3.0.1" ]]
then
weblate showmigrations --plan > /tmp/migrations.txt
if grep -Fq '[X] auth.0001_initial' /tmp/migrations.txt && grep -Fq '[ ] weblate_auth.0001_initial' /tmp/migrations.txt ; then
ynh_replace_string "AUTH_USER_MODEL" "#AUTH_USER_MODEL" "$settings"
weblate migrate weblate_auth 0001
ynh_replace_string "#AUTH_USER_MODEL" "AUTH_USER_MODEL" "$settings"
fi
ynh_secure_remove /tmp/migrations.txt
2018-06-06 00:23:36 +02:00
fi
2018-06-06 00:23:36 +02:00
weblate migrate --noinput
2017-10-18 23:10:32 +02:00
weblate collectstatic --noinput
weblate setuplang
weblate setupgroups
2018-04-07 10:13:07 +02:00
if [[ $previous_version = "2.16" ]] || \
[[ $previous_version = "2.17.1" ]] || \
[[ $previous_version = "2.18" ]]
then
weblate loadpo --all --lang dsb
weblate loadpo --all --lang he
weblate loadpo --all --lang hsb
weblate loadpo --all --lang kw
weblate loadpo --all --lang lt
weblate loadpo --all --lang lv
fi
)
# Recalculate and store the config file checksum into the app settings
2018-10-26 22:48:09 +02:00
ynh_store_file_checksum "$final_path/venv/lib/python3.5/site-packages/weblate/settings.py"
2018-06-13 23:49:24 +02:00
#=================================================
# SETUP CRON
#=================================================
cp ../conf/cron "/etc/cron.d/$app"
ynh_replace_string "__APP__" "$app" "/etc/cron.d/$app"
ynh_replace_string "__FINALPATH__" "$final_path/" "/etc/cron.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set right permissions for curl installation
chown -R root:root "$final_path"
chown -R "$app": "$final_path/data"
mkdir -p "$final_path/avatar-cache"
chown -R "$app": "$final_path/avatar-cache"
#=================================================
# SETUP SSOWAT
#=================================================
if [ $is_public -eq 0 ]
then # Remove the public access
2017-10-04 15:22:54 +02:00
ynh_app_setting_delete "$app" skipped_uris
fi
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# unprotected_uris allows SSO credentials to be passed anyway
2017-10-04 15:22:54 +02:00
ynh_app_setting_set "$app" unprotected_uris "/"
2017-10-17 15:46:35 +02:00
# ynh panel is not needed
ynh_replace_string " include conf.d/" " #include conf.d/" "$finalnginxconf"
2017-10-18 23:10:32 +02:00
ynh_store_file_checksum "$finalnginxconf"
fi
#=================================================
# Restart weblate
#=================================================
2019-03-10 21:57:52 +01:00
systemctl start "$app"
systemctl start "$app-celery"
#=================================================
# RELOAD NGINX
#=================================================
systemctl reload nginx