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

283 lines
8.3 KiB
Text
Raw Normal View History

#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2017-12-28 17:16:07 +01:00
source _future.sh
ynh_abort_if_errors
#=================================================
# 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)
key=$(ynh_string_random)
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==||")
previous_version_file="../conf/settings_history/settings.$previous_version.py"
test -e "$previous_version_file" || ynh_die "Previous version unknown: $previous_version"
#=================================================
# 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
# (<2.18) handle python3 migration (because of django 2.0)
2017-12-28 17:16:07 +01: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"
migrate_py2to3=true
else
settings="$final_path/venv/lib/python3.4/site-packages/weblate/settings.py"
migrate_py2to3=false
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
# (<2.18) migrade old uwsgi files if existing
2017-11-23 15:17:04 +01:00
if [ -e "/etc/systemd/system/$app.service" ]
then
systemctl stop "$app.service"
systemctl disable "$app.service"
yunohost service remove "$app.service"
ynh_secure_remove "$final_path/uwsgi.ini"
ynh_secure_remove "/etc/systemd/system/$app.service"
fi
# (<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
if [[ -d "$final_path/bin/" ]]
then
ynh_secure_remove "$final_path/bin/"
fi
#=================================================
# CHECK THE PATH
#=================================================
# Normalize the URL path syntax
2017-10-04 15:22:54 +02:00
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 python-virtualenv \
postgresql libpq-dev uwsgi uwsgi-plugin-python3 memcached
2017-09-26 17:01:57 +02:00
#=================================================
2017-11-20 15:58:51 +01:00
# SPECIFIC SETUP uwsgi
#=================================================
2017-11-21 13:09:12 +01:00
ynh_add_uwsgi_service
2017-09-26 17:01:57 +02:00
#=================================================
# PIP INSTALLATION
#=================================================
2017-12-28 17:16:07 +01:00
# save old settings file
cp "$settings" "$final_path/settings.$previous_version.old.py"
# (<2.18) handle python3 migration
2017-12-28 17:16:07 +01:00
if [[ "$migrate_py2to3" = true ]]
then
ynh_secure_remove "$final_path/venv"
virtualenv --python=python3 "${final_path}/venv"
set +o nounset
source "${final_path}/venv/bin/activate"
set -o nounset
pip install --upgrade pip
pip install Weblate=="$current_version"
settings="$final_path/venv/lib/python3.4/site-packages/weblate/settings.py"
cp "$final_path/settings.$previous_version.old.py" "$settings"
ynh_store_file_checksum "$settings"
fi
2017-10-18 23:10:32 +02:00
old_settings="./settings.$previous_version.old.py"
settings_diff="$final_path/settings.${previous_version}_${current_version}.diff"
2017-10-18 23:10:32 +02:00
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
pip install Weblate=="$current_version"
2017-12-28 08:04:17 +01:00
pip install python-bidi PyYaML Babel pyuca pylibravatar py3dns psycopg2 python-memcached
2017-10-04 10:46:26 +02:00
# specific to YunoHost package:
pip install django_sendmail_backend
2017-09-26 17:01:57 +02:00
)
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_file" "$old_settings"
weblate_fill_settings "$old_settings"
# store diff between defaults and local settings
diff --unified "$old_settings" "$settings" > "$settings_diff"
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"
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
2017-10-18 23:10:32 +02:00
A new settings.py has been created in:
$settings
2017-10-18 23:10:32 +02:00
You may have changed your defaults settings.
To help you to apply it again, here is a diff file with every changes you did.
2017-10-18 23:10:32 +02:00
Diff has been created in:
$settings_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."
# generate new defaults settings
cp "../conf/settings_history/settings.$current_version.py" "$settings"
weblate_fill_settings "$settings"
fi
2017-10-18 23:10:32 +02:00
#=================================================
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}"
weblate migrate --noinput
2017-10-18 23:10:32 +02:00
weblate collectstatic --noinput
weblate setuplang
weblate setupgroups
)
# Recalculate and store the config file checksum into the app settings
ynh_store_file_checksum "$final_path/venv/lib/python3.4/site-packages/weblate/settings.py"
#=================================================
# GENERIC FINALIZATION
#=================================================
#=================================================
# 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
#=================================================
# RELOAD NGINX
#=================================================
systemctl reload nginx