1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nocodb_ynh.git synced 2024-09-03 19:56:01 +02:00
nocodb_ynh/scripts/upgrade

168 lines
6 KiB
Text
Raw Normal View History

2021-05-28 08:44:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-05-28 08:44:53 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2021-09-28 07:08:33 +02:00
port=$(ynh_app_setting_get --app=$app --key=port)
2021-05-28 08:44:53 +02:00
#=================================================
# CHECK VERSION
#=================================================
2022-06-21 03:15:06 +02:00
ynh_script_progression --message="Checking version..."
2021-05-28 08:44:53 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=3
2021-05-28 08:44:53 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-06-21 03:15:06 +02:00
ynh_clean_check_starting
2021-05-28 08:44:53 +02:00
# Restore it if the upgrade fails
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-05-28 08:44:53 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-06-21 03:15:06 +02:00
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2021-05-28 08:44:53 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2021-05-28 08:44:53 +02:00
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-05-28 08:44:53 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path" --keep=".env"
2021-05-28 08:44:53 +02:00
fi
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2021-05-28 08:44:53 +02:00
2021-09-27 20:42:21 +02:00
if [ $nodejs_version != $(ynh_app_setting_get --app=$app --key=nodejs_version) ]; then
ynh_remove_nodejs
ynh_install_nodejs --nodejs_version=$nodejs_version
fi
2021-05-28 08:44:53 +02:00
2022-06-21 03:15:06 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-05-28 08:44:53 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
2021-09-27 20:42:21 +02:00
# PERFORMING NOCODB UPGRADE
2021-05-28 08:44:53 +02:00
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Upgrading NocoDB..." --weight=5
2021-05-28 08:44:53 +02:00
2021-09-27 20:42:21 +02:00
ynh_use_nodejs
pushd $final_path
if [ $YNH_ARCH = "arm64" ]; then
ynh_print_info --message="Retrieving and building OracleDB for ARM64..."
ynh_secure_remove oracledb
ynh_exec_warn_less ynh_exec_as $app git clone --recursive https://github.com/oracle/node-oracledb.git oracledb
2022-10-24 22:24:45 +02:00
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH NODE_ENV="production" $ynh_npm install ./oracledb
ynh_print_info --message="...Done! Installing NocoDB now..."
fi
2022-10-24 22:24:45 +02:00
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH NODE_ENV="production" $ynh_npm install --force
2021-09-27 20:42:21 +02:00
popd
2021-05-28 08:44:53 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-05-28 08:44:53 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
2021-05-28 08:44:53 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2021-05-28 08:44:53 +02:00
2021-09-27 20:17:20 +02:00
yunohost service add $app --description="$app daemon, turns any database into a smart-spreadsheet" --log="/var/log/$app/$app.log"
2021-05-28 08:44:53 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-05-28 08:44:53 +02:00
2022-06-23 14:17:11 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="Visit : localhost:"
2021-05-28 08:44:53 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2021-05-28 08:44:53 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-09-27 20:42:21 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last