2020-11-19 21:41:03 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-12-19 17:17:58 +01:00
|
|
|
allow_anonymous=false
|
2023-02-20 09:33:56 +01:00
|
|
|
allow_anonymous_edits=false
|
2022-12-19 17:17:58 +01:00
|
|
|
allow_email_registration=false
|
2023-02-20 09:33:56 +01:00
|
|
|
allow_free_url=false
|
|
|
|
require_free_url_authentication=false
|
2022-12-19 17:17:58 +01:00
|
|
|
|
2020-11-19 21:41:03 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_app_setting_set --key=allow_anonymous --value=$allow_anonymous
|
|
|
|
ynh_app_setting_set --key=allow_email_registration --value=$allow_email_registration
|
|
|
|
ynh_app_setting_set --key=allow_free_url --value=$allow_free_url
|
|
|
|
ynh_app_setting_set --key=require_free_url_authentication --value=$require_free_url_authentication
|
|
|
|
ynh_app_setting_set --key=allow_anonymous_edits --value=$allow_anonymous_edits
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Installing dependencies..."
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_nodejs_install
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Setting up source files..."
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
ynh_setup_source --dest_dir=$install_dir
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-04-03 13:57:06 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2020-11-19 21:41:03 +01:00
|
|
|
#=================================================
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Adding system configurations related to $app..."
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_config_add_nginx
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_config_add_systemd
|
2023-04-03 13:57:06 +02:00
|
|
|
|
|
|
|
yunohost service add $app --description="Collaborative Markdown editor" --log="/var/log/$app/$app.log"
|
|
|
|
|
2020-11-19 21:41:03 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#==============================================
|
2020-11-19 21:56:06 +01:00
|
|
|
# INSTALL HEDGEDOC
|
2020-11-19 21:41:03 +01:00
|
|
|
#==============================================
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Building $app... (this will take some time and resources!)"
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
pushd "$install_dir"
|
2024-09-01 17:40:32 +02:00
|
|
|
|
|
|
|
ynh_hide_warnings ynh_exec_as_app yarn workspaces focus --production
|
|
|
|
ynh_hide_warnings ynh_exec_as_app yarn cache clean
|
2021-12-03 08:52:18 +01:00
|
|
|
popd
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Updating configuration..."
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
url_path=${path#/}
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_config_add --template="config.json.example" --destination="$install_dir/config.json"
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_systemctl --service=$app --action=start --log_path=systemd --wait_until="HTTP Server listening"
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-09-01 17:40:32 +02:00
|
|
|
ynh_script_progression "Installation of $app completed"
|