1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tracim_ynh.git synced 2024-10-01 13:34:52 +02:00
tracim_ynh/scripts/upgrade

180 lines
6.2 KiB
Text
Raw Normal View History

2022-04-06 20:56:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Loading installation settings..."
2022-04-06 20:56:59 +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)
language=$(ynh_app_setting_get --app=$app --key=language)
admin=$(ynh_app_setting_get --app=$app --key=admin)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
#=================================================
# CHECK VERSION
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Checking version..."
2022-04-06 20:56:59 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2022-04-06 20:56:59 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2022-04-08 03:47:14 +02:00
ynh_clean_check_starting
2022-04-06 20:56:59 +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
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Stopping a systemd service..."
2022-04-06 20:56:59 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Ensuring downward compatibility..."
2022-04-06 20:56:59 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
if ! ynh_permission_exists --permission="admin"; then
# Create the required permissions
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
fi
# Create a permission if needed
if ! ynh_permission_exists --permission="api"; then
ynh_permission_create --permission="api" --url="/api" --allowed="visitors" --show_tile="false" --protected="true"
fi
#=================================================
# CREATE DEDICATED USER
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2022-04-06 20:56:59 +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
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Upgrading source files..."
2022-04-06 20:56:59 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2022-04-06 20:56:59 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Upgrading dependencies..."
2022-04-06 20:56:59 +02:00
ynh_install_app_dependencies $pkg_dependencies
2022-04-08 03:47:14 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
2022-04-06 20:56:59 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# ...
#=================================================
#=================================================
# UPDATE A CONFIG FILE
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Updating a configuration file..."
2022-04-06 20:56:59 +02:00
ynh_add_config --template="some_config_file" --destination="$final_path/some_config_file"
chmod 400 "$final_path/some_config_file"
chown $app:$app "$final_path/some_config_file"
#=================================================
# SETUP SYSTEMD
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Upgrading systemd configuration..."
2022-04-06 20:56:59 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2022-04-06 20:56:59 +02:00
2022-04-08 03:47:14 +02:00
yunohost service add $app --log="/var/log/$app/$app.log"
2022-04-06 20:56:59 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Starting a systemd service..."
2022-04-06 20:56:59 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# UPGRADE FAIL2BAN
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Reconfiguring Fail2Ban..."
2022-04-06 20:56:59 +02:00
# Create a dedicated Fail2Ban config
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="Regex to match into the log for a failed login"
#=================================================
# RELOAD NGINX
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2022-04-06 20:56:59 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2022-04-08 03:47:14 +02:00
ynh_script_progression --message="Upgrade of $app completed"