1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/terraforming-mars_ynh.git synced 2024-09-03 20:36:05 +02:00
terraforming-mars_ynh/scripts/upgrade

98 lines
4.9 KiB
Text
Raw Normal View History

2023-10-16 21:07:03 +02:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2023-10-17 20:50:05 +02:00
# INSTALL DEPENDENCIES
2023-10-16 21:07:03 +02:00
#=================================================
ynh_script_progression "Installing dependencies..."
2023-10-16 21:07:03 +02:00
ynh_nodejs_install
2023-10-17 20:50:05 +02:00
2023-12-13 18:57:01 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Setting up source files..."
2023-12-13 18:57:01 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir" --full_replace
2023-12-13 18:57:01 +01:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
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
#=================================================
ynh_script_progression "Stopping $app's systemd service..."
2023-11-06 20:10:52 +01:00
ynh_systemctl --service=$app --action="stop"
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 "Updating configuration..."
2023-12-13 21:28:33 +01:00
ynh_config_add --template=".env" --destination="$install_dir/.env"
2023-12-13 21:28:33 +01:00
#REMOVEME? Assuming the file is setup using ynh_config_add, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 400 "$install_dir/.env"
#REMOVEME? Assuming the file is setup using ynh_config_add, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown $app:$app "$install_dir/.env"
2023-12-13 21:28:33 +01:00
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-16 21:07:03 +02:00
ynh_script_progression "npm install... This can be very long, be patient !"
ynh_hide_warnings ynh_exec_as_app node_load_PATH npm ci --quiet --production --prefer-offline --network-timeout=100000
ynh_hide_warnings ynh_exec_as_app node_load_PATH npm install --save-dev @types/html-escaper
2023-10-16 21:07:03 +02:00
ynh_script_progression "npm run build... This can be very long, be patient !"
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_hide_warnings ynh_exec_as_app node_load_PATH SOURCE_VERSION="$SOURCE_VERSION" npm run build
2023-10-17 20:50:05 +02:00
popd
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | 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
#=================================================
ynh_script_progression "Upgrading system configurations related to $app..."
2023-11-03 12:11:52 +01:00
ynh_config_add_nginx
2023-11-03 12:11:52 +01:00
ynh_config_add_systemd
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
ynh_config_add_logrotate
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
#=================================================
ynh_script_progression "Updating configuration..."
2023-10-16 21:07:03 +02:00
ynh_config_add --template=".env" --destination="$install_dir/.env"
2023-11-03 11:22:27 +01:00
#REMOVEME? Assuming the file is setup using ynh_config_add, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 400 "$install_dir/.env"
#REMOVEME? Assuming the file is setup using ynh_config_add, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | 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
#=================================================
ynh_script_progression "Starting $app's systemd service..."
2023-10-16 21:07:03 +02:00
ynh_systemctl --service=$app --action="start"
2023-10-16 21:07:03 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Upgrade of $app completed"