2017-12-14 18:03:01 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
2020-04-11 02:27:49 +02:00
source /usr/share/yunohost/helpers
2017-12-14 18:03:01 +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
#=================================================
domain=$YNH_APP_ARG_DOMAIN
path_url=$YNH_APP_ARG_PATH
2020-03-24 02:27:29 +01:00
admin=$YNH_APP_ARG_ADMIN
2017-12-14 18:03:01 +01:00
is_public=$YNH_APP_ARG_IS_PUBLIC
2021-02-25 15:10:59 +01:00
email=$(ynh_user_get_info --username=$admin --key=mail)
2020-06-13 23:58:57 +02:00
password=$(ynh_string_random --length=30)
2017-12-14 18:03:01 +01:00
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Validating installation parameters..." --weight=1
2017-12-14 18:03:01 +01:00
final_path=/var/www/$app
2020-03-24 02:27:29 +01:00
test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
2020-03-24 15:27:09 +01:00
data_path=/home/yunohost.app/$app
test ! -e "$data_path" || ynh_die --message="This path already contains a folder"
2017-12-14 18:03:01 +01:00
# Register (book) web path
2020-06-26 15:59:20 +02:00
ynh_webpath_register --app="$app" --domain="$domain" --path_url="$path_url"
2017-12-14 18:03:01 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Storing installation settings..." --weight=1
2017-12-14 18:03:01 +01:00
2020-06-26 15:59:20 +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"
2017-12-14 18:03:01 +01:00
#=================================================
# STANDARD MODIFICATIONS
#=================================================
2020-03-24 02:27:29 +01:00
# INSTALL DEPENDENCIES
2017-12-14 18:03:01 +01:00
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Installing dependencies..." --weight=1
2019-11-05 17:50:23 +01:00
2020-06-26 15:59:20 +02:00
ynh_install_app_dependencies "$pkg_dependencies"
2019-11-05 17:51:05 +01:00
2017-12-14 18:03:01 +01:00
#=================================================
2020-03-24 02:27:29 +01:00
# CREATE POSTGRESQL DATABASE
2017-12-14 18:03:01 +01:00
#=================================================
2020-03-24 15:11:10 +01:00
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=4
2017-12-14 18:03:01 +01:00
ynh_psql_test_if_first_run
2020-03-24 02:27:29 +01:00
2020-06-26 15:59:20 +02:00
db_name=$(ynh_sanitize_dbid --db_name="$app")
2020-06-13 23:58:57 +02:00
db_user=$db_name
2020-06-26 15:59:20 +02:00
ynh_app_setting_set --app="$app" --key=db_name --value="$db_name"
ynh_psql_setup_db --db_user="$db_user" --db_name="$db_name"
2020-03-24 02:27:29 +01:00
2020-06-26 15:59:20 +02:00
db_pwd=$(ynh_app_setting_get "$app" psqlpwd)
2020-03-24 02:27:29 +01:00
2017-12-14 18:03:01 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-03-24 15:11:10 +01:00
ynh_script_progression --message="Setting up source files..." --weight=6
2017-12-14 18:03:01 +01:00
2020-06-26 15:59:20 +02:00
ynh_app_setting_set --app="$app" --key=final_path --value="$final_path"
2017-12-14 18:03:01 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2020-03-24 02:27:29 +01:00
ynh_setup_source --dest_dir="$final_path"
2017-12-14 18:03:01 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-11-30 21:43:05 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
2017-12-14 18:03:01 +01:00
2020-11-30 21:43:05 +01:00
# Create a dedicated NGINX config
2020-06-13 23:58:57 +02:00
ynh_add_nginx_config
2017-12-14 18:03:01 +01:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-03-24 15:11:10 +01:00
ynh_script_progression --message="Configuring system user..." --weight=2
2017-12-14 18:03:01 +01:00
# Create a system user
2020-06-26 15:59:20 +02:00
ynh_system_user_create --username="$app"
2020-03-24 02:27:29 +01:00
2017-12-14 18:03:01 +01:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-30 21:43:05 +01:00
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
2018-09-01 14:32:40 +02:00
2017-12-14 18:03:01 +01:00
# Create a dedicated php-fpm config
2020-06-13 23:58:57 +02:00
ynh_add_fpm_config --package="$extra_php_dependencies"
2020-06-26 15:59:20 +02:00
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
2017-12-14 18:03:01 +01:00
#=================================================
# SPECIFIC SETUP
#=================================================
2020-03-24 02:27:29 +01:00
# SECURE FILES AND DIRECTORIES
2017-12-14 18:03:01 +01:00
#=================================================
2020-06-26 15:59:20 +02:00
ynh_app_setting_set --app="$app" --key=data_path --value="$data_path"
mkdir -p "$data_path"
2021-02-25 15:10:59 +01:00
chown -R $app: "$data_path"
chown -R $app: "$final_path"
2017-12-14 18:03:01 +01:00
#=================================================
2020-03-24 02:27:29 +01:00
# SETUP APPLICATION
2017-12-14 18:03:01 +01:00
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Setting up the application..." --weight=190
2017-12-14 18:03:01 +01:00
2021-02-25 15:10:59 +01:00
exec_as $app php${phpversion} "$final_path/admin/cli/install.php" --wwwroot="https://$domain${path_url%/}" --dataroot="$data_path" --dbtype='pgsql' --dbname="$db_name" --dbuser="$db_name" --dbpass="$db_pwd" --adminuser="$admin" --adminpass="$password" --adminemail="$email" --fullname="YunoHost" --shortname="YNH" --non-interactive --agree-license
2020-03-24 02:27:29 +01:00
# Calculate and store the config file checksum into the app settings
ynh_store_file_checksum "$final_path/config.php"
2017-12-14 18:03:01 +01:00
2020-03-24 18:19:49 +01:00
#=================================================
# ACTIVATE LDAP SUPPORT
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Activate LDAP support..." --weight=3
2020-03-24 18:19:49 +01:00
2020-06-26 15:59:20 +02:00
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config SET value='ldap,email' WHERE name='auth';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='ldap://127.0.0.1/' WHERE plugin='auth_ldap' AND name='host_url';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='uid' WHERE plugin='auth_ldap' AND name='user_attribute';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='ou=users,dc=yunohost,dc=org' WHERE plugin='auth_ldap' AND name='contexts';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='givenName' WHERE plugin='auth_ldap' AND name='field_map_firstname';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='sn' WHERE plugin='auth_ldap' AND name='field_map_lastname';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='mail' WHERE plugin='auth_ldap' AND name='field_map_email';"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='onlogin' WHERE plugin='auth_ldap' AND (name='field_updatelocal_firstname' OR name='field_updatelocal_lastname' OR name='field_updatelocal_email');"
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_config_plugins SET value='locked' WHERE plugin='auth_ldap' AND (name='field_lock_firstname' OR name='field_lock_lastname' OR name='field_lock_email');"
2020-03-24 18:19:49 +01:00
2020-03-24 18:38:07 +01:00
# The admin is an ldap user
2020-06-26 15:59:20 +02:00
ynh_psql_execute_as_root --database="$db_name" --sql="UPDATE public.mdl_user SET auth='ldap' WHERE username='$admin';"
2020-03-24 18:38:07 +01:00
2021-02-25 15:10:59 +01:00
exec_as $app php${phpversion} "$final_path/admin/cli/purge_caches.php"
2020-03-24 18:19:49 +01:00
2017-12-14 18:03:01 +01:00
#=================================================
2020-03-24 02:27:29 +01:00
# ADD CRON JOB
2017-12-14 18:03:01 +01:00
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Adding cron job..." --weight=2
2017-12-14 18:03:01 +01:00
# Set up poller
2020-06-14 04:13:13 +02:00
cp "../conf/cron" "/etc/cron.d/$app"
2020-11-30 21:43:05 +01:00
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="/etc/cron.d/$app"
ynh_replace_string --match_string="__FINAL_PATH__" --replace_string="$final_path" --target_file="/etc/cron.d/$app"
ynh_replace_string --match_string="__PHPVERSION__" --replace_string="$phpversion" --target_file="/etc/cron.d/$app"
2017-12-14 18:03:01 +01:00
2020-03-24 02:27:29 +01:00
#=================================================
# GENERIC FINALIZATION
2020-06-13 23:58:57 +02:00
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Securing files and directories..." --weight=1
2020-06-13 23:58:57 +02:00
# Set permissions to app files
2021-02-25 15:10:59 +01:00
chown -R $app: "$data_path"
chown -R $app: "$final_path"
2020-06-13 23:58:57 +02:00
2017-12-14 18:03:01 +01:00
#=================================================
# SETUP SSOWAT
#=================================================
2021-02-25 15:10:59 +01:00
ynh_script_progression --message="Configuring permissions..." --weight=1
2017-12-14 18:03:01 +01:00
# Make app public if necessary
2021-02-25 15:10:59 +01:00
if [ $is_public -eq 1 ]
2017-12-14 18:03:01 +01:00
then
2021-02-25 15:10:59 +01:00
ynh_permission_update --permission="main" --add="visitors"
2017-12-14 18:03:01 +01:00
fi
#=================================================
# RELOAD NGINX
#=================================================
2020-11-30 21:43:05 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2020-03-24 02:27:29 +01:00
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2017-12-14 18:03:01 +01:00
2020-11-30 21:43:05 +01:00
ynh_script_progression --message="Installation of Moodle completed" --last