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
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
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
|
2021-02-26 12:26:48 +01:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2017-10-19 12:31:32 +02:00
|
|
|
|
|
|
|
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-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="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
|
2019-05-06 20:34:37 +02:00
|
|
|
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
|
2017-10-19 12:34:02 +02:00
|
|
|
|
|
|
|
# Register (book) web path
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..."
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=adminusername --value=$admin
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2021-12-17 12:08:46 +01:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=3
|
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# CREATE A MYSQL DATABASE
|
|
|
|
#================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Creating a MySQL database..." --weight=2
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
db_name=$(ynh_sanitize_dbid --db_name=$app)
|
|
|
|
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
|
|
|
|
ynh_mysql_setup_db --db_user=$db_name --db_name=$db_name
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2021-06-07 23:50:22 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=2
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2017-10-21 22:52:21 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2019-02-15 19:49:22 +01:00
|
|
|
|
|
|
|
mkdir -p $final_path/sessions/
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2021-06-07 23:50:22 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chown -R $app $final_path/{data,plugins,sessions}
|
|
|
|
chmod -R 700 $final_path/sessions
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=16
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
# Create a dedicated PHP-FPM config
|
2021-12-17 12:08:46 +01:00
|
|
|
ynh_add_fpm_config
|
2020-10-30 15:08:59 +01:00
|
|
|
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2019-02-15 19:49:22 +01:00
|
|
|
# CREATE CONFIG.PHP
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Configuring Kanboard..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2021-06-11 23:50:05 +02:00
|
|
|
dir="__DIR__"
|
|
|
|
ynh_add_config --template="../conf/config.php" --destination="$final_path/config.php"
|
2021-06-07 23:50:22 +02:00
|
|
|
|
|
|
|
chmod 400 "$final_path/config.php"
|
|
|
|
chown $app "$final_path/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-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Initializing database..." --weight=7
|
2014-07-20 14:09:41 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_mysql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" < "${final_path}/app/Schema/Sql/mysql.sql"
|
2021-02-26 12:26:48 +01:00
|
|
|
|
|
|
|
pushd $final_path
|
2020-06-07 19:20:26 +02:00
|
|
|
# Launch database migration
|
2021-02-26 12:26:48 +01:00
|
|
|
php$phpversion cli db:migrate --no-interaction --verbose
|
|
|
|
popd
|
2017-10-19 14:57:07 +02:00
|
|
|
|
2018-11-20 22:43:27 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP FAIL2BAN
|
|
|
|
#=================================================
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Configuring Fail2Ban..." --weight=10
|
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
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP CRON
|
|
|
|
#=================================================
|
2021-02-26 12:26:48 +01:00
|
|
|
ynh_script_progression --message="Setuping a cron..." --weight=1
|
|
|
|
|
2021-06-08 09:03:10 +02:00
|
|
|
ynh_add_config --template="../conf/cron_kanboard" --destination="/etc/cron.d/$app"
|
2020-10-30 15:08:59 +01:00
|
|
|
|
2020-12-28 08:15:16 +01:00
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2020-10-30 15:08:59 +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-05-06 20:34:37 +02:00
|
|
|
ynh_script_progression --message="Configuring SSOwat..." --weight=2
|
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
|
2021-03-15 22:36:42 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2021-06-08 09:39:47 +02:00
|
|
|
ynh_replace_string --match_string="define('LDAP_AUTH'.*$" --replace_string="define('LDAP_AUTH', true);" --target_file="$final_path/config.php"
|
|
|
|
ynh_replace_string --match_string="define('HIDE_LOGIN_FORM'.*$" --replace_string="define('HIDE_LOGIN_FORM', false);" --target_file="$final_path/config.php"
|
|
|
|
ynh_replace_string --match_string="define('REMEMBER_ME_AUTH'.*$" --replace_string="define('REMEMBER_ME_AUTH', true);" --target_file="$final_path/config.php"
|
|
|
|
ynh_replace_string --match_string="define('DISABLE_LOGOUT'.*$" --replace_string="define('DISABLE_LOGOUT', false);" --target_file="$final_path/config.php"
|
2018-01-18 18:55:08 +01:00
|
|
|
else
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=unprotected_uris --value="/jsonrpc.php"
|
2016-05-05 12:58:52 +02:00
|
|
|
fi
|
|
|
|
|
2022-01-03 17:52:10 +01:00
|
|
|
ynh_permission_create --permission "ics" --url "/controller=ICalendarController" --allowed "visitors" --label "ICS Public access"
|
|
|
|
|
2019-02-15 19:49:22 +01:00
|
|
|
# Calculate and store the config file checksum into the app settings
|
2021-06-08 09:39:47 +02:00
|
|
|
ynh_store_file_checksum --file="$final_path/config.php"
|
2019-02-15 19:49:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-02-26 12:26:48 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-15 19:49:22 +01:00
|
|
|
|
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
|
|
|
|
2020-10-30 15:08:59 +01:00
|
|
|
ynh_script_progression --message="Installation of Kanboard completed" --last
|