2023-10-08 12:42:59 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
2023-11-12 21:30:28 +01:00
|
|
|
#=================================================
|
|
|
|
|
2023-10-08 12:42:59 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-11-11 12:33:33 +01:00
|
|
|
redis_db=$(ynh_app_setting_get --app=$app --key=redis_db)
|
2024-08-13 08:25:09 +02:00
|
|
|
session_secret=$(ynh_app_setting_get --app=$app --key=session_secret)
|
2023-10-08 12:42:59 +02:00
|
|
|
|
2023-11-17 16:30:43 +01:00
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2023-10-08 12:42:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
2024-08-13 08:25:09 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ -z "$session_secret" ]; then
|
|
|
|
session_secret=$(ynh_string_random --length=32)
|
|
|
|
ynh_app_setting_set --app=$app --key=session_secret --value=$session_secret
|
|
|
|
fi
|
|
|
|
|
2023-11-14 22:02:16 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrading dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2023-10-08 12:42:59 +02:00
|
|
|
#=================================================
|
|
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2023-11-19 22:52:20 +01:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=20
|
2023-10-08 12:42:59 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from manifest.toml
|
2024-02-17 15:26:22 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
|
2023-10-08 12:42:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
|
2023-11-11 20:48:16 +01:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
pushd "$install_dir"
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --pure-lockfile
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install:python
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH:$install_dir/node_modules/.bin yarn run build:prod
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn cache clean
|
|
|
|
popd
|
|
|
|
|
|
|
|
pushd "$install_dir/sandbox/pyodide"
|
2023-11-21 22:13:27 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH make setup
|
2023-11-11 20:48:16 +01:00
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
2023-10-08 12:42:59 +02:00
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2023-11-17 15:19:39 +01:00
|
|
|
yunohost service add $app --description="Modern relational spreadsheet" --log="/var/log/$app/$app.log"
|
2023-10-08 12:42:59 +02:00
|
|
|
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
2024-08-13 08:03:00 +02:00
|
|
|
admin_email=$(ynh_user_get_info --username=$admin --key=mail)
|
2023-11-11 20:48:16 +01:00
|
|
|
ynh_add_config --template="default.env" --destination="$install_dir/default.env"
|
2023-10-08 12:42:59 +02:00
|
|
|
|
2023-11-14 22:02:16 +01:00
|
|
|
chmod 400 "$install_dir/default.env"
|
|
|
|
chown $app:$app "$install_dir/default.env"
|
2023-10-08 12:42:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|