2014-05-08 19:46:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-06-25 00:56:50 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
source _common.sh
|
2017-06-25 00:56:50 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-06-25 00:56:50 +02:00
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2017-07-04 16:18:43 +02:00
|
|
|
path_url=$(ynh_app_setting_get "$app" path)
|
2018-09-16 14:47:00 +02:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2017-06-25 00:56:50 +02:00
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
2017-07-04 16:18:43 +02:00
|
|
|
root_access=$(ynh_app_setting_get "$app" root_access)
|
2014-05-08 19:46:08 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Fix is_public as a boolean value
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
|
|
|
ynh_app_setting_set $app is_public 1
|
|
|
|
is_public=1
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
ynh_app_setting_set $app is_public 0
|
|
|
|
is_public=0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If final_path doesn't exist, create it
|
|
|
|
if [ -z $final_path ]; then
|
|
|
|
final_path=/var/www/$app
|
|
|
|
ynh_app_setting_set $app final_path $final_path
|
|
|
|
fi
|
|
|
|
|
2018-09-16 14:47:00 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
|
|
|
# restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2014-05-08 19:46:08 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
2014-05-08 19:46:08 +02:00
|
|
|
|
2017-06-25 00:56:50 +02:00
|
|
|
# Copy source files
|
2018-09-16 14:47:00 +02:00
|
|
|
sudo rm -rf $final_path
|
|
|
|
sudo mkdir -p $final_path
|
2017-07-04 16:18:43 +02:00
|
|
|
if [[ $root_access -eq 1 ]]; then
|
2018-09-16 14:47:00 +02:00
|
|
|
#copy files from with_root_access folder to the final_path
|
|
|
|
sudo cp -a ../sources/with_root_access/. $final_path
|
2017-07-04 16:18:43 +02:00
|
|
|
else
|
2018-09-16 14:47:00 +02:00
|
|
|
#copy files from root_access_disabled folder to the final_path
|
|
|
|
sudo cp -a ../sources/root_access_disabled/. $final_path
|
2017-07-04 16:18:43 +02:00
|
|
|
fi
|
2014-05-08 19:46:08 +02:00
|
|
|
|
|
|
|
# Files owned by root, www-data can just read
|
2018-09-16 14:47:00 +02:00
|
|
|
sudo find $final_path -type f | xargs sudo chmod 644
|
|
|
|
sudo find $final_path -type d | xargs sudo chmod 755
|
|
|
|
sudo chown -R $app: $final_path
|
2018-06-27 17:21:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2014-07-22 16:08:09 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2017-06-25 00:56:50 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ $is_public -eq 0 ]
|
|
|
|
then # Remove the public access
|
|
|
|
ynh_app_setting_delete $app skipped_uris
|
2017-06-25 00:56:50 +02:00
|
|
|
fi
|
2018-06-27 17:21:59 +02:00
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
|
|
|
then
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2017-06-25 00:56:50 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
systemctl reload nginx
|