2023-10-16 21:07:03 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
2023-10-17 20:50:05 +02:00
|
|
|
# INSTALL DEPENDENCIES
|
2023-10-16 21:07:03 +02:00
|
|
|
#=================================================
|
2023-10-17 20:50:05 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=5
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-10-17 20:50:05 +02:00
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2023-12-13 18:57:01 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-12-13 20:40:02 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace=1
|
2023-12-13 18:57:01 +01:00
|
|
|
|
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
|
2023-10-16 21:07:03 +02:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
# STANDARD UPGRADE STEPS
|
2023-10-16 21:07:03 +02:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
# STOP SYSTEMD SERVICE
|
2023-10-16 21:07:03 +02:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
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"
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-12-13 21:28:33 +01:00
|
|
|
#=================================================
|
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
|
|
|
|
|
|
|
|
chmod 400 "$install_dir/.env"
|
|
|
|
chown $app:$app "$install_dir/.env"
|
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
#=================================================
|
2023-12-13 18:57:01 +01:00
|
|
|
# BUILD APP
|
2023-11-06 20:10:52 +01:00
|
|
|
#=================================================
|
2023-11-03 13:10:12 +01:00
|
|
|
|
2023-12-13 18:57:01 +01:00
|
|
|
pushd $install_dir
|
2023-10-29 16:49:10 +01:00
|
|
|
ynh_use_nodejs
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-10-29 16:49:10 +01:00
|
|
|
ynh_script_progression --message="npm install... This can be very long, be patient !" --weight=18
|
2023-12-13 18:57:01 +01:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH $ynh_npm ci --quiet --production --prefer-offline --network-timeout=100000
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH $ynh_npm install --save-dev @types/html-escaper
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-10-29 16:49:10 +01:00
|
|
|
ynh_script_progression --message="npm run build... This can be very long, be patient !" --weight=25
|
2023-12-13 18:57:01 +01:00
|
|
|
SOURCE_VERSION="$(cat $YNH_APP_BASEDIR/manifest.toml | toml_to_json | jq -r ".resources.sources.main.url" | awk -F/ '{ print $NF }')"
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH SOURCE_VERSION="$SOURCE_VERSION" $ynh_npm run build
|
2023-10-17 20:50:05 +02:00
|
|
|
popd
|
|
|
|
|
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
|
|
|
|
2023-11-03 12:11:52 +01:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
2023-11-03 12:11:52 +01:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2023-11-03 12:11:52 +01:00
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_add_nginx_config
|
2023-11-03 12:11:52 +01:00
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_add_systemd_config
|
2023-11-03 12:11:52 +01:00
|
|
|
|
2023-11-06 20:40:52 +01:00
|
|
|
yunohost service add $app --description="Terraforming-Mars Service" --log="/var/log/$app/$app.log"
|
2023-10-17 20:50:05 +02:00
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_use_logrotate --non-append
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-10-17 20:50:05 +02:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
2023-10-17 20:50:05 +02:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
# UPDATE A CONFIG FILE
|
2023-10-17 20:50:05 +02:00
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
|
2023-11-03 11:22:27 +01:00
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
chmod 400 "$install_dir/.env"
|
|
|
|
chown $app:$app "$install_dir/.env"
|
2023-11-03 11:22:27 +01:00
|
|
|
|
2023-10-16 21:07:03 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2023-10-16 21:07:03 +02:00
|
|
|
|
2023-11-06 20:10:52 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
2023-10-16 21:07:03 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-06-12 08:25:21 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|