1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tldraw_ynh.git synced 2024-09-03 20:35:54 +02:00
tldraw_ynh/scripts/upgrade

125 lines
4.7 KiB
Text
Raw Permalink Normal View History

2022-09-27 10:54:46 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping $app's systemd service..." --weight=1
2022-09-27 10:54:46 +02:00
ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$app/$app.log"
2022-09-27 10:54:46 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
2022-09-27 10:54:46 +02:00
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2022-09-27 10:54:46 +02:00
if [[ -n "${publickey:-}" ]]; then
ynh_app_setting_delete --app="$app" --key="publickey"
fi
if [[ -n "${secretkey:-}" ]]; then
ynh_app_setting_delete --app="$app" --key="secretkey"
2022-09-27 10:54:46 +02:00
fi
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
ynh_script_progression --message="Upgrading NodeJS..." --weight=1
2022-09-27 10:54:46 +02:00
2022-09-30 06:21:39 +02:00
# Install nodejs
2023-06-11 19:24:12 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2022-09-30 06:21:39 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Upgrading source files..." --weight=1
ynh_setup_source --dest_dir="$install_dir/sources" --full_replace=1
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2022-09-27 10:54:46 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2023-06-11 19:24:12 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2022-09-27 10:54:46 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
2022-09-29 17:18:11 +02:00
# ADD A CONFIGURATION
2022-09-27 10:54:46 +02:00
#=================================================
2022-09-29 17:18:11 +02:00
ynh_script_progression --message="Patching multiplayer file..." --weight=1
2023-06-11 18:57:36 +02:00
ynh_secure_remove --file="$install_dir/packages/tldraw/src/components/TopPanel/MultiplayerMenu/MultiplayerMenu.tsx"
2023-06-11 18:48:56 +02:00
ynh_add_config --template="../conf/MultiplayerMenu.tsx" --destination="$install_dir/packages/tldraw/src/components/TopPanel/MultiplayerMenu/MultiplayerMenu.tsx"
2022-09-29 17:18:11 +02:00
2023-06-11 18:48:56 +02:00
chmod 400 "$install_dir/packages/tldraw/src/components/TopPanel/MultiplayerMenu/MultiplayerMenu.tsx"
chown $app:$app "$install_dir/packages/tldraw/src/components/TopPanel/MultiplayerMenu/MultiplayerMenu.tsx"
2022-09-27 10:54:46 +02:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2023-06-11 18:48:56 +02:00
ynh_add_config --template="../conf/.env" --destination="$install_dir/apps/www/.env"
2022-09-29 17:18:11 +02:00
2023-06-11 18:48:56 +02:00
chmod 400 "$install_dir/apps/www/.env"
chown $app:$app "$install_dir/apps/www/.env"
2022-09-29 17:18:11 +02:00
#=================================================
# BUILD YARN DEPENDENCIES
#=================================================
2023-06-11 18:48:56 +02:00
pushd "$install_dir"
2022-09-29 17:18:11 +02:00
ynh_use_nodejs
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install --network-timeout 1000000000 2>&1
ynh_script_progression --message="Cleaning cache... " --weight=3
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn cache clean 2>&1
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn build 2>&1
popd
2022-09-27 10:54:46 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-09-30 10:09:39 +02:00
yunohost service add $app --description="A tiny little drawing app" --log="/var/log/$app/$app.log"
2022-09-27 10:54:46 +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