2017-07-21 21:40:25 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2017-07-21 21:40:25 +02:00
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
# 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
|
|
|
|
|
|
|
|
# Add Dependencies
|
2018-09-24 08:53:06 +02:00
|
|
|
ynh_install_app_dependencies 'php-mbstring|base-files(<<9.0)' php5-cli 'php5-imagick|php-imagick' php5-gd php5-mcrypt 'php-xml|base-files(<<9.0)'
|
2018-06-10 16:17:36 +02:00
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
|
|
|
|
# Create a temporary directory
|
|
|
|
tmpdir="$(mktemp -d)"
|
|
|
|
# Backup the config file in the temp dir
|
|
|
|
cp -a "$final_path/.htconfig.php" "$tmpdir/.htconfig.php"
|
|
|
|
|
|
|
|
# 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
|
2017-07-21 21:40:25 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK THE PATH
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Normalize the URL path syntax
|
|
|
|
path_url=$(ynh_normalize_url_path $path_url)
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source "$final_path"
|
2018-06-05 23:17:03 +02:00
|
|
|
sudo cp -a "$tmpdir/.htconfig.php" "${final_path}"
|
|
|
|
sudo rm -Rf "$tmpdir"
|
2017-07-21 21:40:25 +02:00
|
|
|
|
|
|
|
#Copy Addons
|
|
|
|
sudo mkdir $final_path/addon
|
2018-06-05 23:17:03 +02:00
|
|
|
ynh_setup_source "$final_path/addon" "addons"
|
2017-07-21 21:40:25 +02:00
|
|
|
|
|
|
|
# 3 - some extra folders
|
2018-06-05 23:17:03 +02:00
|
|
|
sudo mkdir -p "${final_path}/view/smarty3"
|
2017-07-21 21:40:25 +02:00
|
|
|
sudo chmod -R 777 $final_path/view/smarty3
|
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2017-07-21 21:40:25 +02:00
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
# Create a system user
|
|
|
|
ynh_system_user_create $app
|
2017-07-21 21:40:25 +02:00
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
# Set app as owner
|
|
|
|
chown -R $app: $final_path
|
2017-07-21 21:40:25 +02:00
|
|
|
|
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
# configure friendica
|
|
|
|
|
2018-06-05 23:17:03 +02:00
|
|
|
#=================================================
|
|
|
|
# PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create a dedicated php-fpm config
|
|
|
|
ynh_add_fpm_config
|
|
|
|
|
|
|
|
# Verify the checksum and backup the file if it's different
|
|
|
|
ynh_backup_if_checksum_is_different "$final_path/.htconfig.php"
|
|
|
|
# Recalculate and store the config file checksum into the app settings
|
|
|
|
ynh_store_file_checksum "$final_path/.htconfig.php"
|
|
|
|
|
2017-07-21 21:40:25 +02:00
|
|
|
# Set up poller
|
2018-06-11 12:37:15 +02:00
|
|
|
ynh_replace_string "__YNH_WWW_PATH__" "$final_path" ../conf/poller-cron
|
|
|
|
ynh_replace_string "__USER__" "$app" ../conf/poller-cron
|
2017-07-21 21:40:25 +02:00
|
|
|
sudo cp ../conf/poller-cron /etc/cron.d/$app
|
|
|
|
|
2018-06-06 03:28:30 +02:00
|
|
|
# Run composer
|
2018-06-08 10:53:10 +02:00
|
|
|
(cd $final_path && sudo php bin/composer.phar install)
|
2017-07-21 21:40:25 +02:00
|
|
|
|
2018-06-06 03:28:30 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SSOWAT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
|
|
|
|
# unprotected_uris allows SSO credentials to be passed anyway.
|
2017-07-21 21:40:25 +02:00
|
|
|
ynh_app_setting_set $app skipped_uris "/"
|
|
|
|
|
|
|
|
|
|
|
|
# Reload services
|
|
|
|
sudo service php5-fpm reload || true
|
|
|
|
sudo service nginx reload || true
|
|
|
|
sudo yunohost app ssowatconf
|