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
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# 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
|
|
|
|
config_path=/home/yunohost.app/$app/
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
2019-10-25 18:23:11 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=config_path --value=$config_path
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
# Normalize the url path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
# Check web path availability
|
|
|
|
ynh_webpath_available $domain $path_url
|
|
|
|
# Register (book) web path
|
|
|
|
ynh_webpath_register $app $domain $path_url
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2019-10-25 11:04:41 +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
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# FIND AND OPEN A PORT
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Configuring firewall..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
# Find a free port
|
|
|
|
port=$(ynh_find_port 9009)
|
|
|
|
# Open this port
|
|
|
|
yunohost firewall allow --no-upnp TCP $port 2>&1
|
|
|
|
ynh_app_setting_set $app port $port
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
ynh_install_nodejs $nodejs_version
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-05-01 12:25:53 +02:00
|
|
|
mkdir -p $final_path
|
|
|
|
mkdir -p $config_path
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-10-25 11:04:41 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COPY A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
cp -a ../conf/config.js $config_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
|
|
pushd $final_path
|
|
|
|
npm install --unsafe-perm
|
|
|
|
|
|
|
|
# Install webpack
|
|
|
|
npm install webpack
|
|
|
|
npm install webpack-cli
|
|
|
|
npm install copy-webpack-plugin
|
|
|
|
|
|
|
|
# Build The Lounge
|
|
|
|
NODE_ENV=production npm run build
|
|
|
|
|
|
|
|
popd
|
2015-08-22 20:24:46 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Configuring nginx web server..."
|
2015-08-22 20:24:46 +02:00
|
|
|
|
2018-05-01 12:25:53 +02:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Configuring system user..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
2018-05-01 17:41:35 +02:00
|
|
|
ynh_use_nodejs
|
2018-05-01 18:21:26 +02:00
|
|
|
ynh_replace_string "__NODEJS__" "$nodejs_version" "../conf/systemd.service"
|
2018-05-01 18:03:40 +02:00
|
|
|
ynh_replace_string "__ENV_PATH__" "$PATH" "../conf/systemd.service"
|
|
|
|
ynh_replace_string "__NODE__" "$nodejs_path" "../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
|
|
|
#=================================================
|
|
|
|
# STORE THE CHECKSUM OF THE CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Calculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum "$config_path/config.js"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
chown -R $app: $final_path
|
|
|
|
chown -R $app: $config_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2020-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Configuring log rotation..."
|
2018-05-01 12:25:53 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
|
|
#=================================================
|
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
### `yunohost service add` is a CLI yunohost command to add a service in the admin panel.
|
|
|
|
### You'll find the service in the 'services' section of YunoHost admin panel.
|
|
|
|
### This CLI command would be useless if the app does not have any services (systemd or sysvinit)
|
|
|
|
### If you're not using these lines:
|
|
|
|
### - You can remove these files in conf/.
|
|
|
|
### - Remove the section "REMOVE SERVICE FROM ADMIN PANEL" in the remove script
|
|
|
|
### - As well as the section "ADVERTISE SERVICE IN ADMIN PANEL" in the restore script
|
|
|
|
|
|
|
|
yunohost service add $app --log "/var/log/$app/$app.log"
|
|
|
|
# if using yunohost version 3.2 or more in the 'manifest.json', a description can be added
|
|
|
|
#yunohost service add $app --description "$app daemon for XXX" --log "/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
|
|
### `ynh_systemd_action` is used to start a systemd service for an app.
|
|
|
|
### Only needed if you have configure a systemd service
|
|
|
|
### If you're not using these lines:
|
|
|
|
### - Remove the section "STOP SYSTEMD SERVICE" and "START SYSTEMD SERVICE" in the backup script
|
|
|
|
### - As well as the section "START SYSTEMD SERVICE" in the restore script
|
|
|
|
### - As well as the section"STOP SYSTEMD SERVICE" and "START SYSTEMD SERVICE" in the upgrade script
|
|
|
|
### - And the section "STOP SYSTEMD SERVICE" and "START SYSTEMD SERVICE" in the change_url script
|
2018-05-01 12:25:53 +02:00
|
|
|
|
2019-10-25 11:04:41 +02:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
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
|
|
|
|
2015-08-22 20:24:46 +02:00
|
|
|
# Make app public if necessary
|
2018-05-01 12:25:53 +02:00
|
|
|
if [ $is_public -eq 1 ]
|
2015-08-22 20:24:46 +02:00
|
|
|
then
|
2018-05-01 12:25:53 +02:00
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
2019-10-25 11:04:41 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2015-08-22 20:24:46 +02:00
|
|
|
fi
|
|
|
|
|
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-02-14 18:18:22 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|