2015-08-20 12:20:05 +02:00
#!/bin/bash
2019-01-27 23:36:59 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-09 23:46:07 +01:00
source _common.sh
2020-04-17 14:38:01 +02:00
source /usr/share/yunohost/helpers
2019-01-27 23:36:59 +01:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2015-08-20 12:20:05 +02:00
2019-01-04 18:28:10 +01:00
domain=$YNH_APP_ARG_DOMAIN
2019-01-27 23:36:59 +01:00
path_url=$YNH_APP_ARG_PATH
is_public=$YNH_APP_ARG_IS_PUBLIC
admin=$YNH_APP_ARG_ADMIN
2015-08-19 17:41:15 +02:00
2021-05-15 16:10:33 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-01-27 23:36:59 +01:00
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Validating installation parameters..."
2019-01-27 23:36:59 +01:00
final_path=/var/www/$app
2020-04-17 14:38:01 +02:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2019-01-27 23:36:59 +01:00
# Register (book) web path
2020-04-17 14:38:01 +02:00
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
2019-01-27 23:36:59 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Storing installation settings..."
2019-01-27 23:36:59 +01:00
2020-04-17 14:38:01 +02: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=admin --value=$admin
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +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
2019-01-27 23:36:59 +01:00
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Creating a MySQL database..." --weight=2
2019-01-27 23:36:59 +01:00
2020-04-17 14:38:01 +02:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
db_user=$db_name
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_user --db_name=$db_name
2019-01-27 23:36:59 +01:00
2020-04-17 14:38:01 +02:00
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
2019-01-27 23:36:59 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Setting up source files..." --weight=4
2019-01-27 23:36:59 +01:00
2020-04-17 14:38:01 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
2021-07-03 00:11:54 +02:00
# In case of a new version, the url change from http://download.dotclear.org/latest/dotclear-X.X.X.tar.gz to http://download.dotclear.org/attic/dotclear-X.X.X.tar.gz
src_url=$(grep 'SOURCE_URL=' "../conf/app.src" | cut -d= -f2-)
if ! curl --output /dev/null --silent --head --fail "$src_url"; then
ynh_replace_string --match_string="latest" --replace_string="attic" --target_file="../conf/app.src"
fi
2021-06-17 20:54:11 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2020-04-17 14:38:01 +02:00
ynh_setup_source --dest_dir="$final_path"
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +02:00
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
2019-01-27 23:36:59 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring NGINX web server..."
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +02:00
# Create a dedicated NGINX config
2019-01-27 23:36:59 +01:00
ynh_add_nginx_config
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
2019-01-27 23:36:59 +01:00
2021-05-15 16:10:33 +02:00
# Create a dedicated PHP-FPM config
2019-01-27 23:36:59 +01:00
ynh_add_fpm_config
2020-04-17 14:38:01 +02:00
#=================================================
2021-05-15 16:10:33 +02:00
# ADD A CONFIGURATION
2020-04-17 14:38:01 +02:00
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Adding a configuration file..."
2015-08-19 17:41:15 +02:00
2020-04-17 14:38:01 +02:00
php_config=$final_path/inc/config.php
2019-11-10 02:13:57 +01:00
2020-04-17 14:38:01 +02:00
master_key=$(ynh_string_random --length=30)
ynh_app_setting_set --app=$app --key=master_key --value=$master_key
2019-11-10 02:13:57 +01:00
2019-02-09 23:46:07 +01:00
cp $php_config.in $php_config
2020-04-17 14:38:01 +02:00
admin_url="${path_url%/}/admin/index.php"
email=$(ynh_user_get_info --username=$admin --key=mail)
2015-08-19 17:41:15 +02:00
# Config as if we called in admin/install/wizard.php
2020-04-17 14:38:01 +02:00
ynh_replace_string --match_string="'DC_DBDRIVER', ''" --replace_string="'DC_DBDRIVER', 'mysqli'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBHOST', ''" --replace_string="'DC_DBHOST', 'localhost'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBUSER', ''" --replace_string="'DC_DBUSER', '$db_user'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBPASSWORD', ''" --replace_string="'DC_DBPASSWORD', '$db_pwd'" --target_file=$php_config
ynh_replace_string --match_string="'DC_DBNAME', ''" --replace_string="'DC_DBNAME', '$db_name'" --target_file=$php_config
ynh_replace_string --match_string="'DC_MASTER_KEY', ''" --replace_string="'DC_MASTER_KEY', '$master_key'" --target_file=$php_config
ynh_replace_string --match_string="'DC_ADMIN_URL', ''" --replace_string="'DC_ADMIN_URL', 'https://$domain$admin_url'" --target_file=$php_config
ynh_replace_string --match_string="'DC_ADMIN_MAILFROM', ''" --replace_string="'DC_ADMIN_MAILFROM', '$email'" --target_file=$php_config
2019-02-09 23:46:07 +01:00
2019-03-01 02:05:03 +01:00
# Adding LDAP login
2020-04-17 14:38:01 +02:00
cp ../conf/class.auth.ldap.php $final_path/inc/class.auth.ldap.php
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$final_path/inc/class.auth.ldap.php"
2019-03-01 02:05:03 +01:00
cat << EOF >> $php_config
2020-04-17 23:49:35 +02:00
\$__autoload['ldapDcAuth'] = dirname(__FILE__).'/class.auth.ldap.php';
define('DC_AUTH_CLASS','ldapDcAuth');
2019-03-01 02:05:03 +01:00
EOF
2020-04-17 14:38:01 +02:00
ynh_store_file_checksum --file=$php_config
2019-02-28 00:12:48 +01:00
2021-05-17 22:07:08 +02:00
chmod 400 "$php_config"
chown $app:$app "$php_config"
2019-01-28 01:52:20 +01:00
#=================================================
# SETUP APPLICATION WITH CURL
#=================================================
# Set the app as temporarily public for curl call
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring SSOwat..."
# Making the app public for curl
ynh_permission_update --permission="main" --add="visitors"
2019-01-28 01:52:20 +01:00
# Reload Nginx
2020-04-17 14:38:01 +02:00
ynh_systemd_action --service_name=nginx --action=reload
ynh_script_progression --message="Finalizing installation..." --weight=14
firstname=$(ynh_user_get_info --username=$admin --key=firstname)
lastname=$(ynh_user_get_info --username=$admin --key=lastname)
email=$(ynh_user_get_info --username=$admin --key=mail)
password=$(ynh_string_random --length=30)
2019-01-28 01:52:20 +01:00
# Installation with curl
2019-01-29 02:10:27 +01:00
installUrl="/admin/install/index.php"
2019-01-28 01:52:20 +01:00
2019-01-29 02:10:27 +01:00
ynh_local_curl $installUrl "u_email=$email" "u_firstname=$firstname" "u_name=$lastname" "u_login=$admin" "u_pwd=$password" "u_pwd2=$password"
2021-05-15 16:10:33 +02:00
# Remove the public access
ynh_permission_update --permission="main" --remove="visitors"
2020-04-17 14:38:01 +02:00
#=================================================
# GENERIC FINALIZATION
2020-04-18 01:08:12 +02:00
#=================================================
# SETUP FAIL2BAN
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Configuring Fail2Ban..."
2020-04-18 01:08:12 +02:00
2021-05-15 16:10:33 +02:00
# Create a dedicated Fail2Ban config
2020-04-18 01:25:53 +02:00
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="Invalid credentials in $final_path/inc/class.auth.ldap.php .* client: <HOST>, .*https://$domain${path_url%/}/admin/auth.php"
2020-04-18 01:08:12 +02:00
2019-01-27 23:36:59 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Configuring permissions..."
2015-09-11 17:33:07 +02:00
2021-05-15 16:10:33 +02:00
# Make app public if necessary
if [ $is_public -eq 1 ]
then
# Everyone can access the app.
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission="main" --add="visitors"
2015-08-19 17:41:15 +02:00
fi
2020-04-17 14:38:01 +02:00
# Only the admin can access the admin panel of the app (if the app has an admin panel)
2021-05-15 16:10:33 +02:00
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
2019-11-10 02:33:23 +01:00
2019-01-27 23:36:59 +01:00
#=================================================
# RELOAD NGINX
#=================================================
2021-05-15 16:10:33 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2020-04-17 14:38:01 +02:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2019-01-27 23:36:59 +01:00
2020-04-17 14:38:01 +02:00
ynh_script_progression --message="Installation of $app completed" --last