#!/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) #================================================= # 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 # Add Dependencies 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)' # Create a temporary directory tmpdir="$(mktemp -d)" # Backup the config file in the temp dir cp -a "$final_path/.htconfig.php" "$tmpdir/.htconfig.php" # Remove the app directory securely ynh_secure_remove "$final_path" # 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 #================================================= # 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" sudo cp -a "$tmpdir/.htconfig.php" "${final_path}" sudo rm -Rf "$tmpdir" #Copy Addons sudo mkdir $final_path/addon ynh_setup_source "$final_path/addon" "addons" # 3 - some extra folders sudo mkdir -p "${final_path}/view/smarty3" sudo chmod -R 777 $final_path/view/smarty3 #================================================= # CREATE DEDICATED USER #================================================= # Create a system user ynh_system_user_create $app # Set app as owner chown -R $app: $final_path # Create a dedicated nginx config ynh_add_nginx_config # configure friendica #================================================= # 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" # Set up poller ynh_replace_string "__YNH_WWW_PATH__" "$final_path" ../conf/poller-cron ynh_replace_string "__USER__" "$app" ../conf/poller-cron sudo cp ../conf/poller-cron /etc/cron.d/$app # Run composer (cd $final_path && sudo php bin/composer.phar install) #================================================= # SETUP SSOWAT #================================================= # unprotected_uris allows SSO credentials to be passed anyway. ynh_app_setting_set $app skipped_uris "/" # Reload services sudo service php5-fpm reload || true sudo service nginx reload || true sudo yunohost app ssowatconf