2023-08-17 21:45:58 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Settings are automatically loaded as bash variables
|
|
|
|
# in every app script context, therefore typically these will exist:
|
|
|
|
# - $domain
|
|
|
|
# - $path
|
|
|
|
# - $language
|
|
|
|
# - $install_dir
|
|
|
|
# - $port
|
|
|
|
# ...
|
|
|
|
|
|
|
|
# In the context of upgrade,
|
|
|
|
# - resources are automatically provisioned / updated / deleted (depending on existing resources)
|
|
|
|
# - a safety backup is automatically created by the core and will be restored if the upgrade fails
|
|
|
|
|
|
|
|
### This helper will compare the version of the currently installed app and the version of the upstream package.
|
|
|
|
### $upgrade_type can have 2 different values
|
|
|
|
### - UPGRADE_APP if the upstream app version has changed
|
|
|
|
### - UPGRADE_PACKAGE if only the YunoHost package has changed
|
|
|
|
### ynh_check_app_version_changed will stop the upgrade if the app is up to date.
|
|
|
|
### UPGRADE_APP should be used to upgrade the core app only if there's an upgrade to do.
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
#ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
|
|
|
#
|
|
|
|
# N.B. : the followings setting migrations snippets are provided as *EXAMPLES*
|
|
|
|
# of what you may want to do in some cases (e.g. a setting was not defined on
|
|
|
|
# some legacy installs and you therefore want to initiaze stuff during upgrade)
|
|
|
|
#
|
|
|
|
|
|
|
|
# If db_name doesn't exist, create it
|
|
|
|
#if [ -z "$db_name" ]; then
|
|
|
|
# db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
# ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
#fi
|
|
|
|
|
|
|
|
# If install_dir doesn't exist, create it
|
|
|
|
#if [ -z "$install_dir" ]; then
|
|
|
|
# install_dir=/var/www/$app
|
|
|
|
# ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
|
|
|
|
#fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
ynh_systemd_action --service_name="${app}-front" --action="stop" --log_path="/var/log/$app/${app}-front"
|
|
|
|
ynh_systemd_action --service_name="${app}-back" --action="stop" --log_path="/var/log/$app/${app}-back"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# $install_dir will automatically be initialized with some decent
|
|
|
|
# permission by default ... however, you may need to recursively reapply
|
|
|
|
# ownership to all files such as after the ynh_setup_source step
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
# This should be a literal copypasta of what happened in the install's "System configuration" section
|
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
# Create a dedicated NGINX config using the conf/nginx.conf template
|
2023-08-17 21:45:58 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_config --template="../conf/crabfit.target" --destination="/etc/systemd/system/$app.target"
|
|
|
|
ynh_add_systemd_config --service="${app}-front" --template="crabfit-front.service"
|
|
|
|
ynh_add_systemd_config --service="${app}-back" --template="crabfit-back.service"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
yunohost service add "${app}-front" --description="Crabfit NodeJS Frontend" --log="/var/log/$app/${app}-front.log"
|
|
|
|
yunohost service add "${app}-back" --description="Crabfit Rust Backend" --log="/var/log/$app/${app}-back.log"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
ynh_use_logrotate
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
|
|
|
### Same as during install
|
|
|
|
###
|
|
|
|
### The file will automatically be backed-up if it's found to be manually modified (because
|
|
|
|
### ynh_add_config keeps track of the file's checksum)
|
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
# Replace the default .env.local with our own
|
|
|
|
rm $install_dir/frontend/.env.local
|
|
|
|
ynh_add_config --template="../conf/front.env" --destination="$install_dir/frontend/.env.local"
|
|
|
|
chmod 400 "$install_dir/frontend/.env.local"
|
|
|
|
chown $app:$app "$install_dir/frontend/.env.local"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
ynh_add_config --template="../conf/back.env" --destination="$install_dir/api/.env"
|
|
|
|
chmod 400 "$install_dir/api/.env"
|
|
|
|
chown $app:$app "$install_dir/api/.env"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
### For more complex cases where you want to replace stuff using regexes,
|
|
|
|
### you shoud rely on ynh_replace_string (which is basically a wrapper for sed)
|
|
|
|
### When doing so, you also need to manually call ynh_store_file_checksum
|
|
|
|
###
|
|
|
|
### ynh_replace_string --match_string="match_string" --replace_string="replace_string" --target_file="$install_dir/some_config_file"
|
|
|
|
### ynh_store_file_checksum --file="$install_dir/some_config_file"
|
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
#=================================================
|
|
|
|
# BUILD BACKEND
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building crabfit backend..." --weight=1
|
|
|
|
|
|
|
|
# The cargo version packaged with debian (currently 11) is too old and results in errors..
|
|
|
|
# Thus the latest version is manually installed alongside the application for the moment
|
|
|
|
pushd $install_dir/api
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
|
|
|
|
ynh_exec_warn_less ynh_exec_as "$app" \
|
|
|
|
RUSTUP_HOME=$install_dir/api/.rustup \
|
|
|
|
CARGO_HOME=$install_dir/api/.cargo \
|
|
|
|
sh rustup.sh -y -q --no-modify-path --default-toolchain=stable
|
|
|
|
export PATH="$PATH:$install_dir/.cargo/bin"
|
|
|
|
ynh_exec_warn_less ynh_exec_as "$app" \
|
|
|
|
RUSTUP_HOME=$install_dir/api/.rustup \
|
|
|
|
CARGO_HOME=$install_dir/api/.cargo \
|
|
|
|
$install_dir/api/.cargo/bin/cargo build --release #--features sql-adaptor
|
|
|
|
|
|
|
|
# Remove build files and rustup
|
|
|
|
# cp -af "$install_dir/api/target/release/crabfit-api" "$install_dir/api/api"
|
|
|
|
# ynh_secure_remove --file="$final_path/build"
|
|
|
|
ynh_secure_remove --file="$install_dir/api/.cargo"
|
|
|
|
ynh_secure_remove --file="$install_dir/api/.rustup"
|
|
|
|
popd
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BUILD FRONTEND
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building crabfit frontend..." --weight=1
|
|
|
|
pushd $install_dir/frontend
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" $nodejs_path/yarn install --production --frozen-lockfile
|
|
|
|
ynh_exec_warn_less ynh_exec_as "$app" env "$ynh_node_load_PATH" $ynh_npm run build
|
|
|
|
popd
|
|
|
|
|
2023-08-17 21:45:58 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
2023-08-24 23:42:42 +02:00
|
|
|
ynh_systemd_action --service_name="${app}-front" --action="start" --log_path="/var/log/$app/${app}-front.log"
|
|
|
|
ynh_systemd_action --service_name="${app}-back" --action="start" --log_path="/var/log/$app/${app}-back.log"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|