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-21 20:58:48 +01:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
if [ -z "${allow_anonymous:-}" ]; then
|
2022-12-19 17:17:58 +01:00
|
|
|
allow_anonymous="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=allow_anonymous --value=$allow_anonymous
|
|
|
|
fi
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
if [ -z "${allow_anonymous_edits:-}" ]; then
|
2023-02-20 09:33:56 +01:00
|
|
|
allow_anonymous_edits="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=allow_anonymous_edits --value=$allow_anonymous_edits
|
|
|
|
fi
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
if [ -z "${allow_email_registration:-}" ]; then
|
2022-12-19 17:17:58 +01:00
|
|
|
allow_email_registration="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=allow_email_registration --value=$allow_email_registration
|
|
|
|
fi
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
if [ -z "${allow_free_url:-}" ]; then
|
2023-02-20 09:33:56 +01:00
|
|
|
allow_free_url="false"
|
|
|
|
ynh_app_setting_set --app=$app --key=allow_free_url --value=$allow_free_url
|
|
|
|
fi
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
if [ -z "${require_free_url_authentication:-}" ]; then
|
2023-02-20 09:33:56 +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-04-27 13:48:15 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=stop --log_path=systemd
|
2021-03-21 20:58:48 +01:00
|
|
|
|
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
|
2023-04-03 13:57:06 +02:00
|
|
|
ynh_setup_source --dest_dir=$install_dir --keep="config.json"
|
2020-11-19 21:41:03 +01:00
|
|
|
fi
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-07-12 08:03:31 +02:00
|
|
|
|
2020-11-19 21:41:03 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=2
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
# Install Nodejs
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
#==============================================
|
2020-11-19 21:56:06 +01:00
|
|
|
# INSTALL HEDGEDOC
|
2023-04-03 13:57:06 +02:00
|
|
|
#==============================================
|
2022-07-12 08:03:31 +02:00
|
|
|
|
2020-11-19 21:41:03 +01:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2020-12-24 16:31:32 +01:00
|
|
|
ynh_script_progression --message="Building HedgeDoc... (this will take some time and resources!)" --weight=20
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
pushd "$install_dir"
|
2023-02-20 09:33:56 +01:00
|
|
|
ynh_secure_remove /usr/local/share/.cache/yarn
|
2020-11-19 21:41:03 +01:00
|
|
|
ynh_use_nodejs
|
2023-02-27 23:06:08 +01:00
|
|
|
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install --frozen-lockfile
|
|
|
|
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn build
|
2021-12-03 08:52:18 +01:00
|
|
|
popd
|
2020-11-19 21:41:03 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2020-11-19 21:56:06 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=2
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2020-12-24 16:31:32 +01:00
|
|
|
yunohost service add $app --description="Collaborative Markdown editor" --log="/var/log/$app/$app.log"
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
2021-03-21 20:58:48 +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 15:51:28 +01:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|