2020-11-19 21:41:03 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
|
2022-12-19 17:17:58 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=allow_anonymous --value=$allow_anonymous
|
|
|
|
ynh_app_setting_set --app=$app --key=allow_email_registration --value=$allow_email_registration
|
2023-02-20 09:33:56 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=allow_free_url --value=$allow_free_url
|
|
|
|
ynh_app_setting_set --app=$app --key=require_free_url_authentication --value=$require_free_url_authentication
|
|
|
|
ynh_app_setting_set --app=$app --key=allow_anonymous_edits --value=$allow_anonymous_edits
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=20
|
|
|
|
|
|
|
|
# Install Nodejs
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
|
|
|
|
|
|
|
# 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
|
2020-11-19 21:41:03 +01:00
|
|
|
|
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
|
|
|
#=================================================
|
2023-04-03 13:57:06 +02:00
|
|
|
# SYSTEM CONFIGURATION
|
2020-11-19 21:41:03 +01:00
|
|
|
#=================================================
|
2023-06-04 23:16:35 +02:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
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-05-28 15:22:44 +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-04-03 13:57:06 +02:00
|
|
|
pushd "$install_dir"
|
2020-11-19 21:41:03 +01:00
|
|
|
ynh_use_nodejs
|
2023-07-01 14:22:40 +02:00
|
|
|
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn workspaces focus --production
|
2023-10-17 17:29:31 +02:00
|
|
|
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn cache clean
|
2021-12-03 08:52:18 +01:00
|
|
|
popd
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
2020-11-19 21:56:06 +01:00
|
|
|
ynh_script_progression --message="Modifying a config file..." --weight=1
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
url_path=${path#/}
|
2024-05-28 15:22:44 +02:00
|
|
|
ynh_add_config --template="config.json.example" --destination="$install_dir/config.json"
|
2020-11-19 21:41:03 +01:00
|
|
|
|
2023-04-03 13:57:06 +02:00
|
|
|
chmod 600 "$install_dir/config.json"
|
|
|
|
chown $app:$app "$install_dir/config.json"
|
2020-11-19 21:41:03 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
|
|
|
|
|
|
|
# Start a systemd service
|
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="Installation of $app completed" --last
|