2015-08-22 20:24:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-19 14:02:22 +01:00
|
|
|
ynh_clean_setup () {
|
2020-05-30 11:57:12 +02:00
|
|
|
ynh_clean_check_starting
|
2020-03-19 14:02:22 +01:00
|
|
|
}
|
2018-05-01 12:25:53 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
|
|
|
path_url=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
final_path=/var/www/$app
|
2020-05-27 18:41:09 +02:00
|
|
|
config_path=/home/yunohost.app/$app
|
2020-05-30 19:18:05 +02:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2020-05-27 17:03:30 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
# Register (book) web path
|
2020-05-29 22:51:48 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2020-05-27 18:18:11 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
|
|
|
|
2020-05-29 22:51:48 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
|
|
|
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
|
|
|
ynh_app_setting_set --app=$app --key=config_path --value=$config_path
|
2020-05-27 18:18:11 +02:00
|
|
|
|
2020-05-30 19:18:05 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring firewall..."
|
|
|
|
|
|
|
|
# Find an available port
|
|
|
|
port=$(ynh_find_port 9000)
|
|
|
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2020-05-27 17:03:30 +02:00
|
|
|
# Install Nodejs
|
2020-05-30 19:29:45 +02:00
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
2020-05-27 17:03:30 +02:00
|
|
|
|
|
|
|
# Install Yarn
|
|
|
|
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2015-08-22 20:24:46 +02:00
|
|
|
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-05-01 12:25:53 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2020-05-29 22:51:48 +02:00
|
|
|
ynh_setup_source --dest_dir=$final_path
|
2019-10-25 11:04:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
# NGINX CONFIGURATION
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_script_progression --message="Configuring nginx web server..."
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..."
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Modifying a config file..."
|
|
|
|
|
|
|
|
mkdir -p $config_path
|
2019-10-25 11:04:41 +02:00
|
|
|
|
2020-05-27 17:03:30 +02:00
|
|
|
# Main config File
|
|
|
|
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="../conf/config.js"
|
|
|
|
|
|
|
|
cp -a ../conf/config.js "$config_path"
|
2019-10-25 11:04:41 +02:00
|
|
|
|
2020-05-27 18:18:11 +02:00
|
|
|
ynh_store_file_checksum "$config_path/config.js"
|
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL THE LOUNGE
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Installing The Lounge..."
|
2019-10-25 11:04:41 +02:00
|
|
|
|
2020-05-29 22:51:48 +02:00
|
|
|
pushd $final_path
|
2020-05-30 19:00:39 +02:00
|
|
|
ynh_use_nodejs
|
2020-05-30 19:23:03 +02:00
|
|
|
yarn install
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_exec_warn_less NODE_ENV=production yarn build
|
2019-10-25 11:04:41 +02:00
|
|
|
popd
|
2015-08-22 20:24:46 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2020-05-27 17:03:30 +02:00
|
|
|
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__ENV_PATH__" --replace_string="$PATH" --target_file="../conf/systemd.service"
|
|
|
|
ynh_replace_string --match_string="__NODE__" --replace_string="$nodejs_path" --target_file="../conf/systemd.service"
|
|
|
|
|
2018-05-01 18:04:42 +02:00
|
|
|
ynh_add_systemd_config
|
2018-05-01 15:02:11 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_script_progression --message="Securing files and directories..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
# Set permissions to app files
|
2020-05-29 22:51:48 +02:00
|
|
|
chown -R $app: $final_path
|
|
|
|
chown -R $app: $config_path
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2020-05-30 19:18:05 +02:00
|
|
|
yunohost service add $app --description "Self-hosted web IRC client" --log_type "systemd"
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-10-25 11:04:41 +02:00
|
|
|
|
|
|
|
# Start a systemd service
|
2020-05-30 11:57:12 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Available at http"
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Configuring SSOwat..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2020-05-27 18:18:11 +02:00
|
|
|
# Make app public if necessary or protect it
|
2020-05-30 14:26:08 +02:00
|
|
|
[ $is_public -eq 0 ] || ynh_permission_update --permission "main" --add "visitors"
|
2015-08-22 20:24:46 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..."
|
2019-10-25 11:04:41 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-05-30 19:18:05 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|