2016-06-02 16:10:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
source _common.sh
|
2018-08-05 02:02:55 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
true
|
|
|
|
}
|
2018-08-05 02:02:55 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
2016-06-02 16:10:37 +02:00
|
|
|
|
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2018-08-05 02:02:55 +02:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2020-12-03 09:31:53 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Validating installation parameters..." --weight=1
|
2020-12-03 09:31:53 +01:00
|
|
|
|
2022-04-04 20:14:17 +02:00
|
|
|
if [[ "$path_url" != "/" ]]
|
|
|
|
then
|
|
|
|
# We use the path url name (e.g. /documents) instead of h5ai for convenience...
|
|
|
|
final_path=/var/www$path_url
|
|
|
|
else
|
|
|
|
final_path=/var/www/$app
|
|
|
|
fi
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
# Register (book) web path
|
2020-07-08 09:49:14 +02:00
|
|
|
ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Storing installation settings..." --weight=1
|
2022-03-31 19:39:38 +02:00
|
|
|
|
|
|
|
ynh_app_setting_set --app=$app --key=domain --value=$domain
|
|
|
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=1
|
2022-03-31 19:39:38 +02:00
|
|
|
|
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2018-08-05 02:02:55 +02:00
|
|
|
|
|
|
|
#=================================================
|
2021-05-26 12:16:06 +02:00
|
|
|
# CREATE DEDICATED USER
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Configuring system user..." --weight=1
|
2018-08-05 02:02:55 +02:00
|
|
|
|
2021-05-26 12:16:06 +02:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-04-04 20:21:11 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=4
|
2018-08-05 02:02:55 +02:00
|
|
|
|
2021-05-26 12:16:06 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
2018-08-05 02:02:55 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2022-03-31 19:39:38 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path"
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2021-05-26 12:16:06 +02:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
|
|
|
|
2022-10-16 20:26:47 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
2020-07-08 09:49:14 +02:00
|
|
|
#=================================================
|
2020-12-02 12:13:13 +01:00
|
|
|
# NGINX CONFIGURATION
|
2020-07-08 09:49:14 +02:00
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2020-12-02 12:13:13 +01:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
# Create a dedicated NGINX config
|
2020-12-02 12:13:13 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
#=================================================
|
2022-10-16 20:26:47 +02:00
|
|
|
# GENERIC FINALIZATION
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Configuring permissions..." --weight=1
|
2018-08-05 02:02:55 +02:00
|
|
|
|
2022-03-31 19:39:38 +02:00
|
|
|
# Make app public if necessary
|
2018-08-05 02:02:55 +02:00
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
2022-03-31 19:39:38 +02:00
|
|
|
# Everyone can access the app.
|
|
|
|
# The "main" permission is automatically created before the install script.
|
2021-02-02 10:55:41 +01:00
|
|
|
ynh_permission_update --permission="main" --add="visitors"
|
2018-08-05 02:02:55 +02:00
|
|
|
fi
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2018-08-05 02:02:55 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2016-06-02 16:10:37 +02:00
|
|
|
|
2020-07-08 09:49:14 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-06-24 18:59:21 +02:00
|
|
|
|
2022-04-04 20:12:41 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|