2014-06-17 23:42:54 +02:00
#!/bin/bash
2017-03-01 19:37:00 +01:00
#=================================================
2021-05-16 16:15:54 +02:00
# GENERIC START
2017-03-01 19:37:00 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-15 23:56:35 +02:00
2017-03-19 23:03:07 +01:00
source _common.sh
2017-03-01 19:37:00 +01:00
source /usr/share/yunohost/helpers
#=================================================
2021-05-16 16:15:54 +02:00
# MANAGE SCRIPT FAILURE
2017-03-01 19:37:00 +01:00
#=================================================
2019-01-19 12:13:45 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-03-01 19:37:00 +01:00
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2016-06-15 23:56:35 +02:00
2016-11-08 13:32:06 +01:00
domain=$YNH_APP_ARG_DOMAIN
2017-03-01 19:37:00 +01:00
path_url=$YNH_APP_ARG_PATH
2016-11-08 13:32:06 +01:00
admin=$YNH_APP_ARG_ADMIN
is_public=$YNH_APP_ARG_IS_PUBLIC
2021-05-16 16:15:54 +02:00
language=$YNH_APP_ARG_LANGUAGE
2021-09-25 16:03:35 +02:00
user_pwd=$YNH_APP_ARG_PASSWORD
2016-11-08 13:32:06 +01:00
app=$YNH_APP_INSTANCE_NAME
2017-03-01 19:37:00 +01:00
#=================================================
2021-05-16 16:15:54 +02:00
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
2017-03-01 19:37:00 +01:00
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=2
2014-06-17 23:42:54 +02:00
2017-09-05 00:24:01 +02:00
final_path=/var/www/$app
2019-05-20 23:09:08 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2017-09-05 00:24:01 +02:00
# Register (book) web path
2019-05-20 23:09:08 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2014-06-17 23:42:54 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=2
2014-06-17 23:42:54 +02:00
2021-05-16 16:15:54 +02:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
ynh_app_setting_set --app=$app --key=path --value=$path_url
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=admin --value=$admin
ynh_app_setting_set --app=$app --key=language --value=$language
ynh_app_setting_set --app=$app --key=overwrite_nginx --value=1
ynh_app_setting_set --app=$app --key=overwrite_phpfpm --value=1
ynh_app_setting_set --app=$app --key=admin_mail_html --value=1
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# STANDARD MODIFICATIONS
2021-05-16 16:15:54 +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-03-01 19:37:00 +01:00
#=================================================
2019-01-19 12:13:45 +01:00
# CREATE A MYSQL DATABASE
2017-03-01 19:37:00 +01:00
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Creating a MySQL database..."
2017-03-01 19:37:00 +01:00
2019-05-20 23:09:08 +02:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
2021-05-16 16:15:54 +02:00
db_user=$db_name
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
2021-05-16 16:15:54 +02:00
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Setting up source files..." --weight=3
2015-11-22 14:37:01 +01:00
2019-05-20 23:09:08 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
2015-11-22 14:37:01 +01:00
2021-05-16 16:15:54 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2017-03-01 19:37:00 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-11-25 20:55:09 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
2016-06-15 23:56:35 +02:00
2020-11-25 20:55:09 +01:00
# Create a dedicated NGINX config
2017-09-05 00:24:01 +02:00
ynh_add_nginx_config
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-25 20:55:09 +01:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
2017-03-01 19:37:00 +01:00
2020-11-25 20:55:09 +01:00
# Create a dedicated PHP-FPM config
2019-06-02 13:47:14 +02:00
ynh_add_fpm_config --usage=low --footprint=low
2020-11-25 20:55:09 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2014-06-17 23:42:54 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# SPECIFIC SETUP
#=================================================
2021-05-16 16:15:54 +02:00
# SETUP APPLICATION WITH CURL
2017-03-01 19:37:00 +01:00
#=================================================
2021-05-16 16:15:54 +02:00
ynh_script_progression --message="Setuping application with CURL..." --weight=5
2014-08-21 23:34:29 +02:00
2021-09-10 22:10:09 +02:00
# Making the app public for cURL
2021-05-16 16:15:54 +02:00
ynh_permission_update --permission="main" --add="visitors"
2021-03-15 00:26:30 +01:00
2021-05-16 16:15:54 +02:00
# Installation with curl
ynh_script_progression --message="Finalizing installation..."
2021-09-25 23:17:14 +02:00
2017-06-13 17:11:10 +02:00
ynh_local_curl "/install.php?installButton" "install_changeLngLeed=$language" "root=$domain$path_url" "mysqlHost=localhost" "mysqlLogin=$db_name" "mysqlMdp=$db_pwd" "mysqlBase=$db_name" "mysqlPrefix=leed_" "login=$admin" "password=$user_pwd"
2014-08-21 23:30:09 +02:00
2021-05-16 16:15:54 +02:00
# Remove the public access
ynh_permission_update --permission="main" --remove="visitors"
2017-03-01 19:37:00 +01:00
#=================================================
# RETRIEVE SYNCHRONISATION CODE
#=================================================
2015-11-22 14:37:01 +01:00
2017-03-01 19:37:00 +01:00
code_sync=$(mysql -h localhost -u $db_name -p$db_pwd -s $db_name -e 'SELECT value FROM leed_configuration WHERE `key`="synchronisationCode"' | sed -n 1p)
2014-08-21 23:30:09 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# SETUP CRON FILE FOR SYNCHRONISATION
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Setting up a cron file..."
2015-11-22 14:37:01 +01:00
2021-05-16 16:15:54 +02:00
ynh_add_config --template="../conf/cron_leed" --destination="/etc/cron.d/$app"
2014-08-17 17:46:25 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
# GENERIC FINALISATION
2017-12-11 20:37:45 +01:00
#=================================================
# SETUP FAIL2BAN
#=================================================
2020-11-25 20:55:09 +01:00
ynh_script_progression --message="Configuring Fail2Ban..." --weight=9
2017-12-11 20:37:45 +01:00
2021-05-16 16:15:54 +02:00
# Create a dedicated Fail2Ban config
2019-01-19 12:00:42 +01:00
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="PHP message: Leed: wrong login for .* client: <HOST>" --max_retry=5
2017-12-11 20:37:45 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-09-10 22:10:09 +02:00
ynh_script_progression --message="Configuring permissions..." --weight=2
2021-03-15 00:26:30 +01:00
# Make app public if necessary
2021-05-16 16:15:54 +02:00
if [ $is_public -eq 1 ]
2014-08-20 13:27:58 +02:00
then
2021-03-15 00:26:30 +01:00
ynh_permission_update --permission="main" --add="visitors"
2014-08-20 13:27:58 +02:00
fi
2017-03-01 19:37:00 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2020-11-25 20:55:09 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=3
2017-03-01 19:37:00 +01:00
2019-05-20 23:09:08 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2017-12-16 23:21:37 +01:00
#=================================================
# SEND A README FOR THE ADMIN
#=================================================
2019-01-21 13:09:35 +01:00
# Get main domain and buid the url of the admin panel of the app.
admin_panel="https://$(grep portal_domain /etc/ssowat/conf.json | cut -d'"' -f4)/yunohost/admin/#/apps/$app"
2019-01-30 19:26:05 +01:00
echo "Please take note of your password for this application: '$user_pwd'.
2017-12-16 23:21:37 +01:00
2019-01-30 19:26:05 +01:00
You can configure this app easily by using the experimental __URL_TAG1__config-panel feature__URL_TAG2__$admin_panel/config-panel__URL_TAG3__.
You can also find some specific actions for this app by using the experimental __URL_TAG1__action feature__URL_TAG2__$admin_panel/actions__URL_TAG3__.
2019-01-21 13:09:35 +01:00
2019-01-30 19:26:05 +01:00
If you're facing an issue or want to improve this app, please open a new issue in this __URL_TAG1__project__URL_TAG2__https://github.com/YunoHost-Apps/leed_ynh__URL_TAG3__." > mail_to_send
2017-12-16 23:21:37 +01:00
2019-05-20 23:09:08 +02:00
ynh_send_readme_to_admin --app_message="mail_to_send" --recipients="$admin" --type=install
2019-01-30 16:15:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Installation of $app completed" --last