2014-07-20 14:09:41 +02:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-01-17 17:51:12 +01:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
source _common.sh
|
2016-07-23 14:54:26 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2019-02-15 19:54:10 +01:00
|
|
|
# Overload the helper ynh_handle_getopts_args to have fixes from unstable.
|
|
|
|
# Needed for ynh_add_fail2ban_config
|
|
|
|
source _getopts_fix.sh
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
2017-10-19 12:13:47 +02:00
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2017-10-19 12:31:32 +02:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2017-10-19 15:03:38 +02:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2017-10-19 12:31:32 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Validating installation parameters..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
# Check destination directory
|
2019-02-15 19:49:22 +01:00
|
|
|
final_path=/var/www/$app
|
2017-10-21 22:52:21 +02:00
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
|
2017-10-19 12:34:02 +02:00
|
|
|
# Normalize the url path syntax
|
2017-10-19 15:40:50 +02:00
|
|
|
path_url=$(ynh_normalize_url_path "$path_url")
|
2017-10-19 12:34:02 +02:00
|
|
|
|
|
|
|
# Register (book) web path
|
2017-10-19 15:03:38 +02:00
|
|
|
ynh_webpath_register "$app" "$domain" "$path_url"
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Storing installation settings..."
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_app_setting_set $app domain $domain
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
ynh_app_setting_set $app adminusername $admin
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
2017-10-23 16:17:55 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Installing dependencies..."
|
2017-10-23 16:17:55 +02:00
|
|
|
|
2018-04-13 17:37:55 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Creating a MySQL database..."
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
db_name=$(ynh_sanitize_dbid $app)
|
|
|
|
ynh_app_setting_set $app db_name $db_name
|
|
|
|
ynh_mysql_setup_db $db_name $db_name
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Setting up source files..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_app_setting_set $app final_path $final_path
|
2017-10-21 22:52:21 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2017-10-19 14:57:07 +02:00
|
|
|
ynh_setup_source "$final_path"
|
2019-02-15 19:49:22 +01:00
|
|
|
|
|
|
|
mkdir -p $final_path/sessions/
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Configuring nginx web server..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Create a dedicated nginx config
|
2017-10-21 22:52:21 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Configuring system user..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2017-10-21 23:15:17 +02:00
|
|
|
# Create a system user
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_system_user_create $app
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Configuring php-fpm..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Create a dedicated php-fpm config
|
2017-10-21 22:52:21 +02:00
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# CREATE CONFIG.PHP
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Configuring kanboard..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
# Retrieve admin email
|
2019-02-15 19:49:22 +01:00
|
|
|
email=$(ynh_user_get_info $admin mail)
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2014-10-22 21:21:37 +02:00
|
|
|
# Copy and edit config.php
|
2017-10-19 14:57:07 +02:00
|
|
|
config_php="${final_path}/config.php"
|
|
|
|
|
|
|
|
cp ../conf/config.php "$config_php"
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_replace_string "__DB_PWD__" "$db_pwd" "$config_php"
|
|
|
|
ynh_replace_string "__DB_NAME__" $db_name "$config_php"
|
|
|
|
ynh_replace_string "__USER__" $admin "$config_php"
|
|
|
|
ynh_replace_string "__EMAIL__" $email "$config_php"
|
|
|
|
ynh_replace_string "__DOMAIN__" $domain "$config_php"
|
2014-07-20 18:10:20 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# DATABASE INITIALIZATION
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Initializing database..."
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < "${final_path}/app/Schema/Sql/mysql.sql"
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#================================================
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
|
|
|
chown -R $app $final_path/{data,plugins,sessions}
|
|
|
|
chmod -R 700 $final_path/sessions
|
2015-10-20 15:44:33 +02:00
|
|
|
|
2018-11-20 22:43:27 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Configuring fail2ban..."
|
2018-11-20 22:43:27 +01:00
|
|
|
|
2019-02-15 19:54:10 +01:00
|
|
|
ynh_add_fail2ban_config --logpath="/var/log/nginx/$domain-error.log" --failregex="^.*authentication failure\" while reading response header from upstream, client: <HOST>,.*$" --max_retry=5
|
2018-11-20 22:43:27 +01:00
|
|
|
|
2017-10-19 15:03:38 +02:00
|
|
|
#=================================================
|
2017-10-21 22:52:21 +02:00
|
|
|
# SETUP SSOWAT
|
2017-10-19 15:03:38 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Configuring SSOwat..."
|
2017-10-19 12:13:47 +02:00
|
|
|
|
2016-05-05 12:58:52 +02:00
|
|
|
# Make app public or private
|
2019-02-15 19:49:22 +01:00
|
|
|
if [ $is_public -eq 1 ]
|
2016-05-05 12:58:52 +02:00
|
|
|
then
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
2017-10-19 14:57:07 +02:00
|
|
|
ynh_replace_string "define('LDAP_AUTH'.*$" "define('LDAP_AUTH', true);" "$config_php"
|
|
|
|
ynh_replace_string "define('HIDE_LOGIN_FORM'.*$" "define('HIDE_LOGIN_FORM', false);" "$config_php"
|
|
|
|
ynh_replace_string "define('REMEMBER_ME_AUTH'.*$" "define('REMEMBER_ME_AUTH', true);" "$config_php"
|
|
|
|
ynh_replace_string "define('DISABLE_LOGOUT'.*$" "define('DISABLE_LOGOUT', false);" "$config_php"
|
2018-01-18 18:55:08 +01:00
|
|
|
else
|
2019-02-15 19:49:22 +01:00
|
|
|
ynh_app_setting_set $app unprotected_uris "/jsonrpc.php"
|
2016-05-05 12:58:52 +02:00
|
|
|
fi
|
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum "$config_php"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Reloading nginx web server..."
|
2019-02-15 19:49:22 +01:00
|
|
|
|
|
|
|
systemctl reload nginx
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2019-02-17 20:55:37 +01:00
|
|
|
# END OF SCRIPT
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2016-07-23 17:37:17 +02:00
|
|
|
|
2019-02-17 20:55:37 +01:00
|
|
|
ynh_print_info "Installation of $app completed"
|