2015-05-01 14:30:09 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-18 19:14:28 +01:00
|
|
|
# Source YunoHost helpers
|
2020-07-01 17:14:15 +02:00
|
|
|
source _common.sh
|
2017-03-18 19:14:28 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2015-05-01 14:30:09 +02:00
|
|
|
# Retrieve arguments
|
2017-03-18 19:14:28 +01:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2015-05-02 17:28:58 +02:00
|
|
|
app=ihatemoney
|
2015-05-01 14:30:09 +02:00
|
|
|
|
2017-03-18 19:14:28 +01:00
|
|
|
# Database settings
|
|
|
|
db_pwd=$(ynh_string_random)
|
|
|
|
db_name=$app
|
|
|
|
db_user=$app
|
|
|
|
|
2015-05-01 14:30:09 +02:00
|
|
|
# Constant arguments
|
2020-07-01 17:14:15 +02:00
|
|
|
secret_key=$(ynh_string_random --length 32)
|
2015-05-01 14:30:09 +02:00
|
|
|
mails_sender="no-reply@${domain}"
|
|
|
|
|
2018-11-25 18:38:33 +01:00
|
|
|
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2018-11-25 17:11:09 +01:00
|
|
|
ynh_webpath_register $app $domain $path
|
2015-05-01 14:30:09 +02:00
|
|
|
|
2015-07-26 18:23:54 +02:00
|
|
|
# Configure database
|
2017-03-18 19:14:28 +01:00
|
|
|
ynh_mysql_create_db "$db_name" "$db_user" "$db_pwd"
|
2015-07-26 18:23:54 +02:00
|
|
|
|
2015-05-02 17:28:58 +02:00
|
|
|
# Save app settings
|
2020-07-01 17:14:15 +02:00
|
|
|
ynh_app_setting_set "$app" mysqlpwd "$db_pwd"
|
|
|
|
ynh_app_setting_set "$app" is_public "$is_public"
|
2015-05-02 12:47:27 +02:00
|
|
|
|
2017-06-19 09:35:17 +02:00
|
|
|
install_apt_dependencies
|
2017-06-17 11:11:23 +02:00
|
|
|
|
2017-06-19 09:35:17 +02:00
|
|
|
create_unix_user
|
2017-06-17 00:22:16 +02:00
|
|
|
|
2015-05-01 14:30:09 +02:00
|
|
|
# Prepare venv
|
2018-02-17 00:20:10 +01:00
|
|
|
init_virtualenv
|
2018-12-20 08:07:30 +01:00
|
|
|
pip_install
|
2015-05-01 14:30:09 +02:00
|
|
|
|
2017-06-19 09:35:17 +02:00
|
|
|
create_system_dirs
|
2015-05-01 14:30:09 +02:00
|
|
|
|
2015-05-02 12:47:52 +02:00
|
|
|
# Configure gunicorn
|
2020-07-01 17:14:15 +02:00
|
|
|
install -o ihatemoney -g ihatemoney -m 644 \
|
2015-05-02 12:47:52 +02:00
|
|
|
../conf/gunicorn.conf.py /etc/ihatemoney/gunicorn.conf.py
|
|
|
|
|
2015-05-01 14:30:09 +02:00
|
|
|
# Configure supervisor
|
2018-06-24 01:24:15 +02:00
|
|
|
configure_supervisor
|
2018-07-08 01:30:18 +02:00
|
|
|
# In case it was already installed before,
|
|
|
|
# so that it picks /etc/supervisor/conf.d/ihatemoney.conf:
|
|
|
|
supervisorctl update
|
2020-07-01 17:14:15 +02:00
|
|
|
yunohost service add supervisor
|
2015-05-01 14:30:09 +02:00
|
|
|
|
|
|
|
# Configure ihatemoney
|
2020-07-01 17:14:15 +02:00
|
|
|
ynh_replace_string "MY_SECRET_KEY" "$secret_key" ../conf/ihatemoney.cfg
|
|
|
|
ynh_replace_string "MY_EMAIL" "$mails_sender" ../conf/ihatemoney.cfg
|
|
|
|
ynh_replace_string "MY_MYSQL_PW" "$db_pwd" ../conf/ihatemoney.cfg
|
|
|
|
ynh_replace_string "MY_PATH" "$path" ../conf/ihatemoney.cfg
|
2017-06-19 01:20:59 +02:00
|
|
|
# Remove the conf directive if served at root
|
2017-06-21 13:30:48 +02:00
|
|
|
sed -i "/APPLICATION_ROOT='\/'/d" ../conf/ihatemoney.cfg
|
2020-07-01 17:14:15 +02:00
|
|
|
install -o ihatemoney -g ihatemoney -m 640 \
|
2017-06-21 13:30:48 +02:00
|
|
|
../conf/ihatemoney.cfg /etc/ihatemoney/ihatemoney.cfg
|
2015-05-02 17:28:58 +02:00
|
|
|
|
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
2016-06-18 00:06:53 +02:00
|
|
|
if [[ "$is_public" -ne 0 ]];
|
2015-05-02 17:28:58 +02:00
|
|
|
then
|
2017-03-18 19:14:28 +01:00
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
2015-05-02 17:28:58 +02:00
|
|
|
fi
|
|
|
|
|
2018-06-24 01:24:15 +02:00
|
|
|
# Configure Nginx
|
|
|
|
configure_nginx "$domain" "$path"
|
2015-05-02 12:47:52 +02:00
|
|
|
|
|
|
|
# Start backend
|
2020-07-01 17:14:15 +02:00
|
|
|
systemctl start supervisor
|
2017-06-19 14:48:19 +02:00
|
|
|
|
2017-06-18 17:13:39 +02:00
|
|
|
# Wait that gunicorn is ready to consider the install finished, that is to
|
|
|
|
# avoid HTTP 502 right after installation
|
|
|
|
for i in `seq 1 120`
|
|
|
|
do
|
|
|
|
test -S /tmp/budget.gunicorn.sock && break
|
|
|
|
sleep 1
|
|
|
|
done
|
2017-06-20 16:25:41 +02:00
|
|
|
|
2018-07-08 01:27:18 +02:00
|
|
|
# If socket not ready after 2 minutes waiting, ihatemoney will not work.
|
2020-07-01 17:14:15 +02:00
|
|
|
test -S /tmp/budget.gunicorn.sock || ynh_die
|
2018-07-08 01:27:18 +02:00
|
|
|
|
2020-07-01 17:14:15 +02:00
|
|
|
systemctl reload nginx
|