1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/garradin_ynh.git synced 2024-09-03 18:36:17 +02:00

Update upgrade

This commit is contained in:
frju365 2018-03-24 01:39:26 +01:00 committed by GitHub
parent e28d994bf1
commit 9d422f6e9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,45 +1,119 @@
#!/bin/bash #!/bin/bash
set -eu #=================================================
# Source app helpers # GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers source /usr/share/yunohost/helpers
source ./_common.sh
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain) domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path) path_url=$(ynh_app_setting_get $app path)
is_public=$(ynh_app_setting_get $app is_public) is_public=$(ynh_app_setting_get $app is_public)
# Remove trailing "/" for next commands #=================================================
if [[ ! "$path" == "/" ]]; then # ENSURE DOWNWARD COMPATIBILITY
path=${path%/} #=================================================
# 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 fi
# Copy files to the right place # If final_path doesn't exist, create it
final_path=/var/www/$app if [ -z $final_path ]; then
sudo mkdir -p $final_path final_path=/var/www/$app
sudo rm -rf $final_path/* ynh_app_setting_set $app final_path $final_path
extract_source $final_path fi
# Files owned by root, www-data can just read #=================================================
sudo chown www-data:www-data $final_path -R # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
sudo chmod 755 $final_path -R #=================================================
# Modify Nginx configuration file and copy it to Nginx conf directory # Backup the current version of the app
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf ynh_backup_before_upgrade
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf ynh_clean_setup () {
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf # restore it if the upgrade fails
sudo cp ../conf/nginx.conf $nginxconf ynh_restore_upgradebackup
sudo chown root: $nginxconf }
sudo chmod 600 $nginxconf # Exit if an error occurs during the execution of the script
ynh_abort_if_errors
ynh_app_setting_set "$app" is_public "$is_public" #=================================================
if [ "$is_public" = "Yes" ]; # 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 ]
then then
ynh_app_setting_set "$app" unprotected_uris "/" # unprotected_uris allows SSO credentials to be passed anyway
ynh_app_setting_set $app unprotected_uris "/"
fi fi
sudo service nginx reload #=================================================
sudo yunohost app ssowatconf # RELOAD NGINX
#=================================================
systemctl reload nginx