2015-05-02 16:36:51 +02:00
|
|
|
#!/bin/bash
|
2017-03-18 19:12:51 +01:00
|
|
|
set -eu
|
2016-06-18 00:06:53 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2016-06-18 10:36:18 +02:00
|
|
|
|
2017-06-17 00:22:16 +02:00
|
|
|
# The main logic is to
|
|
|
|
# - install in a src-new folder
|
|
|
|
# - upgrade dependencies
|
|
|
|
# - if everything OK, rename src-new to src
|
|
|
|
|
2016-06-18 10:36:18 +02:00
|
|
|
# Installation paths
|
|
|
|
INSTALL_DIR=/opt/yunohost/ihatemoney
|
|
|
|
PIP=${INSTALL_DIR}/venv/bin/pip
|
2017-06-17 00:22:16 +02:00
|
|
|
NEW_REQUIREMENTS=${INSTALL_DIR}/src-new/requirements.txt
|
2016-06-18 10:36:18 +02:00
|
|
|
|
2016-06-18 00:06:53 +02:00
|
|
|
# Source YunoHost helpers
|
|
|
|
. /usr/share/yunohost/helpers
|
|
|
|
|
2017-06-18 17:14:35 +02:00
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
2017-06-17 00:22:16 +02:00
|
|
|
# Source local utils
|
|
|
|
source _common.sh
|
|
|
|
|
2016-06-18 00:06:53 +02:00
|
|
|
# Optionaly upgrade arg to typed boolean form
|
|
|
|
|
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2016-06-18 10:36:18 +02:00
|
|
|
|
|
|
|
if [ $is_public = "No" ];
|
2016-06-18 00:06:53 +02:00
|
|
|
then
|
2016-06-18 10:36:18 +02:00
|
|
|
is_public=0
|
|
|
|
else
|
|
|
|
is_public=1
|
2016-06-18 00:06:53 +02:00
|
|
|
fi
|
2015-05-02 16:36:51 +02:00
|
|
|
|
2016-06-18 10:36:18 +02:00
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
|
|
|
|
2018-02-17 00:21:07 +01:00
|
|
|
function exit_properly () {
|
|
|
|
set +e
|
|
|
|
# Revert to the old venv
|
|
|
|
if [ -e /opt/yunohost/ihatemoney/venv-old ]
|
|
|
|
then
|
|
|
|
sudo mv /opt/yunohost/ihatemoney/venv{-old,}
|
|
|
|
fi
|
|
|
|
# Remove downloaded code
|
|
|
|
sudo rm -rf ${INSTALL_DIR}/src-new/
|
|
|
|
ynh_die "Upgrade script failed, aborted and rolled back the installation"
|
|
|
|
}
|
|
|
|
trap exit_properly ERR
|
|
|
|
|
|
|
|
|
2015-05-02 16:36:51 +02:00
|
|
|
# Upgrade code
|
2017-06-17 00:22:16 +02:00
|
|
|
fetch_and_extract ${INSTALL_DIR}/src-new/ ihatemoney
|
2015-05-02 16:36:51 +02:00
|
|
|
|
2017-06-17 00:22:16 +02:00
|
|
|
fix_permissions ${INSTALL_DIR}/src-new/
|
2016-06-18 10:36:18 +02:00
|
|
|
|
|
|
|
# Upgrade dependencies
|
2017-06-17 00:22:16 +02:00
|
|
|
sudo ${PIP} install -r ${NEW_REQUIREMENTS}
|
2018-04-02 00:54:39 +02:00
|
|
|
sudo ${PIP} install 'gunicorn>=19.3.0' 'PyMySQL'
|
2017-06-17 00:22:16 +02:00
|
|
|
|
|
|
|
# Everything went ok ? Let's keep this code.
|
|
|
|
sudo rm -rf ${INSTALL_DIR}/src
|
2018-02-17 00:20:10 +01:00
|
|
|
sudo rm -rf ${INSTALL_DIR}/venv-old
|
2017-06-17 00:22:16 +02:00
|
|
|
sudo mv ${INSTALL_DIR}/src-new ${INSTALL_DIR}/src
|
|
|
|
|
2017-06-21 13:30:48 +02:00
|
|
|
|
|
|
|
## Migration from old versions of the package
|
|
|
|
|
|
|
|
|
|
|
|
if [ -e /etc/ihatemoney/settings.py ]; then
|
|
|
|
# Strip out the no longer used part of the settings
|
|
|
|
sudo python2 -c"d = open('/etc/ihatemoney/settings.py').read().replace('try:\n from settings import *\nexcept ImportError:\n pass\n', ''); open('/etc/ihatemoney/settings.py', 'w').write(d)"
|
|
|
|
# Rename
|
|
|
|
sudo mv /etc/ihatemoney/settings.py ${ihatemoney_conf_path}
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove no longer used symlink
|
|
|
|
# (ihatemoney now read its conf by default from /etc/ihatemoney/ihatemoney.cfg)
|
|
|
|
sudo rm -f ${INSTALL_DIR}/src/budget/settings.py
|
2016-06-18 10:36:18 +02:00
|
|
|
|
2018-02-17 00:20:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
# MIGRATION: Optionaly switch to a python3 venv
|
|
|
|
|
|
|
|
if [ ${INSTALL_DIR}/venv/bin/python -ef ${INSTALL_DIR}/venv/bin/python2 ]
|
|
|
|
then
|
|
|
|
install_apt_dependencies
|
|
|
|
# Trash py2 venv
|
|
|
|
sudo mv ${INSTALL_DIR}/venv ${INSTALL_DIR}/venv-old
|
|
|
|
init_virtualenv
|
|
|
|
|
|
|
|
# Clears all cookie-sessions, because py2 & py3 sessions are incompatible
|
|
|
|
# Relates https://github.com/lepture/flask-wtf/issues/279 (fix unreleased)
|
|
|
|
new_secret_key=`openssl rand -base64 32`
|
2018-04-03 00:32:08 +02:00
|
|
|
sudo sed -i "s@SECRET_KEY = \".*\"@SECRET_KEY = \"${new_secret_key}\"@g" ${ihatemoney_conf_path}
|
2018-02-17 00:20:10 +01:00
|
|
|
fi
|
|
|
|
|
2015-05-02 16:36:51 +02:00
|
|
|
|
2018-04-02 00:54:39 +02:00
|
|
|
|
|
|
|
# MIGRATION: Switch Python-MySQL -> PyMySQL
|
|
|
|
|
|
|
|
# Python-MySQL is no longer maintained and does not support Py3
|
|
|
|
sudo sed -i "s@'mysql://@'mysql+pymysql://@g" ${ihatemoney_conf_path}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-05-02 16:36:51 +02:00
|
|
|
# Restart backend
|
|
|
|
sudo supervisorctl restart budget
|