2013-12-19 03:02:51 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2018-09-30 04:20:19 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
2018-06-25 05:57:41 +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
|
2017-02-26 17:11:40 +01:00
|
|
|
|
2017-06-17 12:13:14 +02:00
|
|
|
#=================================================
|
2018-09-30 04:20:19 +02:00
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
2017-06-17 12:13:14 +02:00
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Validating installation parameters..."
|
2017-06-17 12:13:14 +02:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
final_path=/var/www/$app
|
2020-11-01 16:00:22 +01:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
# Register (book) web path
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2019-04-05 12:29:32 +02:00
|
|
|
ynh_print_info "Storing installation settings..."
|
2018-06-25 05:57:41 +02:00
|
|
|
|
2020-11-01 16:00:22 +01: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
|
2013-12-19 03:02:51 +01:00
|
|
|
|
2019-04-05 12:29:32 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Installing dependencies..."
|
2019-04-05 12:29:32 +02:00
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2017-02-19 23:17:19 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..."
|
2018-06-25 05:57:41 +02:00
|
|
|
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-06-25 05:57:41 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2013-12-19 03:02:51 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Configuring nginx web server..."
|
2019-04-05 12:29:32 +02:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2017-02-26 17:11:40 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Configuring system user..."
|
2018-06-25 05:57:41 +02:00
|
|
|
# Create a system user
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_system_user_create --username=$app
|
2017-02-26 17:11:40 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-04-05 12:29:32 +02:00
|
|
|
ynh_print_info "Configuring php-fpm..."
|
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
# Create a dedicated php-fpm config
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low --package="$extra_php_dependencies"
|
2013-12-19 03:02:51 +01:00
|
|
|
|
2018-09-27 22:44:34 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Configuring log rotation..."
|
2018-09-27 22:44:34 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
2019-09-26 14:21:49 +02:00
|
|
|
touch "$final_path/data/log.txt"
|
2018-09-27 22:44:34 +02:00
|
|
|
ynh_use_logrotate "$final_path/data/log.txt"
|
|
|
|
|
2020-04-17 14:44:38 +02:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
# set proper permissions
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Set permissions..."
|
|
|
|
|
2020-04-17 14:44:38 +02:00
|
|
|
find $final_path -type f | xargs chmod 644
|
|
|
|
find $final_path -type d | xargs chmod 755
|
|
|
|
|
|
|
|
# Set right permissions for curl install
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Set rights..."
|
2020-04-17 14:44:38 +02:00
|
|
|
chown -R $app: $final_path
|
2018-09-27 22:44:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Configuring fail2ban..."
|
|
|
|
|
|
|
|
# Create a dedicated fail2ban config
|
|
|
|
|
|
|
|
ynh_add_fail2ban_config --logpath="$final_path/data/log.txt" --failregex="\s-\s<HOST>\s-\sLogin failed for user.*$"
|
2018-09-27 22:44:34 +02:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Configuring SSOwat..."
|
2018-06-25 05:57:41 +02:00
|
|
|
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2019-04-05 12:29:32 +02:00
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/"
|
2018-06-25 05:57:41 +02:00
|
|
|
fi
|
2020-11-11 14:06:42 +01:00
|
|
|
|
2018-06-25 05:57:41 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Reloading nginx web server..."
|
2018-06-25 05:57:41 +02:00
|
|
|
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-04-05 12:29:32 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-01 16:00:22 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed"
|