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

112 lines
3.6 KiB
Text
Raw Normal View History

2020-11-19 21:41:03 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2021-03-15 10:22:19 +01:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
if [ -z "${allow_anonymous:-}" ]; then
allow_anonymous="false"
ynh_app_setting_set --app=$app --key=allow_anonymous --value=$allow_anonymous
fi
if [ -z "${allow_anonymous_edits:-}" ]; then
2023-01-21 12:35:07 +01:00
allow_anonymous_edits="false"
ynh_app_setting_set --app=$app --key=allow_anonymous_edits --value=$allow_anonymous_edits
fi
if [ -z "${allow_email_registration:-}" ]; then
allow_email_registration="false"
ynh_app_setting_set --app=$app --key=allow_email_registration --value=$allow_email_registration
fi
if [ -z "${allow_free_url:-}" ]; then
2023-01-21 12:24:42 +01:00
allow_free_url="false"
ynh_app_setting_set --app=$app --key=allow_free_url --value=$allow_free_url
fi
if [ -z "${require_free_url_authentication:-}" ]; then
2023-01-21 12:30:12 +01:00
require_free_url_authentication="false"
ynh_app_setting_set --app=$app --key=require_free_url_authentication --value=$require_free_url_authentication
fi
2020-11-19 21:41:03 +01:00
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-03-23 19:42:07 +01:00
ynh_systemd_action --service_name=$app --action=stop --log_path=systemd
2020-11-19 21:41:03 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2020-11-19 21:56:06 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=10
2020-11-19 21:41:03 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir=$install_dir --keep="config.json"
2020-11-19 21:41:03 +01:00
fi
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2020-11-19 21:41:03 +01:00
#=================================================
2023-05-18 12:26:09 +02:00
# REAPPLY SYSTEM CONFIGURATIONS
2020-11-19 21:41:03 +01:00
#=================================================
2023-05-18 12:26:09 +02:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2020-11-19 21:41:03 +01:00
ynh_add_nginx_config
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
ynh_add_systemd_config
2023-05-18 12:26:09 +02:00
yunohost service add $app --description="Collaborative Markdown editor" --log="/var/log/$app/$app.log"
#==============================================
2020-11-19 21:56:06 +01:00
# INSTALL HEDGEDOC
#==============================================
2020-11-19 21:41:03 +01:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2023-07-01 22:54:07 +02:00
ynh_script_progression --message="Building $app... (this will take some time and resources!)" --weight=10
2020-11-19 21:41:03 +01:00
2023-05-18 12:26:09 +02:00
pushd "$install_dir"
2023-01-29 17:31:31 +01:00
ynh_secure_remove /usr/local/share/.cache/yarn
2020-11-19 21:41:03 +01:00
ynh_use_nodejs
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn workspaces focus --production
2021-12-03 00:04:27 +01:00
popd
2020-11-19 21:41:03 +01:00
fi
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-12 22:47:43 +01:00
ynh_systemd_action --service_name=$app --action=start --log_path=systemd --line_match="HTTP Server listening"
2020-11-19 21:41:03 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-02-01 14:11:16 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last