1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00
funkwhale_ynh/scripts/upgrade

146 lines
5.6 KiB
Text
Raw Normal View History

2018-05-11 23:36:43 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Stopping $app's systemd service..."
2018-05-11 23:36:43 +02:00
ynh_systemctl --action="stop" --service="${app}-beat" --log_path="systemd"
ynh_systemctl --action="stop" --service="${app}-server" --log_path="systemd"
ynh_systemctl --action="stop" --service="${app}-worker" --log_path="systemd"
2018-05-11 23:36:43 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Upgrading source files..."
2018-05-11 23:36:43 +02:00
ynh_setup_source --dest_dir="$install_dir/api" --source_id="api" --full_replace
ynh_setup_source --dest_dir="$install_dir/front" --source_id="front" --full_replace
2018-05-11 23:36:43 +02:00
#=================================================
2022-10-04 00:13:33 +02:00
# NGINX CONFIGURATION
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Upgrading NGINX web server configuration..."
2018-05-11 23:36:43 +02:00
ynh_config_add --template="funkwhale_proxy.conf" --destination="/etc/nginx/conf.d/$domain.d/funkwhale_proxy.conf"
ynh_config_add_nginx
2018-05-11 23:36:43 +02:00
2023-06-15 14:03:02 +02:00
#=================================================
# Assure correct permissions to $data_dir
#=================================================
ynh_script_progression "Assure correct permissions to $data_dir..."
2023-06-15 14:03:02 +02:00
chmod 750 "$data_dir"
chmod -R o-rwx "$data_dir/"
2023-06-20 18:27:21 +02:00
chown -R $app:www-data "$data_dir/"
2023-06-15 14:03:02 +02:00
2018-05-12 13:17:09 +02:00
#=================================================
# INSTALL PYTHON DEPENDENCIES
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Installing Python dependencies..."
2018-05-11 23:36:43 +02:00
2023-08-24 09:16:57 +02:00
if [ $YNH_ARCH == "armhf" ] || [ $YNH_ARCH == "armel" ]
then
# Install rustup is not already installed
# We need this to be able to install cryptgraphy
export PATH="$PATH:$install_dir/.cargo/bin:$install_dir/.local/bin:/usr/local/sbin"
2023-08-24 09:26:56 +02:00
if [ -e $install_dir/.rustup ]; then
ynh_exec_as_app PATH=$PATH rustup update
2023-08-24 09:26:56 +02:00
else
ynh_exec_as_app bash -c 'curl -sSf -L https://static.rust-lang.org/rustup.sh | sh -s -- -y --default-toolchain=stable --profile=minimal'
2023-08-24 09:26:56 +02:00
fi
2023-08-24 09:16:57 +02:00
fi
2023-03-24 12:21:19 +01:00
pushd $install_dir
ynh_safe_rm "$install_dir/virtualenv"
ynh_safe_rm "$install_dir/venv"
python3 -m venv $install_dir/venv
source $install_dir/venv/bin/activate
ynh_hide_warnings pip install --upgrade pip wheel toml
ynh_hide_warnings pip install --editable ./api
popd
2018-05-11 23:36:43 +02:00
#=================================================
# UPDATE A CONFIG FILE
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Updating configuration..."
2018-05-11 23:36:43 +02:00
ynh_config_add --template="env.prod" --destination="$install_dir/config/.env"
2018-05-11 23:36:43 +02:00
#=================================================
# UPGRADE FUNKWHALE
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Upgrading Funkwhale..."
2018-05-11 23:36:43 +02:00
2023-03-24 12:21:19 +01:00
pushd $install_dir
source $install_dir/venv/bin/activate
2018-05-11 23:36:43 +02:00
echo "yes" | ynh_hide_warnings $install_dir/venv/bin/funkwhale-manage collectstatic --clear --noinput
2022-10-04 00:14:58 +02:00
2018-05-11 23:36:43 +02:00
# needed for enabling the 'unaccent' extension
ynh_psql_db_shell <<< "ALTER USER $db_user WITH SUPERUSER;"
2023-06-15 14:03:02 +02:00
ynh_hide_warnings ynh_exec_as_app $install_dir/venv/bin/funkwhale-manage migrate
ynh_psql_db_shell <<< "ALTER USER $db_user WITH NOSUPERUSER;"
2019-06-01 07:05:15 +02:00
popd
2019-06-01 07:05:15 +02:00
#=================================================
# LOGROTATE
#=================================================
ynh_script_progression "Configuring logrotate to manage application logfiles"
ynh_config_add_logrotate
touch /var/log/$app/${app}-server.log
touch /var/log/$app/${app}-worker.log
touch /var/log/$app/${app}-beat.log
2018-05-11 23:36:43 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression "Upgrading systemd configuration..."
2018-05-11 23:36:43 +02:00
ynh_config_add --template="funkwhale.target" --destination="/etc/systemd/system/$app.target"
2018-05-11 23:36:43 +02:00
# Create a dedicated systemd config
ynh_config_add_systemd --service="${app}-server" --template="funkwhale-server.service"
ynh_config_add_systemd --service="${app}-worker" --template="funkwhale-worker.service"
ynh_config_add_systemd --service="${app}-beat" --template="funkwhale-beat.service"
2018-05-11 23:36:43 +02:00
2019-05-14 22:55:26 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Integrating service in YunoHost..."
2018-05-11 23:36:43 +02:00
yunohost service add "${app}-beat" --description="${app} celery beat process" --log="/var/log/$app/${app}-beat.log"
yunohost service add "${app}-server" --description="${app} application server" --log="/var/log/$app/${app}-server.log"
yunohost service add "${app}-worker" --description="${app} celery worker" --log="/var/log/$app/${app}-worker.log"
2019-01-14 21:30:46 +01:00
2020-12-04 16:56:37 +01:00
#=================================================
# START SYSTEMD SERVICE
2020-12-04 16:56:37 +01:00
#=================================================
ynh_script_progression "Starting $app's systemd service..."
2020-12-04 16:56:37 +01:00
# Start a systemd service
ynh_systemctl --service="${app}-beat" --action="start" --log_path="systemd"
ynh_systemctl --service="${app}-server" --action="start" --log_path="systemd" --wait_until="Application startup complete"
ynh_systemctl --service="${app}-worker" --action="start" --log_path="systemd" --wait_until="ready"
2020-12-04 16:51:27 +01:00
2018-05-11 23:36:43 +02:00
#=================================================
# UPGRADE FAIL2BAN
2018-05-11 23:36:43 +02:00
#=================================================
ynh_script_progression "Reconfiguring Fail2Ban..."
2018-05-11 23:36:43 +02:00
ynh_config_add_fail2ban --logpath="/var/log/nginx/$domain-access.log" --failregex="<HOST>.* \"POST /api/v1/token/ HTTP/1.1\" 400 68.*$"
2018-10-27 14:18:30 +02:00
2019-04-03 14:35:09 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Upgrade of $app completed"