2017-01-28 23:41:18 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-24 01:39:26 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
2017-02-11 19:54:05 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2018-03-24 01:39:26 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2017-02-11 23:18:15 +01:00
|
|
|
|
2017-01-28 23:41:18 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-02-11 23:25:24 +01:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
2018-03-24 01:39:26 +01:00
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
2017-02-11 23:25:24 +01:00
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
2017-01-28 23:41:18 +01:00
|
|
|
|
2018-03-24 01:39:26 +01: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
|
2017-01-28 23:41:18 +01:00
|
|
|
fi
|
|
|
|
|
2018-03-24 01:39:26 +01:00
|
|
|
# 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
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
|
2019-02-24 12:05:20 +01:00
|
|
|
#=================================================
|
|
|
|
# Install dependency to convert tracks to a readable format for the browser
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 02:03:44 +02:00
|
|
|
if [ "$(lsb_release --codename --short)" != "jessie" ]
|
2019-02-24 12:05:20 +01:00
|
|
|
then
|
2020-03-31 02:03:44 +02:00
|
|
|
ynh_install_app_dependencies php7.2-sqlite3
|
2019-02-24 12:05:20 +01:00
|
|
|
else
|
|
|
|
ynh_install_app_dependencies php5-sqlite
|
|
|
|
fi
|
|
|
|
|
2018-03-24 01:39:26 +01:00
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Set right permissions for curl installation
|
|
|
|
chown -R $app:$app $final_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ $is_public -eq 0 ]
|
|
|
|
then # Remove the public access
|
|
|
|
ynh_app_setting_delete $app skipped_uris
|
|
|
|
fi
|
|
|
|
# Make app public if necessary
|
|
|
|
if [ $is_public -eq 1 ]
|
2017-01-28 23:41:18 +01:00
|
|
|
then
|
2018-03-24 01:39:26 +01:00
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway
|
|
|
|
ynh_app_setting_set $app unprotected_uris "/"
|
2017-01-28 23:41:18 +01:00
|
|
|
fi
|
|
|
|
|
2018-03-24 01:39:26 +01:00
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2017-02-11 19:54:05 +01:00
|
|
|
|
2018-03-24 01:39:26 +01:00
|
|
|
systemctl reload nginx
|