2017-07-02 12:41:05 +02:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# GENERIC START
|
|
|
|
|
#=================================================
|
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
|
#=================================================
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
source _common.sh
|
|
|
|
|
source /usr/share/yunohost/helpers
|
2017-07-05 12:28:42 +02:00
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# LOAD SETTINGS
|
|
|
|
|
#=================================================
|
2017-07-02 12:41:05 +02:00
|
|
|
|
# See comments in install script
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2017-08-01 12:01:23 +02:00
|
|
|
|
path_url=$(ynh_app_setting_get "$app" path)
|
2017-07-02 12:41:05 +02:00
|
|
|
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
|
|
|
|
|
2017-08-02 10:24:39 +02:00
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
if [ "$is_public" = "Yes" ]; then
|
|
|
|
|
ynh_app_setting_set $app is_public 1 # Fix is_public as a boolean value
|
|
|
|
|
is_public=1
|
|
|
|
|
elif [ "$is_public" = "No" ]; then
|
|
|
|
|
ynh_app_setting_set $app is_public 0
|
|
|
|
|
is_public=0
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ -z $db_name ]; then # If db_name doesn't exist, create it
|
|
|
|
|
db_name=$(ynh_sanitize_dbid $app)
|
|
|
|
|
ynh_app_setting_set $app db_name $db_name
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
|
# CHECK THE PATH
|
|
|
|
|
#=================================================
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
# Normalize the URL path syntax
|
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
2017-07-03 21:21:48 +02:00
|
|
|
|
|
2017-08-02 10:24:39 +02:00
|
|
|
|
final_path=/var/www/$app
|
|
|
|
|
test ! -e "$final_path" || ynh_die "This path already contains a folder"
|
|
|
|
|
|
2017-07-03 21:21:48 +02:00
|
|
|
|
# Move old app dir
|
2017-07-05 12:28:42 +02:00
|
|
|
|
sudo mv ${final_path} ${final_path}.old
|
2017-07-03 21:21:48 +02:00
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
|
ynh_setup_source "$final_path"
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
2017-07-03 21:21:48 +02:00
|
|
|
|
# restore data
|
2017-07-05 12:28:42 +02:00
|
|
|
|
sudo cp -a ${final_path}.old/data ${final_path}
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
2017-07-03 21:21:48 +02:00
|
|
|
|
# delete temp directory
|
2017-07-05 12:28:42 +02:00
|
|
|
|
sudo rm -Rf ${final_path}.old
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Set permissions to app files
|
|
|
|
|
# you may need to make some file and/or directory writeable by www-data (nginx user)
|
2017-07-05 12:28:42 +02:00
|
|
|
|
sudo chown -R root: $final_path
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
|
|
|
|
### PHP (remove if not used) ###
|
|
|
|
|
# If a dedicated php-fpm process is used:
|
|
|
|
|
# # Modify PHP-FPM pool configuration and copy it to the pool directory
|
|
|
|
|
# sed -i "s@YNH_WWW_APP@$app@g" ../conf/php-fpm.conf
|
2017-07-05 12:28:42 +02:00
|
|
|
|
# sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/php-fpm.conf
|
2017-07-02 12:41:05 +02:00
|
|
|
|
# finalphpconf=/etc/php5/fpm/pool.d/$app.conf
|
|
|
|
|
# sudo cp ../conf/php-fpm.conf $finalphpconf
|
|
|
|
|
# sudo chown root: $finalphpconf
|
|
|
|
|
# sudo chmod 644 $finalphpconf
|
|
|
|
|
# sudo service php5-fpm restart
|
|
|
|
|
### PHP end ###
|
|
|
|
|
|
2017-08-01 12:01:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# SETUP SSOWAT
|
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
if [ $is_public -eq 0 ]
|
|
|
|
|
then # Remove the public access
|
|
|
|
|
ynh_app_setting_delete $app skipped_uris
|
2017-07-02 12:41:05 +02:00
|
|
|
|
fi
|
2017-08-01 12:01:23 +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
|
|
|
|
|
|
2017-07-02 12:41:05 +02:00
|
|
|
|
|
2017-07-05 12:28:42 +02:00
|
|
|
|
sudo chmod -R 777 $final_path/data
|
2017-08-01 12:01:23 +02:00
|
|
|
|
#=================================================
|
|
|
|
|
# RELOAD NGINX
|
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
systemctl reload nginx
|