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

239 lines
8.3 KiB
Text
Raw Normal View History

#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression "Loading installation settings..."
2017-10-18 23:10:32 +02:00
2022-07-13 00:48:56 +02:00
admin_mail=$(ynh_user_get_info --username="$admin" --key=mail)
key=$(ynh_string_random --length=50)
2024-01-23 19:32:15 +01:00
# Remove trailing "/" from the path
2024-01-23 19:24:08 +01:00
path_no_slash=${path%/}
2024-01-23 17:45:35 +01:00
#=================================================
2022-03-04 08:23:50 +01:00
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression "Stopping systemd services..."
ynh_systemctl --service=$app --action="stop" --log_path="/var/log/$app/weblate.log" --wait_until="goodbye to uWSGI"
ynh_systemctl --service="$app-celery" --action="stop" --log_path="systemd"
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression "Ensuring downward compatibility..."
2022-08-11 20:00:25 +02:00
# If used_forge, forge_username, forge_token don't exist, create them
if [ -z "$used_forge" ]; then
used_forge="GitHub"
forge_username=$(ynh_app_setting_get --key=github_account)
forge_token=$(ynh_app_setting_get --key=github_token)
ynh_app_setting_set --key=used_forge --value=$used_forge
ynh_app_setting_set --key=forge_username --value=$forge_username
ynh_app_setting_set --key=forge_token --value=$forge_token
fi
#=================================================
2022-07-13 00:48:56 +02:00
# NGINX CONFIGURATION
#=================================================
ynh_script_progression "Upgrading NGINX web server configuration..."
2022-07-13 00:48:56 +02:00
# Create a dedicated NGINX config
ynh_config_add_nginx
2022-07-13 02:11:01 +02:00
#=================================================
# INSTALL XXHASH
#=================================================
ynh_script_progression "Installing xxHash..."
2022-07-13 02:11:01 +02:00
tempdir="$(mktemp -d)"
ynh_setup_source --dest_dir=$tempdir --source_id="libxxhash"
pushd $tempdir
make
make install
popd
ynh_safe_rm "$tempdir"
2022-07-13 02:11:01 +02:00
2020-11-03 10:19:34 +01:00
#=================================================
# CONFIGURE HUB
#=================================================
2022-08-11 20:43:28 +02:00
if [ $used_forge = "GitHub" ] ; then
ynh_script_progression "Configure hub..."
2024-01-17 14:07:41 +01:00
#mkdir "$install_dir/.config/"
ynh_config_add --template="hub_config" --destination="$install_dir/.config/hub"
2020-11-03 10:19:34 +01:00
2024-01-17 14:07:41 +01:00
cat <<EOF > "$install_dir/.bashrc"
2022-08-11 20:50:47 +02:00
eval "$(hub alias -s /bin/bash)"
2020-11-03 10:19:34 +01:00
EOF
2022-08-11 20:50:47 +02:00
fi
2020-11-03 10:19:34 +01:00
2017-09-26 17:01:57 +02:00
#=================================================
2022-03-04 08:23:50 +01:00
# UPDATE A CONFIG FILE
2017-11-20 15:58:51 +01:00
#=================================================
ynh_script_progression "Updating configuration..."
2017-11-20 15:58:51 +01:00
ynh_config_add --template="uwsgi.ini" --destination="/etc/uwsgi/apps-available/$app.ini"
2020-10-28 12:02:15 +01:00
ynh_config_add --template="celery-weblate" --destination="$install_dir/celery-weblate"
2020-10-28 12:02:15 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression "Configuring $app's systemd service..."
2019-03-10 21:57:52 +01:00
ynh_config_add_systemd --template="weblate.service"
ynh_config_add_systemd --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
2024-01-19 08:23:09 +01:00
#=================================================
# PIP INSTALLATION
#=================================================
ynh_script_progression "Install weblate using PIP..."
2024-01-19 08:23:09 +01:00
ynh_safe_rm "${install_dir}/venv"
2024-01-19 08:23:09 +01:00
virtualenv --python=python3 "${install_dir}/venv"
2024-09-18 20:34:28 +02:00
chown -R $app: "$install_dir"
2024-01-19 08:23:09 +01:00
#run source in a 'sub shell'
(
set +o nounset
source "${install_dir}/venv/bin/activate"
set -o nounset
cd "${install_dir}"
sudo --user=$app $install_dir/venv/bin/pip install --upgrade pip setuptools wheel pkgconfig xxhash
# Read the "Note" section in https://docs.weblate.org/en/weblate-4.11/admin/install/venv-debian.html#python-modules
sudo --user=$app $install_dir/venv/bin/pip install --force-reinstall --no-binary :all: cffi
# Still needed with latest version of weblate?
sudo --user=$app $install_dir/venv/bin/pip install --upgrade Weblate=="$new_version"
2024-01-24 14:06:32 +01:00
sudo --user=$app $install_dir/venv/bin/pip install psycopg2-binary ruamel.yaml aeidon phply boto3 google openai
2024-01-19 08:23:09 +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:
sudo --user=$app $install_dir/venv/bin/pip install django_sendmail_backend
)
2020-10-28 19:20:46 +01:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
ynh_script_progression "Create weblate configuration file..."
2024-09-18 20:34:28 +02:00
2020-10-28 19:20:46 +01:00
# save old settings file
2024-01-17 14:07:41 +01:00
settings="$install_dir/venv/lib/$weblate_pypath/site-packages/weblate/settings.py"
path="${path%/}"
2020-10-28 19:20:46 +01:00
set_forge_variables
ynh_config_add --template="settings.py" --destination="$settings"
2020-10-28 19:20:46 +01:00
ynh_app_setting_set --key=redis_db --value="$redis_db"
2020-10-28 19:20:46 +01:00
# Recalculate and store the config file checksum into the app settings
ynh_store_file_checksum "$settings"
2020-10-28 19:20:46 +01:00
2024-01-17 14:07:41 +01:00
touch "$install_dir/local_settings.py"
ln -sf "$install_dir/local_settings.py" "$install_dir/venv/lib/$weblate_pypath/site-packages/weblate/local_settings.py"
2020-10-28 19:20:46 +01:00
#=================================================
# MIGRATE WEBLATE
#=================================================
ynh_script_progression "Run migration scripts..."
2020-10-28 19:20:46 +01:00
ynh_systemctl --service="$app-celery" --action="start"
2020-10-28 19:20:46 +01:00
2024-01-19 08:23:09 +01:00
(
set +o nounset
source "${install_dir}/venv/bin/activate"
set -o nounset
export DJANGO_SETTINGS_MODULE="weblate.settings"
cd "${install_dir}"
sudo --user=$app $install_dir/venv/bin/weblate migrate --noinput
sudo --user=$app $install_dir/venv/bin/weblate collectstatic --noinput
sudo --user=$app $install_dir/venv/bin/weblate setuplang
sudo --user=$app $install_dir/venv/bin/weblate setupgroups
sudo --user=$app $install_dir/venv/bin/weblate compilemessages
2024-01-25 17:05:24 +01:00
sudo --user=$app $install_dir/venv/bin/weblate compress
2024-01-19 08:23:09 +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.
if [ "$new_version" == "$(ynh_app_upstream_version)" ]; then
sudo --user=$app $install_dir/venv/bin/weblate check --deploy || true
fi
)
2022-03-04 08:23:50 +01:00
ynh_systemctl --service="$app-celery" --action="stop"
2020-10-28 19:20:46 +01:00
}
2024-01-17 14:07:41 +01:00
file_version="${install_dir}/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
2024-01-17 14:07:41 +01:00
file_version="${install_dir}/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
ynh_psql_db_shell <<< "CREATE EXTENSION IF NOT EXISTS pg_trgm;"
2020-10-28 20:22:25 +01:00
if [ "$current_version" -lt "5" ]
then
upgrade "5.0.2" "../conf/settings.py"
fi
2022-07-13 00:48:56 +02:00
upgrade $(ynh_app_upstream_version) "../conf/settings.py"
2022-03-04 08:23:50 +01:00
# Set right permissions for curl installation
2024-01-17 14:07:41 +01:00
mkdir -p "$install_dir/avatar-cache"
2024-09-18 20:34:28 +02:00
chown -R $app: "$install_dir"
chown "$app:www-data" "$install_dir"
2024-01-17 14:07:41 +01:00
chown -R "$app:www-data" "$install_dir/data"
2022-03-04 08:23:50 +01:00
2024-09-18 20:34:28 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
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
#=================================================
ynh_script_progression "Upgrading logrotate configuration..."
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_config_add_logrotate
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
#=================================================
ynh_script_progression "Integrating service in YunoHost..."
2019-08-23 08:32:02 +02:00
2022-03-04 08:23:50 +01:00
yunohost service add $app --log="/var/log/$app/weblate.log"
2024-01-19 08:23:09 +01:00
yunohost service add "$app-celery" --log="/var/log/$app/weblate-celery-w1.log"
#=================================================
2020-10-28 12:02:15 +01:00
# START SYSTEMD SERVICES
#=================================================
ynh_script_progression "Starting systemd services..."
ynh_systemctl --service=$app --action="start" --log_path="/var/log/$app/weblate.log" --wait_until="spawned uWSGI"
ynh_systemctl --service="$app-celery" --action="start" --log_path="/var/log/$app/weblate-celery-celery.log" --wait_until="mingle: all alone"
2019-05-30 20:51:22 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Upgrade of $app completed"