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
|
2020-11-25 10:34:14 +01:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
|
|
|
password=$YNH_APP_ARG_PASSWORD
|
|
|
|
title=$YNH_APP_ARG_TITLE
|
2018-06-25 05:57:41 +02:00
|
|
|
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
|
|
|
|
#=================================================
|
2020-11-25 10:36:44 +01:00
|
|
|
ynh_script_progression --message="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-24 18:00:33 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..."
|
2019-04-05 12:29:32 +02:00
|
|
|
|
2020-11-30 17:18:40 +01:00
|
|
|
# Bug in NGINX with locations and aliases (see http://stackoverflow.com/a/35102259 )
|
2020-11-24 23:40:11 +01:00
|
|
|
if [ $path_url = "/" ]; then
|
|
|
|
ynh_replace_string "__PATH_HACK__" "" "../conf/nginx.conf"
|
|
|
|
else
|
|
|
|
ynh_replace_string "__PATH_HACK__" "$path_url/$path_url" "../conf/nginx.conf"
|
|
|
|
fi
|
|
|
|
|
2020-11-24 18:00:33 +01:00
|
|
|
# Create a dedicated NGINX config
|
2018-06-25 05:57:41 +02:00
|
|
|
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..."
|
2020-11-25 10:36:44 +01:00
|
|
|
|
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
|
|
|
|
#=================================================
|
2020-11-25 10:36:44 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..."
|
2019-04-05 12:29:32 +02:00
|
|
|
|
2020-11-24 18:00:33 +01: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-11-25 10:34:14 +01:00
|
|
|
#=================================================
|
|
|
|
# MODIFY A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring Shaarli..."
|
|
|
|
|
|
|
|
# Get the timezone
|
|
|
|
timezone=$(cat /etc/timezone)
|
|
|
|
|
|
|
|
# Generate the salt
|
|
|
|
salt=$(php${YNH_PHP_VERSION} -r 'echo sha1(uniqid("", true) ."_". mt_rand());')
|
|
|
|
|
|
|
|
# Generate the hash with the password
|
|
|
|
hash=$(php${YNH_PHP_VERSION} -r "echo sha1('${password}'.'${admin}'.'${salt}');")
|
|
|
|
|
|
|
|
# Generate the API secret
|
|
|
|
secret=$(php${YNH_PHP_VERSION} -r "echo str_shuffle(substr(hash_hmac('sha512', uniqid('${salt}'), '${admin}'), 10, 12));")
|
|
|
|
|
|
|
|
# Set default_private_links. By default, make them public if the app is public.
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
default_private_links=false
|
|
|
|
else
|
|
|
|
default_private_links=true
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Installing the config file and replace the placeholders
|
|
|
|
ynh_add_config --template="../conf/config.json.php" --destination="$final_path/data/config.json.php"
|
|
|
|
|
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-24 18:00:33 +01:00
|
|
|
ynh_script_progression --message="Configuring Fail2Ban..."
|
2020-11-01 16:00:22 +01:00
|
|
|
|
2020-11-24 18:00:33 +01:00
|
|
|
# Create a dedicated Fail2Ban config
|
2020-11-01 16:00:22 +01:00
|
|
|
|
|
|
|
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
|
2020-11-25 11:39:30 +01:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
|
|
|
ynh_permission_update --permission "main" --add "visitors"
|
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-24 18:00:33 +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"
|