2015-11-11 18:03:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2017-03-02 15:44:54 +01:00
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2018-09-03 23:31:52 +02:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2020-07-10 19:22:37 +02:00
|
|
|
admin=$YNH_APP_ARG_ADMIN
|
2017-03-02 15:44:54 +01:00
|
|
|
language=$YNH_APP_ARG_LANGUAGE
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
### If the app uses nginx as web server (written in HTML/PHP in most cases), the final path should be "/var/www/$app".
|
|
|
|
### If the app provides an internal web server (or uses another application server such as uwsgi), the final path should be "/opt/yunohost/$app"
|
|
|
|
final_path=/var/www/$app
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
# Check web path availability
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_webpath_available --domain=$domain --path_url=$path_url
|
2018-09-03 23:31:52 +02:00
|
|
|
# Register (book) web path
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2020-07-10 19:22:37 +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
|
|
|
|
ynh_app_setting_set --app=$app --key=language --value=$language
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
2018-09-03 21:35:41 +02:00
|
|
|
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-09-03 23:31:52 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_setup_source --dest_dir=$final_path
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2017-03-02 17:03:30 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
# Create a dedicated nginx config
|
2021-01-21 22:40:50 +01:00
|
|
|
ynh_add_nginx_config
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2018-09-03 23:39:42 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
2018-09-03 23:39:42 +02:00
|
|
|
|
|
|
|
# Create a system user
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir=$final_path
|
2018-09-03 23:39:42 +02:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=3
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
# Create a dedicated php-fpm config
|
2021-01-21 22:40:50 +01:00
|
|
|
ynh_add_fpm_config --usage=medium --footprint=medium --package="$extra_php_dependencies"
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
|
|
|
|
# Set permissions on app files
|
|
|
|
chown -R $app:www-data $final_path
|
|
|
|
find $final_path -type f -exec chmod 664 {} \;
|
|
|
|
find $final_path/bin -type f -exec chmod 775 {} \;
|
|
|
|
find $final_path -type d -exec chmod 775 {} \;
|
|
|
|
find $final_path -type d -exec chmod +s {} \;
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL LDAP PLUGIN
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing and configuring LDAP plugin..." --weight=1
|
|
|
|
|
|
|
|
pushd "$final_path"
|
2021-01-06 18:21:30 +01:00
|
|
|
exec_as $app php${YNH_PHP_VERSION} bin/gpm install login-ldap --all-yes --no-interaction
|
2020-07-10 19:22:37 +02:00
|
|
|
exec_as $app mkdir -p user/config/plugins/login-ldap
|
|
|
|
exec_as $app touch user/accounts/admin.yaml
|
|
|
|
popd
|
|
|
|
|
|
|
|
ynh_secure_remove "$final_path/user/plugins/login-ldap/login-ldap.yaml"
|
|
|
|
exec_as $app cp ../conf/login-ldap.yaml "$final_path/user/plugins/login-ldap/login-ldap.yaml"
|
|
|
|
ynh_replace_string "__ADMIN__" "$admin" "$final_path/user/plugins/login-ldap/login-ldap.yaml"
|
|
|
|
ynh_replace_string "__APP__" "$app" "$final_path/user/plugins/login-ldap/login-ldap.yaml"
|
|
|
|
exec_as $app cp "$final_path/user/plugins/login-ldap/login-ldap.yaml" "$final_path/user/config/plugins/login-ldap.yaml"
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
2021-02-07 17:05:09 +01:00
|
|
|
# CREATE A CRON TASK
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
echo "* * * * * $app php$phpversion $final_path/bin/grav scheduler 1>> /dev/null 2>&1" > /etc/cron.d/$app
|
|
|
|
|
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
# SETUP PERMISSIONS
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --weight=1
|
|
|
|
|
|
|
|
# Giving admin permission to the specified used
|
|
|
|
ynh_permission_create --permission "admin" --allowed $admin
|
|
|
|
|
|
|
|
# Creating user permission
|
|
|
|
ynh_permission_create --permission "user"
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
# Make app public if necessary
|
2020-07-10 19:22:37 +02:00
|
|
|
if [ $is_public -eq 1 ]
|
2017-03-08 00:50:23 +01:00
|
|
|
then
|
2020-07-10 19:22:37 +02:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
|
|
|
ynh_permission_update --permission "main" --add "visitors"
|
2017-03-08 00:50:23 +01:00
|
|
|
fi
|
2015-11-11 18:03:16 +01:00
|
|
|
|
2018-09-03 23:31:52 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2019-10-26 15:25:19 +02:00
|
|
|
|
2021-01-20 08:52:18 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-10-26 15:25:19 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-03-02 15:44:54 +01:00
|
|
|
|
2020-07-10 19:22:37 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|