2013-12-24 13:37:55 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-04-16 17:22:30 +02:00
|
|
|
|
2017-04-17 18:20:58 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-08-24 19:33:06 +02:00
|
|
|
|
2017-09-02 22:57:43 +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
|
|
|
|
#=================================================
|
|
|
|
|
2013-12-24 13:37:55 +01:00
|
|
|
# Retrieve arguments
|
2017-04-16 17:22:30 +02:00
|
|
|
domain=$YNH_APP_ARG_DOMAIN
|
2017-09-02 22:57:43 +02:00
|
|
|
path_url=$YNH_APP_ARG_PATH
|
2017-04-16 17:22:30 +02:00
|
|
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2016-08-24 19:43:33 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
|
|
|
|
#=================================================
|
2015-05-23 15:04:16 +02:00
|
|
|
|
2016-08-24 19:43:33 +02:00
|
|
|
final_path=/var/www/$app
|
2017-09-02 22:57:43 +02:00
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
|
|
|
|
# Normalize the url path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
# Check web path availability
|
|
|
|
ynh_webpath_available $domain $path_url
|
|
|
|
# Register (book) web path
|
|
|
|
ynh_webpath_register $app $domain $path_url
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_app_setting_set $app domain $domain
|
|
|
|
ynh_app_setting_set $app path $path_url
|
|
|
|
ynh_app_setting_set $app is_public $is_public
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a system user
|
2017-04-17 18:20:58 +02:00
|
|
|
ynh_system_user_create $app
|
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
2013-12-24 13:37:55 +01:00
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
# Set permissions to app files
|
|
|
|
chown -R root: $final_path
|
|
|
|
# Files owned by user specific can just read
|
|
|
|
find $final_path -type f | xargs chmod 644
|
|
|
|
find $final_path -type d | xargs chmod 755
|
|
|
|
|
|
|
|
# except for data and tmp subdir, where the user must have write permissions
|
|
|
|
mkdir -p $final_path/{data,tmp}
|
|
|
|
chown -R $app:root $final_path/{data,tmp}
|
|
|
|
chmod 700 $final_path/{data,tmp}
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
2017-04-16 23:57:23 +02:00
|
|
|
|
2017-05-20 19:40:39 +02:00
|
|
|
# If app is public, add url to SSOWat conf as skipped_uris
|
2017-09-02 22:57:43 +02:00
|
|
|
if [ $is_public -eq 1 ]; then
|
2017-05-20 19:40:39 +02:00
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
|
|
|
ynh_app_setting_set "$app" unprotected_uris "/"
|
2013-12-24 13:37:55 +01:00
|
|
|
fi
|
|
|
|
|
2017-09-02 22:57:43 +02:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
systemctl reload nginx
|